Full Code of huawei-noah/streamDM for AI

master 22637b67b39f cached
311 files
3.8 MB
1.0M tokens
171 symbols
1 requests
Download .txt
Showing preview only (4,006K chars total). Download the full file or copy to clipboard to get everything.
Repository: huawei-noah/streamDM
Branch: master
Commit: 22637b67b39f
Files: 311
Total size: 3.8 MB

Directory structure:
gitextract_04k4nztj/

├── .gitignore
├── CONTRIBUTING.md
├── ISSUE_TEMPLATE.md
├── LICENSE
├── PULL_REQUEST_TEMPLATE.md
├── README.md
├── data/
│   ├── electNormNew.arff
│   ├── hyperplanesampledata
│   ├── hyperplanesampledata.arff.head
│   ├── iris.arff
│   ├── randomtreesampledata
│   ├── randomtreesampledata.arff.head
│   ├── stream2000_7anom.arff
│   └── stream2500_51anom.arff
├── learn.sbt
├── project/
│   └── plugins.sbt
├── scripts/
│   ├── generateData.sh
│   ├── instance_server/
│   │   ├── generate_dataset.py
│   │   └── server.py
│   └── spark.sh
├── src/
│   ├── main/
│   │   ├── java/
│   │   │   └── com/
│   │   │       └── github/
│   │   │           └── javacliparser/
│   │   │               ├── AbstractClassOption.java
│   │   │               ├── AbstractOption.java
│   │   │               ├── ClassOption.java
│   │   │               ├── Configurable.java
│   │   │               ├── FileOption.java
│   │   │               ├── FlagOption.java
│   │   │               ├── FloatOption.java
│   │   │               ├── IntOption.java
│   │   │               ├── JavaCLIParser.java
│   │   │               ├── ListOption.java
│   │   │               ├── MultiChoiceOption.java
│   │   │               ├── Option.java
│   │   │               ├── Options.java
│   │   │               ├── SerializeUtils.java
│   │   │               ├── StringOption.java
│   │   │               ├── StringUtils.java
│   │   │               └── examples/
│   │   │                   ├── DoTask.java
│   │   │                   ├── Task1.java
│   │   │                   └── Task2.java
│   │   └── scala/
│   │       └── org/
│   │           └── apache/
│   │               └── spark/
│   │                   └── streamdm/
│   │                       ├── classifiers/
│   │                       │   ├── Classifier.scala
│   │                       │   ├── MultiClassLearner.scala
│   │                       │   ├── PerceptronLearner.scala
│   │                       │   ├── SGDLearner.scala
│   │                       │   ├── bayes/
│   │                       │   │   └── MultinomialNaiveBayes.scala
│   │                       │   ├── meta/
│   │                       │   │   ├── Bagging.scala
│   │                       │   │   └── RandomForest.scala
│   │                       │   ├── model/
│   │                       │   │   ├── HingeLoss.scala
│   │                       │   │   ├── L1Regularizer.scala
│   │                       │   │   ├── L2Regularizer.scala
│   │                       │   │   ├── LinearModel.scala
│   │                       │   │   ├── LogisticLoss.scala
│   │                       │   │   ├── Loss.scala
│   │                       │   │   ├── PerceptronLoss.scala
│   │                       │   │   ├── Regularizer.scala
│   │                       │   │   ├── SquaredLoss.scala
│   │                       │   │   └── ZeroRegularizer.scala
│   │                       │   └── trees/
│   │                       │       ├── ConditionalTest.scala
│   │                       │       ├── FeatureClassObserver.scala
│   │                       │       ├── FeatureSplit.scala
│   │                       │       ├── GaussianEstimator.scala
│   │                       │       ├── HoeffdingTree.scala
│   │                       │       ├── SplitCriterion.scala
│   │                       │       ├── Utils.scala
│   │                       │       └── nodes/
│   │                       │           ├── ActiveLearningNode.scala
│   │                       │           ├── FoundNode.scala
│   │                       │           ├── InactiveLearningNode.scala
│   │                       │           ├── LearningNode.scala
│   │                       │           ├── LearningNodeNB.scala
│   │                       │           ├── LearningNodeNBAdaptive.scala
│   │                       │           ├── Node.scala
│   │                       │           └── SplitNode.scala
│   │                       ├── clusterers/
│   │                       │   ├── Clusterer.scala
│   │                       │   ├── Clustream.scala
│   │                       │   ├── StreamKM.scala
│   │                       │   ├── clusters/
│   │                       │   │   ├── BucketManager.scala
│   │                       │   │   ├── Clusters.scala
│   │                       │   │   ├── MicroCluster.scala
│   │                       │   │   ├── MicroClusters.scala
│   │                       │   │   └── TreeCoreset.scala
│   │                       │   └── utils/
│   │                       │       └── KMeans.scala
│   │                       ├── core/
│   │                       │   ├── ClassificationModel.scala
│   │                       │   ├── DenseInstance.scala
│   │                       │   ├── Example.scala
│   │                       │   ├── ExampleParser.scala
│   │                       │   ├── Instance.scala
│   │                       │   ├── Learner.scala
│   │                       │   ├── Model.scala
│   │                       │   ├── NullInstance.scala
│   │                       │   ├── SparseInstance.scala
│   │                       │   ├── TextInstance.scala
│   │                       │   └── specification/
│   │                       │       ├── ExampleSpecification.scala
│   │                       │       ├── FeatureSpecification.scala
│   │                       │       ├── InstanceSpecification.scala
│   │                       │       └── SpecificationParser.scala
│   │                       ├── evaluation/
│   │                       │   ├── BasicClassificationEvaluator.scala
│   │                       │   ├── ClusteringEvaluator.scala
│   │                       │   └── Evaluator.scala
│   │                       ├── outlier/
│   │                       │   ├── Outlier.scala
│   │                       │   ├── OutlierModel.scala
│   │                       │   └── SWNearestNeighbors.scala
│   │                       ├── streamDMJob.scala
│   │                       ├── streams/
│   │                       │   ├── FileReader.scala
│   │                       │   ├── KafkaReader.scala
│   │                       │   ├── PrintStreamWriter.scala
│   │                       │   ├── SampleDataWriter.scala
│   │                       │   ├── SocketTextStreamReader.scala
│   │                       │   ├── StreamReader.scala
│   │                       │   ├── StreamWriter.scala
│   │                       │   ├── TextStreamReader.scala
│   │                       │   └── generators/
│   │                       │       ├── Cluster.scala
│   │                       │       ├── Generator.scala
│   │                       │       ├── HyperplaneGenerator.scala
│   │                       │       ├── RandomRBFEventsGenerator.scala
│   │                       │       ├── RandomRBFGenerator.scala
│   │                       │       ├── RandomTreeGenerator.scala
│   │                       │       └── SphereCluster.scala
│   │                       ├── tasks/
│   │                       │   ├── ClusteringTrainEvaluate.scala
│   │                       │   ├── EvaluateOutlierDetection.scala
│   │                       │   ├── EvaluatePrequential.scala
│   │                       │   └── Task.scala
│   │                       └── utils/
│   │                           ├── Statistics.scala
│   │                           └── Utils.scala
│   └── test/
│       └── scala/
│           └── org/
│               └── apache/
│                   └── spark/
│                       └── streamdm/
│                           ├── classifiers/
│                           │   ├── bayes/
│                           │   │   └── MultinomialNaiveBayesSuite.scala
│                           │   ├── model/
│                           │   │   ├── HingeLossSuite.scala
│                           │   │   ├── L1RegularizerSuite.scala
│                           │   │   ├── L2RegularizerSuite.scala
│                           │   │   ├── LogisticLossSuite.scala
│                           │   │   ├── PerceptronLossSuite.scala
│                           │   │   ├── SquaredLossSuite.scala
│                           │   │   └── ZeroRegularizerSuite.scala
│                           │   └── trees/
│                           │       ├── ConditionalTestSuite.scala
│                           │       ├── FeatureClassObserverSuite.scala
│                           │       ├── FeatureSplitSuite.scala
│                           │       ├── GaussianEstimatorSuite.scala
│                           │       └── SplitCriterionSuite.scala
│                           ├── core/
│                           │   ├── DenseInstanceSuite.scala
│                           │   ├── ExampleSuite.scala
│                           │   └── SparseInstanceSuite.scala
│                           └── utils/
│                               └── UtilsSuite.scala
└── website/
    ├── .editorconfig
    ├── .gitignore
    ├── .jshintrc
    ├── .travis.yml
    ├── 404.md
    ├── Gemfile
    ├── Gruntfile.js
    ├── LICENSE
    ├── README.md
    ├── _config.yml
    ├── _data/
    │   └── navigation.yml
    ├── _includes/
    │   ├── ad-footer.html
    │   ├── ad-sidebar.html
    │   ├── browser-upgrade.html
    │   ├── disqus-comments.html
    │   ├── feed-footer.html
    │   ├── footer.html
    │   ├── footer.html~
    │   ├── head.html
    │   ├── navigation.html
    │   ├── open-graph.html
    │   ├── scripts.html
    │   └── social-share.html
    ├── _layouts/
    │   ├── page.html
    │   └── post.html
    ├── _octopress.yml
    ├── _sass/
    │   ├── _animations.scss
    │   ├── _archives.scss
    │   ├── _base.scss
    │   ├── _buttons.scss
    │   ├── _footer.scss
    │   ├── _footnotes.scss
    │   ├── _forms.scss
    │   ├── _grid-settings.scss
    │   ├── _helpers.scss
    │   ├── _masthead.scss
    │   ├── _mixins.scss
    │   ├── _navigation.scss
    │   ├── _notices.scss
    │   ├── _page.scss
    │   ├── _reset.scss
    │   ├── _search.scss
    │   ├── _syntax.scss
    │   ├── _variables.scss
    │   ├── _wells.scss
    │   └── vendor/
    │       ├── bourbon/
    │       │   ├── _bourbon-deprecated-upcoming.scss
    │       │   ├── _bourbon.scss
    │       │   ├── addons/
    │       │   │   ├── _button.scss
    │       │   │   ├── _clearfix.scss
    │       │   │   ├── _directional-values.scss
    │       │   │   ├── _ellipsis.scss
    │       │   │   ├── _font-family.scss
    │       │   │   ├── _hide-text.scss
    │       │   │   ├── _html5-input-types.scss
    │       │   │   ├── _position.scss
    │       │   │   ├── _prefixer.scss
    │       │   │   ├── _retina-image.scss
    │       │   │   ├── _size.scss
    │       │   │   ├── _timing-functions.scss
    │       │   │   ├── _triangle.scss
    │       │   │   └── _word-wrap.scss
    │       │   ├── css3/
    │       │   │   ├── _animation.scss
    │       │   │   ├── _appearance.scss
    │       │   │   ├── _backface-visibility.scss
    │       │   │   ├── _background-image.scss
    │       │   │   ├── _background.scss
    │       │   │   ├── _border-image.scss
    │       │   │   ├── _border-radius.scss
    │       │   │   ├── _box-sizing.scss
    │       │   │   ├── _calc.scss
    │       │   │   ├── _columns.scss
    │       │   │   ├── _filter.scss
    │       │   │   ├── _flex-box.scss
    │       │   │   ├── _font-face.scss
    │       │   │   ├── _font-feature-settings.scss
    │       │   │   ├── _hidpi-media-query.scss
    │       │   │   ├── _hyphens.scss
    │       │   │   ├── _image-rendering.scss
    │       │   │   ├── _keyframes.scss
    │       │   │   ├── _linear-gradient.scss
    │       │   │   ├── _perspective.scss
    │       │   │   ├── _placeholder.scss
    │       │   │   ├── _radial-gradient.scss
    │       │   │   ├── _transform.scss
    │       │   │   ├── _transition.scss
    │       │   │   └── _user-select.scss
    │       │   ├── functions/
    │       │   │   ├── _assign.scss
    │       │   │   ├── _color-lightness.scss
    │       │   │   ├── _flex-grid.scss
    │       │   │   ├── _golden-ratio.scss
    │       │   │   ├── _grid-width.scss
    │       │   │   ├── _modular-scale.scss
    │       │   │   ├── _px-to-em.scss
    │       │   │   ├── _px-to-rem.scss
    │       │   │   ├── _strip-units.scss
    │       │   │   ├── _tint-shade.scss
    │       │   │   ├── _transition-property-name.scss
    │       │   │   └── _unpack.scss
    │       │   ├── helpers/
    │       │   │   ├── _convert-units.scss
    │       │   │   ├── _gradient-positions-parser.scss
    │       │   │   ├── _is-num.scss
    │       │   │   ├── _linear-angle-parser.scss
    │       │   │   ├── _linear-gradient-parser.scss
    │       │   │   ├── _linear-positions-parser.scss
    │       │   │   ├── _linear-side-corner-parser.scss
    │       │   │   ├── _radial-arg-parser.scss
    │       │   │   ├── _radial-gradient-parser.scss
    │       │   │   ├── _radial-positions-parser.scss
    │       │   │   ├── _render-gradients.scss
    │       │   │   ├── _shape-size-stripper.scss
    │       │   │   └── _str-to-num.scss
    │       │   └── settings/
    │       │       ├── _prefixer.scss
    │       │       └── _px-to-em.scss
    │       ├── font-awesome/
    │       │   ├── _bordered-pulled.scss
    │       │   ├── _core.scss
    │       │   ├── _fixed-width.scss
    │       │   ├── _icons.scss
    │       │   ├── _larger.scss
    │       │   ├── _list.scss
    │       │   ├── _mixins.scss
    │       │   ├── _path.scss
    │       │   ├── _rotated-flipped.scss
    │       │   ├── _spinning.scss
    │       │   ├── _stacked.scss
    │       │   ├── _variables.scss
    │       │   └── font-awesome.scss
    │       ├── magnific-popup/
    │       │   ├── _settings.scss
    │       │   └── magnific-popup.scss
    │       └── neat/
    │           ├── _neat-helpers.scss
    │           ├── _neat.scss
    │           ├── functions/
    │           │   ├── _new-breakpoint.scss
    │           │   └── _private.scss
    │           ├── grid/
    │           │   ├── _fill-parent.scss
    │           │   ├── _grid.scss
    │           │   ├── _media.scss
    │           │   ├── _omega.scss
    │           │   ├── _outer-container.scss
    │           │   ├── _pad.scss
    │           │   ├── _private.scss
    │           │   ├── _reset.scss
    │           │   ├── _row.scss
    │           │   ├── _shift.scss
    │           │   ├── _span-columns.scss
    │           │   ├── _to-deprecate.scss
    │           │   └── _visual-grid.scss
    │           └── settings/
    │               ├── _grid.scss
    │               └── _visual-grid.scss
    ├── _templates/
    │   ├── archive
    │   ├── page
    │   └── post
    ├── assets/
    │   ├── css/
    │   │   └── main.scss
    │   ├── fonts/
    │   │   └── FontAwesome.otf
    │   └── js/
    │       ├── _main.js
    │       └── plugins/
    │           ├── jquery.fitvids.js
    │           ├── jquery.magnific-popup.js
    │           ├── respond.js
    │           ├── responsive-nav.js
    │           └── search.js
    ├── docs/
    │   ├── Bagging.md
    │   ├── CluStream.md
    │   ├── Contributors.md
    │   ├── GettingStarted.md
    │   ├── HDT.md
    │   ├── NB.md
    │   ├── Programming.md
    │   ├── SGD.md
    │   ├── SampleDataWriter.md
    │   ├── StreamKM.md
    │   └── generators.md
    ├── feed.xml
    ├── index.md
    └── package.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# sbt specific
target/
project/project/


================================================
FILE: CONTRIBUTING.md
================================================
## How do I submit a contribution?

1. Create a GitHub issue describing the bug or enhancement at https://github.com/huawei-noah/streamDM/issues, please use the appropriate template. 
2. Once you have your contribution ready, that means that follows the coding convention, with sufficient tests, and is organized into logical commits, you may submit a pull request (PR). Prepend the GitHub issue ID to the title of the pull request (e.g, StreamDM-XX: Fancy new feature).
3. **Make sure not to include any merge commits in your PR and always rebase on the current master to make it easier for project committers to apply your changes**
4. Prepend each commit log in a branch with the issue ID. Assuming that you are developing your feature on a branch named after the issue ID (StreamDM-XX):
`git filter-branch -f --msg-filter 'printf "StreamDM-XX: " && cat' StreamDM-XX master..HEAD`
5. The PR will be reviewed and voted upon.

## General guidelines for contributions

1. Contributions should be self-contained, do not create a general issue and append several changes to it that are unrelated. For example, an issue like "update streamDM" that requires changes to the whole framework accompanied by a PR with commits that affect how data sources are used, the instances' representation, add new synthetic data generators, etc, is quite difficult to test as it simply touches every part of the framework. If you want to contribute several changes, create separate issues and separate pull requests. 
2. Follow the best practices for Scala programming. 
3. Follow the framework coding style. For example, learners are parametrized using Option classes, if you try to submit a new learner that receives its configuration through a configuration file, it will require changes to make it similar to how other learners are used. 

## Issues
Issues can be created to describe enhancements or bug reports. Two templates will be available whenever you attempt to create a new Issue. 

1. Before creating an issue make sure to search for it in the [closed issues](https://github.com/huawei-noah/streamDM/issues?utf8=✓&q=is%3Aissue%20is%3Aclosed). If a similar one already exists, but the answer does not address your bug/enhancement, then you shall still create yours, but please refer to the previous issue in it.  
2. Is this a functionality request? E.g. please add support to ...? If so, then use the *Enhancement* template, otherwise use the *Bug report* template. 
3. Fillout the appropriate template below depending on whether you are proposing an *enhancement* (e.g., please add support to ...) or you are creating a *bug report* (e.g., cannot execute learner...). Delete the template that was not used. 
4. Add a descriptive title for the issue. 


================================================
FILE: ISSUE_TEMPLATE.md
================================================
# Warning
1. Before submitting the issue, read the [CONTRIBUTING guidelines](https://github.com/huawei-noah/streamDM/blob/master/CONTRIBUTING.md).
2. Use only one of the templates below to create either an Enhancement or Bug Report issue. 

-----------------------------------------------

# Enhancement template

## Description
_<< What is the purpose of this enhancement >>_

## Resources
_<< Is it implemented in another machine learning library? Are there academic papers describing the method? >>_

-----------------------------------------------

# Bug Report template

## Expected behavior
_<< What were you trying to do? In other words, what did you expected to achieve? Describe it in here. >>_

## Observed behavior
_<< What results have you obtained? Is there an error message? If so, please paste it in here (not all issues produce error messages) >>_

## Steps to reproduce the issue

**Command line**
_<< What is the command line to reproduce the behavior? >>_

**Data source**
_<< What data was used? Did you use Kafka? >>_

_<< Does the problem applies to one specific data source only? If so, Include more information about it, such as the features' domain and dimensionality, the data format, and a sample of data. >>_

**Infrastructure details**
* **Java Version:** 
* **Scala Version:** 
* **Spark version:** 
* **OS version:** 
* **Cluster mode or local mode?** 


================================================
FILE: LICENSE
================================================
                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright [yyyy] [name of copyright owner]

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.


================================================
FILE: PULL_REQUEST_TEMPLATE.md
================================================
## Warning
**Make sure you have read the [CONTRIBUTION guidelines](https://github.com/huawei-noah/streamDM/blob/master/CONTRIBUTING.md) and to have an open issue already created before submitting a Pull Request**

## Summary of the changes
_<< Explain the overall functionality addition or corrections. >>_

_<< Optionally, list all the classes affected by the changes and explain the changes >>_

## Tests
_<< Any dependency for the tests should be listed in here, such as specific datasets to be used that are not part of the `\data` directory. >>_

1. _<< Description of test1 >>_

_<< steps to execute test1 >>_

_<< expected output for test1 >>_

2. _<< Description of test2 >>_

_<< steps to execute test2 >>_

_<< expected output for test2 >>_

_<< Include as many tests as necessary >>_


================================================
FILE: README.md
================================================
# streamDM for Spark Streaming

streamDM is a new open source software for mining big data streams using [Spark Streaming](https://spark.apache.org/streaming/), started at [Huawei Noah's Ark
Lab](http://www.noahlab.com.hk/). streamDM is licensed under Apache Software License v2.0.

## Big Data Stream Learning 

Big Data stream learning is more challenging than batch or offline learning,
since the data may not keep the same distribution over the lifetime of the
stream. Moreover, each example coming in a stream can only be processed once, or
they need to be summarized with a small memory footprint, and the learning
algorithms must be very efficient. 

### Spark Streaming

[Spark Streaming](https://spark.apache.org/streaming/) is an extension of the
core [Spark](https://spark.apache.org)  API that enables stream processing from
a variety of sources. Spark is a extensible and programmable framework for
massive distributed processing of datasets, called Resilient Distributed
Datasets (RDD). Spark Streaming receives input data streams and divides the data
into batches, which are then processed by the Spark engine to generate the
results.

Spark Streaming data is organized into a sequence of DStreams, represented
internally as a sequence of RDDs.

### <a name="methods"></a>Included Methods

In this current release of StreamDM v0.2, we have implemented:

* [SGD Learner](http://huawei-noah.github.io/streamDM/docs/SGD.html) and [Perceptron](http://huawei-noah.github.io/streamDM/docs/SGD.html#perceptron)
* [Naive Bayes](http://huawei-noah.github.io/streamDM/docs/NB.html)
* [CluStream](http://huawei-noah.github.io/streamDM/docs/CluStream.html)
* [Hoeffding Decision Trees](http://huawei-noah.github.io/streamDM/docs/HDT.html)
* [Bagging](http://huawei-noah.github.io/streamDM/docs/Bagging.html)
* [Stream KM++](http://huawei-noah.github.io/streamDM/docs/StreamKM.html)

we also implemented following [data generators](http://huawei-noah.github.io/streamDM/docs/generators.html):

* HyperplaneGenerator
* RandomTreeGenerator
* RandomRBFGenerator
* RandomRBFEventsGenerator

We have also implemented [SampleDataWriter](http://huawei-noah.github.io/streamDM/docs/SampleDataWriter.html), which can call data generators 
to create sample data for simulation or test.

In the next release of streamDM, we are going to add:

* Classification: Random Forests
* Multi-label: Hoeffding Tree ML, Random Forests ML
* Frequent Itemset Miner: IncMine

For future works, we are considering:
* Regression: Hoeffding Regression Tree, Bagging, Random Forests
* Clustering: Clustree, DenStream
* Frequent Itemset Miner: IncSecMine

## Going Further

For a quick introduction to running StreamDM, refer to the [Getting
Started](http://huawei-noah.github.io/streamDM/docs/GettingStarted.html) document. The StreamDM [Programming
Guide](http://huawei-noah.github.io/streamDM/docs/Programming.html) presents a detailed view of StreamDM. The full API
documentation can be consulted [here](http://huawei-noah.github.io/streamDM/api/index.html). 

## Environment
* Spark 2.3.2
* Scala 2.11
* SBT 0.13
* Java 8+

## Mailing lists
### User support and questions mailing list:
<a href="mailto:streamdm-user@googlegroups.com">streamdm-user@googlegroups.com</a>
### Development related discussions:
<a href="mailto:streamdm-dev@googlegroups.com">streamdm-dev@googlegroups.com</a>

================================================
FILE: data/electNormNew.arff
================================================


@attribute date numeric
@attribute day {1,2,3,4,5,6,7}
@attribute period numeric
@attribute nswprice numeric
@attribute nswdemand numeric
@attribute vicprice numeric
@attribute vicdemand numeric
@attribute transfer numeric
@attribute class {1,0}

@data
0,2,0,0.056443,0.439155,0.003467,0.422915,0.414912,1
0,2,0.021277,0.051699,0.415055,0.003467,0.422915,0.414912,1
0,2,0.042553,0.051489,0.385004,0.003467,0.422915,0.414912,1
0,2,0.06383,0.045485,0.314639,0.003467,0.422915,0.414912,1
0,2,0.085106,0.042482,0.251116,0.003467,0.422915,0.414912,0
0,2,0.106383,0.041161,0.207528,0.003467,0.422915,0.414912,0
0,2,0.12766,0.041161,0.171824,0.003467,0.422915,0.414912,0
0,2,0.148936,0.041161,0.152782,0.003467,0.422915,0.414912,0
0,2,0.170213,0.041161,0.13493,0.003467,0.422915,0.414912,0
0,2,0.191489,0.041161,0.140583,0.003467,0.422915,0.414912,0
0,2,0.212766,0.044374,0.168997,0.003467,0.422915,0.414912,1
0,2,0.234043,0.049868,0.212437,0.003467,0.422915,0.414912,1
0,2,0.255319,0.051489,0.298721,0.003467,0.422915,0.414912,1
0,2,0.276596,0.042482,0.39036,0.003467,0.422915,0.414912,0
0,2,0.297872,0.040861,0.402261,0.003467,0.422915,0.414912,0
0,2,0.319149,0.040711,0.462214,0.003467,0.422915,0.414912,0
0,2,0.340426,0.040861,0.488248,0.003467,0.422915,0.414912,0
0,2,0.361702,0.040711,0.493306,0.003467,0.422915,0.414912,0
0,2,0.382979,0.041041,0.53258,0.003467,0.422915,0.414912,0
0,2,0.404255,0.041161,0.546415,0.003467,0.422915,0.414912,0
0,2,0.425532,0.044374,0.53496,0.003467,0.422915,0.414912,1
0,2,0.446809,0.044374,0.51681,0.003467,0.422915,0.414912,1
0,2,0.468085,0.044374,0.513984,0.003467,0.422915,0.414912,1
0,2,0.489362,0.045485,0.513835,0.003467,0.422915,0.414912,1
0,2,0.510638,0.044374,0.505356,0.003467,0.422915,0.414912,1
0,2,0.531915,0.044374,0.497917,0.003467,0.422915,0.414912,1
0,2,0.553191,0.042482,0.499554,0.003467,0.422915,0.414912,0
0,2,0.574468,0.044374,0.491669,0.003467,0.422915,0.414912,1
0,2,0.595745,0.044374,0.489735,0.003467,0.422915,0.414912,1
0,2,0.617021,0.042482,0.47709,0.003467,0.422915,0.414912,0
0,2,0.638298,0.040861,0.466825,0.003467,0.422915,0.414912,0
0,2,0.659574,0.041161,0.478132,0.003467,0.422915,0.414912,0
0,2,0.680851,0.041161,0.484975,0.003467,0.422915,0.414912,0
0,2,0.702128,0.041161,0.503124,0.003467,0.422915,0.414912,0
0,2,0.723404,0.042482,0.55296,0.003467,0.422915,0.414912,0
0,2,0.744681,0.044374,0.612318,0.003467,0.422915,0.414912,1
0,2,0.765957,0.041041,0.587623,0.003467,0.422915,0.414912,0
0,2,0.787234,0.040711,0.546861,0.003467,0.422915,0.414912,0
0,2,0.808511,0.040711,0.497025,0.003467,0.422915,0.414912,0
0,2,0.829787,0.040861,0.470693,0.003467,0.422915,0.414912,0
0,2,0.851064,0.041041,0.446296,0.003467,0.422915,0.414912,0
0,2,0.87234,0.042482,0.412229,0.003467,0.422915,0.414912,0
0,2,0.893617,0.041161,0.368789,0.003467,0.422915,0.414912,0
0,2,0.914894,0.051489,0.34573,0.003467,0.422915,0.414912,1
0,2,0.93617,0.056443,0.40479,0.003467,0.422915,0.414912,1
0,2,0.957447,0.054642,0.42889,0.003467,0.422915,0.414912,1
0,2,0.978723,0.059235,0.445254,0.003467,0.422915,0.414912,1
0,2,1,0.054642,0.44094,0.003467,0.422915,0.414912,1
0.000044,3,0,0.059235,0.442874,0.003467,0.422915,0.414912,1
0.000044,3,0.021277,0.056443,0.41089,0.003467,0.422915,0.414912,1
0.000044,3,0.042553,0.051489,0.378905,0.003467,0.422915,0.414912,1
0.000044,3,0.06383,0.044374,0.316721,0.003467,0.422915,0.414912,0
0.000044,3,0.085106,0.041041,0.257959,0.003467,0.422915,0.414912,0
0.000044,3,0.106383,0.041161,0.214073,0.003467,0.422915,0.414912,0
0.000044,3,0.12766,0.041161,0.178816,0.003467,0.422915,0.414912,0
0.000044,3,0.148936,0.040951,0.151889,0.003467,0.422915,0.414912,0
0.000044,3,0.170213,0.041011,0.1385,0.003467,0.422915,0.414912,0
0.000044,3,0.191489,0.041041,0.142071,0.003467,0.422915,0.414912,0
0.000044,3,0.212766,0.042482,0.171675,0.003467,0.422915,0.414912,0
0.000044,3,0.234043,0.051489,0.214519,0.003467,0.422915,0.414912,1
0.000044,3,0.255319,0.051489,0.30244,0.003467,0.422915,0.414912,1
0.000044,3,0.276596,0.051489,0.393038,0.003467,0.422915,0.414912,1
0.000044,3,0.297872,0.040861,0.395567,0.003467,0.422915,0.414912,0
0.000044,3,0.319149,0.040861,0.456561,0.003467,0.422915,0.414912,0
0.000044,3,0.340426,0.040861,0.487504,0.003467,0.422915,0.414912,0
0.000044,3,0.361702,0.040861,0.488991,0.003467,0.422915,0.414912,0
0.000044,3,0.382979,0.041041,0.52886,0.003467,0.422915,0.414912,0
0.000044,3,0.404255,0.041041,0.533323,0.003467,0.422915,0.414912,0
0.000044,3,0.425532,0.041041,0.519935,0.003467,0.422915,0.414912,0
0.000044,3,0.446809,0.042362,0.502529,0.003467,0.422915,0.414912,0
0.000044,3,0.468085,0.042482,0.491818,0.003467,0.422915,0.414912,0
0.000044,3,0.489362,0.044374,0.486909,0.003467,0.422915,0.414912,0
0.000044,3,0.510638,0.044374,0.480363,0.003467,0.422915,0.414912,0
0.000044,3,0.531915,0.042482,0.477388,0.003467,0.422915,0.414912,0
0.000044,3,0.553191,0.042482,0.477388,0.003467,0.422915,0.414912,0
0.000044,3,0.574468,0.042482,0.47114,0.003467,0.422915,0.414912,0
0.000044,3,0.595745,0.041041,0.462065,0.003467,0.422915,0.414912,0
0.000044,3,0.617021,0.040861,0.445403,0.003467,0.422915,0.414912,0
0.000044,3,0.638298,0.040861,0.442428,0.003467,0.422915,0.414912,0
0.000044,3,0.659574,0.040861,0.450759,0.003467,0.422915,0.414912,0
0.000044,3,0.680851,0.040861,0.455965,0.003467,0.422915,0.414912,0
0.000044,3,0.702128,0.040861,0.484677,0.003467,0.422915,0.414912,0
0.000044,3,0.723404,0.041041,0.53377,0.003467,0.422915,0.414912,0
0.000044,3,0.744681,0.041041,0.604136,0.003467,0.422915,0.414912,0
0.000044,3,0.765957,0.040861,0.587028,0.003467,0.422915,0.414912,0
0.000044,3,0.787234,0.040711,0.552812,0.003467,0.422915,0.414912,0
0.000044,3,0.808511,0.040711,0.51086,0.003467,0.422915,0.414912,0
0.000044,3,0.829787,0.040861,0.480065,0.003467,0.422915,0.414912,0
0.000044,3,0.851064,0.041041,0.452246,0.003467,0.422915,0.414912,0
0.000044,3,0.87234,0.041041,0.431568,0.003467,0.422915,0.414912,0
0.000044,3,0.893617,0.041041,0.3856,0.003467,0.422915,0.414912,0
0.000044,3,0.914894,0.041041,0.350342,0.003467,0.422915,0.414912,0
0.000044,3,0.93617,0.056443,0.409104,0.003467,0.422915,0.414912,1
0.000044,3,0.957447,0.055362,0.435138,0.003467,0.422915,0.414912,1
0.000044,3,0.978723,0.059235,0.456412,0.003467,0.422915,0.414912,1
0.000044,3,1,0.054642,0.449866,0.003467,0.422915,0.414912,1
0.000088,4,0,0.054642,0.44823,0.003467,0.422915,0.414912,1
0.000088,4,0.021277,0.054642,0.429485,0.003467,0.422915,0.414912,1
0.000088,4,0.042553,0.051489,0.399286,0.003467,0.422915,0.414912,1
0.000088,4,0.06383,0.041041,0.331449,0.003467,0.422915,0.414912,0
0.000088,4,0.085106,0.041041,0.271794,0.003467,0.422915,0.414912,0
0.000088,4,0.106383,0.041041,0.228206,0.003467,0.422915,0.414912,0
0.000088,4,0.12766,0.041041,0.183576,0.003467,0.422915,0.414912,0
0.000088,4,0.148936,0.041041,0.162452,0.003467,0.422915,0.414912,0
0.000088,4,0.170213,0.046956,0.151592,0.003467,0.422915,0.414912,1
0.000088,4,0.191489,0.046956,0.147724,0.003467,0.422915,0.414912,1
0.000088,4,0.212766,0.046956,0.174353,0.003467,0.422915,0.414912,1
0.000088,4,0.234043,0.047106,0.2169,0.003467,0.422915,0.414912,1
0.000088,4,0.255319,0.049868,0.307349,0.003467,0.422915,0.414912,1
0.000088,4,0.276596,0.047106,0.403451,0.003467,0.422915,0.414912,1
0.000088,4,0.297872,0.046956,0.407766,0.003467,0.422915,0.414912,1
0.000088,4,0.319149,0.041161,0.465486,0.003467,0.422915,0.414912,0
0.000088,4,0.340426,0.040711,0.490777,0.003467,0.422915,0.414912,0
0.000088,4,0.361702,0.041161,0.493603,0.003467,0.422915,0.414912,0
0.000088,4,0.382979,0.045515,0.519786,0.003467,0.422915,0.414912,1
0.000088,4,0.404255,0.046956,0.531836,0.003467,0.422915,0.414912,1
0.000088,4,0.425532,0.046956,0.520976,0.003467,0.422915,0.414912,1
0.000088,4,0.446809,0.047106,0.490925,0.003467,0.422915,0.414912,1
0.000088,4,0.468085,0.047106,0.49762,0.003467,0.422915,0.414912,1
0.000088,4,0.489362,0.047106,0.490479,0.003467,0.422915,0.414912,1
0.000088,4,0.510638,0.047106,0.482892,0.003467,0.422915,0.414912,1
0.000088,4,0.531915,0.047436,0.475751,0.003467,0.422915,0.414912,1
0.000088,4,0.553191,0.047436,0.474412,0.003467,0.422915,0.414912,1
0.000088,4,0.574468,0.047106,0.466825,0.003467,0.422915,0.414912,1
0.000088,4,0.595745,0.047106,0.458792,0.003467,0.422915,0.414912,1
0.000088,4,0.617021,0.047106,0.446742,0.003467,0.422915,0.414912,1
0.000088,4,0.638298,0.046956,0.439601,0.003467,0.422915,0.414912,1
0.000088,4,0.659574,0.046956,0.442428,0.003467,0.422915,0.414912,1
0.000088,4,0.680851,0.042482,0.450461,0.003467,0.422915,0.414912,0
0.000088,4,0.702128,0.042482,0.468015,0.003467,0.422915,0.414912,0
0.000088,4,0.723404,0.046956,0.510562,0.003467,0.422915,0.414912,1
0.000088,4,0.744681,0.046956,0.592086,0.003467,0.422915,0.414912,1
0.000088,4,0.765957,0.046956,0.584796,0.003467,0.422915,0.414912,1
0.000088,4,0.787234,0.042482,0.558018,0.003467,0.422915,0.414912,0
0.000088,4,0.808511,0.040711,0.52053,0.003467,0.422915,0.414912,0
0.000088,4,0.829787,0.040711,0.493454,0.003467,0.422915,0.414912,0
0.000088,4,0.851064,0.042482,0.473817,0.003467,0.422915,0.414912,0
0.000088,4,0.87234,0.041882,0.453585,0.003467,0.422915,0.414912,0
0.000088,4,0.893617,0.046956,0.407468,0.003467,0.422915,0.414912,1
0.000088,4,0.914894,0.046956,0.371169,0.003467,0.422915,0.414912,1
0.000088,4,0.93617,0.056443,0.422345,0.003467,0.422915,0.414912,1
0.000088,4,0.957447,0.051699,0.442577,0.003467,0.422915,0.414912,1
0.000088,4,0.978723,0.075868,0.46385,0.003467,0.422915,0.414912,1
0.000088,4,1,0.075267,0.462065,0.003467,0.422915,0.414912,1
0.000133,5,0,0.075868,0.459833,0.003467,0.422915,0.414912,1
0.000133,5,0.021277,0.075868,0.434543,0.003467,0.422915,0.414912,1
0.000133,5,0.042553,0.074517,0.395567,0.003467,0.422915,0.414912,1
0.000133,5,0.06383,0.075267,0.327879,0.003467,0.422915,0.414912,1
0.000133,5,0.085106,0.075868,0.273282,0.003467,0.422915,0.414912,1
0.000133,5,0.106383,0.074517,0.232223,0.003467,0.422915,0.414912,1
0.000133,5,0.12766,0.073976,0.187295,0.003467,0.422915,0.414912,1
0.000133,5,0.148936,0.073976,0.164237,0.003467,0.422915,0.414912,1
0.000133,5,0.170213,0.076948,0.154418,0.003467,0.422915,0.414912,1
0.000133,5,0.191489,0.074367,0.159625,0.003467,0.422915,0.414912,1
0.000133,5,0.212766,0.074367,0.182981,0.003467,0.422915,0.414912,1
0.000133,5,0.234043,0.076948,0.226867,0.003467,0.422915,0.414912,1
0.000133,5,0.255319,0.077999,0.314192,0.003467,0.422915,0.414912,1
0.000133,5,0.276596,0.077039,0.401517,0.003467,0.422915,0.414912,1
0.000133,5,0.297872,0.089798,0.405832,0.003467,0.422915,0.414912,1
0.000133,5,0.319149,0.089798,0.457751,0.003467,0.422915,0.414912,1
0.000133,5,0.340426,0.089798,0.496727,0.003467,0.422915,0.414912,1
0.000133,5,0.361702,0.089798,0.500595,0.003467,0.422915,0.414912,1
0.000133,5,0.382979,0.149664,0.542101,0.003467,0.422915,0.414912,1
0.000133,5,0.404255,0.089798,0.550878,0.003467,0.422915,0.414912,1
0.000133,5,0.425532,0.089798,0.535257,0.003467,0.422915,0.414912,1
0.000133,5,0.446809,0.089798,0.516662,0.003467,0.422915,0.414912,1
0.000133,5,0.468085,0.047676,0.50476,0.003467,0.422915,0.414912,0
0.000133,5,0.489362,0.146902,0.495537,0.003467,0.422915,0.414912,1
0.000133,5,0.510638,0.193287,0.485272,0.003467,0.422915,0.414912,1
0.000133,5,0.531915,0.193287,0.482594,0.003467,0.422915,0.414912,1
0.000133,5,0.553191,0.194548,0.473371,0.003467,0.422915,0.414912,1
0.000133,5,0.574468,0.193287,0.468164,0.003467,0.422915,0.414912,1
0.000133,5,0.595745,0.139636,0.461619,0.003467,0.422915,0.414912,1
0.000133,5,0.617021,0.149664,0.456709,0.003467,0.422915,0.414912,1
0.000133,5,0.638298,0.089798,0.439453,0.003467,0.422915,0.414912,1
0.000133,5,0.659574,0.089798,0.438411,0.003467,0.422915,0.414912,1
0.000133,5,0.680851,0.06626,0.441684,0.003467,0.422915,0.414912,0
0.000133,5,0.702128,0.089798,0.458792,0.003467,0.422915,0.414912,1
0.000133,5,0.723404,0.089798,0.499554,0.003467,0.422915,0.414912,1
0.000133,5,0.744681,0.077039,0.54939,0.003467,0.422915,0.414912,0
0.000133,5,0.765957,0.047586,0.53377,0.003467,0.422915,0.414912,0
0.000133,5,0.787234,0.076948,0.505504,0.003467,0.422915,0.414912,0
0.000133,5,0.808511,0.076948,0.458346,0.003467,0.422915,0.414912,0
0.000133,5,0.829787,0.074036,0.429485,0.003467,0.422915,0.414912,0
0.000133,5,0.851064,0.047586,0.399137,0.003467,0.422915,0.414912,0
0.000133,5,0.87234,0.047586,0.376525,0.003467,0.422915,0.414912,0
0.000133,5,0.893617,0.072835,0.352127,0.003467,0.422915,0.414912,0
0.000133,5,0.914894,0.047586,0.309283,0.003467,0.422915,0.414912,0
0.000133,5,0.93617,0.072835,0.381434,0.003467,0.422915,0.414912,0
0.000133,5,0.957447,0.074367,0.408956,0.003467,0.422915,0.414912,0
0.000133,5,0.978723,0.093611,0.43856,0.003467,0.422915,0.414912,1
0.000133,5,1,0.149664,0.435436,0.003467,0.422915,0.414912,1
0.000177,6,0,0.076948,0.436924,0.003467,0.422915,0.414912,0
0.000177,6,0.021277,0.074336,0.407468,0.003467,0.422915,0.414912,0
0.000177,6,0.042553,0.077039,0.368343,0.003467,0.422915,0.414912,0
0.000177,6,0.06383,0.072835,0.304522,0.003467,0.422915,0.414912,0
0.000177,6,0.085106,0.071905,0.246355,0.003467,0.422915,0.414912,0
0.000177,6,0.106383,0.046956,0.196816,0.003467,0.422915,0.414912,0
0.000177,6,0.12766,0.046956,0.152633,0.003467,0.422915,0.414912,0
0.000177,6,0.148936,0.046806,0.127343,0.003467,0.422915,0.414912,0
0.000177,6,0.170213,0.046956,0.11083,0.003467,0.422915,0.414912,0
0.000177,6,0.191489,0.046956,0.101607,0.003467,0.422915,0.414912,0
0.000177,6,0.212766,0.046956,0.105326,0.003467,0.422915,0.414912,0
0.000177,6,0.234043,0.062417,0.120649,0.003467,0.422915,0.414912,0
0.000177,6,0.255319,0.062417,0.149807,0.003467,0.422915,0.414912,0
0.000177,6,0.276596,0.072145,0.176882,0.003467,0.422915,0.414912,0
0.000177,6,0.297872,0.047106,0.214073,0.003467,0.422915,0.414912,0
0.000177,6,0.319149,0.080581,0.286224,0.003467,0.422915,0.414912,0
0.000177,6,0.340426,0.072145,0.344243,0.003467,0.422915,0.414912,0
0.000177,6,0.361702,0.080581,0.385897,0.003467,0.422915,0.414912,0
0.000177,6,0.382979,0.080581,0.423535,0.003467,0.422915,0.414912,0
0.000177,6,0.404255,0.072745,0.428593,0.003467,0.422915,0.414912,0
0.000177,6,0.425532,0.047376,0.416989,0.003467,0.422915,0.414912,0
0.000177,6,0.446809,0.047256,0.403154,0.003467,0.422915,0.414912,0
0.000177,6,0.468085,0.072145,0.382624,0.003467,0.422915,0.414912,0
0.000177,6,0.489362,0.047256,0.371021,0.003467,0.422915,0.414912,0
0.000177,6,0.510638,0.072145,0.354508,0.003467,0.422915,0.414912,0
0.000177,6,0.531915,0.047256,0.337102,0.003467,0.422915,0.414912,0
0.000177,6,0.553191,0.047256,0.325796,0.003467,0.422915,0.414912,0
0.000177,6,0.574468,0.072145,0.313746,0.003467,0.422915,0.414912,0
0.000177,6,0.595745,0.047256,0.296489,0.003467,0.422915,0.414912,0
0.000177,6,0.617021,0.047256,0.287266,0.003467,0.422915,0.414912,0
0.000177,6,0.638298,0.072145,0.284588,0.003467,0.422915,0.414912,1
0.000177,6,0.659574,0.072745,0.287266,0.003467,0.422915,0.414912,1
0.000177,6,0.680851,0.080581,0.291431,0.003467,0.422915,0.414912,1
0.000177,6,0.702128,0.080581,0.318209,0.003467,0.422915,0.414912,1
0.000177,6,0.723404,0.072745,0.363136,0.003467,0.422915,0.414912,1
0.000177,6,0.744681,0.080581,0.44942,0.003467,0.422915,0.414912,1
0.000177,6,0.765957,0.072745,0.458048,0.003467,0.422915,0.414912,1
0.000177,6,0.787234,0.072145,0.428444,0.003467,0.422915,0.414912,1
0.000177,6,0.808511,0.047256,0.385302,0.003467,0.422915,0.414912,0
0.000177,6,0.829787,0.047256,0.351532,0.003467,0.422915,0.414912,0
0.000177,6,0.851064,0.047256,0.32535,0.003467,0.422915,0.414912,0
0.000177,6,0.87234,0.047256,0.309432,0.003467,0.422915,0.414912,0
0.000177,6,0.893617,0.047106,0.282059,0.003467,0.422915,0.414912,0
0.000177,6,0.914894,0.047106,0.259447,0.003467,0.422915,0.414912,0
0.000177,6,0.93617,0.072145,0.29753,0.003467,0.422915,0.414912,1
0.000177,6,0.957447,0.047106,0.31687,0.003467,0.422915,0.414912,0
0.000177,6,0.978723,0.047256,0.3374,0.003467,0.422915,0.414912,0
0.000177,6,1,0.047256,0.316572,0.003467,0.422915,0.414912,0
0.000221,7,0,0.047106,0.30244,0.003467,0.422915,0.414912,0
0.000221,7,0.021277,0.047106,0.259,0.003467,0.422915,0.414912,0
0.000221,7,0.042553,0.047106,0.234157,0.003467,0.422915,0.414912,0
0.000221,7,0.06383,0.047106,0.182089,0.003467,0.422915,0.414912,0
0.000221,7,0.085106,0.046956,0.140732,0.003467,0.422915,0.414912,0
0.000221,7,0.106383,0.062417,0.111425,0.003467,0.422915,0.414912,1
0.000221,7,0.12766,0.062417,0.087176,0.003467,0.422915,0.414912,1
0.000221,7,0.148936,0.062417,0.07349,0.003467,0.422915,0.414912,1
0.000221,7,0.170213,0.062417,0.058167,0.003467,0.422915,0.414912,1
0.000221,7,0.191489,0.062417,0.052812,0.003467,0.422915,0.414912,1
0.000221,7,0.212766,0.063889,0.064267,0.003467,0.422915,0.414912,1
0.000221,7,0.234043,0.062417,0.074383,0.003467,0.422915,0.414912,1
0.000221,7,0.255319,0.062417,0.090747,0.003467,0.422915,0.414912,1
0.000221,7,0.276596,0.046956,0.091937,0.003467,0.422915,0.414912,0
0.000221,7,0.297872,0.046956,0.127938,0.003467,0.422915,0.414912,0
0.000221,7,0.319149,0.047256,0.180452,0.003467,0.422915,0.414912,0
0.000221,7,0.340426,0.047256,0.230884,0.003467,0.422915,0.414912,0
0.000221,7,0.361702,0.047256,0.277298,0.003467,0.422915,0.414912,0
0.000221,7,0.382979,0.047376,0.327581,0.003467,0.422915,0.414912,0
0.000221,7,0.404255,0.047376,0.351235,0.003467,0.422915,0.414912,0
0.000221,7,0.425532,0.047256,0.355251,0.003467,0.422915,0.414912,0
0.000221,7,0.446809,0.047256,0.345582,0.003467,0.422915,0.414912,0
0.000221,7,0.468085,0.071694,0.337251,0.003467,0.422915,0.414912,1
0.000221,7,0.489362,0.054131,0.323416,0.003467,0.422915,0.414912,0
0.000221,7,0.510638,0.071694,0.308242,0.003467,0.422915,0.414912,1
0.000221,7,0.531915,0.069383,0.281018,0.003467,0.422915,0.414912,1
0.000221,7,0.553191,0.047256,0.263612,0.003467,0.422915,0.414912,0
0.000221,7,0.574468,0.047256,0.244868,0.003467,0.422915,0.414912,0
0.000221,7,0.595745,0.047256,0.235049,0.003467,0.422915,0.414912,0
0.000221,7,0.617021,0.047106,0.231479,0.003467,0.422915,0.414912,0
0.000221,7,0.638298,0.047256,0.23252,0.003467,0.422915,0.414912,0
0.000221,7,0.659574,0.047106,0.240405,0.003467,0.422915,0.414912,0
0.000221,7,0.680851,0.047256,0.240702,0.003467,0.422915,0.414912,0
0.000221,7,0.702128,0.047256,0.263761,0.003467,0.422915,0.414912,0
0.000221,7,0.723404,0.047286,0.311068,0.003467,0.422915,0.414912,0
0.000221,7,0.744681,0.047436,0.387682,0.003467,0.422915,0.414912,0
0.000221,7,0.765957,0.069383,0.403898,0.003467,0.422915,0.414912,1
0.000221,7,0.787234,0.047376,0.383071,0.003467,0.422915,0.414912,0
0.000221,7,0.808511,0.047256,0.366706,0.003467,0.422915,0.414912,0
0.000221,7,0.829787,0.047256,0.346772,0.003467,0.422915,0.414912,0
0.000221,7,0.851064,0.047256,0.328771,0.003467,0.422915,0.414912,0
0.000221,7,0.87234,0.047106,0.311068,0.003467,0.422915,0.414912,0
0.000221,7,0.893617,0.047106,0.280571,0.003467,0.422915,0.414912,0
0.000221,7,0.914894,0.047106,0.252455,0.003467,0.422915,0.414912,0
0.000221,7,0.93617,0.047106,0.287414,0.003467,0.422915,0.414912,0
0.000221,7,0.957447,0.047256,0.298869,0.003467,0.422915,0.414912,0
0.000221,7,0.978723,0.047256,0.316424,0.003467,0.422915,0.414912,0
0.000221,7,1,0.047106,0.293663,0.003467,0.422915,0.414912,0
0.000265,1,0,0.047106,0.282654,0.003467,0.422915,0.414912,0
0.000265,1,0.021277,0.047106,0.247694,0.003467,0.422915,0.414912,0
0.000265,1,0.042553,0.047106,0.233859,0.003467,0.422915,0.414912,0
0.000265,1,0.06383,0.046956,0.185808,0.003467,0.422915,0.414912,0
0.000265,1,0.085106,0.046956,0.154865,0.003467,0.422915,0.414912,0
0.000265,1,0.106383,0.046956,0.127789,0.003467,0.422915,0.414912,0
0.000265,1,0.12766,0.046956,0.112169,0.003467,0.422915,0.414912,0
0.000265,1,0.148936,0.046806,0.101309,0.003467,0.422915,0.414912,0
0.000265,1,0.170213,0.046806,0.10235,0.003467,0.422915,0.414912,0
0.000265,1,0.191489,0.046806,0.110533,0.003467,0.422915,0.414912,0
0.000265,1,0.212766,0.046806,0.143112,0.003467,0.422915,0.414912,0
0.000265,1,0.234043,0.047256,0.187742,0.003467,0.422915,0.414912,0
0.000265,1,0.255319,0.047256,0.27953,0.003467,0.422915,0.414912,0
0.000265,1,0.276596,0.047106,0.367599,0.003467,0.422915,0.414912,0
0.000265,1,0.297872,0.10475,0.375483,0.003467,0.422915,0.414912,1
0.000265,1,0.319149,0.10475,0.435882,0.003467,0.422915,0.414912,1
0.000265,1,0.340426,0.155878,0.465338,0.003467,0.422915,0.414912,1
0.000265,1,0.361702,0.153206,0.469652,0.003467,0.422915,0.414912,1
0.000265,1,0.382979,0.10475,0.512348,0.003467,0.422915,0.414912,1
0.000265,1,0.404255,0.10475,0.529753,0.003467,0.422915,0.414912,1
0.000265,1,0.425532,0.10475,0.519042,0.003467,0.422915,0.414912,1
0.000265,1,0.446809,0.074817,0.498959,0.003467,0.422915,0.414912,1
0.000265,1,0.468085,0.10475,0.495091,0.003467,0.422915,0.414912,1
0.000265,1,0.489362,0.10475,0.492711,0.003467,0.422915,0.414912,1
0.000265,1,0.510638,0.13105,0.488545,0.003467,0.422915,0.414912,1
0.000265,1,0.531915,0.10475,0.476346,0.003467,0.422915,0.414912,1
0.000265,1,0.553191,0.10475,0.478578,0.003467,0.422915,0.414912,1
0.000265,1,0.574468,0.13105,0.478429,0.003467,0.422915,0.414912,1
0.000265,1,0.595745,0.13105,0.473222,0.003467,0.422915,0.414912,1
0.000265,1,0.617021,0.13105,0.467718,0.003467,0.422915,0.414912,1
0.000265,1,0.638298,0.13105,0.457007,0.003467,0.422915,0.414912,1
0.000265,1,0.659574,0.13105,0.472925,0.003467,0.422915,0.414912,1
0.000265,1,0.680851,0.179596,0.489289,0.003467,0.422915,0.414912,1
0.000265,1,0.702128,0.179596,0.53734,0.003467,0.422915,0.414912,1
0.000265,1,0.723404,0.209229,0.591639,0.003467,0.422915,0.414912,1
0.000265,1,0.744681,0.194548,0.651592,0.003467,0.422915,0.414912,1
0.000265,1,0.765957,0.193287,0.629575,0.003467,0.422915,0.414912,1
0.000265,1,0.787234,0.179596,0.597292,0.003467,0.422915,0.414912,1
0.000265,1,0.808511,0.179596,0.558316,0.003467,0.422915,0.414912,1
0.000265,1,0.829787,0.13105,0.526034,0.003467,0.422915,0.414912,1
0.000265,1,0.851064,0.155878,0.497025,0.003467,0.422915,0.414912,1
0.000265,1,0.87234,0.10475,0.471883,0.003467,0.422915,0.414912,1
0.000265,1,0.893617,0.109283,0.427998,0.003467,0.422915,0.414912,1
0.000265,1,0.914894,0.10475,0.3795,0.003467,0.422915,0.414912,1
0.000265,1,0.93617,0.088327,0.425022,0.003467,0.422915,0.414912,0
0.000265,1,0.957447,0.088327,0.448825,0.003467,0.422915,0.414912,0
0.000265,1,0.978723,0.109283,0.468462,0.003467,0.422915,0.414912,1
0.000265,1,1,0.077039,0.46385,0.003467,0.422915,0.414912,0
0.00031,2,0,0.077039,0.459685,0.003467,0.422915,0.414912,0
0.00031,2,0.021277,0.088327,0.438857,0.003467,0.422915,0.414912,0
0.00031,2,0.042553,0.047256,0.409551,0.003467,0.422915,0.414912,0
0.00031,2,0.06383,0.047106,0.341416,0.003467,0.422915,0.414912,0
0.00031,2,0.085106,0.047106,0.279232,0.003467,0.422915,0.414912,0
0.00031,2,0.106383,0.046956,0.236686,0.003467,0.422915,0.414912,0
0.00031,2,0.12766,0.046956,0.193692,0.003467,0.422915,0.414912,0
0.00031,2,0.148936,0.062417,0.167361,0.003467,0.422915,0.414912,0
0.00031,2,0.170213,0.077999,0.157542,0.003467,0.422915,0.414912,0
0.00031,2,0.191489,0.077999,0.158137,0.003467,0.422915,0.414912,0
0.00031,2,0.212766,0.077999,0.186105,0.003467,0.422915,0.414912,0
0.00031,2,0.234043,0.083794,0.233115,0.003467,0.422915,0.414912,0
0.00031,2,0.255319,0.085415,0.323862,0.003467,0.422915,0.414912,0
0.00031,2,0.276596,0.162093,0.436626,0.003467,0.422915,0.414912,1
0.00031,2,0.297872,0.162093,0.447188,0.003467,0.422915,0.414912,1
0.00031,2,0.319149,0.179596,0.505802,0.003467,0.422915,0.414912,1
0.00031,2,0.340426,0.179596,0.528265,0.003467,0.422915,0.414912,1
0.00031,2,0.361702,0.179596,0.523654,0.003467,0.422915,0.414912,1
0.00031,2,0.382979,0.179596,0.558762,0.003467,0.422915,0.414912,1
0.00031,2,0.404255,0.179596,0.5723,0.003467,0.422915,0.414912,1
0.00031,2,0.425532,0.162093,0.553704,0.003467,0.422915,0.414912,1
0.00031,2,0.446809,0.10475,0.533621,0.003467,0.422915,0.414912,0
0.00031,2,0.468085,0.162093,0.516513,0.003467,0.422915,0.414912,1
0.00031,2,0.489362,0.143389,0.509223,0.003467,0.422915,0.414912,1
0.00031,2,0.510638,0.13105,0.497173,0.003467,0.422915,0.414912,1
0.00031,2,0.531915,0.143389,0.499851,0.003467,0.422915,0.414912,1
0.00031,2,0.553191,0.143389,0.502083,0.003467,0.422915,0.414912,1
0.00031,2,0.574468,0.143389,0.491372,0.003467,0.422915,0.414912,1
0.00031,2,0.595745,0.143389,0.479768,0.003467,0.422915,0.414912,1
0.00031,2,0.617021,0.13105,0.47471,0.003467,0.422915,0.414912,1
0.00031,2,0.638298,0.13105,0.468015,0.003467,0.422915,0.414912,1
0.00031,2,0.659574,0.13105,0.484826,0.003467,0.422915,0.414912,1
0.00031,2,0.680851,0.162093,0.498959,0.003467,0.422915,0.414912,1
0.00031,2,0.702128,0.179596,0.540762,0.003467,0.422915,0.414912,1
0.00031,2,0.723404,0.194548,0.612169,0.003467,0.422915,0.414912,1
0.00031,2,0.744681,0.194548,0.678667,0.003467,0.422915,0.414912,1
0.00031,2,0.765957,0.194548,0.665873,0.003467,0.422915,0.414912,1
0.00031,2,0.787234,0.188904,0.635228,0.003467,0.422915,0.414912,1
0.00031,2,0.808511,0.179596,0.585242,0.003467,0.422915,0.414912,1
0.00031,2,0.829787,0.179596,0.562035,0.003467,0.422915,0.414912,1
0.00031,2,0.851064,0.143389,0.535852,0.003467,0.422915,0.414912,1
0.00031,2,0.87234,0.121713,0.508033,0.003467,0.422915,0.414912,0
0.00031,2,0.893617,0.10475,0.463106,0.003467,0.422915,0.414912,0
0.00031,2,0.914894,0.10475,0.422047,0.003467,0.422915,0.414912,0
0.00031,2,0.93617,0.13105,0.458941,0.003467,0.422915,0.414912,1
0.00031,2,0.957447,0.121713,0.470098,0.003467,0.422915,0.414912,0
0.00031,2,0.978723,0.090759,0.488396,0.003467,0.422915,0.414912,0
0.00031,2,1,0.121713,0.480661,0.003467,0.422915,0.414912,0
0.000354,3,0,0.121713,0.486314,0.003467,0.422915,0.414912,0
0.000354,3,0.021277,0.121713,0.459387,0.003467,0.422915,0.414912,0
0.000354,3,0.042553,0.085415,0.431419,0.003467,0.422915,0.414912,0
0.000354,3,0.06383,0.083794,0.363582,0.003467,0.422915,0.414912,0
0.000354,3,0.085106,0.083794,0.311068,0.003467,0.422915,0.414912,0
0.000354,3,0.106383,0.080581,0.258554,0.003467,0.422915,0.414912,0
0.000354,3,0.12766,0.077999,0.217197,0.003467,0.422915,0.414912,0
0.000354,3,0.148936,0.077999,0.186998,0.003467,0.422915,0.414912,0
0.000354,3,0.170213,0.062417,0.175245,0.003467,0.422915,0.414912,0
0.000354,3,0.191489,0.062417,0.173312,0.003467,0.422915,0.414912,0
0.000354,3,0.212766,0.077999,0.202321,0.003467,0.422915,0.414912,0
0.000354,3,0.234043,0.077999,0.243529,0.003467,0.422915,0.414912,0
0.000354,3,0.255319,0.121713,0.345284,0.003467,0.422915,0.414912,0
0.000354,3,0.276596,0.140267,0.451503,0.003467,0.422915,0.414912,1
0.000354,3,0.297872,0.162093,0.461321,0.003467,0.422915,0.414912,1
0.000354,3,0.319149,0.193287,0.525588,0.003467,0.422915,0.414912,1
0.000354,3,0.340426,0.179596,0.544183,0.003467,0.422915,0.414912,1
0.000354,3,0.361702,0.162093,0.533323,0.003467,0.422915,0.414912,1
0.000354,3,0.382979,0.140267,0.563672,0.003467,0.422915,0.414912,1
0.000354,3,0.404255,0.119731,0.567986,0.003467,0.422915,0.414912,0
0.000354,3,0.425532,0.119731,0.551175,0.003467,0.422915,0.414912,0
0.000354,3,0.446809,0.119731,0.529902,0.003467,0.422915,0.414912,0
0.000354,3,0.468085,0.089798,0.518298,0.003467,0.422915,0.414912,0
0.000354,3,0.489362,0.119731,0.503422,0.003467,0.422915,0.414912,0
0.000354,3,0.510638,0.119731,0.492264,0.003467,0.422915,0.414912,0
0.000354,3,0.531915,0.089798,0.481702,0.003467,0.422915,0.414912,0
0.000354,3,0.553191,0.089798,0.472925,0.003467,0.422915,0.414912,0
0.000354,3,0.574468,0.089798,0.468908,0.003467,0.422915,0.414912,0
0.000354,3,0.595745,0.089798,0.456412,0.003467,0.422915,0.414912,0
0.000354,3,0.617021,0.089798,0.441238,0.003467,0.422915,0.414912,0
0.000354,3,0.638298,0.089798,0.43499,0.003467,0.422915,0.414912,0
0.000354,3,0.659574,0.045214,0.450164,0.003467,0.422915,0.414912,0
0.000354,3,0.680851,0.089798,0.463106,0.003467,0.422915,0.414912,0
0.000354,3,0.702128,0.119731,0.500149,0.003467,0.422915,0.414912,1
0.000354,3,0.723404,0.203525,0.570217,0.003467,0.422915,0.414912,1
0.000354,3,0.744681,0.203525,0.645492,0.003467,0.422915,0.414912,1
0.000354,3,0.765957,0.203525,0.632699,0.003467,0.422915,0.414912,1
0.000354,3,0.787234,0.193287,0.604582,0.003467,0.422915,0.414912,1
0.000354,3,0.808511,0.162093,0.565605,0.003467,0.422915,0.414912,1
0.000354,3,0.829787,0.140267,0.540315,0.003467,0.422915,0.414912,1
0.000354,3,0.851064,0.119731,0.519786,0.003467,0.422915,0.414912,1
0.000354,3,0.87234,0.119731,0.488694,0.003467,0.422915,0.414912,1
0.000354,3,0.893617,0.119731,0.44823,0.003467,0.422915,0.414912,1
0.000354,3,0.914894,0.119731,0.399732,0.003467,0.422915,0.414912,1
0.000354,3,0.93617,0.140267,0.448825,0.003467,0.422915,0.414912,1
0.000354,3,0.957447,0.13105,0.464296,0.003467,0.422915,0.414912,1
0.000354,3,0.978723,0.134622,0.487652,0.003467,0.422915,0.414912,1
0.000354,3,1,0.121713,0.488545,0.003467,0.422915,0.414912,1
0.000398,4,0,0.140267,0.49033,0.003467,0.422915,0.414912,1
0.000398,4,0.021277,0.121713,0.463999,0.003467,0.422915,0.414912,1
0.000398,4,0.042553,0.111024,0.428741,0.003467,0.422915,0.414912,0
0.000398,4,0.06383,0.090759,0.366855,0.003467,0.422915,0.414912,0
0.000398,4,0.085106,0.077999,0.307349,0.003467,0.422915,0.414912,0
0.000398,4,0.106383,0.077999,0.261232,0.003467,0.422915,0.414912,0
0.000398,4,0.12766,0.062417,0.215115,0.003467,0.422915,0.414912,0
0.000398,4,0.148936,0.077999,0.186254,0.003467,0.422915,0.414912,0
0.000398,4,0.170213,0.074877,0.170336,0.003467,0.422915,0.414912,0
0.000398,4,0.191489,0.074877,0.171526,0.003467,0.422915,0.414912,0
0.000398,4,0.212766,0.081122,0.199494,0.003467,0.422915,0.414912,0
0.000398,4,0.234043,0.081122,0.241595,0.003467,0.422915,0.414912,0
0.000398,4,0.255319,0.114057,0.338143,0.003467,0.422915,0.414912,0
0.000398,4,0.276596,0.13105,0.44332,0.003467,0.422915,0.414912,1
0.000398,4,0.297872,0.13105,0.45537,0.003467,0.422915,0.414912,1
0.000398,4,0.319149,0.149634,0.524695,0.003467,0.422915,0.414912,1
0.000398,4,0.340426,0.149634,0.543737,0.003467,0.422915,0.414912,1
0.000398,4,0.361702,0.13105,0.536894,0.003467,0.422915,0.414912,1
0.000398,4,0.382979,0.110724,0.57706,0.003467,0.422915,0.414912,0
0.000398,4,0.404255,0.110724,0.586581,0.003467,0.422915,0.414912,0
0.000398,4,0.425532,0.107752,0.571407,0.003467,0.422915,0.414912,0
0.000398,4,0.446809,0.107752,0.552812,0.003467,0.422915,0.414912,0
0.000398,4,0.468085,0.107752,0.537043,0.003467,0.422915,0.414912,0
0.000398,4,0.489362,0.074817,0.530646,0.003467,0.422915,0.414912,0
0.000398,4,0.510638,0.074817,0.523951,0.003467,0.422915,0.414912,0
0.000398,4,0.531915,0.074817,0.514579,0.003467,0.422915,0.414912,0
0.000398,4,0.553191,0.074817,0.500149,0.003467,0.422915,0.414912,0
0.000398,4,0.574468,0.107752,0.502678,0.003467,0.422915,0.414912,0
0.000398,4,0.595745,0.074817,0.495537,0.003467,0.422915,0.414912,0
0.000398,4,0.617021,0.074817,0.488545,0.003467,0.422915,0.414912,0
0.000398,4,0.638298,0.107752,0.48557,0.003467,0.422915,0.414912,0
0.000398,4,0.659574,0.107752,0.496578,0.003467,0.422915,0.414912,0
0.000398,4,0.680851,0.107752,0.517852,0.003467,0.422915,0.414912,0
0.000398,4,0.702128,0.121713,0.557126,0.003467,0.422915,0.414912,1
0.000398,4,0.723404,0.149664,0.616483,0.003467,0.422915,0.414912,1
0.000398,4,0.744681,0.149664,0.678667,0.003467,0.422915,0.414912,1
0.000398,4,0.765957,0.149664,0.670485,0.003467,0.422915,0.414912,1
0.000398,4,0.787234,0.149664,0.646534,0.003467,0.422915,0.414912,1
0.000398,4,0.808511,0.149664,0.608599,0.003467,0.422915,0.414912,1
0.000398,4,0.829787,0.134622,0.578697,0.003467,0.422915,0.414912,1
0.000398,4,0.851064,0.121713,0.560399,0.003467,0.422915,0.414912,1
0.000398,4,0.87234,0.110724,0.528265,0.003467,0.422915,0.414912,0
0.000398,4,0.893617,0.107752,0.475602,0.003467,0.422915,0.414912,0
0.000398,4,0.914894,0.107752,0.430527,0.003467,0.422915,0.414912,0
0.000398,4,0.93617,0.121713,0.477388,0.003467,0.422915,0.414912,1
0.000398,4,0.957447,0.13093,0.49033,0.003467,0.422915,0.414912,1
0.000398,4,0.978723,0.13093,0.500446,0.003467,0.422915,0.414912,1
0.000398,4,1,0.13093,0.489586,0.003467,0.422915,0.414912,1
0.000442,5,0,0.13093,0.485421,0.003467,0.422915,0.414912,1
0.000442,5,0.021277,0.121713,0.461619,0.003467,0.422915,0.414912,1
0.000442,5,0.042553,0.111024,0.433948,0.003467,0.422915,0.414912,1
0.000442,5,0.06383,0.090759,0.364177,0.003467,0.422915,0.414912,0
0.000442,5,0.085106,0.081122,0.308688,0.003467,0.422915,0.414912,0
0.000442,5,0.106383,0.081122,0.262571,0.003467,0.422915,0.414912,0
0.000442,5,0.12766,0.081122,0.217197,0.003467,0.422915,0.414912,0
0.000442,5,0.148936,0.081122,0.190866,0.003467,0.422915,0.414912,0
0.000442,5,0.170213,0.081122,0.176138,0.003467,0.422915,0.414912,0
0.000442,5,0.191489,0.081122,0.175245,0.003467,0.422915,0.414912,0
0.000442,5,0.212766,0.081122,0.203511,0.003467,0.422915,0.414912,0
0.000442,5,0.234043,0.121713,0.246504,0.003467,0.422915,0.414912,1
0.000442,5,0.255319,0.134622,0.339334,0.003467,0.422915,0.414912,1
0.000442,5,0.276596,0.14447,0.444511,0.003467,0.422915,0.414912,1
0.000442,5,0.297872,0.044134,0.459833,0.003467,0.422915,0.414912,0
0.000442,5,0.319149,0.07926,0.526778,0.003467,0.422915,0.414912,0
0.000442,5,0.340426,0.13105,0.546712,0.003467,0.422915,0.414912,1
0.000442,5,0.361702,0.13096,0.543886,0.003467,0.422915,0.414912,1
0.000442,5,0.382979,0.178095,0.576317,0.003467,0.422915,0.414912,1
0.000442,5,0.404255,0.168338,0.582565,0.003467,0.422915,0.414912,1
0.000442,5,0.425532,0.168338,0.564713,0.003467,0.422915,0.414912,1
0.000442,5,0.446809,0.149634,0.545076,0.003467,0.422915,0.414912,1
0.000442,5,0.468085,0.149634,0.530943,0.003467,0.422915,0.414912,1
0.000442,5,0.489362,0.149634,0.529009,0.003467,0.422915,0.414912,1
0.000442,5,0.510638,0.146391,0.519786,0.003467,0.422915,0.414912,1
0.000442,5,0.531915,0.13105,0.510562,0.003467,0.422915,0.414912,1
0.000442,5,0.553191,0.13093,0.492859,0.003467,0.422915,0.414912,1
0.000442,5,0.574468,0.13105,0.481851,0.003467,0.422915,0.414912,1
0.000442,5,0.595745,0.045214,0.469057,0.003467,0.422915,0.414912,0
0.000442,5,0.617021,0.13105,0.457751,0.003467,0.422915,0.414912,1
0.000442,5,0.638298,0.13105,0.451651,0.003467,0.422915,0.414912,1
0.000442,5,0.659574,0.149634,0.459982,0.003467,0.422915,0.414912,1
0.000442,5,0.680851,0.168338,0.472776,0.003467,0.422915,0.414912,1
0.000442,5,0.702128,0.168338,0.511009,0.003467,0.422915,0.414912,1
0.000442,5,0.723404,0.134622,0.567242,0.003467,0.422915,0.414912,1
0.000442,5,0.744681,0.092951,0.619756,0.003467,0.422915,0.414912,0
0.000442,5,0.765957,0.149634,0.592086,0.003467,0.422915,0.414912,1
0.000442,5,0.787234,0.13093,0.573341,0.003467,0.422915,0.414912,1
0.000442,5,0.808511,0.121713,0.528414,0.003467,0.422915,0.414912,0
0.000442,5,0.829787,0.045214,0.504017,0.003467,0.422915,0.414912,0
0.000442,5,0.851064,0.11874,0.480363,0.003467,0.422915,0.414912,0
0.000442,5,0.87234,0.076498,0.464743,0.003467,0.422915,0.414912,0
0.000442,5,0.893617,0.044134,0.423535,0.003467,0.422915,0.414912,0
0.000442,5,0.914894,0.076498,0.378608,0.003467,0.422915,0.414912,0
0.000442,5,0.93617,0.129248,0.43618,0.003467,0.422915,0.414912,1
0.000442,5,0.957447,0.090759,0.464445,0.003467,0.422915,0.414912,0
0.000442,5,0.978723,0.13093,0.489735,0.003467,0.422915,0.414912,1
0.000442,5,1,0.121713,0.484231,0.003467,0.422915,0.414912,1
0.000487,6,0,0.076498,0.478727,0.003467,0.422915,0.414912,0
0.000487,6,0.021277,0.044224,0.447337,0.003467,0.422915,0.414912,0
0.000487,6,0.042553,0.044073,0.412824,0.003467,0.422915,0.414912,0
0.000487,6,0.06383,0.045214,0.339929,0.003467,0.422915,0.414912,0
0.000487,6,0.085106,0.044104,0.280571,0.003467,0.422915,0.414912,0
0.000487,6,0.106383,0.045214,0.227611,0.003467,0.422915,0.414912,0
0.000487,6,0.12766,0.074877,0.185808,0.003467,0.422915,0.414912,0
0.000487,6,0.148936,0.074877,0.153377,0.003467,0.422915,0.414912,0
0.000487,6,0.170213,0.044104,0.132996,0.003467,0.422915,0.414912,0
0.000487,6,0.191489,0.067311,0.123326,0.003467,0.422915,0.414912,0
0.000487,6,0.212766,0.068302,0.126897,0.003467,0.422915,0.414912,0
0.000487,6,0.234043,0.068302,0.141922,0.003467,0.422915,0.414912,0
0.000487,6,0.255319,0.068302,0.171526,0.003467,0.422915,0.414912,0
0.000487,6,0.276596,0.07932,0.209461,0.003467,0.422915,0.414912,0
0.000487,6,0.297872,0.084364,0.254389,0.003467,0.422915,0.414912,0
0.000487,6,0.319149,0.084364,0.328176,0.003467,0.422915,0.414912,0
0.000487,6,0.340426,0.084364,0.394674,0.003467,0.422915,0.414912,0
0.000487,6,0.361702,0.102978,0.431866,0.003467,0.422915,0.414912,0
0.000487,6,0.382979,0.119731,0.468164,0.003467,0.422915,0.414912,1
0.000487,6,0.404255,0.119731,0.468164,0.003467,0.422915,0.414912,1
0.000487,6,0.425532,0.119731,0.453288,0.003467,0.422915,0.414912,1
0.000487,6,0.446809,0.117029,0.435733,0.003467,0.422915,0.414912,1
0.000487,6,0.468085,0.084544,0.420857,0.003467,0.422915,0.414912,0
0.000487,6,0.489362,0.084364,0.405088,0.003467,0.422915,0.414912,0
0.000487,6,0.510638,0.084364,0.395716,0.003467,0.422915,0.414912,0
0.000487,6,0.531915,0.07932,0.379649,0.003467,0.422915,0.414912,0
0.000487,6,0.553191,0.07932,0.368045,0.003467,0.422915,0.414912,0
0.000487,6,0.574468,0.07932,0.355995,0.003467,0.422915,0.414912,0
0.000487,6,0.595745,0.07932,0.347813,0.003467,0.422915,0.414912,0
0.000487,6,0.617021,0.07932,0.336805,0.003467,0.422915,0.414912,0
0.000487,6,0.638298,0.07932,0.338292,0.003467,0.422915,0.414912,0
0.000487,6,0.659574,0.084364,0.344689,0.003467,0.422915,0.414912,0
0.000487,6,0.680851,0.085895,0.356442,0.003467,0.422915,0.414912,0
0.000487,6,0.702128,0.085895,0.405385,0.003467,0.422915,0.414912,0
0.000487,6,0.723404,0.07932,0.467272,0.003467,0.422915,0.414912,0
0.000487,6,0.744681,0.102258,0.536745,0.003467,0.422915,0.414912,1
0.000487,6,0.765957,0.108262,0.53734,0.003467,0.422915,0.414912,1
0.000487,6,0.787234,0.099045,0.507587,0.003467,0.422915,0.414912,1
0.000487,6,0.808511,0.099045,0.462362,0.003467,0.422915,0.414912,1
0.000487,6,0.829787,0.099045,0.424278,0.003467,0.422915,0.414912,1
0.000487,6,0.851064,0.084364,0.400922,0.003467,0.422915,0.414912,1
0.000487,6,0.87234,0.07932,0.378756,0.003467,0.422915,0.414912,0
0.000487,6,0.893617,0.076168,0.347367,0.003467,0.422915,0.414912,0
0.000487,6,0.914894,0.076168,0.316275,0.003467,0.422915,0.414912,0
0.000487,6,0.93617,0.07932,0.35302,0.003467,0.422915,0.414912,0
0.000487,6,0.957447,0.076168,0.365665,0.003467,0.422915,0.414912,0
0.000487,6,0.978723,0.068302,0.381137,0.003467,0.422915,0.414912,0
0.000487,6,1,0.045214,0.349003,0.003467,0.422915,0.414912,0
0.000531,7,0,0.044224,0.335019,0.003467,0.422915,0.414912,0
0.000531,7,0.021277,0.045214,0.290539,0.003467,0.422915,0.414912,0
0.000531,7,0.042553,0.044104,0.264207,0.003467,0.422915,0.414912,0
0.000531,7,0.06383,0.044104,0.211693,0.003467,0.422915,0.414912,0
0.000531,7,0.085106,0.044104,0.171378,0.003467,0.422915,0.414912,0
0.000531,7,0.106383,0.044104,0.1385,0.003467,0.422915,0.414912,0
0.000531,7,0.12766,0.044104,0.112764,0.003467,0.422915,0.414912,0
0.000531,7,0.148936,0.044104,0.090598,0.003467,0.422915,0.414912,0
0.000531,7,0.170213,0.06518,0.081077,0.003467,0.422915,0.414912,0
0.000531,7,0.191489,0.06518,0.073639,0.003467,0.422915,0.414912,0
0.000531,7,0.212766,0.067311,0.081523,0.003467,0.422915,0.414912,0
0.000531,7,0.234043,0.067311,0.089259,0.003467,0.422915,0.414912,0
0.000531,7,0.255319,0.067311,0.112318,0.003467,0.422915,0.414912,0
0.000531,7,0.276596,0.067311,0.131657,0.003467,0.422915,0.414912,0
0.000531,7,0.297872,0.068302,0.15427,0.003467,0.422915,0.414912,0
0.000531,7,0.319149,0.080731,0.207825,0.003467,0.422915,0.414912,1
0.000531,7,0.340426,0.080731,0.268224,0.003467,0.422915,0.414912,1
0.000531,7,0.361702,0.084064,0.315977,0.003467,0.422915,0.414912,1
0.000531,7,0.382979,0.084064,0.365814,0.003467,0.422915,0.414912,1
0.000531,7,0.404255,0.080731,0.387385,0.003467,0.422915,0.414912,1
0.000531,7,0.425532,0.083824,0.385748,0.003467,0.422915,0.414912,1
0.000531,7,0.446809,0.085895,0.370277,0.003467,0.422915,0.414912,1
0.000531,7,0.468085,0.085895,0.354061,0.003467,0.422915,0.414912,1
0.000531,7,0.489362,0.084064,0.33859,0.003467,0.422915,0.414912,1
0.000531,7,0.510638,0.084064,0.327135,0.003467,0.422915,0.414912,1
0.000531,7,0.531915,0.084064,0.311812,0.003467,0.422915,0.414912,1
0.000531,7,0.553191,0.080731,0.292621,0.003467,0.422915,0.414912,1
0.000531,7,0.574468,0.080731,0.275513,0.003467,0.422915,0.414912,1
0.000531,7,0.595745,0.080731,0.261976,0.003467,0.422915,0.414912,1
0.000531,7,0.617021,0.080731,0.249926,0.003467,0.422915,0.414912,1
0.000531,7,0.638298,0.080731,0.259149,0.003467,0.422915,0.414912,1
0.000531,7,0.659574,0.080731,0.26986,0.003467,0.422915,0.414912,1
0.000531,7,0.680851,0.080731,0.292621,0.003467,0.422915,0.414912,1
0.000531,7,0.702128,0.071664,0.349301,0.003467,0.422915,0.414912,0
0.000531,7,0.723404,0.108262,0.418328,0.003467,0.422915,0.414912,1
0.000531,7,0.744681,0.084064,0.491223,0.003467,0.422915,0.414912,1
0.000531,7,0.765957,0.080731,0.505951,0.003467,0.422915,0.414912,1
0.000531,7,0.787234,0.07932,0.478578,0.003467,0.422915,0.414912,1
0.000531,7,0.808511,0.045214,0.461024,0.003467,0.422915,0.414912,0
0.000531,7,0.829787,0.045214,0.431419,0.003467,0.422915,0.414912,0
0.000531,7,0.851064,0.068302,0.407022,0.003467,0.422915,0.414912,0
0.000531,7,0.87234,0.045214,0.389021,0.003467,0.422915,0.414912,0
0.000531,7,0.893617,0.045214,0.352574,0.003467,0.422915,0.414912,0
0.000531,7,0.914894,0.068302,0.313448,0.003467,0.422915,0.414912,0
0.000531,7,0.93617,0.068302,0.340821,0.003467,0.422915,0.414912,0
0.000531,7,0.957447,0.07932,0.352871,0.003467,0.422915,0.414912,1
0.000531,7,0.978723,0.068302,0.35778,0.003467,0.422915,0.414912,0
0.000531,7,1,0.044224,0.328622,0.003467,0.422915,0.414912,0
0.000575,1,0,0.044104,0.322821,0.003467,0.422915,0.414912,0
0.000575,1,0.021277,0.043983,0.287712,0.003467,0.422915,0.414912,0
0.000575,1,0.042553,0.043983,0.264058,0.003467,0.422915,0.414912,0
0.000575,1,0.06383,0.043983,0.225082,0.003467,0.422915,0.414912,0
0.000575,1,0.085106,0.043833,0.184915,0.003467,0.422915,0.414912,0
0.000575,1,0.106383,0.043833,0.153079,0.003467,0.422915,0.414912,0
0.000575,1,0.12766,0.043833,0.136715,0.003467,0.422915,0.414912,0
0.000575,1,0.148936,0.044104,0.119905,0.003467,0.422915,0.414912,0
0.000575,1,0.170213,0.043833,0.12288,0.003467,0.422915,0.414912,0
0.000575,1,0.191489,0.045515,0.126599,0.003467,0.422915,0.414912,0
0.000575,1,0.212766,0.045515,0.15784,0.003467,0.422915,0.414912,0
0.000575,1,0.234043,0.081122,0.207528,0.003467,0.422915,0.414912,1
0.000575,1,0.255319,0.088507,0.301993,0.003467,0.422915,0.414912,1
0.000575,1,0.276596,0.119731,0.407766,0.003467,0.422915,0.414912,1
0.000575,1,0.297872,0.045214,0.433204,0.003467,0.422915,0.414912,0
0.000575,1,0.319149,0.045515,0.496876,0.003467,0.422915,0.414912,0
0.000575,1,0.340426,0.119731,0.5241,0.003467,0.422915,0.414912,1
0.000575,1,0.361702,0.13105,0.523505,0.003467,0.422915,0.414912,1
0.000575,1,0.382979,0.137294,0.558762,0.003467,0.422915,0.414912,1
0.000575,1,0.404255,0.138675,0.572449,0.003467,0.422915,0.414912,1
0.000575,1,0.425532,0.162093,0.558465,0.003467,0.422915,0.414912,1
0.000575,1,0.446809,0.162093,0.533175,0.003467,0.422915,0.414912,1
0.000575,1,0.468085,0.162093,0.524249,0.003467,0.422915,0.414912,1
0.000575,1,0.489362,0.119731,0.517554,0.003467,0.422915,0.414912,1
0.000575,1,0.510638,0.119731,0.505802,0.003467,0.422915,0.414912,1
0.000575,1,0.531915,0.119731,0.494644,0.003467,0.422915,0.414912,1
0.000575,1,0.553191,0.119731,0.49762,0.003467,0.422915,0.414912,1
0.000575,1,0.574468,0.119731,0.487801,0.003467,0.422915,0.414912,1
0.000575,1,0.595745,0.094272,0.475454,0.003467,0.422915,0.414912,1
0.000575,1,0.617021,0.094272,0.46504,0.003467,0.422915,0.414912,1
0.000575,1,0.638298,0.119731,0.461619,0.003467,0.422915,0.414912,1
0.000575,1,0.659574,0.119731,0.469206,0.003467,0.422915,0.414912,1
0.000575,1,0.680851,0.121713,0.484528,0.003467,0.422915,0.414912,1
0.000575,1,0.702128,0.137294,0.52291,0.003467,0.422915,0.414912,1
0.000575,1,0.723404,0.119731,0.603987,0.003467,0.422915,0.414912,1
0.000575,1,0.744681,0.112526,0.677477,0.003467,0.422915,0.414912,1
0.000575,1,0.765957,0.119731,0.6626,0.003467,0.422915,0.414912,1
0.000575,1,0.787234,0.107001,0.627938,0.003467,0.422915,0.414912,1
0.000575,1,0.808511,0.094272,0.580482,0.003467,0.422915,0.414912,1
0.000575,1,0.829787,0.045515,0.562928,0.003467,0.422915,0.414912,0
0.000575,1,0.851064,0.094272,0.530497,0.003467,0.422915,0.414912,1
0.000575,1,0.87234,0.090759,0.50848,0.003467,0.422915,0.414912,1
0.000575,1,0.893617,0.045515,0.461619,0.003467,0.422915,0.414912,0
0.000575,1,0.914894,0.094272,0.41922,0.003467,0.422915,0.414912,1
0.000575,1,0.93617,0.134622,0.458792,0.003467,0.422915,0.414912,1
0.000575,1,0.957447,0.134622,0.463255,0.003467,0.422915,0.414912,1
0.000575,1,0.978723,0.121713,0.476049,0.003467,0.422915,0.414912,1
0.000575,1,1,0.121713,0.471288,0.003467,0.422915,0.414912,1
0.000619,2,0,0.121652,0.472032,0.003467,0.422915,0.414912,1
0.000619,2,0.021277,0.119731,0.456263,0.003467,0.422915,0.414912,1
0.000619,2,0.042553,0.094272,0.430675,0.003467,0.422915,0.414912,0
0.000619,2,0.06383,0.081122,0.371913,0.003467,0.422915,0.414912,0
0.000619,2,0.085106,0.045214,0.312109,0.003467,0.422915,0.414912,0
0.000619,2,0.106383,0.074877,0.261232,0.003467,0.422915,0.414912,0
0.000619,2,0.12766,0.074877,0.221065,0.003467,0.422915,0.414912,0
0.000619,2,0.148936,0.074877,0.185659,0.003467,0.422915,0.414912,0
0.000619,2,0.170213,0.081122,0.170485,0.003467,0.422915,0.414912,0
0.000619,2,0.191489,0.081122,0.165278,0.003467,0.422915,0.414912,0
0.000619,2,0.212766,0.087366,0.19637,0.003467,0.422915,0.414912,0
0.000619,2,0.234043,0.088387,0.246206,0.003467,0.422915,0.414912,0
0.000619,2,0.255319,0.129248,0.340524,0.003467,0.422915,0.414912,1
0.000619,2,0.276596,0.13105,0.448676,0.003467,0.422915,0.414912,1
0.000619,2,0.297872,0.044224,0.471586,0.003467,0.422915,0.414912,0
0.000619,2,0.319149,0.095773,0.541952,0.003467,0.422915,0.414912,0
0.000619,2,0.340426,0.095773,0.563523,0.003467,0.422915,0.414912,0
0.000619,2,0.361702,0.122703,0.555043,0.003467,0.422915,0.414912,1
0.000619,2,0.382979,0.128438,0.584499,0.003467,0.422915,0.414912,1
0.000619,2,0.404255,0.128438,0.59759,0.003467,0.422915,0.414912,1
0.000619,2,0.425532,0.122703,0.574978,0.003467,0.422915,0.414912,1
0.000619,2,0.446809,0.122703,0.546415,0.003467,0.422915,0.414912,1
0.000619,2,0.468085,0.122703,0.522612,0.003467,0.422915,0.414912,1
0.000619,2,0.489362,0.095773,0.521571,0.003467,0.422915,0.414912,0
0.000619,2,0.510638,0.122703,0.510265,0.003467,0.422915,0.414912,1
0.000619,2,0.531915,0.122703,0.500446,0.003467,0.422915,0.414912,1
0.000619,2,0.553191,0.128438,0.495983,0.003467,0.422915,0.414912,1
0.000619,2,0.574468,0.122703,0.490033,0.003467,0.422915,0.414912,1
0.000619,2,0.595745,0.098625,0.479768,0.003467,0.422915,0.414912,0
0.000619,2,0.617021,0.102558,0.467272,0.003467,0.422915,0.414912,0
0.000619,2,0.638298,0.122703,0.458792,0.003467,0.422915,0.414912,1
0.000619,2,0.659574,0.128438,0.476198,0.003467,0.422915,0.414912,1
0.000619,2,0.680851,0.13105,0.493306,0.003467,0.422915,0.414912,1
0.000619,2,0.702128,0.149634,0.523356,0.003467,0.422915,0.414912,1
0.000619,2,0.723404,0.149634,0.61202,0.003467,0.422915,0.414912,1
0.000619,2,0.744681,0.134652,0.6928,0.003467,0.422915,0.414912,1
0.000619,2,0.765957,0.128438,0.684023,0.003467,0.422915,0.414912,1
0.000619,2,0.787234,0.122703,0.651592,0.003467,0.422915,0.414912,1
0.000619,2,0.808511,0.10523,0.61202,0.003467,0.422915,0.414912,0
0.000619,2,0.829787,0.10523,0.583309,0.003467,0.422915,0.414912,0
0.000619,2,0.851064,0.122703,0.566498,0.003467,0.422915,0.414912,1
0.000619,2,0.87234,0.10523,0.541506,0.003467,0.422915,0.414912,0
0.000619,2,0.893617,0.095773,0.492413,0.003467,0.422915,0.414912,0
0.000619,2,0.914894,0.122703,0.440345,0.003467,0.422915,0.414912,1
0.000619,2,0.93617,0.13105,0.48319,0.003467,0.422915,0.414912,1
0.000619,2,0.957447,0.13105,0.489289,0.003467,0.422915,0.414912,1
0.000619,2,0.978723,0.13105,0.494942,0.003467,0.422915,0.414912,1
0.000619,2,1,0.122703,0.495091,0.003467,0.422915,0.414912,1
0.000664,3,0,0.122703,0.491074,0.003467,0.422915,0.414912,1
0.000664,3,0.021277,0.122703,0.4759,0.003467,0.422915,0.414912,1
0.000664,3,0.042553,0.095773,0.455817,0.003467,0.422915,0.414912,0
0.000664,3,0.06383,0.088387,0.394674,0.003467,0.422915,0.414912,0
0.000664,3,0.085106,0.044224,0.335019,0.003467,0.422915,0.414912,0
0.000664,3,0.106383,0.044224,0.291282,0.003467,0.422915,0.414912,0
0.000664,3,0.12766,0.044224,0.241595,0.003467,0.422915,0.414912,0
0.000664,3,0.148936,0.074877,0.212883,0.003467,0.422915,0.414912,0
0.000664,3,0.170213,0.074877,0.195329,0.003467,0.422915,0.414912,0
0.000664,3,0.191489,0.081122,0.190866,0.003467,0.422915,0.414912,0
0.000664,3,0.212766,0.081122,0.22285,0.003467,0.422915,0.414912,0
0.000664,3,0.234043,0.088387,0.276257,0.003467,0.422915,0.414912,0
0.000664,3,0.255319,0.124835,0.377417,0.003467,0.422915,0.414912,1
0.000664,3,0.276596,0.125706,0.493157,0.003467,0.422915,0.414912,1
0.000664,3,0.297872,0.044224,0.511455,0.003467,0.422915,0.414912,0
0.000664,3,0.319149,0.125706,0.590003,0.003467,0.422915,0.414912,1
0.000664,3,0.340426,0.125706,0.613359,0.003467,0.422915,0.414912,1
0.000664,3,0.361702,0.125706,0.594912,0.003467,0.422915,0.414912,1
0.000664,3,0.382979,0.190165,0.616632,0.003467,0.422915,0.414912,1
0.000664,3,0.404255,0.168338,0.624517,0.003467,0.422915,0.414912,1
0.000664,3,0.425532,0.143539,0.602648,0.003467,0.422915,0.414912,1
0.000664,3,0.446809,0.143539,0.571407,0.003467,0.422915,0.414912,1
0.000664,3,0.468085,0.124835,0.548646,0.003467,0.422915,0.414912,1
0.000664,3,0.489362,0.124835,0.538381,0.003467,0.422915,0.414912,1
0.000664,3,0.510638,0.124835,0.523654,0.003467,0.422915,0.414912,1
0.000664,3,0.531915,0.124835,0.507736,0.003467,0.422915,0.414912,1
0.000664,3,0.553191,0.124835,0.500744,0.003467,0.422915,0.414912,1
0.000664,3,0.574468,0.124835,0.489884,0.003467,0.422915,0.414912,1
0.000664,3,0.595745,0.098775,0.483487,0.003467,0.422915,0.414912,0
0.000664,3,0.617021,0.098775,0.476346,0.003467,0.422915,0.414912,0
0.000664,3,0.638298,0.124835,0.464148,0.003467,0.422915,0.414912,1
0.000664,3,0.659574,0.124835,0.476941,0.003467,0.422915,0.414912,1
0.000664,3,0.680851,0.125706,0.491818,0.003467,0.422915,0.414912,1
0.000664,3,0.702128,0.155878,0.535555,0.003467,0.422915,0.414912,1
0.000664,3,0.723404,0.155878,0.622434,0.003467,0.422915,0.414912,1
0.000664,3,0.744681,0.190165,0.703511,0.003467,0.422915,0.414912,1
0.000664,3,0.765957,0.125706,0.701726,0.003467,0.422915,0.414912,1
0.000664,3,0.787234,0.125706,0.674055,0.003467,0.422915,0.414912,1
0.000664,3,0.808511,0.125706,0.63731,0.003467,0.422915,0.414912,1
0.000664,3,0.829787,0.125706,0.60964,0.003467,0.422915,0.414912,1
0.000664,3,0.851064,0.155878,0.588515,0.003467,0.422915,0.414912,1
0.000664,3,0.87234,0.125706,0.56501,0.003467,0.422915,0.414912,1
0.000664,3,0.893617,0.124835,0.508628,0.003467,0.422915,0.414912,1
0.000664,3,0.914894,0.124835,0.455668,0.003467,0.422915,0.414912,1
0.000664,3,0.93617,0.128498,0.487057,0.003467,0.422915,0.414912,1
0.000664,3,0.957447,0.125706,0.495091,0.003467,0.422915,0.414912,1
0.000664,3,0.978723,0.125706,0.507289,0.003467,0.422915,0.414912,1
0.000664,3,1,0.125706,0.500893,0.003467,0.422915,0.414912,1
0.000708,4,0,0.125706,0.495091,0.003467,0.422915,0.414912,1
0.000708,4,0.021277,0.125706,0.476793,0.003467,0.422915,0.414912,1
0.000708,4,0.042553,0.106761,0.448676,0.003467,0.422915,0.414912,0
0.000708,4,0.06383,0.098775,0.386195,0.003467,0.422915,0.414912,0
0.000708,4,0.085106,0.081122,0.328771,0.003467,0.422915,0.414912,0
0.000708,4,0.106383,0.081122,0.282952,0.003467,0.422915,0.414912,0
0.000708,4,0.12766,0.081122,0.23371,0.003467,0.422915,0.414912,0
0.000708,4,0.148936,0.081122,0.195775,0.003467,0.422915,0.414912,0
0.000708,4,0.170213,0.044043,0.175989,0.003467,0.422915,0.414912,0
0.000708,4,0.191489,0.044043,0.178816,0.003467,0.422915,0.414912,0
0.000708,4,0.212766,0.044104,0.207081,0.003467,0.422915,0.414912,0
0.000708,4,0.234043,0.081122,0.256471,0.003467,0.422915,0.414912,0
0.000708,4,0.255319,0.119611,0.365665,0.003467,0.422915,0.414912,1
0.000708,4,0.276596,0.124204,0.475454,0.003467,0.422915,0.414912,1
0.000708,4,0.297872,0.044224,0.502678,0.003467,0.422915,0.414912,0
0.000708,4,0.319149,0.124204,0.567837,0.003467,0.422915,0.414912,1
0.000708,4,0.340426,0.124204,0.58078,0.003467,0.422915,0.414912,1
0.000708,4,0.361702,0.124204,0.564118,0.003467,0.422915,0.414912,1
0.000708,4,0.382979,0.124204,0.582267,0.003467,0.422915,0.414912,1
0.000708,4,0.404255,0.095773,0.586879,0.003467,0.422915,0.414912,0
0.000708,4,0.425532,0.095773,0.564713,0.003467,0.422915,0.414912,0
0.000708,4,0.446809,0.095773,0.531836,0.003467,0.422915,0.414912,0
0.000708,4,0.468085,0.095773,0.511604,0.003467,0.422915,0.414912,0
0.000708,4,0.489362,0.044224,0.500893,0.003467,0.422915,0.414912,0
0.000708,4,0.510638,0.044134,0.48914,0.003467,0.422915,0.414912,0
0.000708,4,0.531915,0.044134,0.471883,0.003467,0.422915,0.414912,0
0.000708,4,0.553191,0.044134,0.465338,0.003467,0.422915,0.414912,0
0.000708,4,0.574468,0.044104,0.461916,0.003467,0.422915,0.414912,0
0.000708,4,0.595745,0.044104,0.455668,0.003467,0.422915,0.414912,0
0.000708,4,0.617021,0.044104,0.445552,0.003467,0.422915,0.414912,0
0.000708,4,0.638298,0.044104,0.439899,0.003467,0.422915,0.414912,0
0.000708,4,0.659574,0.044104,0.451949,0.003467,0.422915,0.414912,0
0.000708,4,0.680851,0.044134,0.465338,0.003467,0.422915,0.414912,0
0.000708,4,0.702128,0.044134,0.497917,0.003467,0.422915,0.414912,0
0.000708,4,0.723404,0.095773,0.587474,0.003467,0.422915,0.414912,1
0.000708,4,0.744681,0.124204,0.656501,0.003467,0.422915,0.414912,1
0.000708,4,0.765957,0.095773,0.653972,0.003467,0.422915,0.414912,1
0.000708,4,0.787234,0.044224,0.638352,0.003467,0.422915,0.414912,0
0.000708,4,0.808511,0.044134,0.600268,0.003467,0.422915,0.414912,0
0.000708,4,0.829787,0.044104,0.572895,0.003467,0.422915,0.414912,0
0.000708,4,0.851064,0.044134,0.55177,0.003467,0.422915,0.414912,0
0.000708,4,0.87234,0.044134,0.528563,0.003467,0.422915,0.414912,0
0.000708,4,0.893617,0.044104,0.478727,0.003467,0.422915,0.414912,0
0.000708,4,0.914894,0.044104,0.426659,0.003467,0.422915,0.414912,0
0.000708,4,0.93617,0.124204,0.472925,0.003467,0.422915,0.414912,1
0.000708,4,0.957447,0.044134,0.485421,0.003467,0.422915,0.414912,0
0.000708,4,0.978723,0.044134,0.497471,0.003467,0.422915,0.414912,0
0.000708,4,1,0.044134,0.492264,0.003467,0.422915,0.414912,0
0.000752,5,0,0.095773,0.47828,0.003467,0.422915,0.414912,1
0.000752,5,0.021277,0.044134,0.457007,0.003467,0.422915,0.414912,0
0.000752,5,0.042553,0.044104,0.435138,0.003467,0.422915,0.414912,0
0.000752,5,0.06383,0.044104,0.373996,0.003467,0.422915,0.414912,0
0.000752,5,0.085106,0.044104,0.317763,0.003467,0.422915,0.414912,0
0.000752,5,0.106383,0.044104,0.276406,0.003467,0.422915,0.414912,0
0.000752,5,0.12766,0.044104,0.23133,0.003467,0.422915,0.414912,0
0.000752,5,0.148936,0.044104,0.201577,0.003467,0.422915,0.414912,0
0.000752,5,0.170213,0.044104,0.182386,0.003467,0.422915,0.414912,0
0.000752,5,0.191489,0.081122,0.182237,0.003467,0.422915,0.414912,1
0.000752,5,0.212766,0.081122,0.204255,0.003467,0.422915,0.414912,1
0.000752,5,0.234043,0.087366,0.256769,0.003467,0.422915,0.414912,1
0.000752,5,0.255319,0.124204,0.355995,0.003467,0.422915,0.414912,1
0.000752,5,0.276596,0.124204,0.458941,0.003467,0.422915,0.414912,1
0.000752,5,0.297872,0.095473,0.493454,0.003467,0.422915,0.414912,1
0.000752,5,0.319149,0.124204,0.561291,0.003467,0.422915,0.414912,1
0.000752,5,0.340426,0.095473,0.580036,0.003467,0.422915,0.414912,1
0.000752,5,0.361702,0.095473,0.567539,0.003467,0.422915,0.414912,1
0.000752,5,0.382979,0.124204,0.591044,0.003467,0.422915,0.414912,1
0.000752,5,0.404255,0.095473,0.589705,0.003467,0.422915,0.414912,1
0.000752,5,0.425532,0.095473,0.567093,0.003467,0.422915,0.414912,1
0.000752,5,0.446809,0.083103,0.542398,0.003467,0.422915,0.414912,1
0.000752,5,0.468085,0.095473,0.52053,0.003467,0.422915,0.414912,1
0.000752,5,0.489362,0.095473,0.514877,0.003467,0.422915,0.414912,1
0.000752,5,0.510638,0.044224,0.503273,0.003467,0.422915,0.414912,0
0.000752,5,0.531915,0.044224,0.490777,0.003467,0.422915,0.414912,0
0.000752,5,0.553191,0.044224,0.479768,0.003467,0.422915,0.414912,0
0.000752,5,0.574468,0.044224,0.470693,0.003467,0.422915,0.414912,0
0.000752,5,0.595745,0.044224,0.461321,0.003467,0.422915,0.414912,0
0.000752,5,0.617021,0.044224,0.448378,0.003467,0.422915,0.414912,0
0.000752,5,0.638298,0.044224,0.438709,0.003467,0.422915,0.414912,0
0.000752,5,0.659574,0.044224,0.445403,0.003467,0.422915,0.414912,0
0.000752,5,0.680851,0.049628,0.458941,0.003467,0.422915,0.414912,0
0.000752,5,0.702128,0.095473,0.488545,0.003467,0.422915,0.414912,1
0.000752,5,0.723404,0.124204,0.566201,0.003467,0.422915,0.414912,1
0.000752,5,0.744681,0.124204,0.625707,0.003467,0.422915,0.414912,1
0.000752,5,0.765957,0.124234,0.613657,0.003467,0.422915,0.414912,1
0.000752,5,0.787234,0.095473,0.588069,0.003467,0.422915,0.414912,1
0.000752,5,0.808511,0.044224,0.54582,0.003467,0.422915,0.414912,0
0.000752,5,0.829787,0.044134,0.508331,0.003467,0.422915,0.414912,0
0.000752,5,0.851064,0.095473,0.500298,0.003467,0.422915,0.414912,1
0.000752,5,0.87234,0.095473,0.480661,0.003467,0.422915,0.414912,1
0.000752,5,0.893617,0.044224,0.443618,0.003467,0.422915,0.414912,0
0.000752,5,0.914894,0.10535,0.399732,0.003467,0.422915,0.414912,1
0.000752,5,0.93617,0.161553,0.450461,0.003467,0.422915,0.414912,1
0.000752,5,0.957447,0.124204,0.467272,0.003467,0.422915,0.414912,1
0.000752,5,0.978723,0.132491,0.487206,0.003467,0.422915,0.414912,1
0.000752,5,1,0.124204,0.485272,0.003467,0.422915,0.414912,1
0.000796,6,0,0.124204,0.475454,0.003467,0.422915,0.414912,1
0.000796,6,0.021277,0.124204,0.453436,0.003467,0.422915,0.414912,1
0.000796,6,0.042553,0.107962,0.424576,0.003467,0.422915,0.414912,1
0.000796,6,0.06383,0.10535,0.361648,0.003467,0.422915,0.414912,1
0.000796,6,0.085106,0.090249,0.299018,0.003467,0.422915,0.414912,1
0.000796,6,0.106383,0.081122,0.248289,0.003467,0.422915,0.414912,0
0.000796,6,0.12766,0.074877,0.203957,0.003467,0.422915,0.414912,0
0.000796,6,0.148936,0.074877,0.164683,0.003467,0.422915,0.414912,0
0.000796,6,0.170213,0.081122,0.140434,0.003467,0.422915,0.414912,0
0.000796,6,0.191489,0.081122,0.128979,0.003467,0.422915,0.414912,0
0.000796,6,0.212766,0.076018,0.135079,0.003467,0.422915,0.414912,0
0.000796,6,0.234043,0.081122,0.150104,0.003467,0.422915,0.414912,0
0.000796,6,0.255319,0.081122,0.193246,0.003467,0.422915,0.414912,0
0.000796,6,0.276596,0.090429,0.230735,0.003467,0.422915,0.414912,1
0.000796,6,0.297872,0.090939,0.281464,0.003467,0.422915,0.414912,1
0.000796,6,0.319149,0.122703,0.366706,0.003467,0.422915,0.414912,1
0.000796,6,0.340426,0.137174,0.436328,0.003467,0.422915,0.414912,1
0.000796,6,0.361702,0.137174,0.47352,0.003467,0.422915,0.414912,1
0.000796,6,0.382979,0.156989,0.505207,0.003467,0.422915,0.414912,1
0.000796,6,0.404255,0.156989,0.499107,0.003467,0.422915,0.414912,1
0.000796,6,0.425532,0.156989,0.466528,0.003467,0.422915,0.414912,1
0.000796,6,0.446809,0.137174,0.439304,0.003467,0.422915,0.414912,1
0.000796,6,0.468085,0.137174,0.411336,0.003467,0.422915,0.414912,1
0.000796,6,0.489362,0.122703,0.387385,0.003467,0.422915,0.414912,1
0.000796,6,0.510638,0.122703,0.365367,0.003467,0.422915,0.414912,1
0.000796,6,0.531915,0.122703,0.350342,0.003467,0.422915,0.414912,1
0.000796,6,0.553191,0.090939,0.335168,0.003467,0.422915,0.414912,0
0.000796,6,0.574468,0.090939,0.308242,0.003467,0.422915,0.414912,0
0.000796,6,0.595745,0.090939,0.30125,0.003467,0.422915,0.414912,0
0.000796,6,0.617021,0.102978,0.297382,0.003467,0.422915,0.414912,1
0.000796,6,0.638298,0.099526,0.300357,0.003467,0.422915,0.414912,0
0.000796,6,0.659574,0.100997,0.311961,0.003467,0.422915,0.414912,0
0.000796,6,0.680851,0.122703,0.332639,0.003467,0.422915,0.414912,1
0.000796,6,0.702128,0.145851,0.390509,0.003467,0.422915,0.414912,1
0.000796,6,0.723404,0.209109,0.47114,0.003467,0.422915,0.414912,1
0.000796,6,0.744681,0.209109,0.55787,0.003467,0.422915,0.414912,1
0.000796,6,0.765957,0.15759,0.559655,0.003467,0.422915,0.414912,1
0.000796,6,0.787234,0.122703,0.533472,0.003467,0.422915,0.414912,1
0.000796,6,0.808511,0.137174,0.494644,0.003467,0.422915,0.414912,1
0.000796,6,0.829787,0.122703,0.458346,0.003467,0.422915,0.414912,1
0.000796,6,0.851064,0.090939,0.429634,0.003467,0.422915,0.414912,0
0.000796,6,0.87234,0.090068,0.405088,0.003467,0.422915,0.414912,0
0.000796,6,0.893617,0.090939,0.373847,0.003467,0.422915,0.414912,0
0.000796,6,0.914894,0.102978,0.339036,0.003467,0.422915,0.414912,0
0.000796,6,0.93617,0.102978,0.36983,0.003467,0.422915,0.414912,0
0.000796,6,0.957447,0.102978,0.375632,0.003467,0.422915,0.414912,0
0.000796,6,0.978723,0.122703,0.392443,0.003467,0.422915,0.414912,1
0.000796,6,1,0.102978,0.371169,0.003467,0.422915,0.414912,0
0.000841,7,0,0.090219,0.353169,0.003467,0.422915,0.414912,0
0.000841,7,0.021277,0.090939,0.304671,0.003467,0.422915,0.414912,0
0.000841,7,0.042553,0.083644,0.276555,0.003467,0.422915,0.414912,0
0.000841,7,0.06383,0.083644,0.227016,0.003467,0.422915,0.414912,0
0.000841,7,0.085106,0.083644,0.185361,0.003467,0.422915,0.414912,0
0.000841,7,0.106383,0.081122,0.151294,0.003467,0.422915,0.414912,0
0.000841,7,0.12766,0.081122,0.12526,0.003467,0.422915,0.414912,0
0.000841,7,0.148936,0.076618,0.101904,0.003467,0.422915,0.414912,0
0.000841,7,0.170213,0.076018,0.090152,0.003467,0.422915,0.414912,0
0.000841,7,0.191489,0.076018,0.085094,0.003467,0.422915,0.414912,0
0.000841,7,0.212766,0.081122,0.090598,0.003467,0.422915,0.414912,0
0.000841,7,0.234043,0.081122,0.100565,0.003467,0.422915,0.414912,0
0.000841,7,0.255319,0.081122,0.123178,0.003467,0.422915,0.414912,0
0.000841,7,0.276596,0.081962,0.147873,0.003467,0.422915,0.414912,0
0.000841,7,0.297872,0.083884,0.175841,0.003467,0.422915,0.414912,0
0.000841,7,0.319149,0.083884,0.23371,0.003467,0.422915,0.414912,0
0.000841,7,0.340426,0.089798,0.292472,0.003467,0.422915,0.414912,0
0.000841,7,0.361702,0.117029,0.341267,0.003467,0.422915,0.414912,1
0.000841,7,0.382979,0.122703,0.385004,0.003467,0.422915,0.414912,1
0.000841,7,0.404255,0.122703,0.396608,0.003467,0.422915,0.414912,1
0.000841,7,0.425532,0.122703,0.383814,0.003467,0.422915,0.414912,1
0.000841,7,0.446809,0.122703,0.366558,0.003467,0.422915,0.414912,1
0.000841,7,0.468085,0.122703,0.348111,0.003467,0.422915,0.414912,1
0.000841,7,0.489362,0.102978,0.329515,0.003467,0.422915,0.414912,0
0.000841,7,0.510638,0.089798,0.312258,0.003467,0.422915,0.414912,0
0.000841,7,0.531915,0.087426,0.29515,0.003467,0.422915,0.414912,0
0.000841,7,0.553191,0.087426,0.274026,0.003467,0.422915,0.414912,0
0.000841,7,0.574468,0.087426,0.254686,0.003467,0.422915,0.414912,0
0.000841,7,0.595745,0.083884,0.240405,0.003467,0.422915,0.414912,0
0.000841,7,0.617021,0.083884,0.229694,0.003467,0.422915,0.414912,0
0.000841,7,0.638298,0.083884,0.234157,0.003467,0.422915,0.414912,0
0.000841,7,0.659574,0.087426,0.245611,0.003467,0.422915,0.414912,0
0.000841,7,0.680851,0.089798,0.270009,0.003467,0.422915,0.414912,0
0.000841,7,0.702128,0.13192,0.32892,0.003467,0.422915,0.414912,1
0.000841,7,0.723404,0.156989,0.430824,0.003467,0.422915,0.414912,1
0.000841,7,0.744681,0.15759,0.517406,0.003467,0.422915,0.414912,1
0.000841,7,0.765957,0.15759,0.533472,0.003467,0.422915,0.414912,1
0.000841,7,0.787234,0.122703,0.521571,0.003467,0.422915,0.414912,1
0.000841,7,0.808511,0.13093,0.497173,0.003467,0.422915,0.414912,1
0.000841,7,0.829787,0.122703,0.469206,0.003467,0.422915,0.414912,1
0.000841,7,0.851064,0.13093,0.453436,0.003467,0.422915,0.414912,1
0.000841,7,0.87234,0.126606,0.436626,0.003467,0.422915,0.414912,1
0.000841,7,0.893617,0.122703,0.394972,0.003467,0.422915,0.414912,1
0.000841,7,0.914894,0.122703,0.349598,0.003467,0.422915,0.414912,1
0.000841,7,0.93617,0.117029,0.371616,0.003467,0.422915,0.414912,1
0.000841,7,0.957447,0.122703,0.370723,0.003467,0.422915,0.414912,1
0.000841,7,0.978723,0.122703,0.378161,0.003467,0.422915,0.414912,1
0.000841,7,1,0.102978,0.354508,0.003467,0.422915,0.414912,0
0.000885,1,0,0.087426,0.342011,0.003467,0.422915,0.414912,0
0.000885,1,0.021277,0.087426,0.304374,0.003467,0.422915,0.414912,0
0.000885,1,0.042553,0.087426,0.289497,0.003467,0.422915,0.414912,0
0.000885,1,0.06383,0.083884,0.246802,0.003467,0.422915,0.414912,0
0.000885,1,0.085106,0.081962,0.210205,0.003467,0.422915,0.414912,0
0.000885,1,0.106383,0.081962,0.18313,0.003467,0.422915,0.414912,0
0.000885,1,0.12766,0.081122,0.163047,0.003467,0.422915,0.414912,0
0.000885,1,0.148936,0.081122,0.144749,0.003467,0.422915,0.414912,0
0.000885,1,0.170213,0.087366,0.143856,0.003467,0.422915,0.414912,0
0.000885,1,0.191489,0.09238,0.152633,0.003467,0.422915,0.414912,0
0.000885,1,0.212766,0.093611,0.185808,0.003467,0.422915,0.414912,0
0.000885,1,0.234043,0.122703,0.244421,0.003467,0.422915,0.414912,1
0.000885,1,0.255319,0.126216,0.345879,0.003467,0.422915,0.414912,1
0.000885,1,0.276596,0.218266,0.459238,0.003467,0.422915,0.414912,1
0.000885,1,0.297872,0.155878,0.492859,0.003467,0.422915,0.414912,1
0.000885,1,0.319149,0.21073,0.572449,0.003467,0.422915,0.414912,1
0.000885,1,0.340426,0.21031,0.594615,0.003467,0.422915,0.414912,1
0.000885,1,0.361702,0.218266,0.587028,0.003467,0.422915,0.414912,1
0.000885,1,0.382979,0.299327,0.610086,0.003467,0.422915,0.414912,1
0.000885,1,0.404255,0.243215,0.615442,0.003467,0.422915,0.414912,1
0.000885,1,0.425532,0.229014,0.599821,0.003467,0.422915,0.414912,1
0.000885,1,0.446809,0.229014,0.566944,0.003467,0.422915,0.414912,1
0.000885,1,0.468085,0.224481,0.547159,0.003467,0.422915,0.414912,1
0.000885,1,0.489362,0.224481,0.540315,0.003467,0.422915,0.414912,1
0.000885,1,0.510638,0.21073,0.5241,0.003467,0.422915,0.414912,1
0.000885,1,0.531915,0.209109,0.510711,0.003467,0.422915,0.414912,1
0.000885,1,0.553191,0.209109,0.502083,0.003467,0.422915,0.414912,1
0.000885,1,0.574468,0.202714,0.492413,0.003467,0.422915,0.414912,1
0.000885,1,0.595745,0.21073,0.479619,0.003467,0.422915,0.414912,1
0.000885,1,0.617021,0.21073,0.474264,0.003467,0.422915,0.414912,1
0.000885,1,0.638298,0.204275,0.46623,0.003467,0.422915,0.414912,1
0.000885,1,0.659574,0.21073,0.476049,0.003467,0.422915,0.414912,1
0.000885,1,0.680851,0.217335,0.498215,0.003467,0.422915,0.414912,1
0.000885,1,0.702128,0.229014,0.558316,0.003467,0.422915,0.414912,1
0.000885,1,0.723404,0.294584,0.652187,0.003467,0.422915,0.414912,1
0.000885,1,0.744681,0.298277,0.720173,0.003467,0.422915,0.414912,1
0.000885,1,0.765957,0.228654,0.707974,0.003467,0.422915,0.414912,1
0.000885,1,0.787234,0.229014,0.670485,0.003467,0.422915,0.414912,1
0.000885,1,0.808511,0.224481,0.634037,0.003467,0.422915,0.414912,1
0.000885,1,0.829787,0.189204,0.610086,0.003467,0.422915,0.414912,1
0.000885,1,0.851064,0.190165,0.582118,0.003467,0.422915,0.414912,1
0.000885,1,0.87234,0.143539,0.557721,0.003467,0.422915,0.414912,0
0.000885,1,0.893617,0.122703,0.501785,0.003467,0.422915,0.414912,0
0.000885,1,0.914894,0.124835,0.440791,0.003467,0.422915,0.414912,0
0.000885,1,0.93617,0.155878,0.474561,0.003467,0.422915,0.414912,0
0.000885,1,0.957447,0.161283,0.480512,0.003467,0.422915,0.414912,0
0.000885,1,0.978723,0.155878,0.490777,0.003467,0.422915,0.414912,0
0.000885,1,1,0.122703,0.49152,0.003467,0.422915,0.414912,0
0.000929,2,0,0.122703,0.487355,0.003467,0.422915,0.414912,0
0.000929,2,0.021277,0.113306,0.468759,0.003467,0.422915,0.414912,0
0.000929,2,0.042553,0.044134,0.448676,0.003467,0.422915,0.414912,0
0.000929,2,0.06383,0.087366,0.384856,0.003467,0.422915,0.414912,0
0.000929,2,0.085106,0.081122,0.325945,0.003467,0.422915,0.414912,0
0.000929,2,0.106383,0.081122,0.284737,0.003467,0.422915,0.414912,0
0.000929,2,0.12766,0.081122,0.236983,0.003467,0.422915,0.414912,0
0.000929,2,0.148936,0.081122,0.20366,0.003467,0.422915,0.414912,0
0.000929,2,0.170213,0.076438,0.187742,0.003467,0.422915,0.414912,0
0.000929,2,0.191489,0.074877,0.185064,0.003467,0.422915,0.414912,0
0.000929,2,0.212766,0.077999,0.214073,0.003467,0.422915,0.414912,0
0.000929,2,0.234043,0.082112,0.262571,0.003467,0.422915,0.414912,0
0.000929,2,0.255319,0.087426,0.372954,0.003467,0.422915,0.414912,0
0.000929,2,0.276596,0.044134,0.486462,0.003467,0.422915,0.414912,0
0.000929,2,0.297872,0.043833,0.513835,0.003467,0.422915,0.414912,0
0.000929,2,0.319149,0.043983,0.591788,0.003467,0.422915,0.414912,0
0.000929,2,0.340426,0.043983,0.611723,0.003467,0.422915,0.414912,0
0.000929,2,0.361702,0.044134,0.595805,0.003467,0.422915,0.414912,0
0.000929,2,0.382979,0.044254,0.62169,0.003467,0.422915,0.414912,0
0.000929,2,0.404255,0.044254,0.624219,0.003467,0.422915,0.414912,0
0.000929,2,0.425532,0.044254,0.596102,0.003467,0.422915,0.414912,0
0.000929,2,0.446809,0.044134,0.572151,0.003467,0.422915,0.414912,0
0.000929,2,0.468085,0.044134,0.546415,0.003467,0.422915,0.414912,0
0.000929,2,0.489362,0.044134,0.526034,0.003467,0.422915,0.414912,0
0.000929,2,0.510638,0.043983,0.510265,0.003467,0.422915,0.414912,0
0.000929,2,0.531915,0.043983,0.494049,0.003467,0.422915,0.414912,0
0.000929,2,0.553191,0.043983,0.480512,0.003467,0.422915,0.414912,0
0.000929,2,0.574468,0.043833,0.472776,0.003467,0.422915,0.414912,0
0.000929,2,0.595745,0.043833,0.467272,0.003467,0.422915,0.414912,0
0.000929,2,0.617021,0.043833,0.450907,0.003467,0.422915,0.414912,0
0.000929,2,0.638298,0.043683,0.444957,0.003467,0.422915,0.414912,0
0.000929,2,0.659574,0.043833,0.459685,0.003467,0.422915,0.414912,0
0.000929,2,0.680851,0.043983,0.47947,0.003467,0.422915,0.414912,0
0.000929,2,0.702128,0.044134,0.52648,0.003467,0.422915,0.414912,0
0.000929,2,0.723404,0.043983,0.625707,0.003467,0.422915,0.414912,0
0.000929,2,0.744681,0.044254,0.70485,0.003467,0.422915,0.414912,0
0.000929,2,0.765957,0.044134,0.69994,0.003467,0.422915,0.414912,0
0.000929,2,0.787234,0.043983,0.672419,0.003467,0.422915,0.414912,0
0.000929,2,0.808511,0.043983,0.634633,0.003467,0.422915,0.414912,0
0.000929,2,0.829787,0.043833,0.612169,0.003467,0.422915,0.414912,0
0.000929,2,0.851064,0.043983,0.587474,0.003467,0.422915,0.414912,0
0.000929,2,0.87234,0.043833,0.56144,0.003467,0.422915,0.414912,0
0.000929,2,0.893617,0.043833,0.507885,0.003467,0.422915,0.414912,0
0.000929,2,0.914894,0.043683,0.454627,0.003467,0.422915,0.414912,0
0.000929,2,0.93617,0.044134,0.486165,0.003467,0.422915,0.414912,0
0.000929,2,0.957447,0.044134,0.489438,0.003467,0.422915,0.414912,0
0.000929,2,0.978723,0.043983,0.501785,0.003467,0.422915,0.414912,0
0.000929,2,1,0.043983,0.50357,0.003467,0.422915,0.414912,0
0.000973,3,0,0.044134,0.49524,0.003467,0.422915,0.414912,0
0.000973,3,0.021277,0.044134,0.470247,0.003467,0.422915,0.414912,0
0.000973,3,0.042553,0.043983,0.448378,0.003467,0.422915,0.414912,0
0.000973,3,0.06383,0.043983,0.384409,0.003467,0.422915,0.414912,0
0.000973,3,0.085106,0.043983,0.331895,0.003467,0.422915,0.414912,0
0.000973,3,0.106383,0.043833,0.290241,0.003467,0.422915,0.414912,0
0.000973,3,0.12766,0.043833,0.245463,0.003467,0.422915,0.414912,0
0.000973,3,0.148936,0.043833,0.206932,0.003467,0.422915,0.414912,0
0.000973,3,0.170213,0.077999,0.190568,0.003467,0.422915,0.414912,1
0.000973,3,0.191489,0.082383,0.19042,0.003467,0.422915,0.414912,1
0.000973,3,0.212766,0.082383,0.217346,0.003467,0.422915,0.414912,1
0.000973,3,0.234043,0.082383,0.270306,0.003467,0.422915,0.414912,1
0.000973,3,0.255319,0.09199,0.379203,0.003467,0.422915,0.414912,1
0.000973,3,0.276596,0.099135,0.497025,0.003467,0.422915,0.414912,1
0.000973,3,0.297872,0.044134,0.52648,0.003467,0.422915,0.414912,0
0.000973,3,0.319149,0.089798,0.595805,0.003467,0.422915,0.414912,1
0.000973,3,0.340426,0.044134,0.608152,0.003467,0.422915,0.414912,0
0.000973,3,0.361702,0.043983,0.585986,0.003467,0.422915,0.414912,0
0.000973,3,0.382979,0.044134,0.605326,0.003467,0.422915,0.414912,0
0.000973,3,0.404255,0.044254,0.604582,0.003467,0.422915,0.414912,0
0.000973,3,0.425532,0.044134,0.575424,0.003467,0.422915,0.414912,0
0.000973,3,0.446809,0.043983,0.550431,0.003467,0.422915,0.414912,0
0.000973,3,0.468085,0.043983,0.524844,0.003467,0.422915,0.414912,0
0.000973,3,0.489362,0.043983,0.508926,0.003467,0.422915,0.414912,0
0.000973,3,0.510638,0.043983,0.494793,0.003467,0.422915,0.414912,0
0.000973,3,0.531915,0.043983,0.479173,0.003467,0.422915,0.414912,0
0.000973,3,0.553191,0.043983,0.473073,0.003467,0.422915,0.414912,0
0.000973,3,0.574468,0.043983,0.464445,0.003467,0.422915,0.414912,0
0.000973,3,0.595745,0.043833,0.451354,0.003467,0.422915,0.414912,0
0.000973,3,0.617021,0.043833,0.438709,0.003467,0.422915,0.414912,0
0.000973,3,0.638298,0.043833,0.435436,0.003467,0.422915,0.414912,0
0.000973,3,0.659574,0.043833,0.44704,0.003467,0.422915,0.414912,0
0.000973,3,0.680851,0.043983,0.467272,0.003467,0.422915,0.414912,0
0.000973,3,0.702128,0.044134,0.521422,0.003467,0.422915,0.414912,0
0.000973,3,0.723404,0.067852,0.612615,0.003467,0.422915,0.414912,1
0.000973,3,0.744681,0.044254,0.6928,0.003467,0.422915,0.414912,0
0.000973,3,0.765957,0.044254,0.687295,0.003467,0.422915,0.414912,0
0.000973,3,0.787234,0.044134,0.656352,0.003467,0.422915,0.414912,0
0.000973,3,0.808511,0.043983,0.62645,0.003467,0.422915,0.414912,0
0.000973,3,0.829787,0.043983,0.597888,0.003467,0.422915,0.414912,0
0.000973,3,0.851064,0.044134,0.580184,0.003467,0.422915,0.414912,0
0.000973,3,0.87234,0.044134,0.556233,0.003467,0.422915,0.414912,0
0.000973,3,0.893617,0.043983,0.502231,0.003467,0.422915,0.414912,0
0.000973,3,0.914894,0.043833,0.45537,0.003467,0.422915,0.414912,0
0.000973,3,0.93617,0.102648,0.491372,0.003467,0.422915,0.414912,1
0.000973,3,0.957447,0.044134,0.510116,0.003467,0.422915,0.414912,0
0.000973,3,0.978723,0.044134,0.505207,0.003467,0.422915,0.414912,0
0.000973,3,1,0.044134,0.508182,0.003467,0.422915,0.414912,0
0.001018,4,0,0.044134,0.50476,0.003467,0.422915,0.414912,0
0.001018,4,0.021277,0.084664,0.487504,0.003467,0.422915,0.414912,1
0.001018,4,0.042553,0.077999,0.463106,0.003467,0.422915,0.414912,1
0.001018,4,0.06383,0.077999,0.39155,0.003467,0.422915,0.414912,1
0.001018,4,0.085106,0.082383,0.338738,0.003467,0.422915,0.414912,1
0.001018,4,0.106383,0.077999,0.29396,0.003467,0.422915,0.414912,1
0.001018,4,0.12766,0.076138,0.248438,0.003467,0.422915,0.414912,1
0.001018,4,0.148936,0.077999,0.213776,0.003467,0.422915,0.414912,1
0.001018,4,0.170213,0.077999,0.19875,0.003467,0.422915,0.414912,1
0.001018,4,0.191489,0.077999,0.196965,0.003467,0.422915,0.414912,1
0.001018,4,0.212766,0.082383,0.223594,0.003467,0.422915,0.414912,1
0.001018,4,0.234043,0.082473,0.273579,0.003467,0.422915,0.414912,1
0.001018,4,0.255319,0.09259,0.379946,0.003467,0.422915,0.414912,1
0.001018,4,0.276596,0.122703,0.482594,0.003467,0.422915,0.414912,1
0.001018,4,0.297872,0.043983,0.522612,0.003467,0.422915,0.414912,0
0.001018,4,0.319149,0.044134,0.599078,0.003467,0.422915,0.414912,0
0.001018,4,0.340426,0.043983,0.612169,0.003467,0.422915,0.414912,0
0.001018,4,0.361702,0.043983,0.591788,0.003467,0.422915,0.414912,0
0.001018,4,0.382979,0.044134,0.61812,0.003467,0.422915,0.414912,0
0.001018,4,0.404255,0.044134,0.615591,0.003467,0.422915,0.414912,0
0.001018,4,0.425532,0.044134,0.578251,0.003467,0.422915,0.414912,0
0.001018,4,0.446809,0.043983,0.557126,0.003467,0.422915,0.414912,0
0.001018,4,0.468085,0.043983,0.536001,0.003467,0.422915,0.414912,0
0.001018,4,0.489362,0.043983,0.522017,0.003467,0.422915,0.414912,0
0.001018,4,0.510638,0.043983,0.515174,0.003467,0.422915,0.414912,0
0.001018,4,0.531915,0.043983,0.497173,0.003467,0.422915,0.414912,0
0.001018,4,0.553191,0.043983,0.489884,0.003467,0.422915,0.414912,0
0.001018,4,0.574468,0.043983,0.482446,0.003467,0.422915,0.414912,0
0.001018,4,0.595745,0.043833,0.465486,0.003467,0.422915,0.414912,0
0.001018,4,0.617021,0.043833,0.458941,0.003467,0.422915,0.414912,0
0.001018,4,0.638298,0.043833,0.450461,0.003467,0.422915,0.414912,0
0.001018,4,0.659574,0.043833,0.46147,0.003467,0.422915,0.414912,0
0.001018,4,0.680851,0.044013,0.473817,0.003467,0.422915,0.414912,0
0.001018,4,0.702128,0.056683,0.510562,0.003467,0.422915,0.414912,1
0.001018,4,0.723404,0.053651,0.600863,0.003467,0.422915,0.414912,0
0.001018,4,0.744681,0.044224,0.68313,0.003467,0.422915,0.414912,0
0.001018,4,0.765957,0.044104,0.679113,0.003467,0.422915,0.414912,0
0.001018,4,0.787234,0.044134,0.663642,0.003467,0.422915,0.414912,0
0.001018,4,0.808511,0.044134,0.62645,0.003467,0.422915,0.414912,0
0.001018,4,0.829787,0.043923,0.607557,0.003467,0.422915,0.414912,0
0.001018,4,0.851064,0.044134,0.58911,0.003467,0.422915,0.414912,0
0.001018,4,0.87234,0.043983,0.564267,0.003467,0.422915,0.414912,0
0.001018,4,0.893617,0.043983,0.514877,0.003467,0.422915,0.414912,0
0.001018,4,0.914894,0.043833,0.461619,0.003467,0.422915,0.414912,0
0.001018,4,0.93617,0.044134,0.504314,0.003467,0.422915,0.414912,0
0.001018,4,0.957447,0.044134,0.513389,0.003467,0.422915,0.414912,0
0.001018,4,0.978723,0.044134,0.519488,0.003467,0.422915,0.414912,0
0.001018,4,1,0.044134,0.511157,0.003467,0.422915,0.414912,0
0.001062,5,0,0.044134,0.503422,0.003467,0.422915,0.414912,0
0.001062,5,0.021277,0.077999,0.482892,0.003467,0.422915,0.414912,1
0.001062,5,0.042553,0.044134,0.459238,0.003467,0.422915,0.414912,0
0.001062,5,0.06383,0.077999,0.392443,0.003467,0.422915,0.414912,1
0.001062,5,0.085106,0.077999,0.331003,0.003467,0.422915,0.414912,1
0.001062,5,0.106383,0.077999,0.286819,0.003467,0.422915,0.414912,1
0.001062,5,0.12766,0.077999,0.240553,0.003467,0.422915,0.414912,1
0.001062,5,0.148936,0.043833,0.210503,0.003467,0.422915,0.414912,0
0.001062,5,0.170213,0.078089,0.191312,0.003467,0.422915,0.414912,1
0.001062,5,0.191489,0.078089,0.186998,0.003467,0.422915,0.414912,1
0.001062,5,0.212766,0.082473,0.219726,0.003467,0.422915,0.414912,1
0.001062,5,0.234043,0.083313,0.271199,0.003467,0.422915,0.414912,1
0.001062,5,0.255319,0.087216,0.372657,0.003467,0.422915,0.414912,1
0.001062,5,0.276596,0.122703,0.48557,0.003467,0.422915,0.414912,1
0.001062,5,0.297872,0.043983,0.507587,0.003467,0.422915,0.414912,0
0.001062,5,0.319149,0.043983,0.584796,0.003467,0.422915,0.414912,0
0.001062,5,0.340426,0.044043,0.610235,0.003467,0.422915,0.414912,0
0.001062,5,0.361702,0.044043,0.612169,0.003467,0.422915,0.414912,0
0.001062,5,0.382979,0.044134,0.626004,0.003467,0.422915,0.414912,0
0.001062,5,0.404255,0.044134,0.625112,0.003467,0.422915,0.414912,0
0.001062,5,0.425532,0.044134,0.595061,0.003467,0.422915,0.414912,0
0.001062,5,0.446809,0.044043,0.561738,0.003467,0.422915,0.414912,0
0.001062,5,0.468085,0.043983,0.536001,0.003467,0.422915,0.414912,0
0.001062,5,0.489362,0.044134,0.518744,0.003467,0.422915,0.414912,0
0.001062,5,0.510638,0.044043,0.503868,0.003467,0.422915,0.414912,0
0.001062,5,0.531915,0.043983,0.482446,0.003467,0.422915,0.414912,0
0.001062,5,0.553191,0.043983,0.468313,0.003467,0.422915,0.414912,0
0.001062,5,0.574468,0.043983,0.458941,0.003467,0.422915,0.414912,0
0.001062,5,0.595745,0.043983,0.44704,0.003467,0.422915,0.414912,0
0.001062,5,0.617021,0.043833,0.433799,0.003467,0.422915,0.414912,0
0.001062,5,0.638298,0.043833,0.429932,0.003467,0.422915,0.414912,0
0.001062,5,0.659574,0.043833,0.432609,0.003467,0.422915,0.414912,0
0.001062,5,0.680851,0.043833,0.444659,0.003467,0.422915,0.414912,0
0.001062,5,0.702128,0.044013,0.488843,0.003467,0.422915,0.414912,0
0.001062,5,0.723404,0.049598,0.570663,0.003467,0.422915,0.414912,0
0.001062,5,0.744681,0.044134,0.642071,0.003467,0.422915,0.414912,0
0.001062,5,0.765957,0.044043,0.631657,0.003467,0.422915,0.414912,0
0.001062,5,0.787234,0.043983,0.606665,0.003467,0.422915,0.414912,0
0.001062,5,0.808511,0.043983,0.573639,0.003467,0.422915,0.414912,0
0.001062,5,0.829787,0.043833,0.543588,0.003467,0.422915,0.414912,0
0.001062,5,0.851064,0.043983,0.5241,0.003467,0.422915,0.414912,0
0.001062,5,0.87234,0.043833,0.505356,0.003467,0.422915,0.414912,0
0.001062,5,0.893617,0.043833,0.461916,0.003467,0.422915,0.414912,0
0.001062,5,0.914894,0.043683,0.417435,0.003467,0.422915,0.414912,0
0.001062,5,0.93617,0.043983,0.465784,0.003467,0.422915,0.414912,0
0.001062,5,0.957447,0.044134,0.480958,0.003467,0.422915,0.414912,0
0.001062,5,0.978723,0.044134,0.494496,0.003467,0.422915,0.414912,0
0.001062,5,1,0.043983,0.488396,0.003467,0.422915,0.414912,0
0.004159,6,0,0.044134,0.486909,0.003467,0.422915,0.414912,0
0.004159,6,0.021277,0.044134,0.464296,0.003467,0.422915,0.414912,0
0.004159,6,0.042553,0.044134,0.430824,0.003467,0.422915,0.414912,0
0.004159,6,0.06383,0.043983,0.368343,0.003467,0.422915,0.414912,0
0.004159,6,0.085106,0.043983,0.303184,0.003467,0.422915,0.414912,0
0.004159,6,0.106383,0.043983,0.252008,0.003467,0.422915,0.414912,0
0.004159,6,0.12766,0.044043,0.210503,0.003467,0.422915,0.414912,0
0.004159,6,0.148936,0.043833,0.171229,0.003467,0.422915,0.414912,0
0.004159,6,0.170213,0.060586,0.146831,0.003467,0.422915,0.414912,1
0.004159,6,0.191489,0.043833,0.135525,0.003467,0.422915,0.414912,0
0.004159,6,0.212766,0.060586,0.137162,0.003467,0.422915,0.414912,1
0.004159,6,0.234043,0.066981,0.158137,0.003467,0.422915,0.414912,1
0.004159,6,0.255319,0.081122,0.198602,0.003467,0.422915,0.414912,1
0.004159,6,0.276596,0.073106,0.243082,0.003467,0.422915,0.414912,1
0.004159,6,0.297872,0.083884,0.296935,0.003467,0.422915,0.414912,1
0.004159,6,0.319149,0.087366,0.386938,0.003467,0.422915,0.414912,1
0.004159,6,0.340426,0.089798,0.463106,0.003467,0.422915,0.414912,1
0.004159,6,0.361702,0.095803,0.502975,0.003467,0.422915,0.414912,1
0.004159,6,0.382979,0.121652,0.531389,0.003467,0.422915,0.414912,1
0.004159,6,0.404255,0.109103,0.523505,0.003467,0.422915,0.414912,1
0.004159,6,0.425532,0.089798,0.493008,0.003467,0.422915,0.414912,1
0.004159,6,0.446809,0.044254,0.459685,0.003467,0.422915,0.414912,0
0.004159,6,0.468085,0.044254,0.431419,0.003467,0.422915,0.414912,0
0.004159,6,0.489362,0.044134,0.406427,0.003467,0.422915,0.414912,0
0.004159,6,0.510638,0.044134,0.38069,0.003467,0.422915,0.414912,0
0.004159,6,0.531915,0.044134,0.360904,0.003467,0.422915,0.414912,0
0.004159,6,0.553191,0.044134,0.342011,0.003467,0.422915,0.414912,0
0.004159,6,0.574468,0.044134,0.322523,0.003467,0.422915,0.414912,0
0.004159,6,0.595745,0.043983,0.30839,0.003467,0.422915,0.414912,0
0.004159,6,0.617021,0.043983,0.299762,0.003467,0.422915,0.414912,0
0.004159,6,0.638298,0.043983,0.297382,0.003467,0.422915,0.414912,0
0.004159,6,0.659574,0.043983,0.30244,0.003467,0.422915,0.414912,0
0.004159,6,0.680851,0.043983,0.323416,0.003467,0.422915,0.414912,0
0.004159,6,0.702128,0.083884,0.390658,0.003467,0.422915,0.414912,1
0.004159,6,0.723404,0.106461,0.469206,0.003467,0.422915,0.414912,1
0.004159,6,0.744681,0.106461,0.538976,0.003467,0.422915,0.414912,1
0.004159,6,0.765957,0.089798,0.536596,0.003467,0.422915,0.414912,1
0.004159,6,0.787234,0.044404,0.513686,0.003467,0.422915,0.414912,0
0.004159,6,0.808511,0.044254,0.469652,0.003467,0.422915,0.414912,0
0.004159,6,0.829787,0.044134,0.439304,0.003467,0.422915,0.414912,0
0.004159,6,0.851064,0.044134,0.405088,0.003467,0.422915,0.414912,0
0.004159,6,0.87234,0.043983,0.383517,0.003467,0.422915,0.414912,0
0.004159,6,0.893617,0.043983,0.351979,0.003467,0.422915,0.414912,0
0.004159,6,0.914894,0.043983,0.319399,0.003467,0.422915,0.414912,0
0.004159,6,0.93617,0.044134,0.352425,0.003467,0.422915,0.414912,0
0.004159,6,0.957447,0.043983,0.356442,0.003467,0.422915,0.414912,0
0.004159,6,0.978723,0.043983,0.369682,0.003467,0.422915,0.414912,0
0.004159,6,1,0.043983,0.35302,0.003467,0.422915,0.414912,0
0.004203,7,0,0.043983,0.336656,0.003467,0.422915,0.414912,0
0.004203,7,0.021277,0.043863,0.292175,0.003467,0.422915,0.414912,0
0.004203,7,0.042553,0.043833,0.266885,0.003467,0.422915,0.414912,0
0.004203,7,0.06383,0.043833,0.218536,0.003467,0.422915,0.414912,0
0.004203,7,0.085106,0.043833,0.174353,0.003467,0.422915,0.414912,0
0.004203,7,0.106383,0.043833,0.136864,0.003467,0.422915,0.414912,0
0.004203,7,0.12766,0.043683,0.114252,0.003467,0.422915,0.414912,0
0.004203,7,0.148936,0.043683,0.089259,0.003467,0.422915,0.414912,0
0.004203,7,0.170213,0.043683,0.076912,0.003467,0.422915,0.414912,0
0.004203,7,0.191489,0.043683,0.071854,0.003467,0.422915,0.414912,0
0.004203,7,0.212766,0.043683,0.076763,0.003467,0.422915,0.414912,0
0.004203,7,0.234043,0.043833,0.08911,0.003467,0.422915,0.414912,0
0.004203,7,0.255319,0.043833,0.109491,0.003467,0.422915,0.414912,0
0.004203,7,0.276596,0.043833,0.129872,0.003467,0.422915,0.414912,0
0.004203,7,0.297872,0.043833,0.153526,0.003467,0.422915,0.414912,0
0.004203,7,0.319149,0.043983,0.214222,0.003467,0.422915,0.414912,0
0.004203,7,0.340426,0.043983,0.284142,0.003467,0.422915,0.414912,0
0.004203,7,0.361702,0.044134,0.339929,0.003467,0.422915,0.414912,0
0.004203,7,0.382979,0.044134,0.391996,0.003467,0.422915,0.414912,0
0.004203,7,0.404255,0.044134,0.417882,0.003467,0.422915,0.414912,0
0.004203,7,0.425532,0.044134,0.424874,0.003467,0.422915,0.414912,0
0.004203,7,0.446809,0.044134,0.421452,0.003467,0.422915,0.414912,0
0.004203,7,0.468085,0.083884,0.410741,0.003467,0.422915,0.414912,1
0.004203,7,0.489362,0.083884,0.402261,0.003467,0.422915,0.414912,1
0.004203,7,0.510638,0.083884,0.394823,0.003467,0.422915,0.414912,1
0.004203,7,0.531915,0.084724,0.381434,0.003467,0.422915,0.414912,1
0.004203,7,0.553191,0.083884,0.360458,0.003467,0.422915,0.414912,1
0.004203,7,0.574468,0.083884,0.340821,0.003467,0.422915,0.414912,1
0.004203,7,0.595745,0.082353,0.332342,0.003467,0.422915,0.414912,1
0.004203,7,0.617021,0.082353,0.322523,0.003467,0.422915,0.414912,1
0.004203,7,0.638298,0.083884,0.333234,0.003467,0.422915,0.414912,1
0.004203,7,0.659574,0.083884,0.341267,0.003467,0.422915,0.414912,1
0.004203,7,0.680851,0.086676,0.363731,0.003467,0.422915,0.414912,1
0.004203,7,0.702128,0.089708,0.420857,0.003467,0.422915,0.414912,1
0.004203,7,0.723404,0.121502,0.493752,0.003467,0.422915,0.414912,1
0.004203,7,0.744681,0.121502,0.558911,0.003467,0.422915,0.414912,1
0.004203,7,0.765957,0.089708,0.571407,0.003467,0.422915,0.414912,1
0.004203,7,0.787234,0.086676,0.550878,0.003467,0.422915,0.414912,1
0.004203,7,0.808511,0.044404,0.523951,0.003467,0.422915,0.414912,0
0.004203,7,0.829787,0.044254,0.49524,0.003467,0.422915,0.414912,0
0.004203,7,0.851064,0.044254,0.466677,0.003467,0.422915,0.414912,0
0.004203,7,0.87234,0.044134,0.447932,0.003467,0.422915,0.414912,0
0.004203,7,0.893617,0.044134,0.401964,0.003467,0.422915,0.414912,0
0.004203,7,0.914894,0.044134,0.349747,0.003467,0.422915,0.414912,0
0.004203,7,0.93617,0.044134,0.372954,0.003467,0.422915,0.414912,0
0.004203,7,0.957447,0.043983,0.368938,0.003467,0.422915,0.414912,0
0.004203,7,0.978723,0.043983,0.372062,0.003467,0.422915,0.414912,0
0.004203,7,1,0.043983,0.352127,0.003467,0.422915,0.414912,0
0.004248,1,0,0.043983,0.333829,0.003467,0.422915,0.414912,0
0.004248,1,0.021277,0.043983,0.296638,0.003467,0.422915,0.414912,0
0.004248,1,0.042553,0.043923,0.282356,0.003467,0.422915,0.414912,0
0.004248,1,0.06383,0.043983,0.236537,0.003467,0.422915,0.414912,0
0.004248,1,0.085106,0.043983,0.205296,0.003467,0.422915,0.414912,0
0.004248,1,0.106383,0.043833,0.172865,0.003467,0.422915,0.414912,0
0.004248,1,0.12766,0.043683,0.151145,0.003467,0.422915,0.414912,0
0.004248,1,0.148936,0.043683,0.136269,0.003467,0.422915,0.414912,0
0.004248,1,0.170213,0.043353,0.129872,0.003467,0.422915,0.414912,0
0.004248,1,0.191489,0.043533,0.138203,0.003467,0.422915,0.414912,0
0.004248,1,0.212766,0.043533,0.17465,0.003467,0.422915,0.414912,0
0.004248,1,0.234043,0.076108,0.226569,0.003467,0.422915,0.414912,1
0.004248,1,0.255319,0.082473,0.331449,0.003467,0.422915,0.414912,1
0.004248,1,0.276596,0.085145,0.436031,0.003467,0.422915,0.414912,1
0.004248,1,0.297872,0.048367,0.460726,0.003467,0.422915,0.414912,0
0.004248,1,0.319149,0.048517,0.532728,0.003467,0.422915,0.414912,0
0.004248,1,0.340426,0.048367,0.551324,0.003467,0.422915,0.414912,0
0.004248,1,0.361702,0.048367,0.546266,0.003467,0.422915,0.414912,0
0.004248,1,0.382979,0.048517,0.580036,0.003467,0.422915,0.414912,0
0.004248,1,0.404255,0.048607,0.581672,0.003467,0.422915,0.414912,0
0.004248,1,0.425532,0.048607,0.565605,0.003467,0.422915,0.414912,0
0.004248,1,0.446809,0.048517,0.542844,0.003467,0.422915,0.414912,0
0.004248,1,0.468085,0.048517,0.514579,0.003467,0.422915,0.414912,0
0.004248,1,0.489362,0.048517,0.517406,0.003467,0.422915,0.414912,0
0.004248,1,0.510638,0.089798,0.516215,0.003467,0.422915,0.414912,1
0.004248,1,0.531915,0.089798,0.5,0.003467,0.422915,0.414912,1
0.004248,1,0.553191,0.081302,0.491074,0.003467,0.422915,0.414912,1
0.004248,1,0.574468,0.048517,0.485421,0.003467,0.422915,0.414912,0
0.004248,1,0.595745,0.089798,0.479173,0.003467,0.422915,0.414912,1
0.004248,1,0.617021,0.048517,0.466082,0.003467,0.422915,0.414912,0
0.004248,1,0.638298,0.048517,0.466528,0.003467,0.422915,0.414912,0
0.004248,1,0.659574,0.093191,0.472181,0.003467,0.422915,0.414912,1
0.004248,1,0.680851,0.048517,0.479768,0.003467,0.422915,0.414912,0
0.004248,1,0.702128,0.107302,0.539423,0.003467,0.422915,0.414912,1
0.004248,1,0.723404,0.048517,0.615739,0.003467,0.422915,0.414912,0
0.004248,1,0.744681,0.05221,0.673312,0.003467,0.422915,0.414912,0
0.004248,1,0.765957,0.048517,0.647426,0.003467,0.422915,0.414912,0
0.004248,1,0.787234,0.048367,0.612615,0.003467,0.422915,0.414912,0
0.004248,1,0.808511,0.048367,0.572597,0.003467,0.422915,0.414912,0
0.004248,1,0.829787,0.043353,0.540762,0.003467,0.422915,0.414912,0
0.004248,1,0.851064,0.048517,0.504909,0.003467,0.422915,0.414912,0
0.004248,1,0.87234,0.048367,0.488694,0.003467,0.422915,0.414912,0
0.004248,1,0.893617,0.047556,0.446593,0.003467,0.422915,0.414912,0
0.004248,1,0.914894,0.043353,0.398691,0.003467,0.422915,0.414912,0
0.004248,1,0.93617,0.048517,0.445849,0.003467,0.422915,0.414912,0
0.004248,1,0.957447,0.048517,0.447783,0.003467,0.422915,0.414912,0
0.004248,1,0.978723,0.076108,0.474561,0.003467,0.422915,0.414912,1
0.004248,1,1,0.076108,0.475156,0.003467,0.422915,0.414912,1
0.004292,2,0,0.076108,0.475156,0.003467,0.422915,0.414912,1
0.004292,2,0.021277,0.076798,0.459387,0.003467,0.422915,0.414912,1
0.004292,2,0.042553,0.059865,0.424427,0.003467,0.422915,0.414912,1
0.004292,2,0.06383,0.048517,0.370425,0.003467,0.422915,0.414912,0
0.004292,2,0.085106,0.076108,0.308242,0.003467,0.422915,0.414912,1
0.004292,2,0.106383,0.048367,0.263314,0.003467,0.422915,0.414912,0
0.004292,2,0.12766,0.043533,0.2169,0.003467,0.422915,0.414912,0
0.004292,2,0.148936,0.043533,0.177774,0.003467,0.422915,0.414912,0
0.004292,2,0.170213,0.043353,0.162005,0.003467,0.422915,0.414912,0
0.004292,2,0.191489,0.043353,0.166171,0.003467,0.422915,0.414912,0
0.004292,2,0.212766,0.043533,0.191163,0.003467,0.422915,0.414912,0
0.004292,2,0.234043,0.046806,0.236686,0.003467,0.422915,0.414912,0
0.004292,2,0.255319,0.076108,0.334573,0.003467,0.422915,0.414912,1
0.004292,2,0.276596,0.046926,0.43737,0.003467,0.422915,0.414912,0
0.004292,2,0.297872,0.043503,0.452246,0.003467,0.422915,0.414912,0
0.004292,2,0.319149,0.043533,0.511604,0.003467,0.422915,0.414912,0
0.004292,2,0.340426,0.043503,0.531687,0.003467,0.422915,0.414912,0
0.004292,2,0.361702,0.043503,0.526331,0.003467,0.422915,0.414912,0
0.004292,2,0.382979,0.047016,0.560994,0.003467,0.422915,0.414912,0
0.004292,2,0.404255,0.046806,0.575573,0.003467,0.422915,0.414912,0
0.004292,2,0.425532,0.046806,0.555936,0.003467,0.422915,0.414912,0
0.004292,2,0.446809,0.046806,0.538976,0.003467,0.422915,0.414912,0
0.004292,2,0.468085,0.046806,0.534067,0.003467,0.422915,0.414912,0
0.004292,2,0.489362,0.046806,0.525885,0.003467,0.422915,0.414912,0
0.004292,2,0.510638,0.046806,0.523207,0.003467,0.422915,0.414912,0
0.004292,2,0.531915,0.046806,0.513091,0.003467,0.422915,0.414912,0
0.004292,2,0.553191,0.046806,0.508628,0.003467,0.422915,0.414912,0
0.004292,2,0.574468,0.046806,0.511157,0.003467,0.422915,0.414912,0
0.004292,2,0.595745,0.046806,0.500595,0.003467,0.422915,0.414912,0
0.004292,2,0.617021,0.046806,0.490033,0.003467,0.422915,0.414912,0
0.004292,2,0.638298,0.046806,0.490925,0.003467,0.422915,0.414912,0
0.004292,2,0.659574,0.046806,0.505653,0.003467,0.422915,0.414912,0
0.004292,2,0.680851,0.046956,0.529604,0.003467,0.422915,0.414912,0
0.004292,2,0.702128,0.077789,0.576614,0.003467,0.422915,0.414912,1
0.004292,2,0.723404,0.046956,0.638649,0.003467,0.422915,0.414912,0
0.004292,2,0.744681,0.046956,0.681196,0.003467,0.422915,0.414912,0
0.004292,2,0.765957,0.046806,0.658137,0.003467,0.422915,0.414912,0
0.004292,2,0.787234,0.043533,0.619756,0.003467,0.422915,0.414912,0
0.004292,2,0.808511,0.043533,0.576614,0.003467,0.422915,0.414912,0
0.004292,2,0.829787,0.043533,0.547754,0.003467,0.422915,0.414912,0
0.004292,2,0.851064,0.046806,0.515174,0.003467,0.422915,0.414912,0
0.004292,2,0.87234,0.046806,0.5,0.003467,0.422915,0.414912,0
0.004292,2,0.893617,0.043533,0.451503,0.003467,0.422915,0.414912,0
0.004292,2,0.914894,0.043353,0.407914,0.003467,0.422915,0.414912,0
0.004292,2,0.93617,0.046956,0.450759,0.003467,0.422915,0.414912,0
0.004292,2,0.957447,0.046806,0.462214,0.003467,0.422915,0.414912,0
0.004292,2,0.978723,0.047076,0.48795,0.003467,0.422915,0.414912,0
0.004292,2,1,0.046956,0.488099,0.003467,0.422915,0.414912,0
0.004336,3,0,0.047076,0.480661,0.003467,0.422915,0.414912,0
0.004336,3,0.021277,0.047076,0.462065,0.003467,0.422915,0.414912,0
0.004336,3,0.042553,0.046956,0.427849,0.003467,0.422915,0.414912,0
0.004336,3,0.06383,0.046956,0.367301,0.003467,0.422915,0.414912,0
0.004336,3,0.085106,0.046806,0.308985,0.003467,0.422915,0.414912,0
0.004336,3,0.106383,0.076108,0.263314,0.003467,0.422915,0.414912,1
0.004336,3,0.12766,0.043533,0.221065,0.003467,0.422915,0.414912,0
0.004336,3,0.148936,0.076108,0.191758,0.003467,0.422915,0.414912,1
0.004336,3,0.170213,0.043533,0.170783,0.003467,0.422915,0.414912,0
0.004336,3,0.191489,0.043533,0.170485,0.003467,0.422915,0.414912,0
0.004336,3,0.212766,0.074877,0.201726,0.003467,0.422915,0.414912,1
0.004336,3,0.234043,0.076798,0.25305,0.003467,0.422915,0.414912,1
0.004336,3,0.255319,0.082473,0.35183,0.003467,0.422915,0.414912,1
0.004336,3,0.276596,0.082473,0.456561,0.003467,0.422915,0.414912,1
0.004336,3,0.297872,0.043533,0.479322,0.003467,0.422915,0.414912,0
0.004336,3,0.319149,0.043533,0.534365,0.003467,0.422915,0.414912,0
0.004336,3,0.340426,0.043533,0.552365,0.003467,0.422915,0.414912,0
0.004336,3,0.361702,0.043533,0.543439,0.003467,0.422915,0.414912,0
0.004336,3,0.382979,0.045394,0.578399,0.003467,0.422915,0.414912,0
0.004336,3,0.404255,0.045244,0.584499,0.003467,0.422915,0.414912,0
0.004336,3,0.425532,0.045244,0.559357,0.003467,0.422915,0.414912,0
0.004336,3,0.446809,0.045244,0.53972,0.003467,0.422915,0.414912,0
0.004336,3,0.468085,0.045244,0.518149,0.003467,0.422915,0.414912,0
0.004336,3,0.489362,0.045244,0.511455,0.003467,0.422915,0.414912,0
0.004336,3,0.510638,0.045244,0.502083,0.003467,0.422915,0.414912,0
0.004336,3,0.531915,0.045244,0.48676,0.003467,0.422915,0.414912,0
0.004336,3,0.553191,0.045244,0.481404,0.003467,0.422915,0.414912,0
0.004336,3,0.574468,0.043863,0.479322,0.003467,0.422915,0.414912,0
0.004336,3,0.595745,0.045244,0.480214,0.003467,0.422915,0.414912,0
0.004336,3,0.617021,0.045274,0.465338,0.003467,0.422915,0.414912,0
0.004336,3,0.638298,0.045244,0.464891,0.003467,0.422915,0.414912,0
0.004336,3,0.659574,0.045244,0.470396,0.003467,0.422915,0.414912,0
0.004336,3,0.680851,0.045244,0.490181,0.003467,0.422915,0.414912,0
0.004336,3,0.702128,0.045244,0.531836,0.003467,0.422915,0.414912,0
0.004336,3,0.723404,0.043983,0.615293,0.003467,0.422915,0.414912,0
0.004336,3,0.744681,0.045244,0.67465,0.003467,0.422915,0.414912,0
0.004336,3,0.765957,0.045244,0.659625,0.003467,0.422915,0.414912,0
0.004336,3,0.787234,0.043563,0.635228,0.003467,0.422915,0.414912,0
0.004336,3,0.808511,0.043563,0.59283,0.003467,0.422915,0.414912,0
0.004336,3,0.829787,0.043533,0.569473,0.003467,0.422915,0.414912,0
0.004336,3,0.851064,0.045394,0.550431,0.003467,0.422915,0.414912,0
0.004336,3,0.87234,0.045244,0.531389,0.003467,0.422915,0.414912,0
0.004336,3,0.893617,0.043893,0.485123,0.003467,0.422915,0.414912,0
0.004336,3,0.914894,0.043533,0.431866,0.003467,0.422915,0.414912,0
0.004336,3,0.93617,0.045394,0.480661,0.003467,0.422915,0.414912,0
0.004336,3,0.957447,0.045394,0.486611,0.003467,0.422915,0.414912,0
0.004336,3,0.978723,0.045394,0.508033,0.003467,0.422915,0.414912,0
0.004336,3,1,0.045394,0.506397,0.003467,0.422915,0.414912,0
0.00438,4,0,0.045394,0.498364,0.003467,0.422915,0.414912,0
0.00438,4,0.021277,0.076228,0.481107,0.003467,0.422915,0.414912,1
0.00438,4,0.042553,0.045394,0.450907,0.003467,0.422915,0.414912,0
0.00438,4,0.06383,0.045244,0.385302,0.003467,0.422915,0.414912,0
0.00438,4,0.085106,0.045244,0.323862,0.003467,0.422915,0.414912,0
0.00438,4,0.106383,0.043563,0.280571,0.003467,0.422915,0.414912,0
0.00438,4,0.12766,0.043533,0.235198,0.003467,0.422915,0.414912,0
0.00438,4,0.148936,0.043533,0.203065,0.003467,0.422915,0.414912,0
0.00438,4,0.170213,0.043533,0.186403,0.003467,0.422915,0.414912,0
0.00438,4,0.191489,0.043533,0.181494,0.003467,0.422915,0.414912,0
0.00438,4,0.212766,0.075507,0.205147,0.003467,0.422915,0.414912,1
0.00438,4,0.234043,0.077789,0.256918,0.003467,0.422915,0.414912,1
0.00438,4,0.255319,0.083884,0.36269,0.003467,0.422915,0.414912,1
0.00438,4,0.276596,0.077789,0.466379,0.003467,0.422915,0.414912,1
0.00438,4,0.297872,0.043743,0.501488,0.003467,0.422915,0.414912,0
0.00438,4,0.319149,0.045244,0.571259,0.003467,0.422915,0.414912,0
0.00438,4,0.340426,0.043923,0.594763,0.003467,0.422915,0.414912,0
0.00438,4,0.361702,0.043893,0.580928,0.003467,0.422915,0.414912,0
0.00438,4,0.382979,0.045394,0.60488,0.003467,0.422915,0.414912,0
0.00438,4,0.404255,0.045394,0.609938,0.003467,0.422915,0.414912,0
0.00438,4,0.425532,0.045244,0.579143,0.003467,0.422915,0.414912,0
0.00438,4,0.446809,0.045244,0.556382,0.003467,0.422915,0.414912,0
0.00438,4,0.468085,0.045304,0.536299,0.003467,0.422915,0.414912,0
0.00438,4,0.489362,0.045394,0.522315,0.003467,0.422915,0.414912,0
0.00438,4,0.510638,0.045244,0.514579,0.003467,0.422915,0.414912,0
0.00438,4,0.531915,0.045214,0.497471,0.003467,0.422915,0.414912,0
0.00438,4,0.553191,0.045244,0.484826,0.003467,0.422915,0.414912,0
0.00438,4,0.574468,0.043893,0.480958,0.003467,0.422915,0.414912,0
0.00438,4,0.595745,0.045244,0.471735,0.003467,0.422915,0.414912,0
0.00438,4,0.617021,0.045244,0.461619,0.003467,0.422915,0.414912,0
0.00438,4,0.638298,0.043743,0.459387,0.003467,0.422915,0.414912,0
0.00438,4,0.659574,0.045244,0.47114,0.003467,0.422915,0.414912,0
0.00438,4,0.680851,0.045244,0.492413,0.003467,0.422915,0.414912,0
0.00438,4,0.702128,0.045244,0.535109,0.003467,0.422915,0.414912,0
0.00438,4,0.723404,0.045244,0.617971,0.003467,0.422915,0.414912,0
0.00438,4,0.744681,0.045394,0.688634,0.003467,0.422915,0.414912,0
0.00438,4,0.765957,0.045244,0.68194,0.003467,0.422915,0.414912,0
0.00438,4,0.787234,0.045244,0.665873,0.003467,0.422915,0.414912,0
0.00438,4,0.808511,0.043893,0.63374,0.003467,0.422915,0.414912,0
0.00438,4,0.829787,0.043893,0.603243,0.003467,0.422915,0.414912,0
0.00438,4,0.851064,0.045394,0.599375,0.003467,0.422915,0.414912,0
0.00438,4,0.87234,0.045394,0.580184,0.003467,0.422915,0.414912,0
0.00438,4,0.893617,0.045244,0.526331,0.003467,0.422915,0.414912,0
0.00438,4,0.914894,0.043893,0.475305,0.003467,0.422915,0.414912,0
0.00438,4,0.93617,0.07893,0.513835,0.003467,0.422915,0.414912,1
0.00438,4,0.957447,0.045515,0.521868,0.003467,0.422915,0.414912,0
0.00438,4,0.978723,0.077789,0.534365,0.003467,0.422915,0.414912,1
0.00438,4,1,0.045515,0.524249,0.003467,0.422915,0.414912,0
0.004425,5,0,0.077789,0.513984,0.003467,0.422915,0.414912,1
0.004425,5,0.021277,0.045515,0.491669,0.003467,0.422915,0.414912,0
0.004425,5,0.042553,0.045394,0.461321,0.003467,0.422915,0.414912,0
0.004425,5,0.06383,0.045244,0.400476,0.003467,0.422915,0.414912,0
0.004425,5,0.085106,0.045244,0.338738,0.003467,0.422915,0.414912,0
0.004425,5,0.106383,0.045244,0.286373,0.003467,0.422915,0.414912,0
0.004425,5,0.12766,0.043533,0.243082,0.003467,0.422915,0.414912,0
0.004425,5,0.148936,0.043533,0.212734,0.003467,0.422915,0.414912,0
0.004425,5,0.170213,0.075507,0.191461,0.003467,0.422915,0.414912,1
0.004425,5,0.191489,0.075507,0.193692,0.003467,0.422915,0.414912,1
0.004425,5,0.212766,0.076798,0.220916,0.003467,0.422915,0.414912,1
0.004425,5,0.234043,0.077249,0.271348,0.003467,0.422915,0.414912,1
0.004425,5,0.255319,0.07902,0.377864,0.003467,0.422915,0.414912,1
0.004425,5,0.276596,0.07902,0.488843,0.003467,0.422915,0.414912,1
0.004425,5,0.297872,0.045394,0.508628,0.003467,0.422915,0.414912,0
0.004425,5,0.319149,0.050168,0.591342,0.003467,0.422915,0.414912,0
0.004425,5,0.340426,0.050198,0.617525,0.003467,0.422915,0.414912,0
0.004425,5,0.361702,0.045394,0.602053,0.003467,0.422915,0.414912,0
0.004425,5,0.382979,0.050949,0.637905,0.003467,0.422915,0.414912,0
0.004425,5,0.404255,0.050949,0.637162,0.003467,0.422915,0.414912,0
0.004425,5,0.425532,0.050468,0.597144,0.003467,0.422915,0.414912,0
0.004425,5,0.446809,0.050168,0.577358,0.003467,0.422915,0.414912,0
0.004425,5,0.468085,0.050468,0.555936,0.003467,0.422915,0.414912,0
0.004425,5,0.489362,0.049388,0.540464,0.003467,0.422915,0.414912,0
0.004425,5,0.510638,0.050168,0.528414,0.003467,0.422915,0.414912,0
0.004425,5,0.531915,0.047706,0.516215,0.003467,0.422915,0.414912,0
0.004425,5,0.553191,0.050168,0.503719,0.003467,0.422915,0.414912,0
0.004425,5,0.574468,0.050168,0.489438,0.003467,0.422915,0.414912,0
0.004425,5,0.595745,0.050168,0.478132,0.003467,0.422915,0.414912,0
0.004425,5,0.617021,0.050168,0.466677,0.003467,0.422915,0.414912,0
0.004425,5,0.638298,0.050168,0.452841,0.003467,0.422915,0.414912,0
0.004425,5,0.659574,0.050168,0.472925,0.003467,0.422915,0.414912,0
0.004425,5,0.680851,0.050168,0.496578,0.003467,0.422915,0.414912,0
0.004425,5,0.702128,0.050949,0.54091,0.003467,0.422915,0.414912,0
0.004425,5,0.723404,0.050468,0.622285,0.003467,0.422915,0.414912,0
0.004425,5,0.744681,0.050468,0.683576,0.003467,0.422915,0.414912,0
0.004425,5,0.765957,0.050468,0.675989,0.003467,0.422915,0.414912,0
0.004425,5,0.787234,0.050168,0.645641,0.003467,0.422915,0.414912,0
0.004425,5,0.808511,0.045394,0.613062,0.003467,0.422915,0.414912,0
0.004425,5,0.829787,0.045394,0.587771,0.003467,0.422915,0.414912,0
0.004425,5,0.851064,0.050949,0.570217,0.003467,0.422915,0.414912,0
0.004425,5,0.87234,0.050168,0.551324,0.003467,0.422915,0.414912,0
0.004425,5,0.893617,0.050168,0.507736,0.003467,0.422915,0.414912,0
0.004425,5,0.914894,0.050168,0.462809,0.003467,0.422915,0.414912,0
0.004425,5,0.93617,0.07902,0.516513,0.003467,0.422915,0.414912,1
0.004425,5,0.957447,0.07902,0.525885,0.003467,0.422915,0.414912,1
0.004425,5,0.978723,0.077249,0.535406,0.003467,0.422915,0.414912,1
0.004425,5,1,0.07902,0.523654,0.003467,0.422915,0.414912,1
0.004469,6,0,0.077249,0.512199,0.003467,0.422915,0.414912,1
0.004469,6,0.021277,0.077249,0.482743,0.003467,0.422915,0.414912,1
0.004469,6,0.042553,0.050468,0.453734,0.003467,0.422915,0.414912,0
0.004469,6,0.06383,0.045394,0.382178,0.003467,0.422915,0.414912,0
0.004469,6,0.085106,0.045244,0.322523,0.003467,0.422915,0.414912,0
0.004469,6,0.106383,0.050468,0.275513,0.003467,0.422915,0.414912,0
0.004469,6,0.12766,0.045244,0.225082,0.003467,0.422915,0.414912,0
0.004469,6,0.148936,0.043533,0.182832,0.003467,0.422915,0.414912,0
0.004469,6,0.170213,0.043533,0.157691,0.003467,0.422915,0.414912,0
0.004469,6,0.191489,0.058514,0.148914,0.003467,0.422915,0.414912,1
0.004469,6,0.212766,0.058514,0.153228,0.003467,0.422915,0.414912,1
0.004469,6,0.234043,0.058514,0.169741,0.003467,0.422915,0.414912,1
0.004469,6,0.255319,0.063648,0.204999,0.003467,0.422915,0.414912,1
0.004469,6,0.276596,0.063648,0.242041,0.003467,0.422915,0.414912,1
0.004469,6,0.297872,0.064489,0.300208,0.003467,0.422915,0.414912,1
0.004469,6,0.319149,0.089498,0.392294,0.003467,0.422915,0.414912,1
0.004469,6,0.340426,0.099616,0.474115,0.003467,0.422915,0.414912,1
0.004469,6,0.361702,0.099616,0.522315,0.003467,0.422915,0.414912,1
0.004469,6,0.382979,0.099616,0.561143,0.003467,0.422915,0.414912,1
0.004469,6,0.404255,0.089498,0.564415,0.003467,0.422915,0.414912,1
0.004469,6,0.425532,0.089498,0.538381,0.003467,0.422915,0.414912,1
0.004469,6,0.446809,0.043953,0.499405,0.003467,0.422915,0.414912,0
0.004469,6,0.468085,0.043833,0.465189,0.003467,0.422915,0.414912,0
0.004469,6,0.489362,0.043833,0.440494,0.003467,0.422915,0.414912,0
0.004469,6,0.510638,0.043833,0.411931,0.003467,0.422915,0.414912,0
0.004469,6,0.531915,0.043833,0.387831,0.003467,0.422915,0.414912,0
0.004469,6,0.553191,0.043683,0.358971,0.003467,0.422915,0.414912,0
0.004469,6,0.574468,0.075417,0.339334,0.003467,0.422915,0.414912,1
0.004469,6,0.595745,0.043683,0.320292,0.003467,0.422915,0.414912,0
0.004469,6,0.617021,0.043683,0.308688,0.003467,0.422915,0.414912,0
0.004469,6,0.638298,0.043683,0.307795,0.003467,0.422915,0.414912,0
0.004469,6,0.659574,0.043683,0.322523,0.003467,0.422915,0.414912,0
0.004469,6,0.680851,0.087667,0.357483,0.003467,0.422915,0.414912,1
0.004469,6,0.702128,0.044104,0.433948,0.003467,0.422915,0.414912,0
0.004469,6,0.723404,0.106761,0.536745,0.003467,0.422915,0.414912,1
0.004469,6,0.744681,0.112195,0.62169,0.003467,0.422915,0.414912,1
0.004469,6,0.765957,0.112195,0.632104,0.003467,0.422915,0.414912,1
0.004469,6,0.787234,0.096463,0.5964,0.003467,0.422915,0.414912,1
0.004469,6,0.808511,0.089498,0.553853,0.003467,0.422915,0.414912,1
0.004469,6,0.829787,0.089498,0.535852,0.003467,0.422915,0.414912,1
0.004469,6,0.851064,0.089498,0.505504,0.003467,0.422915,0.414912,1
0.004469,6,0.87234,0.043833,0.485867,0.003467,0.422915,0.414912,0
0.004469,6,0.893617,0.043833,0.452544,0.003467,0.422915,0.414912,0
0.004469,6,0.914894,0.043833,0.415501,0.003467,0.422915,0.414912,0
0.004469,6,0.93617,0.087667,0.437816,0.003467,0.422915,0.414912,1
0.004469,6,0.957447,0.063648,0.435138,0.003467,0.422915,0.414912,0
0.004469,6,0.978723,0.064489,0.441386,0.003467,0.422915,0.414912,0
0.004469,6,1,0.043833,0.416989,0.003467,0.422915,0.414912,0
0.004513,7,0,0.043833,0.392443,0.003467,0.422915,0.414912,0
0.004513,7,0.021277,0.043683,0.343945,0.003467,0.422915,0.414912,0
0.004513,7,0.042553,0.043683,0.317911,0.003467,0.422915,0.414912,0
0.004513,7,0.06383,0.043533,0.265248,0.003467,0.422915,0.414912,0
0.004513,7,0.085106,0.043533,0.217346,0.003467,0.422915,0.414912,0
0.004513,7,0.106383,0.058514,0.17837,0.003467,0.422915,0.414912,0
0.004513,7,0.12766,0.058514,0.145641,0.003467,0.422915,0.414912,0
0.004513,7,0.148936,0.051459,0.127343,0.003467,0.422915,0.414912,0
0.004513,7,0.170213,0.058514,0.115591,0.003467,0.422915,0.414912,0
0.004513,7,0.191489,0.058514,0.107855,0.003467,0.422915,0.414912,0
0.004513,7,0.212766,0.058514,0.114996,0.003467,0.422915,0.414912,0
0.004513,7,0.234043,0.063648,0.12645,0.003467,0.422915,0.414912,0
0.004513,7,0.255319,0.063648,0.149509,0.003467,0.422915,0.414912,0
0.004513,7,0.276596,0.043683,0.173312,0.003467,0.422915,0.414912,0
0.004513,7,0.297872,0.075417,0.204999,0.003467,0.422915,0.414912,1
0.004513,7,0.319149,0.075417,0.285927,0.003467,0.422915,0.414912,1
0.004513,7,0.340426,0.087667,0.36507,0.003467,0.422915,0.414912,1
0.004513,7,0.361702,0.092771,0.420411,0.003467,0.422915,0.414912,1
0.004513,7,0.382979,0.106761,0.472032,0.003467,0.422915,0.414912,1
0.004513,7,0.404255,0.102198,0.490181,0.003467,0.422915,0.414912,1
0.004513,7,0.425532,0.102198,0.47828,0.003467,0.422915,0.414912,1
0.004513,7,0.446809,0.089498,0.445254,0.003467,0.422915,0.414912,1
0.004513,7,0.468085,0.075417,0.415948,0.003467,0.422915,0.414912,1
0.004513,7,0.489362,0.043953,0.391104,0.003467,0.422915,0.414912,0
0.004513,7,0.510638,0.043833,0.362987,0.003467,0.422915,0.414912,0
0.004513,7,0.531915,0.043683,0.340821,0.003467,0.422915,0.414912,0
0.004513,7,0.553191,0.043683,0.315382,0.003467,0.422915,0.414912,0
0.004513,7,0.574468,0.043683,0.295745,0.003467,0.422915,0.414912,0
0.004513,7,0.595745,0.043683,0.284142,0.003467,0.422915,0.414912,0
0.004513,7,0.617021,0.043683,0.275067,0.003467,0.422915,0.414912,0
0.004513,7,0.638298,0.043683,0.277893,0.003467,0.422915,0.414912,0
0.004513,7,0.659574,0.043683,0.295894,0.003467,0.422915,0.414912,0
0.004513,7,0.680851,0.043683,0.331895,0.003467,0.422915,0.414912,0
0.004513,7,0.702128,0.089768,0.418179,0.003467,0.422915,0.414912,1
0.004513,7,0.723404,0.102168,0.512348,0.003467,0.422915,0.414912,1
0.004513,7,0.744681,0.098805,0.594317,0.003467,0.422915,0.414912,1
0.004513,7,0.765957,0.092771,0.60726,0.003467,0.422915,0.414912,1
0.004513,7,0.787234,0.089498,0.593722,0.003467,0.422915,0.414912,1
0.004513,7,0.808511,0.089498,0.56263,0.003467,0.422915,0.414912,1
0.004513,7,0.829787,0.046415,0.53972,0.003467,0.422915,0.414912,0
0.004513,7,0.851064,0.089498,0.516959,0.003467,0.422915,0.414912,1
0.004513,7,0.87234,0.043953,0.500446,0.003467,0.422915,0.414912,0
0.004513,7,0.893617,0.043833,0.463255,0.003467,0.422915,0.414912,0
0.004513,7,0.914894,0.043833,0.421749,0.003467,0.422915,0.414912,0
0.004513,7,0.93617,0.089498,0.450015,0.003467,0.422915,0.414912,1
0.004513,7,0.957447,0.043833,0.430675,0.003467,0.422915,0.414912,0
0.004513,7,0.978723,0.043833,0.417882,0.003467,0.422915,0.414912,0
0.004513,7,1,0.043683,0.384261,0.003467,0.422915,0.414912,0
0.004557,1,0,0.043683,0.360309,0.003467,0.422915,0.414912,0
0.004557,1,0.021277,0.043683,0.320738,0.003467,0.422915,0.414912,0
0.004557,1,0.042553,0.043683,0.294406,0.003467,0.422915,0.414912,0
0.004557,1,0.06383,0.058514,0.246355,0.003467,0.422915,0.414912,0
0.004557,1,0.085106,0.058514,0.202321,0.003467,0.422915,0.414912,0
0.004557,1,0.106383,0.063648,0.176733,0.003467,0.422915,0.414912,0
0.004557,1,0.12766,0.063648,0.147278,0.003467,0.422915,0.414912,0
0.004557,1,0.148936,0.058514,0.129426,0.003467,0.422915,0.414912,0
0.004557,1,0.170213,0.063648,0.114252,0.003467,0.422915,0.414912,0
0.004557,1,0.191489,0.063648,0.108301,0.003467,0.422915,0.414912,0
0.004557,1,0.212766,0.068632,0.117227,0.003467,0.422915,0.414912,1
0.004557,1,0.234043,0.070614,0.137757,0.003467,0.422915,0.414912,1
0.004557,1,0.255319,0.081722,0.171824,0.003467,0.422915,0.414912,1
0.004557,1,0.276596,0.070614,0.203065,0.003467,0.422915,0.414912,1
0.004557,1,0.297872,0.075417,0.225231,0.003467,0.422915,0.414912,1
0.004557,1,0.319149,0.075417,0.295001,0.003467,0.422915,0.414912,1
0.004557,1,0.340426,0.075417,0.372954,0.003467,0.422915,0.414912,1
0.004557,1,0.361702,0.075417,0.4277,0.003467,0.422915,0.414912,1
0.004557,1,0.382979,0.095803,0.48557,0.003467,0.422915,0.414912,1
0.004557,1,0.404255,0.095803,0.505951,0.003467,0.422915,0.414912,1
0.004557,1,0.425532,0.089498,0.499702,0.003467,0.422915,0.414912,1
0.004557,1,0.446809,0.082503,0.475305,0.003467,0.422915,0.414912,1
0.004557,1,0.468085,0.095803,0.446147,0.003467,0.422915,0.414912,1
0.004557,1,0.489362,0.095803,0.428295,0.003467,0.422915,0.414912,1
0.004557,1,0.510638,0.089498,0.416245,0.003467,0.422915,0.414912,1
0.004557,1,0.531915,0.093611,0.400625,0.003467,0.422915,0.414912,1
0.004557,1,0.553191,0.093611,0.389616,0.003467,0.422915,0.414912,1
0.004557,1,0.574468,0.089498,0.376376,0.003467,0.422915,0.414912,1
0.004557,1,0.595745,0.087667,0.374145,0.003467,0.422915,0.414912,1
0.004557,1,0.617021,0.089498,0.373103,0.003467,0.422915,0.414912,1
0.004557,1,0.638298,0.093611,0.374145,0.003467,0.422915,0.414912,1
0.004557,1,0.659574,0.095803,0.402112,0.003467,0.422915,0.414912,1
0.004557,1,0.680851,0.104209,0.440643,0.003467,0.422915,0.414912,1
0.004557,1,0.702128,0.110964,0.506248,0.003467,0.422915,0.414912,1
0.004557,1,0.723404,0.18425,0.617822,0.003467,0.422915,0.414912,1
0.004557,1,0.744681,0.19776,0.696073,0.003467,0.422915,0.414912,1
0.004557,1,0.765957,0.152516,0.685808,0.003467,0.422915,0.414912,1
0.004557,1,0.787234,0.152516,0.663344,0.003467,0.422915,0.414912,1
0.004557,1,0.808511,0.121202,0.634186,0.003467,0.422915,0.414912,1
0.004557,1,0.829787,0.121202,0.610979,0.003467,0.422915,0.414912,1
0.004557,1,0.851064,0.106761,0.577358,0.003467,0.422915,0.414912,1
0.004557,1,0.87234,0.095803,0.54701,0.003467,0.422915,0.414912,1
0.004557,1,0.893617,0.043833,0.494942,0.003467,0.422915,0.414912,0
0.004557,1,0.914894,0.043833,0.43975,0.003467,0.422915,0.414912,0
0.004557,1,0.93617,0.089498,0.44942,0.003467,0.422915,0.414912,1
0.004557,1,0.957447,0.045364,0.431419,0.003467,0.422915,0.414912,0
0.004557,1,0.978723,0.063648,0.443023,0.003467,0.422915,0.414912,0
0.004557,1,1,0.043833,0.433056,0.003467,0.422915,0.414912,0
0.004602,2,0,0.063648,0.430378,0.003467,0.422915,0.414912,0
0.004602,2,0.021277,0.043833,0.394377,0.003467,0.422915,0.414912,0
0.004602,2,0.042553,0.043833,0.383368,0.003467,0.422915,0.414912,0
0.004602,2,0.06383,0.043683,0.334722,0.003467,0.422915,0.414912,0
0.004602,2,0.085106,0.043683,0.282654,0.003467,0.422915,0.414912,0
0.004602,2,0.106383,0.058514,0.250521,0.003467,0.422915,0.414912,0
0.004602,2,0.12766,0.043683,0.213329,0.003467,0.422915,0.414912,0
0.004602,2,0.148936,0.058514,0.184618,0.003467,0.422915,0.414912,0
0.004602,2,0.170213,0.075507,0.171973,0.003467,0.422915,0.414912,0
0.004602,2,0.191489,0.075627,0.174799,0.003467,0.422915,0.414912,0
0.004602,2,0.212766,0.077069,0.20723,0.003467,0.422915,0.414912,0
0.004602,2,0.234043,0.07878,0.257066,0.003467,0.422915,0.414912,0
0.004602,2,0.255319,0.07878,0.36745,0.003467,0.422915,0.414912,0
0.004602,2,0.276596,0.07878,0.486611,0.003467,0.422915,0.414912,0
0.004602,2,0.297872,0.043683,0.52291,0.003467,0.422915,0.414912,0
0.004602,2,0.319149,0.043833,0.611128,0.003467,0.422915,0.414912,0
0.004602,2,0.340426,0.043833,0.640137,0.003467,0.422915,0.414912,0
0.004602,2,0.361702,0.043833,0.642071,0.003467,0.422915,0.414912,0
0.004602,2,0.382979,0.121202,0.672716,0.003467,0.422915,0.414912,1
0.004602,2,0.404255,0.121202,0.681196,0.003467,0.422915,0.414912,1
0.004602,2,0.425532,0.043953,0.65665,0.003467,0.422915,0.414912,0
0.004602,2,0.446809,0.121202,0.631062,0.003467,0.422915,0.414912,1
0.004602,2,0.468085,0.043833,0.613359,0.003467,0.422915,0.414912,0
0.004602,2,0.489362,0.089498,0.59878,0.003467,0.422915,0.414912,1
0.004602,2,0.510638,0.121202,0.591342,0.003467,0.422915,0.414912,1
0.004602,2,0.531915,0.089498,0.583457,0.003467,0.422915,0.414912,1
0.004602,2,0.553191,0.089498,0.574978,0.003467,0.422915,0.414912,1
0.004602,2,0.574468,0.121202,0.571407,0.003467,0.422915,0.414912,1
0.004602,2,0.595745,0.043833,0.559952,0.003467,0.422915,0.414912,0
0.004602,2,0.617021,0.089498,0.547902,0.003467,0.422915,0.414912,1
0.004602,2,0.638298,0.121202,0.550134,0.003467,0.422915,0.414912,1
0.004602,2,0.659574,0.121202,0.569176,0.003467,0.422915,0.414912,1
0.004602,2,0.680851,0.121202,0.598929,0.003467,0.422915,0.414912,1
0.004602,2,0.702128,0.152756,0.667063,0.003467,0.422915,0.414912,1
0.004602,2,0.723404,0.150354,0.76748,0.003467,0.422915,0.414912,1
0.004602,2,0.744681,0.121202,0.829366,0.003467,0.422915,0.414912,1
0.004602,2,0.765957,0.121202,0.819101,0.003467,0.422915,0.414912,1
0.004602,2,0.787234,0.121202,0.788456,0.003467,0.422915,0.414912,1
0.004602,2,0.808511,0.121202,0.74695,0.003467,0.422915,0.414912,1
0.004602,2,0.829787,0.043953,0.709313,0.003467,0.422915,0.414912,0
0.004602,2,0.851064,0.121202,0.6867,0.003467,0.422915,0.414912,1
0.004602,2,0.87234,0.121202,0.654121,0.003467,0.422915,0.414912,1
0.004602,2,0.893617,0.043833,0.595805,0.003467,0.422915,0.414912,0
0.004602,2,0.914894,0.07878,0.541654,0.003467,0.422915,0.414912,0
0.004602,2,0.93617,0.086075,0.569473,0.003467,0.422915,0.414912,1
0.004602,2,0.957447,0.07878,0.546415,0.003467,0.422915,0.414912,0
0.004602,2,0.978723,0.07878,0.562333,0.003467,0.422915,0.414912,0
0.004602,2,1,0.07878,0.551175,0.003467,0.422915,0.414912,0
0.004646,3,0,0.07878,0.542844,0.003467,0.422915,0.414912,0
0.004646,3,0.021277,0.07878,0.523505,0.003467,0.422915,0.414912,0
0.004646,3,0.042553,0.07878,0.502975,0.003467,0.422915,0.414912,0
0.004646,3,0.06383,0.07854,0.432907,0.003467,0.422915,0.414912,0
0.004646,3,0.085106,0.077069,0.37355,0.003467,0.422915,0.414912,0
0.004646,3,0.106383,0.077069,0.330408,0.003467,0.422915,0.414912,0
0.004646,3,0.12766,0.077069,0.278935,0.003467,0.422915,0.414912,0
0.004646,3,0.148936,0.075507,0.243231,0.003467,0.422915,0.414912,0
0.004646,3,0.170213,0.076798,0.222404,0.003467,0.422915,0.414912,0
0.004646,3,0.191489,0.076798,0.221214,0.003467,0.422915,0.414912,0
0.004646,3,0.212766,0.076798,0.244124,0.003467,0.422915,0.414912,0
0.004646,3,0.234043,0.079891,0.29396,0.003467,0.422915,0.414912,0
0.004646,3,0.255319,0.086075,0.397352,0.003467,0.422915,0.414912,0
0.004646,3,0.276596,0.086075,0.513984,0.003467,0.422915,0.414912,0
0.004646,3,0.297872,0.089798,0.552068,0.003467,0.422915,0.414912,1
0.004646,3,0.319149,0.089798,0.639839,0.003467,0.422915,0.414912,1
0.004646,3,0.340426,0.089798,0.665129,0.003467,0.422915,0.414912,0
0.004646,3,0.361702,0.089798,0.653823,0.003467,0.422915,0.414912,0
0.004646,3,0.382979,0.152756,0.682535,0.003467,0.422915,0.414912,1
0.004646,3,0.404255,0.119731,0.679708,0.003467,0.422915,0.414912,1
0.004646,3,0.425532,0.152756,0.65903,0.003467,0.422915,0.414912,1
0.004646,3,0.446809,0.119731,0.630765,0.003467,0.422915,0.414912,1
0.004646,3,0.468085,0.119731,0.612467,0.003467,0.422915,0.414912,1
0.004646,3,0.489362,0.152756,0.616483,0.003467,0.422915,0.414912,1
0.004646,3,0.510638,0.152756,0.588069,0.003467,0.422915,0.414912,1
0.004646,3,0.531915,0.119731,0.580333,0.003467,0.422915,0.414912,1
0.004646,3,0.553191,0.119731,0.586879,0.003467,0.422915,0.414912,1
0.004646,3,0.574468,0.152756,0.580928,0.003467,0.422915,0.414912,1
0.004646,3,0.595745,0.120151,0.570068,0.003467,0.422915,0.414912,1
0.004646,3,0.617021,0.120151,0.562779,0.003467,0.422915,0.414912,1
0.004646,3,0.638298,0.140417,0.565308,0.003467,0.422915,0.414912,1
0.004646,3,0.659574,0.160532,0.600863,0.003467,0.422915,0.414912,1
0.004646,3,0.680851,0.179596,0.645344,0.003467,0.422915,0.414912,1
0.004646,3,0.702128,0.224931,0.704552,0.003467,0.422915,0.414912,1
0.004646,3,0.723404,0.224931,0.772538,0.003467,0.422915,0.414912,1
0.004646,3,0.744681,0.224931,0.838441,0.003467,0.422915,0.414912,1
0.004646,3,0.765957,0.224931,0.827135,0.003467,0.422915,0.414912,1
0.004646,3,0.787234,0.179596,0.797977,0.003467,0.422915,0.414912,1
0.004646,3,0.808511,0.160532,0.753794,0.003467,0.422915,0.414912,1
0.004646,3,0.829787,0.152756,0.723743,0.003467,0.422915,0.414912,1
0.004646,3,0.851064,0.224481,0.691015,0.003467,0.422915,0.414912,1
0.004646,3,0.87234,0.179596,0.660369,0.003467,0.422915,0.414912,1
0.004646,3,0.893617,0.152756,0.602946,0.003467,0.422915,0.414912,1
0.004646,3,0.914894,0.074817,0.537638,0.003467,0.422915,0.414912,0
0.004646,3,0.93617,0.179596,0.567242,0.003467,0.422915,0.414912,1
0.004646,3,0.957447,0.099135,0.564267,0.003467,0.422915,0.414912,0
0.004646,3,0.978723,0.152756,0.563672,0.003467,0.422915,0.414912,1
0.004646,3,1,0.099135,0.555043,0.003467,0.422915,0.414912,0
0.00469,4,0,0.099135,0.546712,0.003467,0.422915,0.414912,0
0.00469,4,0.021277,0.095803,0.525141,0.003467,0.422915,0.414912,0
0.00469,4,0.042553,0.063138,0.497471,0.003467,0.422915,0.414912,0
0.00469,4,0.06383,0.076798,0.437072,0.003467,0.422915,0.414912,0
0.00469,4,0.085106,0.079891,0.374442,0.003467,0.422915,0.414912,0
0.00469,4,0.106383,0.076798,0.325647,0.003467,0.422915,0.414912,0
0.00469,4,0.12766,0.076798,0.281315,0.003467,0.422915,0.414912,0
0.00469,4,0.148936,0.042272,0.243231,0.003467,0.422915,0.414912,0
0.00469,4,0.170213,0.075177,0.22166,0.003467,0.422915,0.414912,0
0.00469,4,0.191489,0.075207,0.215115,0.003467,0.422915,0.414912,0
0.00469,4,0.212766,0.075627,0.242339,0.003467,0.422915,0.414912,0
0.00469,4,0.234043,0.075868,0.293216,0.003467,0.422915,0.414912,0
0.00469,4,0.255319,0.086075,0.395567,0.003467,0.422915,0.414912,0
0.00469,4,0.276596,0.119731,0.517703,0.003467,0.422915,0.414912,0
0.00469,4,0.297872,0.091059,0.555489,0.003467,0.422915,0.414912,0
0.00469,4,0.319149,0.120001,0.635079,0.003467,0.422915,0.414912,0
0.00469,4,0.340426,0.091059,0.656204,0.003467,0.422915,0.414912,0
0.00469,4,0.361702,0.091059,0.637013,0.003467,0.422915,0.414912,0
0.00469,4,0.382979,0.119731,0.666468,0.003467,0.422915,0.414912,0
0.00469,4,0.404255,0.119731,0.67108,0.003467,0.422915,0.414912,0
0.00469,4,0.425532,0.119731,0.647724,0.003467,0.422915,0.414912,0
0.00469,4,0.446809,0.119731,0.625855,0.003467,0.422915,0.414912,0
0.00469,4,0.468085,0.120001,0.60964,0.003467,0.422915,0.414912,0
0.00469,4,0.489362,0.119731,0.599673,0.003467,0.422915,0.414912,0
0.00469,4,0.510638,0.119731,0.592681,0.003467,0.422915,0.414912,0
0.00469,4,0.531915,0.120001,0.584499,0.003467,0.422915,0.414912,0
0.00469,4,0.553191,0.15807,0.578251,0.003467,0.422915,0.414912,1
0.00469,4,0.574468,0.181968,0.570663,0.003467,0.422915,0.414912,1
0.00469,4,0.595745,0.120001,0.56144,0.003467,0.422915,0.414912,0
0.00469,4,0.617021,0.120001,0.550878,0.003467,0.422915,0.414912,0
0.00469,4,0.638298,0.120001,0.544927,0.003467,0.422915,0.414912,0
0.00469,4,0.659574,0.120151,0.556828,0.003467,0.422915,0.414912,0
0.00469,4,0.680851,0.120151,0.591044,0.003467,0.422915,0.414912,0
0.00469,4,0.702128,0.181968,0.652633,0.003467,0.422915,0.414912,1
0.00469,4,0.723404,0.209109,0.743082,0.003467,0.422915,0.414912,1
0.00469,4,0.744681,0.225351,0.808688,0.003467,0.422915,0.414912,1
0.00469,4,0.765957,0.209109,0.804225,0.003467,0.422915,0.414912,1
0.00469,4,0.787234,0.181968,0.786671,0.003467,0.422915,0.414912,1
0.00469,4,0.808511,0.160532,0.747694,0.003467,0.422915,0.414912,1
0.00469,4,0.829787,0.152756,0.720321,0.003467,0.422915,0.414912,1
0.00469,4,0.851064,0.221178,0.700387,0.003467,0.422915,0.414912,1
0.00469,4,0.87234,0.181968,0.668997,0.003467,0.422915,0.414912,1
0.00469,4,0.893617,0.152756,0.609194,0.003467,0.422915,0.414912,1
0.00469,4,0.914894,0.106611,0.544332,0.003467,0.422915,0.414912,0
0.00469,4,0.93617,0.152756,0.572449,0.003467,0.422915,0.414912,1
0.00469,4,0.957447,0.120001,0.573788,0.003467,0.422915,0.414912,0
0.00469,4,0.978723,0.120001,0.567986,0.003467,0.422915,0.414912,0
0.00469,4,1,0.120001,0.556084,0.003467,0.422915,0.414912,0
0.004734,5,0,0.106611,0.541654,0.003467,0.422915,0.414912,0
0.004734,5,0.021277,0.120001,0.517257,0.003467,0.422915,0.414912,0
0.004734,5,0.042553,0.082172,0.48795,0.003467,0.422915,0.414912,0
0.004734,5,0.06383,0.042452,0.42413,0.003467,0.422915,0.414912,0
0.004734,5,0.085106,0.075207,0.366111,0.003467,0.422915,0.414912,0
0.004734,5,0.106383,0.075207,0.320738,0.003467,0.422915,0.414912,0
0.004734,5,0.12766,0.075207,0.265843,0.003467,0.422915,0.414912,0
0.004734,5,0.148936,0.042272,0.230735,0.003467,0.422915,0.414912,0
0.004734,5,0.170213,0.042272,0.20842,0.003467,0.422915,0.414912,0
0.004734,5,0.191489,0.075207,0.205594,0.003467,0.422915,0.414912,0
0.004734,5,0.212766,0.075207,0.226867,0.003467,0.422915,0.414912,0
0.004734,5,0.234043,0.072415,0.278489,0.003467,0.422915,0.414912,0
0.004734,5,0.255319,0.082172,0.384409,0.003467,0.422915,0.414912,0
0.004734,5,0.276596,0.106161,0.500893,0.003467,0.422915,0.414912,0
0.004734,5,0.297872,0.091059,0.53972,0.003467,0.422915,0.414912,0
0.004734,5,0.319149,0.091059,0.625558,0.003467,0.422915,0.414912,0
0.004734,5,0.340426,0.091059,0.651294,0.003467,0.422915,0.414912,0
0.004734,5,0.361702,0.091059,0.641773,0.003467,0.422915,0.414912,0
0.004734,5,0.382979,0.075117,0.673163,0.003467,0.422915,0.414912,0
0.004734,5,0.404255,0.075117,0.682386,0.003467,0.422915,0.414912,0
0.004734,5,0.425532,0.075117,0.654567,0.003467,0.422915,0.414912,0
0.004734,5,0.446809,0.075117,0.61812,0.003467,0.422915,0.414912,0
0.004734,5,0.468085,0.075117,0.612467,0.003467,0.422915,0.414912,0
0.004734,5,0.489362,0.075117,0.603243,0.003467,0.422915,0.414912,0
0.004734,5,0.510638,0.075117,0.590598,0.003467,0.422915,0.414912,0
0.004734,5,0.531915,0.075117,0.579887,0.003467,0.422915,0.414912,0
0.004734,5,0.553191,0.075117,0.560994,0.003467,0.422915,0.414912,0
0.004734,5,0.574468,0.075117,0.556531,0.003467,0.422915,0.414912,0
0.004734,5,0.595745,0.075117,0.544035,0.003467,0.422915,0.414912,0
0.004734,5,0.617021,0.075117,0.526629,0.003467,0.422915,0.414912,0
0.004734,5,0.638298,0.075117,0.514728,0.003467,0.422915,0.414912,0
0.004734,5,0.659574,0.075117,0.529158,0.003467,0.422915,0.414912,0
0.004734,5,0.680851,0.075117,0.552663,0.003467,0.422915,0.414912,0
0.004734,5,0.702128,0.119731,0.61321,0.003467,0.422915,0.414912,1
0.004734,5,0.723404,0.152756,0.698453,0.003467,0.422915,0.414912,1
0.004734,5,0.744681,0.119731,0.760339,0.003467,0.422915,0.414912,1
0.004734,5,0.765957,0.106161,0.74814,0.003467,0.422915,0.414912,1
0.004734,5,0.787234,0.091059,0.726272,0.003467,0.422915,0.414912,0
0.004734,5,0.808511,0.091059,0.688039,0.003467,0.422915,0.414912,0
0.004734,5,0.829787,0.091059,0.656947,0.003467,0.422915,0.414912,0
0.004734,5,0.851064,0.106161,0.631508,0.003467,0.422915,0.414912,1
0.004734,5,0.87234,0.119731,0.60607,0.003467,0.422915,0.414912,1
0.004734,5,0.893617,0.075117,0.55787,0.003467,0.422915,0.414912,0
0.004734,5,0.914894,0.072415,0.514281,0.003467,0.422915,0.414912,0
0.004734,5,0.93617,0.180827,0.557721,0.003467,0.422915,0.414912,1
0.004734,5,0.957447,0.106161,0.559209,0.003467,0.422915,0.414912,1
0.004734,5,0.978723,0.152756,0.563523,0.003467,0.422915,0.414912,1
0.004734,5,1,0.119731,0.551026,0.003467,0.422915,0.414912,1
0.004779,6,0,0.106161,0.540613,0.003467,0.422915,0.414912,1
0.004779,6,0.021277,0.106161,0.506694,0.003467,0.422915,0.414912,1
0.004779,6,0.042553,0.072415,0.480363,0.003467,0.422915,0.414912,0
0.004779,6,0.06383,0.072415,0.416989,0.003467,0.422915,0.414912,0
0.004779,6,0.085106,0.072415,0.358524,0.003467,0.422915,0.414912,0
0.004779,6,0.106383,0.042422,0.310473,0.003467,0.422915,0.414912,0
0.004779,6,0.12766,0.042272,0.265843,0.003467,0.422915,0.414912,0
0.004779,6,0.148936,0.042272,0.222999,0.003467,0.422915,0.414912,0
0.004779,6,0.170213,0.060886,0.188188,0.003467,0.422915,0.414912,0
0.004779,6,0.191489,0.060886,0.180303,0.003467,0.422915,0.414912,0
0.004779,6,0.212766,0.067191,0.180899,0.003467,0.422915,0.414912,0
0.004779,6,0.234043,0.067191,0.195478,0.003467,0.422915,0.414912,0
0.004779,6,0.255319,0.076828,0.226421,0.003467,0.422915,0.414912,0
0.004779,6,0.276596,0.075868,0.264951,0.003467,0.422915,0.414912,0
0.004779,6,0.297872,0.084244,0.320738,0.003467,0.422915,0.414912,0
0.004779,6,0.319149,0.091089,0.417138,0.003467,0.422915,0.414912,1
0.004779,6,0.340426,0.106161,0.496578,0.003467,0.422915,0.414912,1
0.004779,6,0.361702,0.114387,0.552663,0.003467,0.422915,0.414912,1
0.004779,6,0.382979,0.119731,0.590301,0.003467,0.422915,0.414912,1
0.004779,6,0.404255,0.114387,0.59759,0.003467,0.422915,0.414912,1
0.004779,6,0.425532,0.106161,0.572151,0.003467,0.422915,0.414912,1
0.004779,6,0.446809,0.106161,0.532133,0.003467,0.422915,0.414912,1
0.004779,6,0.468085,0.089798,0.494198,0.003467,0.422915,0.414912,0
0.004779,6,0.489362,0.076828,0.475454,0.003467,0.422915,0.414912,0
0.004779,6,0.510638,0.076828,0.454924,0.003467,0.422915,0.414912,0
0.004779,6,0.531915,0.056173,0.441982,0.003467,0.422915,0.414912,0
0.004779,6,0.553191,0.056173,0.420559,0.003467,0.422915,0.414912,0
0.004779,6,0.574468,0.062598,0.399286,0.003467,0.422915,0.414912,0
0.004779,6,0.595745,0.062598,0.384856,0.003467,0.422915,0.414912,0
0.004779,6,0.617021,0.062598,0.383071,0.003467,0.422915,0.414912,0
0.004779,6,0.638298,0.062598,0.37831,0.003467,0.422915,0.414912,0
0.004779,6,0.659574,0.062598,0.394377,0.003467,0.422915,0.414912,0
0.004779,6,0.680851,0.076828,0.444362,0.003467,0.422915,0.414912,0
0.004779,6,0.702128,0.106161,0.530943,0.003467,0.422915,0.414912,1
0.004779,6,0.723404,0.151765,0.610086,0.003467,0.422915,0.414912,1
0.004779,6,0.744681,0.231116,0.673907,0.003467,0.422915,0.414912,1
0.004779,6,0.765957,0.152426,0.679113,0.003467,0.422915,0.414912,1
0.004779,6,0.787234,0.147952,0.64698,0.003467,0.422915,0.414912,1
0.004779,6,0.808511,0.119731,0.602053,0.003467,0.422915,0.414912,1
0.004779,6,0.829787,0.106161,0.560101,0.003467,0.422915,0.414912,1
0.004779,6,0.851064,0.089798,0.534067,0.003467,0.422915,0.414912,0
0.004779,6,0.87234,0.062598,0.503868,0.003467,0.422915,0.414912,0
0.004779,6,0.893617,0.062598,0.463701,0.003467,0.422915,0.414912,0
0.004779,6,0.914894,0.062598,0.425766,0.003467,0.422915,0.414912,0
0.004779,6,0.93617,0.076828,0.451205,0.003467,0.422915,0.414912,0
0.004779,6,0.957447,0.076828,0.455817,0.003467,0.422915,0.414912,0
0.004779,6,0.978723,0.076828,0.458792,0.003467,0.422915,0.414912,0
0.004779,6,1,0.062598,0.436328,0.003467,0.422915,0.414912,0
0.004823,7,0,0.062598,0.413716,0.003467,0.422915,0.414912,0
0.004823,7,0.021277,0.062598,0.361053,0.003467,0.422915,0.414912,0
0.004823,7,0.042553,0.062598,0.334276,0.003467,0.422915,0.414912,0
0.004823,7,0.06383,0.062598,0.276108,0.003467,0.422915,0.414912,0
0.004823,7,0.085106,0.062598,0.230289,0.003467,0.422915,0.414912,0
0.004823,7,0.106383,0.061637,0.197263,0.003467,0.422915,0.414912,0
0.004823,7,0.12766,0.061637,0.163344,0.003467,0.422915,0.414912,0
0.004823,7,0.148936,0.061637,0.139691,0.003467,0.422915,0.414912,0
0.004823,7,0.170213,0.060886,0.12169,0.003467,0.422915,0.414912,0
0.004823,7,0.191489,0.060886,0.113508,0.003467,0.422915,0.414912,0
0.004823,7,0.212766,0.060886,0.119161,0.003467,0.422915,0.414912,0
0.004823,7,0.234043,0.061637,0.128682,0.003467,0.422915,0.414912,0
0.004823,7,0.255319,0.062598,0.152633,0.003467,0.422915,0.414912,0
0.004823,7,0.276596,0.062598,0.17837,0.003467,0.422915,0.414912,0
0.004823,7,0.297872,0.068362,0.208123,0.003467,0.422915,0.414912,0
0.004823,7,0.319149,0.062598,0.268521,0.003467,0.422915,0.414912,0
0.004823,7,0.340426,0.060466,0.345879,0.003467,0.422915,0.414912,0
0.004823,7,0.361702,0.058605,0.418477,0.003467,0.422915,0.414912,0
0.004823,7,0.382979,0.062598,0.485867,0.003467,0.422915,0.414912,0
0.004823,7,0.404255,0.062598,0.52886,0.003467,0.422915,0.414912,0
0.004823,7,0.425532,0.060556,0.537043,0.003467,0.422915,0.414912,0
0.004823,7,0.446809,0.062598,0.534811,0.003467,0.422915,0.414912,0
0.004823,7,0.468085,0.076828,0.519191,0.003467,0.422915,0.414912,0
0.004823,7,0.489362,0.062598,0.514877,0.003467,0.422915,0.414912,0
0.004823,7,0.510638,0.076828,0.500744,0.003467,0.422915,0.414912,1
0.004823,7,0.531915,0.062598,0.487206,0.003467,0.422915,0.414912,0
0.004823,7,0.553191,0.076828,0.464148,0.003467,0.422915,0.414912,1
0.004823,7,0.574468,0.076828,0.446147,0.003467,0.422915,0.414912,0
0.004823,7,0.595745,0.076828,0.432312,0.003467,0.422915,0.414912,0
0.004823,7,0.617021,0.076828,0.421006,0.003467,0.422915,0.414912,0
0.004823,7,0.638298,0.076828,0.429337,0.003467,0.422915,0.414912,0
0.004823,7,0.659574,0.084244,0.445254,0.003467,0.422915,0.414912,1
0.004823,7,0.680851,0.093611,0.472776,0.003467,0.422915,0.414912,1
0.004823,7,0.702128,0.114387,0.542101,0.003467,0.422915,0.414912,1
0.004823,7,0.723404,0.121202,0.619905,0.003467,0.422915,0.414912,1
0.004823,7,0.744681,0.121202,0.680452,0.003467,0.422915,0.414912,1
0.004823,7,0.765957,0.121202,0.696073,0.003467,0.422915,0.414912,1
0.004823,7,0.787234,0.099135,0.674799,0.003467,0.422915,0.414912,1
0.004823,7,0.808511,0.076828,0.649509,0.003467,0.422915,0.414912,1
0.004823,7,0.829787,0.089798,0.615144,0.003467,0.422915,0.414912,1
0.004823,7,0.851064,0.076828,0.576763,0.003467,0.422915,0.414912,1
0.004823,7,0.87234,0.062598,0.550283,0.003467,0.422915,0.414912,0
0.004823,7,0.893617,0.062598,0.49762,0.003467,0.422915,0.414912,0
0.004823,7,0.914894,0.062598,0.442725,0.003467,0.422915,0.414912,0
0.004823,7,0.93617,0.076828,0.455965,0.003467,0.422915,0.414912,1
0.004823,7,0.957447,0.062598,0.438262,0.003467,0.422915,0.414912,0
0.004823,7,0.978723,0.062598,0.442725,0.003467,0.422915,0.414912,0
0.004823,7,1,0.062598,0.411782,0.003467,0.422915,0.414912,0
0.004867,1,0,0.042572,0.386938,0.003467,0.422915,0.414912,0
0.004867,1,0.021277,0.056173,0.341416,0.003467,0.422915,0.414912,0
0.004867,1,0.042553,0.042572,0.326093,0.003467,0.422915,0.414912,0
0.004867,1,0.06383,0.056173,0.276406,0.003467,0.422915,0.414912,0
0.004867,1,0.085106,0.061637,0.238024,0.003467,0.422915,0.414912,0
0.004867,1,0.106383,0.056173,0.202767,0.003467,0.422915,0.414912,0
0.004867,1,0.12766,0.061637,0.181791,0.003467,0.422915,0.414912,0
0.004867,1,0.148936,0.061637,0.162898,0.003467,0.422915,0.414912,0
0.004867,1,0.170213,0.059295,0.154716,0.003467,0.422915,0.414912,0
0.004867,1,0.191489,0.074727,0.160518,0.003467,0.422915,0.414912,1
0.004867,1,0.212766,0.056173,0.195329,0.003467,0.422915,0.414912,0
0.004867,1,0.234043,0.056173,0.246206,0.003467,0.422915,0.414912,0
0.004867,1,0.255319,0.056173,0.35421,0.003467,0.422915,0.414912,0
0.004867,1,0.276596,0.056173,0.469652,0.003467,0.422915,0.414912,0
0.004867,1,0.297872,0.074817,0.510562,0.003467,0.422915,0.414912,1
0.004867,1,0.319149,0.089798,0.588962,0.003467,0.422915,0.414912,1
0.004867,1,0.340426,0.10475,0.613954,0.003467,0.422915,0.414912,1
0.004867,1,0.361702,0.089798,0.612169,0.003467,0.422915,0.414912,1
0.004867,1,0.382979,0.089798,0.642368,0.003467,0.422915,0.414912,1
0.004867,1,0.404255,0.089798,0.652484,0.003467,0.422915,0.414912,1
0.004867,1,0.425532,0.089798,0.633889,0.003467,0.422915,0.414912,1
0.004867,1,0.446809,0.074937,0.60964,0.003467,0.422915,0.414912,0
0.004867,1,0.468085,0.089798,0.590003,0.003467,0.422915,0.414912,1
0.004867,1,0.489362,0.089798,0.589557,0.003467,0.422915,0.414912,1
0.004867,1,0.510638,0.074997,0.575722,0.003467,0.422915,0.414912,0
0.004867,1,0.531915,0.074997,0.563969,0.003467,0.422915,0.414912,0
0.004867,1,0.553191,0.074997,0.560994,0.003467,0.422915,0.414912,0
0.004867,1,0.574468,0.089798,0.55296,0.003467,0.422915,0.414912,1
0.004867,1,0.595745,0.089798,0.539572,0.003467,0.422915,0.414912,1
0.004867,1,0.617021,0.075207,0.527373,0.003467,0.422915,0.414912,0
0.004867,1,0.638298,0.089798,0.526927,0.003467,0.422915,0.414912,1
0.004867,1,0.659574,0.10475,0.543737,0.003467,0.422915,0.414912,1
0.004867,1,0.680851,0.106161,0.574085,0.003467,0.422915,0.414912,1
0.004867,1,0.702128,0.164615,0.637459,0.003467,0.422915,0.414912,1
0.004867,1,0.723404,0.166777,0.716453,0.003467,0.422915,0.414912,1
0.004867,1,0.744681,0.166777,0.780422,0.003467,0.422915,0.414912,1
0.004867,1,0.765957,0.149664,0.768968,0.003467,0.422915,0.414912,1
0.004867,1,0.787234,0.140417,0.733561,0.003467,0.422915,0.414912,1
0.004867,1,0.808511,0.106161,0.693395,0.003467,0.422915,0.414912,1
0.004867,1,0.829787,0.089798,0.662005,0.003467,0.422915,0.414912,1
0.004867,1,0.851064,0.139726,0.62526,0.003467,0.422915,0.414912,1
0.004867,1,0.87234,0.120151,0.601904,0.003467,0.422915,0.414912,1
0.004867,1,0.893617,0.10475,0.549093,0.003467,0.422915,0.414912,1
0.004867,1,0.914894,0.081452,0.496727,0.003467,0.422915,0.414912,0
0.004867,1,0.93617,0.106161,0.531836,0.003467,0.422915,0.414912,1
0.004867,1,0.957447,0.106161,0.516067,0.003467,0.422915,0.414912,1
0.004867,1,0.978723,0.106161,0.530943,0.003467,0.422915,0.414912,1
0.004867,1,1,0.106161,0.523951,0.003467,0.422915,0.414912,1
0.004911,2,0,0.106161,0.518149,0.003467,0.422915,0.414912,1
0.004911,2,0.021277,0.103999,0.497025,0.003467,0.422915,0.414912,1
0.004911,2,0.042553,0.106161,0.473073,0.003467,0.422915,0.414912,1
0.004911,2,0.06383,0.075207,0.407319,0.003467,0.422915,0.414912,0
0.004911,2,0.085106,0.075207,0.349747,0.003467,0.422915,0.414912,0
0.004911,2,0.106383,0.077879,0.30244,0.003467,0.422915,0.414912,0
0.004911,2,0.12766,0.077879,0.252008,0.003467,0.422915,0.414912,0
0.004911,2,0.148936,0.075207,0.220024,0.003467,0.422915,0.414912,0
0.004911,2,0.170213,0.074997,0.193544,0.003467,0.422915,0.414912,0
0.004911,2,0.191489,0.074727,0.184023,0.003467,0.422915,0.414912,0
0.004911,2,0.212766,0.075267,0.216007,0.003467,0.422915,0.414912,0
0.004911,2,0.234043,0.077879,0.260339,0.003467,0.422915,0.414912,0
0.004911,2,0.255319,0.086075,0.368789,0.003467,0.422915,0.414912,0
0.004911,2,0.276596,0.099766,0.479917,0.003467,0.422915,0.414912,1
0.004911,2,0.297872,0.081452,0.520083,0.003467,0.422915,0.414912,0
0.004911,2,0.319149,0.090729,0.603541,0.003467,0.422915,0.414912,0
0.004911,2,0.340426,0.090729,0.619458,0.003467,0.422915,0.414912,0
0.004911,2,0.361702,0.077669,0.613359,0.003467,0.422915,0.414912,0
0.004911,2,0.382979,0.091119,0.640732,0.003467,0.422915,0.414912,0
0.004911,2,0.404255,0.091119,0.645195,0.003467,0.422915,0.414912,0
0.004911,2,0.425532,0.091119,0.613359,0.003467,0.422915,0.414912,0
0.004911,2,0.446809,0.077669,0.58435,0.003467,0.422915,0.414912,0
0.004911,2,0.468085,0.090729,0.557423,0.003467,0.422915,0.414912,0
0.004911,2,0.489362,0.090729,0.547456,0.003467,0.422915,0.414912,0
0.004911,2,0.510638,0.077669,0.535406,0.003467,0.422915,0.414912,0
0.004911,2,0.531915,0.090729,0.524398,0.003467,0.422915,0.414912,0
0.004911,2,0.553191,0.077669,0.518149,0.003467,0.422915,0.414912,0
0.004911,2,0.574468,0.077669,0.510562,0.003467,0.422915,0.414912,0
0.004911,2,0.595745,0.077669,0.492711,0.003467,0.422915,0.414912,0
0.004911,2,0.617021,0.077669,0.479024,0.003467,0.422915,0.414912,0
0.004911,2,0.638298,0.075207,0.473669,0.003467,0.422915,0.414912,0
0.004911,2,0.659574,0.077669,0.484528,0.003467,0.422915,0.414912,0
0.004911,2,0.680851,0.077669,0.508182,0.003467,0.422915,0.414912,0
0.004911,2,0.702128,0.10475,0.566796,0.003467,0.422915,0.414912,1
0.004911,2,0.723404,0.091119,0.661559,0.003467,0.422915,0.414912,0
0.004911,2,0.744681,0.091119,0.737281,0.003467,0.422915,0.414912,0
0.004911,2,0.765957,0.091119,0.740702,0.003467,0.422915,0.414912,0
0.004911,2,0.787234,0.091119,0.710057,0.003467,0.422915,0.414912,1
0.004911,2,0.808511,0.091119,0.67108,0.003467,0.422915,0.414912,1
0.004911,2,0.829787,0.090729,0.641922,0.003467,0.422915,0.414912,1
0.004911,2,0.851064,0.091119,0.624814,0.003467,0.422915,0.414912,1
0.004911,2,0.87234,0.091119,0.598036,0.003467,0.422915,0.414912,1
0.004911,2,0.893617,0.091119,0.546117,0.003467,0.422915,0.414912,1
0.004911,2,0.914894,0.077669,0.49643,0.003467,0.422915,0.414912,0
0.004911,2,0.93617,0.094122,0.523802,0.003467,0.422915,0.414912,1
0.004911,2,0.957447,0.090729,0.518596,0.003467,0.422915,0.414912,1
0.004911,2,0.978723,0.098295,0.530794,0.003467,0.422915,0.414912,1
0.004911,2,1,0.090729,0.521422,0.003467,0.422915,0.414912,1
0.004956,3,0,0.094602,0.516959,0.003467,0.422915,0.414912,1
0.004956,3,0.021277,0.095653,0.493901,0.003467,0.422915,0.414912,1
0.004956,3,0.042553,0.083884,0.466379,0.003467,0.422915,0.414912,0
0.004956,3,0.06383,0.056173,0.408063,0.003467,0.422915,0.414912,0
0.004956,3,0.085106,0.071604,0.353764,0.003467,0.422915,0.414912,0
0.004956,3,0.106383,0.075207,0.300655,0.003467,0.422915,0.414912,0
0.004956,3,0.12766,0.075207,0.25781,0.003467,0.422915,0.414912,0
0.004956,3,0.148936,0.075207,0.223445,0.003467,0.422915,0.414912,0
0.004956,3,0.170213,0.042272,0.202618,0.003467,0.422915,0.414912,0
0.004956,3,0.191489,0.056173,0.200982,0.003467,0.422915,0.414912,0
0.004956,3,0.212766,0.056323,0.228057,0.003467,0.422915,0.414912,0
0.004956,3,0.234043,0.056323,0.278489,0.003467,0.422915,0.414912,0
0.004956,3,0.255319,0.056323,0.385302,0.003467,0.422915,0.414912,0
0.004956,3,0.276596,0.090309,0.505504,0.003467,0.422915,0.414912,1
0.004956,3,0.297872,0.056323,0.533323,0.003467,0.422915,0.414912,0
0.004956,3,0.319149,0.056323,0.608301,0.003467,0.422915,0.414912,0
0.004956,3,0.340426,0.042572,0.622583,0.003467,0.422915,0.414912,0
0.004956,3,0.361702,0.042572,0.603094,0.003467,0.422915,0.414912,0
0.004956,3,0.382979,0.043023,0.628384,0.003467,0.422915,0.414912,0
0.004956,3,0.404255,0.042692,0.632104,0.003467,0.422915,0.414912,0
0.004956,3,0.425532,0.050108,0.609194,0.003467,0.422915,0.414912,0
0.004956,3,0.446809,0.042572,0.582713,0.003467,0.422915,0.414912,0
0.004956,3,0.468085,0.042572,0.562333,0.003467,0.422915,0.414912,0
0.004956,3,0.489362,0.042572,0.549985,0.003467,0.422915,0.414912,0
0.004956,3,0.510638,0.042422,0.538084,0.003467,0.422915,0.414912,0
0.004956,3,0.531915,0.042422,0.518447,0.003467,0.422915,0.414912,0
0.004956,3,0.553191,0.042422,0.512794,0.003467,0.422915,0.414912,0
0.004956,3,0.574468,0.042392,0.502827,0.003467,0.422915,0.414912,0
0.004956,3,0.595745,0.042422,0.491669,0.003467,0.422915,0.414912,0
0.004956,3,0.617021,0.042272,0.481256,0.003467,0.422915,0.414912,0
0.004956,3,0.638298,0.042422,0.481404,0.003467,0.422915,0.414912,0
0.004956,3,0.659574,0.042422,0.498661,0.003467,0.422915,0.414912,0
0.004956,3,0.680851,0.042422,0.524249,0.003467,0.422915,0.414912,0
0.004956,3,0.702128,0.042572,0.578846,0.003467,0.422915,0.414912,0
0.004956,3,0.723404,0.042572,0.671824,0.003467,0.422915,0.414912,0
0.004956,3,0.744681,0.056323,0.740405,0.003467,0.422915,0.414912,0
0.004956,3,0.765957,0.056323,0.730437,0.003467,0.422915,0.414912,0
0.004956,3,0.787234,0.044824,0.703362,0.003467,0.422915,0.414912,0
0.004956,3,0.808511,0.056323,0.665129,0.003467,0.422915,0.414912,0
0.004956,3,0.829787,0.042572,0.632699,0.003467,0.422915,0.414912,0
0.004956,3,0.851064,0.042692,0.612913,0.003467,0.422915,0.414912,0
0.004956,3,0.87234,0.042572,0.587176,0.003467,0.422915,0.414912,0
0.004956,3,0.893617,0.042422,0.536596,0.003467,0.422915,0.414912,0
0.004956,3,0.914894,0.042422,0.485719,0.003467,0.422915,0.414912,0
0.004956,3,0.93617,0.056323,0.524249,0.003467,0.422915,0.414912,0
0.004956,3,0.957447,0.042692,0.526034,0.003467,0.422915,0.414912,0
0.004956,3,0.978723,0.056323,0.537638,0.003467,0.422915,0.414912,1
0.004956,3,1,0.056323,0.533918,0.003467,0.422915,0.414912,1
0.005,4,0,0.042692,0.528712,0.003467,0.422915,0.414912,0
0.005,4,0.021277,0.056323,0.504165,0.003467,0.422915,0.414912,1
0.005,4,0.042553,0.042572,0.479768,0.003467,0.422915,0.414912,0
0.005,4,0.06383,0.042572,0.414609,0.003467,0.422915,0.414912,0
0.005,4,0.085106,0.042422,0.356739,0.003467,0.422915,0.414912,0
0.005,4,0.106383,0.056323,0.312407,0.003467,0.422915,0.414912,1
0.005,4,0.12766,0.056323,0.263612,0.003467,0.422915,0.414912,1
0.005,4,0.148936,0.042272,0.228503,0.003467,0.422915,0.414912,0
0.005,4,0.170213,0.056173,0.210205,0.003467,0.422915,0.414912,1
0.005,4,0.191489,0.056173,0.212288,0.003467,0.422915,0.414912,1
0.005,4,0.212766,0.042272,0.23609,0.003467,0.422915,0.414912,0
0.005,4,0.234043,0.056173,0.286968,0.003467,0.422915,0.414912,1
0.005,4,0.255319,0.086075,0.390806,0.003467,0.422915,0.414912,1
0.005,4,0.276596,0.074817,0.500893,0.003467,0.422915,0.414912,1
0.005,4,0.297872,0.042422,0.52291,0.003467,0.422915,0.414912,0
0.005,4,0.319149,0.042572,0.594168,0.003467,0.422915,0.414912,0
0.005,4,0.340426,0.042572,0.612913,0.003467,0.422915,0.414912,0
0.005,4,0.361702,0.042422,0.600417,0.003467,0.422915,0.414912,0
0.005,4,0.382979,0.050859,0.621988,0.003467,0.422915,0.414912,1
0.005,4,0.404255,0.050859,0.624814,0.003467,0.422915,0.414912,1
0.005,4,0.425532,0.050859,0.600714,0.003467,0.422915,0.414912,1
0.005,4,0.446809,0.050859,0.570663,0.003467,0.422915,0.414912,1
0.005,4,0.468085,0.050859,0.54582,0.003467,0.422915,0.414912,1
0.005,4,0.489362,0.050859,0.52648,0.003467,0.422915,0.414912,1
0.005,4,0.510638,0.050859,0.513984,0.003467,0.422915,0.414912,1
0.005,4,0.531915,0.050859,0.500298,0.003467,0.422915,0.414912,1
0.005,4,0.553191,0.042572,0.494496,0.003467,0.422915,0.414912,0
0.005,4,0.574468,0.050859,0.490181,0.003467,0.422915,0.414912,1
0.005,4,0.595745,0.042572,0.481256,0.003467,0.422915,0.414912,0
0.005,4,0.617021,0.042452,0.467272,0.003467,0.422915,0.414912,0
0.005,4,0.638298,0.042752,0.462511,0.003467,0.422915,0.414912,0
0.005,4,0.659574,0.042422,0.467272,0.003467,0.422915,0.414912,0
0.005,4,0.680851,0.042422,0.484082,0.003467,0.422915,0.414912,0
0.005,4,0.702128,0.050408,0.534216,0.003467,0.422915,0.414912,1
0.005,4,0.723404,0.042692,0.625558,0.003467,0.422915,0.414912,0
0.005,4,0.744681,0.042692,0.69399,0.003467,0.422915,0.414912,0
0.005,4,0.765957,0.042572,0.689676,0.003467,0.422915,0.414912,0
0.005,4,0.787234,0.042572,0.668997,0.003467,0.422915,0.414912,0
0.005,4,0.808511,0.042422,0.641773,0.003467,0.422915,0.414912,0
0.005,4,0.829787,0.042422,0.623178,0.003467,0.422915,0.414912,0
0.005,4,0.851064,0.042572,0.613359,0.003467,0.422915,0.414912,0
0.005,4,0.87234,0.042422,0.583309,0.003467,0.422915,0.414912,0
0.005,4,0.893617,0.042272,0.53615,0.003467,0.422915,0.414912,0
0.005,4,0.914894,0.042122,0.485272,0.003467,0.422915,0.414912,0
0.005,4,0.93617,0.042572,0.521422,0.003467,0.422915,0.414912,0
0.005,4,0.957447,0.042572,0.530794,0.003467,0.422915,0.414912,0
0.005,4,0.978723,0.042572,0.535852,0.003467,0.422915,0.414912,0
0.005,4,1,0.042572,0.527224,0.003467,0.422915,0.414912,0
0.005044,5,0,0.042572,0.519191,0.003467,0.422915,0.414912,0
0.005044,5,0.021277,0.042572,0.495537,0.003467,0.422915,0.414912,0
0.005044,5,0.042553,0.042422,0.466825,0.003467,0.422915,0.414912,0
0.005044,5,0.06383,0.042272,0.408212,0.003467,0.422915,0.414912,0
0.005044,5,0.085106,0.042272,0.351086,0.003467,0.422915,0.414912,0
0.005044,5,0.106383,0.042272,0.301696,0.003467,0.422915,0.414912,0
0.005044,5,0.12766,0.042122,0.255281,0.003467,0.422915,0.414912,0
0.005044,5,0.148936,0.042122,0.22166,0.003467,0.422915,0.414912,0
0.005044,5,0.170213,0.056173,0.201279,0.003467,0.422915,0.414912,1
0.005044,5,0.191489,0.056173,0.201726,0.003467,0.422915,0.414912,1
0.005044,5,0.212766,0.075958,0.229694,0.003467,0.422915,0.414912,1
0.005044,5,0.234043,0.076438,0.278786,0.003467,0.422915,0.414912,1
0.005044,5,0.255319,0.086075,0.380988,0.003467,0.422915,0.414912,1
0.005044,5,0.276596,0.09208,0.498959,0.003467,0.422915,0.414912,1
0.005044,5,0.297872,0.047886,0.525141,0.003467,0.422915,0.414912,0
0.005044,5,0.319149,0.047886,0.606813,0.003467,0.422915,0.414912,0
0.005044,5,0.340426,0.047886,0.631062,0.003467,0.422915,0.414912,0
0.005044,5,0.361702,0.042572,0.615144,0.003467,0.422915,0.414912,0
0.005044,5,0.382979,0.047886,0.642071,0.003467,0.422915,0.414912,0
0.005044,5,0.404255,0.047886,0.642963,0.003467,0.422915,0.414912,0
0.005044,5,0.425532,0.042572,0.623326,0.003467,0.422915,0.414912,0
0.005044,5,0.446809,0.047886,0.59402,0.003467,0.422915,0.414912,0
0.005044,5,0.468085,0.047886,0.567539,0.003467,0.422915,0.414912,0
0.005044,5,0.489362,0.047886,0.549985,0.003467,0.422915,0.414912,0
0.005044,5,0.510638,0.047886,0.537638,0.003467,0.422915,0.414912,0
0.005044,5,0.531915,0.042572,0.528414,0.003467,0.422915,0.414912,0
0.005044,5,0.553191,0.042422,0.517852,0.003467,0.422915,0.414912,0
0.005044,5,0.574468,0.042422,0.506694,0.003467,0.422915,0.414912,0
0.005044,5,0.595745,0.042422,0.495686,0.003467,0.422915,0.414912,0
0.005044,5,0.617021,0.042422,0.473073,0.003467,0.422915,0.414912,0
0.005044,5,0.638298,0.042422,0.459685,0.003467,0.422915,0.414912,0
0.005044,5,0.659574,0.042422,0.471586,0.003467,0.422915,0.414912,0
0.005044,5,0.680851,0.042572,0.497471,0.003467,0.422915,0.414912,0
0.005044,5,0.702128,0.047886,0.553407,0.003467,0.422915,0.414912,1
0.005044,5,0.723404,0.047886,0.635228,0.003467,0.422915,0.414912,1
0.005044,5,0.744681,0.047886,0.694287,0.003467,0.422915,0.414912,1
0.005044,5,0.765957,0.047886,0.682684,0.003467,0.422915,0.414912,1
0.005044,5,0.787234,0.047886,0.664981,0.003467,0.422915,0.414912,1
0.005044,5,0.808511,0.042482,0.624517,0.003467,0.422915,0.414912,0
0.005044,5,0.829787,0.042422,0.597739,0.003467,0.422915,0.414912,0
0.005044,5,0.851064,0.047886,0.579143,0.003467,0.422915,0.414912,0
0.005044,5,0.87234,0.042572,0.554002,0.003467,0.422915,0.414912,0
0.005044,5,0.893617,0.042422,0.518744,0.003467,0.422915,0.414912,0
0.005044,5,0.914894,0.042272,0.471288,0.003467,0.422915,0.414912,0
0.005044,5,0.93617,0.056323,0.509223,0.003467,0.422915,0.414912,1
0.005044,5,0.957447,0.042512,0.522761,0.003467,0.422915,0.414912,0
0.005044,5,0.978723,0.056323,0.52886,0.003467,0.422915,0.414912,1
0.005044,5,1,0.047886,0.514281,0.003467,0.422915,0.414912,0
0.005088,6,0,0.071815,0.507289,0.003467,0.422915,0.414912,1
0.005088,6,0.021277,0.086075,0.477388,0.003467,0.422915,0.414912,1
0.005088,6,0.042553,0.056323,0.446147,0.003467,0.422915,0.414912,1
0.005088,6,0.06383,0.042422,0.39155,0.003467,0.422915,0.414912,0
0.005088,6,0.085106,0.056323,0.332937,0.003467,0.422915,0.414912,1
0.005088,6,0.106383,0.075958,0.284588,0.003467,0.422915,0.414912,1
0.005088,6,0.12766,0.056323,0.237429,0.003467,0.422915,0.414912,1
0.005088,6,0.148936,0.056173,0.205891,0.003467,0.422915,0.414912,1
0.005088,6,0.170213,0.061637,0.178816,0.003467,0.422915,0.414912,1
0.005088,6,0.191489,0.060886,0.165129,0.003467,0.422915,0.414912,1
0.005088,6,0.212766,0.060886,0.166468,0.003467,0.422915,0.414912,1
0.005088,6,0.234043,0.060886,0.174502,0.003467,0.422915,0.414912,1
0.005088,6,0.255319,0.062598,0.209164,0.003467,0.422915,0.414912,1
0.005088,6,0.276596,0.068362,0.250372,0.003467,0.422915,0.414912,1
0.005088,6,0.297872,0.075267,0.307944,0.003467,0.422915,0.414912,1
0.005088,6,0.319149,0.075357,0.406724,0.003467,0.422915,0.414912,1
0.005088,6,0.340426,0.075357,0.492115,0.003467,0.422915,0.414912,1
0.005088,6,0.361702,0.075357,0.545671,0.003467,0.422915,0.414912,1
0.005088,6,0.382979,0.075357,0.580184,0.003467,0.422915,0.414912,1
0.005088,6,0.404255,0.075357,0.571705,0.003467,0.422915,0.414912,1
0.005088,6,0.425532,0.075267,0.547307,0.003467,0.422915,0.414912,1
0.005088,6,0.446809,0.071815,0.508033,0.003467,0.422915,0.414912,1
0.005088,6,0.468085,0.075267,0.474859,0.003467,0.422915,0.414912,1
0.005088,6,0.489362,0.075267,0.443469,0.003467,0.422915,0.414912,1
0.005088,6,0.510638,0.071815,0.421898,0.003467,0.422915,0.414912,1
0.005088,6,0.531915,0.062598,0.39884,0.003467,0.422915,0.414912,1
0.005088,6,0.553191,0.056323,0.375632,0.003467,0.422915,0.414912,0
0.005088,6,0.574468,0.056323,0.352425,0.003467,0.422915,0.414912,0
0.005088,6,0.595745,0.056323,0.346623,0.003467,0.422915,0.414912,0
0.005088,6,0.617021,0.056323,0.338441,0.003467,0.422915,0.414912,0
0.005088,6,0.638298,0.062598,0.338292,0.003467,0.422915,0.414912,1
0.005088,6,0.659574,0.068362,0.355103,0.003467,0.422915,0.414912,1
0.005088,6,0.680851,0.075357,0.394228,0.003467,0.422915,0.414912,1
0.005088,6,0.702128,0.108292,0.475007,0.003467,0.422915,0.414912,1
0.005088,6,0.723404,0.11784,0.559209,0.003467,0.422915,0.414912,1
0.005088,6,0.744681,0.119731,0.627492,0.003467,0.422915,0.414912,1
0.005088,6,0.765957,0.116969,0.627641,0.003467,0.422915,0.414912,1
0.005088,6,0.787234,0.103188,0.595061,0.003467,0.422915,0.414912,1
0.005088,6,0.808511,0.075357,0.551175,0.003467,0.422915,0.414912,1
0.005088,6,0.829787,0.075267,0.510562,0.003467,0.422915,0.414912,1
0.005088,6,0.851064,0.075267,0.485719,0.003467,0.422915,0.414912,1
0.005088,6,0.87234,0.071815,0.465784,0.003467,0.422915,0.414912,1
0.005088,6,0.893617,0.068362,0.422642,0.003467,0.422915,0.414912,0
0.005088,6,0.914894,0.068362,0.388277,0.003467,0.422915,0.414912,0
0.005088,6,0.93617,0.071815,0.406575,0.003467,0.422915,0.414912,1
0.005088,6,0.957447,0.042572,0.403451,0.003467,0.422915,0.414912,0
0.005088,6,0.978723,0.042572,0.408509,0.003467,0.422915,0.414912,0
0.005088,6,1,0.042422,0.389021,0.003467,0.422915,0.414912,0
0.005133,7,0,0.042422,0.366706,0.003467,0.422915,0.414912,0
0.005133,7,0.021277,0.042422,0.318358,0.003467,0.422915,0.414912,0
0.005133,7,0.042553,0.042272,0.296935,0.003467,0.422915,0.414912,0
0.005133,7,0.06383,0.042272,0.247397,0.003467,0.422915,0.414912,0
0.005133,7,0.085106,0.042272,0.202023,0.003467,0.422915,0.414912,0
0.005133,7,0.106383,0.042122,0.164981,0.003467,0.422915,0.414912,0
0.005133,7,0.12766,0.042122,0.139839,0.003467,0.422915,0.414912,0
0.005133,7,0.148936,0.042122,0.115293,0.003467,0.422915,0.414912,0
0.005133,7,0.170213,0.041942,0.097292,0.003467,0.422915,0.414912,0
0.005133,7,0.191489,0.041942,0.090301,0.003467,0.422915,0.414912,0
0.005133,7,0.212766,0.042122,0.096846,0.003467,0.422915,0.414912,0
0.005133,7,0.234043,0.042122,0.10607,0.003467,0.422915,0.414912,0
0.005133,7,0.255319,0.056173,0.122136,0.003467,0.422915,0.414912,0
0.005133,7,0.276596,0.056173,0.140286,0.003467,0.422915,0.414912,0
0.005133,7,0.297872,0.068362,0.168253,0.003467,0.422915,0.414912,1
0.005133,7,0.319149,0.068362,0.231627,0.003467,0.422915,0.414912,1
0.005133,7,0.340426,0.068362,0.300952,0.003467,0.422915,0.414912,1
0.005133,7,0.361702,0.075357,0.358078,0.003467,0.422915,0.414912,1
0.005133,7,0.382979,0.075357,0.41446,0.003467,0.422915,0.414912,1
0.005133,7,0.404255,0.075207,0.446742,0.003467,0.422915,0.414912,1
0.005133,7,0.425532,0.073406,0.455965,0.003467,0.422915,0.414912,1
0.005133,7,0.446809,0.075267,0.458792,0.003467,0.422915,0.414912,1
0.005133,7,0.468085,0.079651,0.473371,0.003467,0.422915,0.414912,1
0.005133,7,0.489362,0.075267,0.468462,0.003467,0.422915,0.414912,1
0.005133,7,0.510638,0.075267,0.449866,0.003467,0.422915,0.414912,1
0.005133,7,0.531915,0.075267,0.421303,0.003467,0.422915,0.414912,1
0.005133,7,0.553191,0.069893,0.385004,0.003467,0.422915,0.414912,1
0.005133,7,0.574468,0.071815,0.364624,0.003467,0.422915,0.414912,1
0.005133,7,0.595745,0.071815,0.342309,0.003467,0.422915,0.414912,1
0.005133,7,0.617021,0.068542,0.335019,0.003467,0.422915,0.414912,1
0.005133,7,0.638298,0.071815,0.337995,0.003467,0.422915,0.414912,1
0.005133,7,0.659574,0.075267,0.350491,0.003467,0.422915,0.414912,1
0.005133,7,0.680851,0.076438,0.370128,0.003467,0.422915,0.414912,1
0.005133,7,0.702128,0.079651,0.443618,0.003467,0.422915,0.414912,1
0.005133,7,0.723404,0.077429,0.537935,0.003467,0.422915,0.414912,1
0.005133,7,0.744681,0.075357,0.615888,0.003467,0.422915,0.414912,1
0.005133,7,0.765957,0.075267,0.634484,0.003467,0.422915,0.414912,1
0.005133,7,0.787234,0.075267,0.6144,0.003467,0.422915,0.414912,1
0.005133,7,0.808511,0.075267,0.590896,0.003467,0.422915,0.414912,1
0.005133,7,0.829787,0.075267,0.558167,0.003467,0.422915,0.414912,1
0.005133,7,0.851064,0.075267,0.528117,0.003467,0.422915,0.414912,1
0.005133,7,0.87234,0.056323,0.501636,0.003467,0.422915,0.414912,0
0.005133,7,0.893617,0.056323,0.456709,0.003467,0.422915,0.414912,0
0.005133,7,0.914894,0.056323,0.414758,0.003467,0.422915,0.414912,0
0.005133,7,0.93617,0.042572,0.429783,0.003467,0.422915,0.414912,0
0.005133,7,0.957447,0.042572,0.414906,0.003467,0.422915,0.414912,0
0.005133,7,0.978723,0.042422,0.402856,0.003467,0.422915,0.414912,0
0.005133,7,1,0.042422,0.381285,0.003467,0.422915,0.414912,0
0.005177,1,0,0.042422,0.362095,0.003467,0.422915,0.414912,0
0.005177,1,0.021277,0.042422,0.321035,0.003467,0.422915,0.414912,0
0.005177,1,0.042553,0.042272,0.307498,0.003467,0.422915,0.414912,0
0.005177,1,0.06383,0.042272,0.264653,0.003467,0.422915,0.414912,0
0.005177,1,0.085106,0.042272,0.220619,0.003467,0.422915,0.414912,0
0.005177,1,0.106383,0.042272,0.198007,0.003467,0.422915,0.414912,0
0.005177,1,0.12766,0.042272,0.171675,0.003467,0.422915,0.414912,0
0.005177,1,0.148936,0.056173,0.146831,0.003467,0.422915,0.414912,0
0.005177,1,0.170213,0.042122,0.140137,0.003467,0.422915,0.414912,0
0.005177,1,0.191489,0.042122,0.148468,0.003467,0.422915,0.414912,0
0.005177,1,0.212766,0.075958,0.178072,0.003467,0.422915,0.414912,1
0.005177,1,0.234043,0.074817,0.229545,0.003467,0.422915,0.414912,1
0.005177,1,0.255319,0.082473,0.336358,0.003467,0.422915,0.414912,1
0.005177,1,0.276596,0.099616,0.44213,0.003467,0.422915,0.414912,1
0.005177,1,0.297872,0.050859,0.481702,0.003467,0.422915,0.414912,0
0.005177,1,0.319149,0.050859,0.552514,0.003467,0.422915,0.414912,0
0.005177,1,0.340426,0.050859,0.57706,0.003467,0.422915,0.414912,0
0.005177,1,0.361702,0.050859,0.576912,0.003467,0.422915,0.414912,0
0.005177,1,0.382979,0.074817,0.603392,0.003467,0.422915,0.414912,1
0.005177,1,0.404255,0.074817,0.61083,0.003467,0.422915,0.414912,1
0.005177,1,0.425532,0.079711,0.594168,0.003467,0.422915,0.414912,1
0.005177,1,0.446809,0.050859,0.571705,0.003467,0.422915,0.414912,0
0.005177,1,0.468085,0.079711,0.559506,0.003467,0.422915,0.414912,1
0.005177,1,0.489362,0.082383,0.554151,0.003467,0.422915,0.414912,1
0.005177,1,0.510638,0.079711,0.540762,0.003467,0.422915,0.414912,1
0.005177,1,0.531915,0.079711,0.531538,0.003467,0.422915,0.414912,1
0.005177,1,0.553191,0.056323,0.523802,0.003467,0.422915,0.414912,0
0.005177,1,0.574468,0.050859,0.518298,0.003467,0.422915,0.414912,0
0.005177,1,0.595745,0.050859,0.507736,0.003467,0.422915,0.414912,0
0.005177,1,0.617021,0.050859,0.494644,0.003467,0.422915,0.414912,0
0.005177,1,0.638298,0.050859,0.490181,0.003467,0.422915,0.414912,0
0.005177,1,0.659574,0.056323,0.493454,0.003467,0.422915,0.414912,0
0.005177,1,0.680851,0.079711,0.511306,0.003467,0.422915,0.414912,1
0.005177,1,0.702128,0.074817,0.55906,0.003467,0.422915,0.414912,1
0.005177,1,0.723404,0.050859,0.65665,0.003467,0.422915,0.414912,0
0.005177,1,0.744681,0.050859,0.731032,0.003467,0.422915,0.414912,0
0.005177,1,0.765957,0.050859,0.725379,0.003467,0.422915,0.414912,0
0.005177,1,0.787234,0.050859,0.693395,0.003467,0.422915,0.414912,0
0.005177,1,0.808511,0.050859,0.658733,0.003467,0.422915,0.414912,0
0.005177,1,0.829787,0.050859,0.629872,0.003467,0.422915,0.414912,0
0.005177,1,0.851064,0.050859,0.604433,0.003467,0.422915,0.414912,0
0.005177,1,0.87234,0.050859,0.578697,0.003467,0.422915,0.414912,0
0.005177,1,0.893617,0.042422,0.530497,0.003467,0.422915,0.414912,0
0.005177,1,0.914894,0.042422,0.47352,0.003467,0.422915,0.414912,0
0.005177,1,0.93617,0.042572,0.505951,0.003467,0.422915,0.414912,0
0.005177,1,0.957447,0.042572,0.503868,0.003467,0.422915,0.414912,0
0.005177,1,0.978723,0.042572,0.515769,0.003467,0.422915,0.414912,0
0.005177,1,1,0.042572,0.51562,0.003467,0.422915,0.414912,0
0.005221,2,0,0.082473,0.507885,0.003467,0.422915,0.414912,1
0.005221,2,0.021277,0.082473,0.496132,0.003467,0.422915,0.414912,1
0.005221,2,0.042553,0.086075,0.465933,0.003467,0.422915,0.414912,1
0.005221,2,0.06383,0.056323,0.40598,0.003467,0.422915,0.414912,0
0.005221,2,0.085106,0.074817,0.345582,0.003467,0.422915,0.414912,1
0.005221,2,0.106383,0.056173,0.305118,0.003467,0.422915,0.414912,0
0.005221,2,0.12766,0.056173,0.255579,0.003467,0.422915,0.414912,0
0.005221,2,0.148936,0.075958,0.21928,0.003467,0.422915,0.414912,1
0.005221,2,0.170213,0.075958,0.192353,0.003467,0.422915,0.414912,1
0.005221,2,0.191489,0.075958,0.195775,0.003467,0.422915,0.414912,1
0.005221,2,0.212766,0.075958,0.216156,0.003467,0.422915,0.414912,1
0.005221,2,0.234043,0.042332,0.274026,0.003467,0.422915,0.414912,0
0.005221,2,0.255319,0.090939,0.3795,0.003467,0.422915,0.414912,1
0.005221,2,0.276596,0.119191,0.500446,0.003467,0.422915,0.414912,1
0.005221,2,0.297872,0.056323,0.529009,0.003467,0.422915,0.414912,0
0.005221,2,0.319149,0.074667,0.613359,0.003467,0.422915,0.414912,1
0.005221,2,0.340426,0.074667,0.636864,0.003467,0.422915,0.414912,1
0.005221,2,0.361702,0.042572,0.624665,0.003467,0.422915,0.414912,0
0.005221,2,0.382979,0.074667,0.649509,0.003467,0.422915,0.414912,1
0.005221,2,0.404255,0.056323,0.644302,0.003467,0.422915,0.414912,0
0.005221,2,0.425532,0.056323,0.634633,0.003467,0.422915,0.414912,0
0.005221,2,0.446809,0.074667,0.612764,0.003467,0.422915,0.414912,1
0.005221,2,0.468085,0.082473,0.591788,0.003467,0.422915,0.414912,1
0.005221,2,0.489362,0.079711,0.580928,0.003467,0.422915,0.414912,1
0.005221,2,0.510638,0.079711,0.57349,0.003467,0.422915,0.414912,1
0.005221,2,0.531915,0.079711,0.566498,0.003467,0.422915,0.414912,1
0.005221,2,0.553191,0.074667,0.567539,0.003467,0.422915,0.414912,1
0.005221,2,0.574468,0.074667,0.559506,0.003467,0.422915,0.414912,1
0.005221,2,0.595745,0.074667,0.552068,0.003467,0.422915,0.414912,1
0.005221,2,0.617021,0.074667,0.548051,0.003467,0.422915,0.414912,1
0.005221,2,0.638298,0.074667,0.545671,0.003467,0.422915,0.414912,1
0.005221,2,0.659574,0.042422,0.555936,0.003467,0.422915,0.414912,0
0.005221,2,0.680851,0.086075,0.58673,0.003467,0.422915,0.414912,1
0.005221,2,0.702128,0.116759,0.643261,0.003467,0.422915,0.414912,1
0.005221,2,0.723404,0.106731,0.738471,0.003467,0.422915,0.414912,1
0.005221,2,0.744681,0.116759,0.818953,0.003467,0.422915,0.414912,1
0.005221,2,0.765957,0.086075,0.806159,0.003467,0.422915,0.414912,1
0.005221,2,0.787234,0.086075,0.782208,0.003467,0.422915,0.414912,1
0.005221,2,0.808511,0.074667,0.742339,0.003467,0.422915,0.414912,1
0.005221,2,0.829787,0.074667,0.705445,0.003467,0.422915,0.414912,1
0.005221,2,0.851064,0.114387,0.674799,0.003467,0.422915,0.414912,1
0.005221,2,0.87234,0.114387,0.64341,0.003467,0.422915,0.414912,1
0.005221,2,0.893617,0.089618,0.588218,0.003467,0.422915,0.414912,1
0.005221,2,0.914894,0.074667,0.530348,0.003467,0.422915,0.414912,1
0.005221,2,0.93617,0.106131,0.552514,0.003467,0.422915,0.414912,1
0.005221,2,0.957447,0.090309,0.54463,0.003467,0.422915,0.414912,1
0.005221,2,0.978723,0.090939,0.544183,0.003467,0.422915,0.414912,1
0.005221,2,1,0.090309,0.533472,0.003467,0.422915,0.414912,1
0.005265,3,0,0.106731,0.526331,0.003467,0.422915,0.414912,1
0.005265,3,0.021277,0.106731,0.510116,0.003467,0.422915,0.414912,1
0.005265,3,0.042553,0.106131,0.480661,0.003467,0.422915,0.414912,1
0.005265,3,0.06383,0.086075,0.412824,0.003467,0.422915,0.414912,1
0.005265,3,0.085106,0.082473,0.355251,0.003467,0.422915,0.414912,1
0.005265,3,0.106383,0.077789,0.311514,0.003467,0.422915,0.414912,0
0.005265,3,0.12766,0.076438,0.260339,0.003467,0.422915,0.414912,0
0.005265,3,0.148936,0.075958,0.221958,0.003467,0.422915,0.414912,0
0.005265,3,0.170213,0.076858,0.19875,0.003467,0.422915,0.414912,0
0.005265,3,0.191489,0.05305,0.196073,0.003467,0.422915,0.414912,0
0.005265,3,0.212766,0.077579,0.227016,0.003467,0.422915,0.414912,0
0.005265,3,0.234043,0.07863,0.273431,0.003467,0.422915,0.414912,0
0.005265,3,0.255319,0.099616,0.382922,0.003467,0.422915,0.414912,1
0.005265,3,0.276596,0.149664,0.501488,0.003467,0.422915,0.414912,1
0.005265,3,0.297872,0.056113,0.535406,0.003467,0.422915,0.414912,0
0.005265,3,0.319149,0.082473,0.612615,0.003467,0.422915,0.414912,0
0.005265,3,0.340426,0.057674,0.631508,0.003467,0.422915,0.414912,0
0.005265,3,0.361702,0.079711,0.614847,0.003467,0.422915,0.414912,0
0.005265,3,0.382979,0.083794,0.64222,0.003467,0.422915,0.414912,0
0.005265,3,0.404255,0.083794,0.642963,0.003467,0.422915,0.414912,0
0.005265,3,0.425532,0.086075,0.616929,0.003467,0.422915,0.414912,1
0.005265,3,0.446809,0.083794,0.591342,0.003467,0.422915,0.414912,0
0.005265,3,0.468085,0.10475,0.572002,0.003467,0.422915,0.414912,1
0.005265,3,0.489362,0.083794,0.55906,0.003467,0.422915,0.414912,0
0.005265,3,0.510638,0.083794,0.545968,0.003467,0.422915,0.414912,0
0.005265,3,0.531915,0.083794,0.537786,0.003467,0.422915,0.414912,0
0.005265,3,0.553191,0.082473,0.536745,0.003467,0.422915,0.414912,0
0.005265,3,0.574468,0.083794,0.533472,0.003467,0.422915,0.414912,0
0.005265,3,0.595745,0.057674,0.534811,0.003467,0.422915,0.414912,0
0.005265,3,0.617021,0.079711,0.518447,0.003467,0.422915,0.414912,0
0.005265,3,0.638298,0.082473,0.515025,0.003467,0.422915,0.414912,0
0.005265,3,0.659574,0.082473,0.539423,0.003467,0.422915,0.414912,0
0.005265,3,0.680851,0.086796,0.576168,0.003467,0.422915,0.414912,0
0.005265,3,0.702128,0.107272,0.632847,0.003467,0.422915,0.414912,1
0.005265,3,0.723404,0.10475,0.726569,0.003467,0.422915,0.414912,1
0.005265,3,0.744681,0.10475,0.799911,0.003467,0.422915,0.414912,1
0.005265,3,0.765957,0.10475,0.788307,0.003467,0.422915,0.414912,1
0.005265,3,0.787234,0.090909,0.767331,0.003467,0.422915,0.414912,1
0.005265,3,0.808511,0.083794,0.724933,0.003467,0.422915,0.414912,0
0.005265,3,0.829787,0.083794,0.695924,0.003467,0.422915,0.414912,0
0.005265,3,0.851064,0.116759,0.675989,0.003467,0.422915,0.414912,1
0.005265,3,0.87234,0.10475,0.648616,0.003467,0.422915,0.414912,1
0.005265,3,0.893617,0.083794,0.590003,0.003467,0.422915,0.414912,0
0.005265,3,0.914894,0.083794,0.535257,0.003467,0.422915,0.414912,0
0.005265,3,0.93617,0.083794,0.559506,0.003467,0.422915,0.414912,0
0.005265,3,0.957447,0.086075,0.551175,0.003467,0.422915,0.414912,0
0.005265,3,0.978723,0.083794,0.554597,0.003467,0.422915,0.414912,0
0.005265,3,1,0.083794,0.549539,0.003467,0.422915,0.414912,0
0.005309,4,0,0.099616,0.542101,0.003467,0.422915,0.414912,1
0.005309,4,0.021277,0.099616,0.518149,0.003467,0.422915,0.414912,1
0.005309,4,0.042553,0.086075,0.48914,0.003467,0.422915,0.414912,0
0.005309,4,0.06383,0.082473,0.430229,0.003467,0.422915,0.414912,0
0.005309,4,0.085106,0.079711,0.373698,0.003467,0.422915,0.414912,0
0.005309,4,0.106383,0.077789,0.322374,0.003467,0.422915,0.414912,0
0.005309,4,0.12766,0.076858,0.279381,0.003467,0.422915,0.414912,0
0.005309,4,0.148936,0.076858,0.237727,0.003467,0.422915,0.414912,0
0.005309,4,0.170213,0.075808,0.21571,0.003467,0.422915,0.414912,0
0.005309,4,0.191489,0.056113,0.213181,0.003467,0.422915,0.414912,0
0.005309,4,0.212766,0.076858,0.24814,0.003467,0.422915,0.414912,0
0.005309,4,0.234043,0.080101,0.293811,0.003467,0.422915,0.414912,0
0.005309,4,0.255319,0.10508,0.399583,0.003467,0.422915,0.414912,1
0.005309,4,0.276596,0.13105,0.50967,0.003467,0.422915,0.414912,1
0.005309,4,0.297872,0.079711,0.540315,0.003467,0.422915,0.414912,0
0.005309,4,0.319149,0.089798,0.623326,0.003467,0.422915,0.414912,1
0.005309,4,0.340426,0.087336,0.652187,0.003467,0.422915,0.414912,1
0.005309,4,0.361702,0.077939,0.640881,0.003467,0.422915,0.414912,0
0.005309,4,0.382979,0.079681,0.663344,0.003467,0.422915,0.414912,0
0.005309,4,0.404255,0.077939,0.667956,0.003467,0.422915,0.414912,0
0.005309,4,0.425532,0.079711,0.64222,0.003467,0.422915,0.414912,0
0.005309,4,0.446809,0.077939,0.607557,0.003467,0.422915,0.414912,0
0.005309,4,0.468085,0.077939,0.584499,0.003467,0.422915,0.414912,0
0.005309,4,0.489362,0.077939,0.570217,0.003467,0.422915,0.414912,0
0.005309,4,0.510638,0.077939,0.554151,0.003467,0.422915,0.414912,0
0.005309,4,0.531915,0.056113,0.538084,0.003467,0.422915,0.414912,0
0.005309,4,0.553191,0.056113,0.532133,0.003467,0.422915,0.414912,0
0.005309,4,0.574468,0.056113,0.524993,0.003467,0.422915,0.414912,0
0.005309,4,0.595745,0.056113,0.505653,0.003467,0.422915,0.414912,0
0.005309,4,0.617021,0.042422,0.497769,0.003467,0.422915,0.414912,0
0.005309,4,0.638298,0.054612,0.492115,0.003467,0.422915,0.414912,0
0.005309,4,0.659574,0.054612,0.51086,0.003467,0.422915,0.414912,0
0.005309,4,0.680851,0.054612,0.533621,0.003467,0.422915,0.414912,0
0.005309,4,0.702128,0.0795,0.588515,0.003467,0.422915,0.414912,0
0.005309,4,0.723404,0.089798,0.682981,0.003467,0.422915,0.414912,1
0.005309,4,0.744681,0.086075,0.763017,0.003467,0.422915,0.414912,1
0.005309,4,0.765957,0.086075,0.772687,0.003467,0.422915,0.414912,1
0.005309,4,0.787234,0.089798,0.757215,0.003467,0.422915,0.414912,1
0.005309,4,0.808511,0.089798,0.720619,0.003467,0.422915,0.414912,1
0.005309,4,0.829787,0.056113,0.6928,0.003467,0.422915,0.414912,0
0.005309,4,0.851064,0.089798,0.68075,0.003467,0.422915,0.414912,1
0.005309,4,0.87234,0.089798,0.655608,0.003467,0.422915,0.414912,1
0.005309,4,0.893617,0.056113,0.601458,0.003467,0.422915,0.414912,0
0.005309,4,0.914894,0.056113,0.542696,0.003467,0.422915,0.414912,0
0.005309,4,0.93617,0.089798,0.569325,0.003467,0.422915,0.414912,1
0.005309,4,0.957447,0.089798,0.566944,0.003467,0.422915,0.414912,1
0.005309,4,0.978723,0.090909,0.563672,0.003467,0.422915,0.414912,1
0.005309,4,1,0.086075,0.550134,0.003467,0.422915,0.414912,1
0.005354,5,0,0.091209,0.54463,0.003467,0.422915,0.414912,1
0.005354,5,0.021277,0.091209,0.521273,0.003467,0.422915,0.414912,1
0.005354,5,0.042553,0.086075,0.48795,0.003467,0.422915,0.414912,1
0.005354,5,0.06383,0.082473,0.424874,0.003467,0.422915,0.414912,1
0.005354,5,0.085106,0.076858,0.366706,0.003467,0.422915,0.414912,0
0.005354,5,0.106383,0.075808,0.320292,0.003467,0.422915,0.414912,0
0.005354,5,0.12766,0.075808,0.274918,0.003467,0.422915,0.414912,0
0.005354,5,0.148936,0.075808,0.235495,0.003467,0.422915,0.414912,0
0.005354,5,0.170213,0.064519,0.209759,0.003467,0.422915,0.414912,0
0.005354,5,0.191489,0.064519,0.20842,0.003467,0.422915,0.414912,0
0.005354,5,0.212766,0.064519,0.238173,0.003467,0.422915,0.414912,0
0.005354,5,0.234043,0.077909,0.288456,0.003467,0.422915,0.414912,1
0.005354,5,0.255319,0.106071,0.390658,0.003467,0.422915,0.414912,1
0.005354,5,0.276596,0.106011,0.502827,0.003467,0.422915,0.414912,1
0.005354,5,0.297872,0.056173,0.543439,0.003467,0.422915,0.414912,0
0.005354,5,0.319149,0.088297,0.627789,0.003467,0.422915,0.414912,1
0.005354,5,0.340426,0.088297,0.662005,0.003467,0.422915,0.414912,1
0.005354,5,0.361702,0.064519,0.651294,0.003467,0.422915,0.414912,0
0.005354,5,0.382979,0.088297,0.676436,0.003467,0.422915,0.414912,1
0.005354,5,0.404255,0.085565,0.673907,0.003467,0.422915,0.414912,1
0.005354,5,0.425532,0.088297,0.651294,0.003467,0.422915,0.414912,1
0.005354,5,0.446809,0.064519,0.614549,0.003467,0.422915,0.414912,0
0.005354,5,0.468085,0.088297,0.588367,0.003467,0.422915,0.414912,1
0.005354,5,0.489362,0.088297,0.574383,0.003467,0.422915,0.414912,1
0.005354,5,0.510638,0.085565,0.556977,0.003467,0.422915,0.414912,1
0.005354,5,0.531915,0.088297,0.539423,0.003467,0.422915,0.414912,1
0.005354,5,0.553191,0.056173,0.525439,0.003467,0.422915,0.414912,0
0.005354,5,0.574468,0.056173,0.509819,0.003467,0.422915,0.414912,0
0.005354,5,0.595745,0.042572,0.495537,0.003467,0.422915,0.414912,0
0.005354,5,0.617021,0.054612,0.483041,0.003467,0.422915,0.414912,0
0.005354,5,0.638298,0.056173,0.471883,0.003467,0.422915,0.414912,0
0.005354,5,0.659574,0.042572,0.482594,0.003467,0.422915,0.414912,0
0.005354,5,0.680851,0.054612,0.504463,0.003467,0.422915,0.414912,0
0.005354,5,0.702128,0.088297,0.559209,0.003467,0.422915,0.414912,1
0.005354,5,0.723404,0.064519,0.642517,0.003467,0.422915,0.414912,0
0.005354,5,0.744681,0.064519,0.72404,0.003467,0.422915,0.414912,0
0.005354,5,0.765957,0.088297,0.725974,0.003467,0.422915,0.414912,1
0.005354,5,0.787234,0.064519,0.703957,0.003467,0.422915,0.414912,0
0.005354,5,0.808511,0.056173,0.670634,0.003467,0.422915,0.414912,0
0.005354,5,0.829787,0.057674,0.645195,0.003467,0.422915,0.414912,0
0.005354,5,0.851064,0.064519,0.620649,0.003467,0.422915,0.414912,0
0.005354,5,0.87234,0.057674,0.603838,0.003467,0.422915,0.414912,0
0.005354,5,0.893617,0.064519,0.562481,0.003467,0.422915,0.414912,0
0.005354,5,0.914894,0.054612,0.510711,0.003467,0.422915,0.414912,0
0.005354,5,0.93617,0.085565,0.554002,0.003467,0.422915,0.414912,1
0.005354,5,0.957447,0.085565,0.558018,0.003467,0.422915,0.414912,1
0.005354,5,0.978723,0.064519,0.569771,0.003467,0.422915,0.414912,0
0.005354,5,1,0.064519,0.543588,0.003467,0.422915,0.414912,0
0.005398,6,0,0.085565,0.541803,0.003467,0.422915,0.414912,1
0.005398,6,0.021277,0.085565,0.506992,0.003467,0.422915,0.414912,1
0.005398,6,0.042553,0.078209,0.477834,0.003467,0.422915,0.414912,1
0.005398,6,0.06383,0.064519,0.415204,0.003467,0.422915,0.414912,0
0.005398,6,0.085106,0.064519,0.351532,0.003467,0.422915,0.414912,0
0.005398,6,0.106383,0.064519,0.303184,0.003467,0.422915,0.414912,0
0.005398,6,0.12766,0.064519,0.260934,0.003467,0.422915,0.414912,0
0.005398,6,0.148936,0.064519,0.221363,0.003467,0.422915,0.414912,0
0.005398,6,0.170213,0.054251,0.194585,0.003467,0.422915,0.414912,0
0.005398,6,0.191489,0.054612,0.179262,0.003467,0.422915,0.414912,0
0.005398,6,0.212766,0.056713,0.179708,0.003467,0.422915,0.414912,0
0.005398,6,0.234043,0.056713,0.194287,0.003467,0.422915,0.414912,0
0.005398,6,0.255319,0.074817,0.227016,0.003467,0.422915,0.414912,1
0.005398,6,0.276596,0.063378,0.267777,0.003467,0.422915,0.414912,0
0.005398,6,0.297872,0.082683,0.318655,0.003467,0.422915,0.414912,1
0.005398,6,0.319149,0.097574,0.409848,0.003467,0.422915,0.414912,1
0.005398,6,0.340426,0.097574,0.501041,0.003467,0.422915,0.414912,1
0.005398,6,0.361702,0.107542,0.562779,0.003467,0.422915,0.414912,1
0.005398,6,0.382979,0.119731,0.6144,0.003467,0.422915,0.414912,1
0.005398,6,0.404255,0.119731,0.618863,0.003467,0.422915,0.414912,1
0.005398,6,0.425532,0.119731,0.591491,0.003467,0.422915,0.414912,1
0.005398,6,0.446809,0.090939,0.555043,0.003467,0.422915,0.414912,1
0.005398,6,0.468085,0.090939,0.522761,0.003467,0.422915,0.414912,1
0.005398,6,0.489362,0.090939,0.485719,0.003467,0.422915,0.414912,1
0.005398,6,0.510638,0.084574,0.464296,0.003467,0.422915,0.414912,1
0.005398,6,0.531915,0.074817,0.442577,0.003467,0.422915,0.414912,1
0.005398,6,0.553191,0.059865,0.421154,0.003467,0.422915,0.414912,0
0.005398,6,0.574468,0.063378,0.407617,0.003467,0.422915,0.414912,0
0.005398,6,0.595745,0.059865,0.391253,0.003467,0.422915,0.414912,0
0.005398,6,0.617021,0.059865,0.379203,0.003467,0.422915,0.414912,0
0.005398,6,0.638298,0.075958,0.374591,0.003467,0.422915,0.414912,1
0.005398,6,0.659574,0.084574,0.38069,0.003467,0.422915,0.414912,1
0.005398,6,0.680851,0.106311,0.407022,0.003467,0.422915,0.414912,1
0.005398,6,0.702128,0.097574,0.471288,0.003467,0.422915,0.414912,1
0.005398,6,0.723404,0.108232,0.562928,0.003467,0.422915,0.414912,1
0.005398,6,0.744681,0.119731,0.644897,0.003467,0.422915,0.414912,1
0.005398,6,0.765957,0.106311,0.658286,0.003467,0.422915,0.414912,1
0.005398,6,0.787234,0.088717,0.637905,0.003467,0.422915,0.414912,1
0.005398,6,0.808511,0.080911,0.592978,0.003467,0.422915,0.414912,1
0.005398,6,0.829787,0.080911,0.555787,0.003467,0.422915,0.414912,1
0.005398,6,0.851064,0.080911,0.523951,0.003467,0.422915,0.414912,1
0.005398,6,0.87234,0.080911,0.504017,0.003467,0.422915,0.414912,1
0.005398,6,0.893617,0.063378,0.459982,0.003467,0.422915,0.414912,0
0.005398,6,0.914894,0.062447,0.420559,0.003467,0.422915,0.414912,0
0.005398,6,0.93617,0.074817,0.440345,0.003467,0.422915,0.414912,0
0.005398,6,0.957447,0.063378,0.437965,0.003467,0.422915,0.414912,0
0.005398,6,0.978723,0.063378,0.438709,0.003467,0.422915,0.414912,0
0.005398,6,1,0.063378,0.421452,0.003467,0.422915,0.414912,0
0.005442,7,0,0.063378,0.393782,0.003467,0.422915,0.414912,0
0.005442,7,0.021277,0.063378,0.342904,0.003467,0.422915,0.414912,0
0.005442,7,0.042553,0.054612,0.319399,0.003467,0.422915,0.414912,0
0.005442,7,0.06383,0.05305,0.25781,0.003467,0.422915,0.414912,0
0.005442,7,0.085106,0.054612,0.217346,0.003467,0.422915,0.414912,0
0.005442,7,0.106383,0.054612,0.184469,0.003467,0.422915,0.414912,0
0.005442,7,0.12766,0.05305,0.15546,0.003467,0.422915,0.414912,0
0.005442,7,0.148936,0.042122,0.128682,0.003467,0.422915,0.414912,0
0.005442,7,0.170213,0.042122,0.108004,0.003467,0.422915,0.414912,0
0.005442,7,0.191489,0.05305,0.105177,0.003467,0.422915,0.414912,0
0.005442,7,0.212766,0.042122,0.104582,0.003467,0.422915,0.414912,0
0.005442,7,0.234043,0.05305,0.117971,0.003467,0.422915,0.414912,0
0.005442,7,0.255319,0.05305,0.140137,0.003467,0.422915,0.414912,0
0.005442,7,0.276596,0.05305,0.161262,0.003467,0.422915,0.414912,0
0.005442,7,0.297872,0.054612,0.196073,0.003467,0.422915,0.414912,0
0.005442,7,0.319149,0.074817,0.258405,0.003467,0.422915,0.414912,0
0.005442,7,0.340426,0.080911,0.331449,0.003467,0.422915,0.414912,1
0.005442,7,0.361702,0.088838,0.391104,0.003467,0.422915,0.414912,1
0.005442,7,0.382979,0.087066,0.442725,0.003467,0.422915,0.414912,1
0.005442,7,0.404255,0.087066,0.468015,0.003467,0.422915,0.414912,1
0.005442,7,0.425532,0.078209,0.461024,0.003467,0.422915,0.414912,1
0.005442,7,0.446809,0.078209,0.444362,0.003467,0.422915,0.414912,1
0.005442,7,0.468085,0.080911,0.423981,0.003467,0.422915,0.414912,1
0.005442,7,0.489362,0.077609,0.408063,0.003467,0.422915,0.414912,1
0.005442,7,0.510638,0.074817,0.386938,0.003467,0.422915,0.414912,1
0.005442,7,0.531915,0.074817,0.368492,0.003467,0.422915,0.414912,1
0.005442,7,0.553191,0.059865,0.343201,0.003467,0.422915,0.414912,0
0.005442,7,0.574468,0.059865,0.320738,0.003467,0.422915,0.414912,0
0.005442,7,0.595745,0.059865,0.293068,0.003467,0.422915,0.414912,0
0.005442,7,0.617021,0.05305,0.295745,0.003467,0.422915,0.414912,0
0.005442,7,0.638298,0.054612,0.297084,0.003467,0.422915,0.414912,0
0.005442,7,0.659574,0.059865,0.314639,0.003467,0.422915,0.414912,0
0.005442,7,0.680851,0.075958,0.339334,0.003467,0.422915,0.414912,1
0.005442,7,0.702128,0.059865,0.403154,0.003467,0.422915,0.414912,0
0.005442,7,0.723404,0.074817,0.499107,0.003467,0.422915,0.414912,1
0.005442,7,0.744681,0.077999,0.587771,0.003467,0.422915,0.414912,1
0.005442,7,0.765957,0.077609,0.614698,0.003467,0.422915,0.414912,1
0.005442,7,0.787234,0.074817,0.602499,0.003467,0.422915,0.414912,1
0.005442,7,0.808511,0.077609,0.580482,0.003467,0.422915,0.414912,1
0.005442,7,0.829787,0.059865,0.554151,0.003467,0.422915,0.414912,0
0.005442,7,0.851064,0.077609,0.535109,0.003467,0.422915,0.414912,1
0.005442,7,0.87234,0.075958,0.51562,0.003467,0.422915,0.414912,1
0.005442,7,0.893617,0.077609,0.475751,0.003467,0.422915,0.414912,1
0.005442,7,0.914894,0.059865,0.427105,0.003467,0.422915,0.414912,0
0.005442,7,0.93617,0.074817,0.444362,0.003467,0.422915,0.414912,1
0.005442,7,0.957447,0.05305,0.429188,0.003467,0.422915,0.414912,0
0.005442,7,0.978723,0.059865,0.421898,0.003467,0.422915,0.414912,0
0.005442,7,1,0.042572,0.401666,0.003467,0.422915,0.414912,0
0.008584,1,0,0.042422,0.380542,0.003467,0.422915,0.414912,0
0.008584,1,0.021277,0.042422,0.334424,0.003467,0.422915,0.414912,0
0.008584,1,0.042553,0.042422,0.324159,0.003467,0.422915,0.414912,0
0.008584,1,0.06383,0.042422,0.283249,0.003467,0.422915,0.414912,0
0.008584,1,0.085106,0.042422,0.245909,0.003467,0.422915,0.414912,0
0.008584,1,0.106383,0.042422,0.212288,0.003467,0.422915,0.414912,0
0.008584,1,0.12766,0.042272,0.186849,0.003467,0.422915,0.414912,0
0.008584,1,0.148936,0.042272,0.166617,0.003467,0.422915,0.414912,0
0.008584,1,0.170213,0.042272,0.162303,0.003467,0.422915,0.414912,0
0.008584,1,0.191489,0.056173,0.166617,0.003467,0.422915,0.414912,0
0.008584,1,0.212766,0.057734,0.20366,0.003467,0.422915,0.414912,0
0.008584,1,0.234043,0.064519,0.253942,0.003467,0.422915,0.414912,1
0.008584,1,0.255319,0.083614,0.354805,0.003467,0.422915,0.414912,1
0.008584,1,0.276596,0.089798,0.458643,0.003467,0.422915,0.414912,1
0.008584,1,0.297872,0.056173,0.486016,0.003467,0.422915,0.414912,0
0.008584,1,0.319149,0.074817,0.565308,0.003467,0.422915,0.414912,1
0.008584,1,0.340426,0.074817,0.613657,0.003467,0.422915,0.414912,1
0.008584,1,0.361702,0.059235,0.627789,0.003467,0.422915,0.414912,0
0.008584,1,0.382979,0.074817,0.663642,0.003467,0.422915,0.414912,1
0.008584,1,0.404255,0.059235,0.668849,0.003467,0.422915,0.414912,0
0.008584,1,0.425532,0.057734,0.648319,0.003467,0.422915,0.414912,0
0.008584,1,0.446809,0.074817,0.626153,0.003467,0.422915,0.414912,1
0.008584,1,0.468085,0.11886,0.600565,0.003467,0.422915,0.414912,1
0.008584,1,0.489362,0.115468,0.584796,0.003467,0.422915,0.414912,1
0.008584,1,0.510638,0.106071,0.578697,0.003467,0.422915,0.414912,1
0.008584,1,0.531915,0.074817,0.567688,0.003467,0.422915,0.414912,1
0.008584,1,0.553191,0.064519,0.559952,0.003467,0.422915,0.414912,0
0.008584,1,0.574468,0.085565,0.548795,0.003467,0.422915,0.414912,1
0.008584,1,0.595745,0.085565,0.542249,0.003467,0.422915,0.414912,1
0.008584,1,0.617021,0.085565,0.539572,0.003467,0.422915,0.414912,1
0.008584,1,0.638298,0.089798,0.540018,0.003467,0.422915,0.414912,1
0.008584,1,0.659574,0.106071,0.548944,0.003467,0.422915,0.414912,1
0.008584,1,0.680851,0.106071,0.561738,0.003467,0.422915,0.414912,1
0.008584,1,0.702128,0.119731,0.632252,0.003467,0.422915,0.414912,1
0.008584,1,0.723404,0.134172,0.721214,0.003467,0.422915,0.414912,1
0.008584,1,0.744681,0.146511,0.799167,0.003467,0.422915,0.414912,1
0.008584,1,0.765957,0.106071,0.801547,0.003467,0.422915,0.414912,1
0.008584,1,0.787234,0.106071,0.772092,0.003467,0.422915,0.414912,1
0.008584,1,0.808511,0.089798,0.73371,0.003467,0.422915,0.414912,1
0.008584,1,0.829787,0.074817,0.705296,0.003467,0.422915,0.414912,1
0.008584,1,0.851064,0.089798,0.680006,0.003467,0.422915,0.414912,1
0.008584,1,0.87234,0.089798,0.651145,0.003467,0.422915,0.414912,1
0.008584,1,0.893617,0.064519,0.590003,0.003467,0.422915,0.414912,0
0.008584,1,0.914894,0.042422,0.530348,0.003467,0.422915,0.414912,0
0.008584,1,0.93617,0.085565,0.560399,0.003467,0.422915,0.414912,1
0.008584,1,0.957447,0.064519,0.553704,0.003467,0.422915,0.414912,0
0.008584,1,0.978723,0.064519,0.556828,0.003467,0.422915,0.414912,0
0.008584,1,1,0.064519,0.551175,0.003467,0.422915,0.414912,0
0.008628,2,0,0.064519,0.54091,0.003467,0.422915,0.414912,0
0.008628,2,0.021277,0.089798,0.517852,0.003467,0.422915,0.414912,1
0.008628,2,0.042553,0.085565,0.494496,0.003467,0.422915,0.414912,1
0.008628,2,0.06383,0.064519,0.430378,0.003467,0.422915,0.414912,0
0.008628,2,0.085106,0.057734,0.367896,0.003467,0.422915,0.414912,0
0.008628,2,0.106383,0.075958,0.321333,0.003467,0.422915,0.414912,0
0.008628,2,0.12766,0.064519,0.271497,0.003467,0.422915,0.414912,0
0.008628,2,0.148936,0.064519,0.235347,0.003467,0.422915,0.414912,0
0.008628,2,0.170213,0.057734,0.215263,0.003467,0.422915,0.414912,0
0.008628,2,0.191489,0.057734,0.205147,0.003467,0.422915,0.414912,0
0.008628,2,0.212766,0.074877,0.231479,0.003467,0.422915,0.414912,0
0.008628,2,0.234043,0.077609,0.282059,0.003467,0.422915,0.414912,0
0.008628,2,0.255319,0.089798,0.379054,0.003467,0.422915,0.414912,1
0.008628,2,0.276596,0.080911,0.473222,0.003467,0.422915,0.414912,0
0.008628,2,0.297872,0.056173,0.49524,0.003467,0.422915,0.414912,0
0.008628,2,0.319149,0.074817,0.580184,0.003467,0.422915,0.414912,0
0.008628,2,0.340426,0.057734,0
Download .txt
gitextract_04k4nztj/

├── .gitignore
├── CONTRIBUTING.md
├── ISSUE_TEMPLATE.md
├── LICENSE
├── PULL_REQUEST_TEMPLATE.md
├── README.md
├── data/
│   ├── electNormNew.arff
│   ├── hyperplanesampledata
│   ├── hyperplanesampledata.arff.head
│   ├── iris.arff
│   ├── randomtreesampledata
│   ├── randomtreesampledata.arff.head
│   ├── stream2000_7anom.arff
│   └── stream2500_51anom.arff
├── learn.sbt
├── project/
│   └── plugins.sbt
├── scripts/
│   ├── generateData.sh
│   ├── instance_server/
│   │   ├── generate_dataset.py
│   │   └── server.py
│   └── spark.sh
├── src/
│   ├── main/
│   │   ├── java/
│   │   │   └── com/
│   │   │       └── github/
│   │   │           └── javacliparser/
│   │   │               ├── AbstractClassOption.java
│   │   │               ├── AbstractOption.java
│   │   │               ├── ClassOption.java
│   │   │               ├── Configurable.java
│   │   │               ├── FileOption.java
│   │   │               ├── FlagOption.java
│   │   │               ├── FloatOption.java
│   │   │               ├── IntOption.java
│   │   │               ├── JavaCLIParser.java
│   │   │               ├── ListOption.java
│   │   │               ├── MultiChoiceOption.java
│   │   │               ├── Option.java
│   │   │               ├── Options.java
│   │   │               ├── SerializeUtils.java
│   │   │               ├── StringOption.java
│   │   │               ├── StringUtils.java
│   │   │               └── examples/
│   │   │                   ├── DoTask.java
│   │   │                   ├── Task1.java
│   │   │                   └── Task2.java
│   │   └── scala/
│   │       └── org/
│   │           └── apache/
│   │               └── spark/
│   │                   └── streamdm/
│   │                       ├── classifiers/
│   │                       │   ├── Classifier.scala
│   │                       │   ├── MultiClassLearner.scala
│   │                       │   ├── PerceptronLearner.scala
│   │                       │   ├── SGDLearner.scala
│   │                       │   ├── bayes/
│   │                       │   │   └── MultinomialNaiveBayes.scala
│   │                       │   ├── meta/
│   │                       │   │   ├── Bagging.scala
│   │                       │   │   └── RandomForest.scala
│   │                       │   ├── model/
│   │                       │   │   ├── HingeLoss.scala
│   │                       │   │   ├── L1Regularizer.scala
│   │                       │   │   ├── L2Regularizer.scala
│   │                       │   │   ├── LinearModel.scala
│   │                       │   │   ├── LogisticLoss.scala
│   │                       │   │   ├── Loss.scala
│   │                       │   │   ├── PerceptronLoss.scala
│   │                       │   │   ├── Regularizer.scala
│   │                       │   │   ├── SquaredLoss.scala
│   │                       │   │   └── ZeroRegularizer.scala
│   │                       │   └── trees/
│   │                       │       ├── ConditionalTest.scala
│   │                       │       ├── FeatureClassObserver.scala
│   │                       │       ├── FeatureSplit.scala
│   │                       │       ├── GaussianEstimator.scala
│   │                       │       ├── HoeffdingTree.scala
│   │                       │       ├── SplitCriterion.scala
│   │                       │       ├── Utils.scala
│   │                       │       └── nodes/
│   │                       │           ├── ActiveLearningNode.scala
│   │                       │           ├── FoundNode.scala
│   │                       │           ├── InactiveLearningNode.scala
│   │                       │           ├── LearningNode.scala
│   │                       │           ├── LearningNodeNB.scala
│   │                       │           ├── LearningNodeNBAdaptive.scala
│   │                       │           ├── Node.scala
│   │                       │           └── SplitNode.scala
│   │                       ├── clusterers/
│   │                       │   ├── Clusterer.scala
│   │                       │   ├── Clustream.scala
│   │                       │   ├── StreamKM.scala
│   │                       │   ├── clusters/
│   │                       │   │   ├── BucketManager.scala
│   │                       │   │   ├── Clusters.scala
│   │                       │   │   ├── MicroCluster.scala
│   │                       │   │   ├── MicroClusters.scala
│   │                       │   │   └── TreeCoreset.scala
│   │                       │   └── utils/
│   │                       │       └── KMeans.scala
│   │                       ├── core/
│   │                       │   ├── ClassificationModel.scala
│   │                       │   ├── DenseInstance.scala
│   │                       │   ├── Example.scala
│   │                       │   ├── ExampleParser.scala
│   │                       │   ├── Instance.scala
│   │                       │   ├── Learner.scala
│   │                       │   ├── Model.scala
│   │                       │   ├── NullInstance.scala
│   │                       │   ├── SparseInstance.scala
│   │                       │   ├── TextInstance.scala
│   │                       │   └── specification/
│   │                       │       ├── ExampleSpecification.scala
│   │                       │       ├── FeatureSpecification.scala
│   │                       │       ├── InstanceSpecification.scala
│   │                       │       └── SpecificationParser.scala
│   │                       ├── evaluation/
│   │                       │   ├── BasicClassificationEvaluator.scala
│   │                       │   ├── ClusteringEvaluator.scala
│   │                       │   └── Evaluator.scala
│   │                       ├── outlier/
│   │                       │   ├── Outlier.scala
│   │                       │   ├── OutlierModel.scala
│   │                       │   └── SWNearestNeighbors.scala
│   │                       ├── streamDMJob.scala
│   │                       ├── streams/
│   │                       │   ├── FileReader.scala
│   │                       │   ├── KafkaReader.scala
│   │                       │   ├── PrintStreamWriter.scala
│   │                       │   ├── SampleDataWriter.scala
│   │                       │   ├── SocketTextStreamReader.scala
│   │                       │   ├── StreamReader.scala
│   │                       │   ├── StreamWriter.scala
│   │                       │   ├── TextStreamReader.scala
│   │                       │   └── generators/
│   │                       │       ├── Cluster.scala
│   │                       │       ├── Generator.scala
│   │                       │       ├── HyperplaneGenerator.scala
│   │                       │       ├── RandomRBFEventsGenerator.scala
│   │                       │       ├── RandomRBFGenerator.scala
│   │                       │       ├── RandomTreeGenerator.scala
│   │                       │       └── SphereCluster.scala
│   │                       ├── tasks/
│   │                       │   ├── ClusteringTrainEvaluate.scala
│   │                       │   ├── EvaluateOutlierDetection.scala
│   │                       │   ├── EvaluatePrequential.scala
│   │                       │   └── Task.scala
│   │                       └── utils/
│   │                           ├── Statistics.scala
│   │                           └── Utils.scala
│   └── test/
│       └── scala/
│           └── org/
│               └── apache/
│                   └── spark/
│                       └── streamdm/
│                           ├── classifiers/
│                           │   ├── bayes/
│                           │   │   └── MultinomialNaiveBayesSuite.scala
│                           │   ├── model/
│                           │   │   ├── HingeLossSuite.scala
│                           │   │   ├── L1RegularizerSuite.scala
│                           │   │   ├── L2RegularizerSuite.scala
│                           │   │   ├── LogisticLossSuite.scala
│                           │   │   ├── PerceptronLossSuite.scala
│                           │   │   ├── SquaredLossSuite.scala
│                           │   │   └── ZeroRegularizerSuite.scala
│                           │   └── trees/
│                           │       ├── ConditionalTestSuite.scala
│                           │       ├── FeatureClassObserverSuite.scala
│                           │       ├── FeatureSplitSuite.scala
│                           │       ├── GaussianEstimatorSuite.scala
│                           │       └── SplitCriterionSuite.scala
│                           ├── core/
│                           │   ├── DenseInstanceSuite.scala
│                           │   ├── ExampleSuite.scala
│                           │   └── SparseInstanceSuite.scala
│                           └── utils/
│                               └── UtilsSuite.scala
└── website/
    ├── .editorconfig
    ├── .gitignore
    ├── .jshintrc
    ├── .travis.yml
    ├── 404.md
    ├── Gemfile
    ├── Gruntfile.js
    ├── LICENSE
    ├── README.md
    ├── _config.yml
    ├── _data/
    │   └── navigation.yml
    ├── _includes/
    │   ├── ad-footer.html
    │   ├── ad-sidebar.html
    │   ├── browser-upgrade.html
    │   ├── disqus-comments.html
    │   ├── feed-footer.html
    │   ├── footer.html
    │   ├── footer.html~
    │   ├── head.html
    │   ├── navigation.html
    │   ├── open-graph.html
    │   ├── scripts.html
    │   └── social-share.html
    ├── _layouts/
    │   ├── page.html
    │   └── post.html
    ├── _octopress.yml
    ├── _sass/
    │   ├── _animations.scss
    │   ├── _archives.scss
    │   ├── _base.scss
    │   ├── _buttons.scss
    │   ├── _footer.scss
    │   ├── _footnotes.scss
    │   ├── _forms.scss
    │   ├── _grid-settings.scss
    │   ├── _helpers.scss
    │   ├── _masthead.scss
    │   ├── _mixins.scss
    │   ├── _navigation.scss
    │   ├── _notices.scss
    │   ├── _page.scss
    │   ├── _reset.scss
    │   ├── _search.scss
    │   ├── _syntax.scss
    │   ├── _variables.scss
    │   ├── _wells.scss
    │   └── vendor/
    │       ├── bourbon/
    │       │   ├── _bourbon-deprecated-upcoming.scss
    │       │   ├── _bourbon.scss
    │       │   ├── addons/
    │       │   │   ├── _button.scss
    │       │   │   ├── _clearfix.scss
    │       │   │   ├── _directional-values.scss
    │       │   │   ├── _ellipsis.scss
    │       │   │   ├── _font-family.scss
    │       │   │   ├── _hide-text.scss
    │       │   │   ├── _html5-input-types.scss
    │       │   │   ├── _position.scss
    │       │   │   ├── _prefixer.scss
    │       │   │   ├── _retina-image.scss
    │       │   │   ├── _size.scss
    │       │   │   ├── _timing-functions.scss
    │       │   │   ├── _triangle.scss
    │       │   │   └── _word-wrap.scss
    │       │   ├── css3/
    │       │   │   ├── _animation.scss
    │       │   │   ├── _appearance.scss
    │       │   │   ├── _backface-visibility.scss
    │       │   │   ├── _background-image.scss
    │       │   │   ├── _background.scss
    │       │   │   ├── _border-image.scss
    │       │   │   ├── _border-radius.scss
    │       │   │   ├── _box-sizing.scss
    │       │   │   ├── _calc.scss
    │       │   │   ├── _columns.scss
    │       │   │   ├── _filter.scss
    │       │   │   ├── _flex-box.scss
    │       │   │   ├── _font-face.scss
    │       │   │   ├── _font-feature-settings.scss
    │       │   │   ├── _hidpi-media-query.scss
    │       │   │   ├── _hyphens.scss
    │       │   │   ├── _image-rendering.scss
    │       │   │   ├── _keyframes.scss
    │       │   │   ├── _linear-gradient.scss
    │       │   │   ├── _perspective.scss
    │       │   │   ├── _placeholder.scss
    │       │   │   ├── _radial-gradient.scss
    │       │   │   ├── _transform.scss
    │       │   │   ├── _transition.scss
    │       │   │   └── _user-select.scss
    │       │   ├── functions/
    │       │   │   ├── _assign.scss
    │       │   │   ├── _color-lightness.scss
    │       │   │   ├── _flex-grid.scss
    │       │   │   ├── _golden-ratio.scss
    │       │   │   ├── _grid-width.scss
    │       │   │   ├── _modular-scale.scss
    │       │   │   ├── _px-to-em.scss
    │       │   │   ├── _px-to-rem.scss
    │       │   │   ├── _strip-units.scss
    │       │   │   ├── _tint-shade.scss
    │       │   │   ├── _transition-property-name.scss
    │       │   │   └── _unpack.scss
    │       │   ├── helpers/
    │       │   │   ├── _convert-units.scss
    │       │   │   ├── _gradient-positions-parser.scss
    │       │   │   ├── _is-num.scss
    │       │   │   ├── _linear-angle-parser.scss
    │       │   │   ├── _linear-gradient-parser.scss
    │       │   │   ├── _linear-positions-parser.scss
    │       │   │   ├── _linear-side-corner-parser.scss
    │       │   │   ├── _radial-arg-parser.scss
    │       │   │   ├── _radial-gradient-parser.scss
    │       │   │   ├── _radial-positions-parser.scss
    │       │   │   ├── _render-gradients.scss
    │       │   │   ├── _shape-size-stripper.scss
    │       │   │   └── _str-to-num.scss
    │       │   └── settings/
    │       │       ├── _prefixer.scss
    │       │       └── _px-to-em.scss
    │       ├── font-awesome/
    │       │   ├── _bordered-pulled.scss
    │       │   ├── _core.scss
    │       │   ├── _fixed-width.scss
    │       │   ├── _icons.scss
    │       │   ├── _larger.scss
    │       │   ├── _list.scss
    │       │   ├── _mixins.scss
    │       │   ├── _path.scss
    │       │   ├── _rotated-flipped.scss
    │       │   ├── _spinning.scss
    │       │   ├── _stacked.scss
    │       │   ├── _variables.scss
    │       │   └── font-awesome.scss
    │       ├── magnific-popup/
    │       │   ├── _settings.scss
    │       │   └── magnific-popup.scss
    │       └── neat/
    │           ├── _neat-helpers.scss
    │           ├── _neat.scss
    │           ├── functions/
    │           │   ├── _new-breakpoint.scss
    │           │   └── _private.scss
    │           ├── grid/
    │           │   ├── _fill-parent.scss
    │           │   ├── _grid.scss
    │           │   ├── _media.scss
    │           │   ├── _omega.scss
    │           │   ├── _outer-container.scss
    │           │   ├── _pad.scss
    │           │   ├── _private.scss
    │           │   ├── _reset.scss
    │           │   ├── _row.scss
    │           │   ├── _shift.scss
    │           │   ├── _span-columns.scss
    │           │   ├── _to-deprecate.scss
    │           │   └── _visual-grid.scss
    │           └── settings/
    │               ├── _grid.scss
    │               └── _visual-grid.scss
    ├── _templates/
    │   ├── archive
    │   ├── page
    │   └── post
    ├── assets/
    │   ├── css/
    │   │   └── main.scss
    │   ├── fonts/
    │   │   └── FontAwesome.otf
    │   └── js/
    │       ├── _main.js
    │       └── plugins/
    │           ├── jquery.fitvids.js
    │           ├── jquery.magnific-popup.js
    │           ├── respond.js
    │           ├── responsive-nav.js
    │           └── search.js
    ├── docs/
    │   ├── Bagging.md
    │   ├── CluStream.md
    │   ├── Contributors.md
    │   ├── GettingStarted.md
    │   ├── HDT.md
    │   ├── NB.md
    │   ├── Programming.md
    │   ├── SGD.md
    │   ├── SampleDataWriter.md
    │   ├── StreamKM.md
    │   └── generators.md
    ├── feed.xml
    ├── index.md
    └── package.json
Download .txt
SYMBOL INDEX (171 symbols across 24 files)

FILE: scripts/instance_server/generate_dataset.py
  function label (line 18) | def label(feat, func):
  function generate (line 23) | def generate():

FILE: scripts/instance_server/server.py
  function label (line 23) | def label(feat, func):
  function clientthread_file (line 28) | def clientthread_file(conn):
  function clientthread (line 50) | def clientthread(conn):

FILE: src/main/java/com/github/javacliparser/AbstractClassOption.java
  class AbstractClassOption (line 28) | public abstract class AbstractClassOption extends AbstractOption {
    method AbstractClassOption (line 61) | public AbstractClassOption(String name, char cliChar, String purpose,
    method AbstractClassOption (line 78) | public AbstractClassOption(String name, char cliChar, String purpose,
    method setCurrentObject (line 92) | public void setCurrentObject(Object obj) {
    method getValue (line 110) | public <T> T getValue() {
    method getRequiredType (line 119) | public Class<?> getRequiredType() {
    method getNullString (line 128) | public String getNullString() {
    method materializeObject (line 137) | public Object materializeObject() {
    method getDefaultCLIString (line 161) | @Override
    method classToCLIString (line 173) | public static String classToCLIString(Class<?> aClass, Class<?> requir...
    method getValueAsCLIString (line 183) | @Override
    method setValueViaCLIString (line 186) | @Override
    method stripPackagePrefix (line 196) | public static String stripPackagePrefix(String className, Class<?> exp...

FILE: src/main/java/com/github/javacliparser/AbstractOption.java
  class AbstractOption (line 26) | public abstract class AbstractOption implements Option {
    method nameIsLegal (line 47) | public static boolean nameIsLegal(String optionName) {
    method AbstractOption (line 64) | public AbstractOption(String name, char cliChar, String purpose) {
    method getName (line 73) | @Override
    method getCLIChar (line 78) | @Override
    method getPurpose (line 83) | @Override
    method resetToDefault (line 88) | @Override
    method getStateString (line 93) | @Override
    method copy (line 99) | @Override

FILE: src/main/java/com/github/javacliparser/ClassOption.java
  class ClassOption (line 28) | public class ClassOption extends AbstractClassOption {
    method ClassOption (line 32) | public ClassOption(String name, char cliChar, String purpose,
    method ClassOption (line 37) | public ClassOption(String name, char cliChar, String purpose,
    method getValueAsCLIString (line 42) | @Override
    method setValueViaCLIString (line 50) | @Override
    method objectToCLIString (line 65) | public static String objectToCLIString(Object obj, Class<?> requiredTy...
    method createObject (line 88) | public static <T> T createObject(String cliString,
    method createObject (line 93) | public static <T> T createObject(String[] args,
    method cliStringToObject (line 103) | public static <T> T cliStringToObject(String cliString,

FILE: src/main/java/com/github/javacliparser/Configurable.java
  type Configurable (line 28) | public interface Configurable extends Serializable {

FILE: src/main/java/com/github/javacliparser/FileOption.java
  class FileOption (line 28) | public class FileOption extends StringOption {
    method FileOption (line 36) | public FileOption(String name, char cliChar, String purpose,
    method getDefaultFileExtension (line 43) | public String getDefaultFileExtension() {
    method isOutputFile (line 47) | public boolean isOutputFile() {
    method getFile (line 51) | public File getFile() {

FILE: src/main/java/com/github/javacliparser/FlagOption.java
  class FlagOption (line 26) | public class FlagOption extends AbstractOption {
    method FlagOption (line 32) | public FlagOption(String name, char cliChar, String purpose) {
    method setValue (line 36) | public void setValue(boolean v) {
    method set (line 40) | public void set() {
    method unset (line 44) | public void unset() {
    method isSet (line 48) | public boolean isSet() {
    method getDefaultCLIString (line 52) | @Override
    method getValueAsCLIString (line 57) | @Override
    method setValueViaCLIString (line 62) | @Override
    method getStateString (line 67) | @Override

FILE: src/main/java/com/github/javacliparser/FloatOption.java
  class FloatOption (line 27) | public class FloatOption extends AbstractOption {
    method FloatOption (line 39) | public FloatOption(String name, char cliChar, String purpose,
    method FloatOption (line 45) | public FloatOption(String name, char cliChar, String purpose,
    method setValue (line 54) | public void setValue(double v) {
    method getValue (line 68) | public double getValue() {
    method getMinValue (line 72) | public double getMinValue() {
    method getMaxValue (line 76) | public double getMaxValue() {
    method getDefaultCLIString (line 80) | @Override
    method getValueAsCLIString (line 85) | @Override
    method setValueViaCLIString (line 90) | @Override
    method cliStringToDouble (line 95) | public static double cliStringToDouble(String s) {
    method doubleToCLIString (line 99) | public static String doubleToCLIString(double d) {

FILE: src/main/java/com/github/javacliparser/IntOption.java
  class IntOption (line 27) | public class IntOption extends AbstractOption {
    method IntOption (line 39) | public IntOption(String name, char cliChar, String purpose, int defaul...
    method IntOption (line 44) | public IntOption(String name, char cliChar, String purpose, int defaul...
    method setValue (line 53) | public void setValue(int v) {
    method getValue (line 67) | public int getValue() {
    method getMinValue (line 71) | public int getMinValue() {
    method getMaxValue (line 75) | public int getMaxValue() {
    method getDefaultCLIString (line 79) | @Override
    method getValueAsCLIString (line 84) | @Override
    method setValueViaCLIString (line 89) | @Override
    method cliStringToInt (line 94) | public static int cliStringToInt(String s) {
    method intToCLIString (line 98) | public static String intToCLIString(int i) {

FILE: src/main/java/com/github/javacliparser/JavaCLIParser.java
  class JavaCLIParser (line 33) | public class JavaCLIParser implements Serializable {
    method JavaCLIParser (line 37) | public JavaCLIParser(Object c, String cliString) {
    method getPurposeString (line 50) | public String getPurposeString() {
    method getOptions (line 54) | public Options getOptions() {
    method discoverOptionsViaReflection (line 70) | public Option[] discoverOptionsViaReflection() {
    method prepareClassOptions (line 100) | public void prepareClassOptions() {
    method getPreparedClassOption (line 125) | public Object getPreparedClassOption(ClassOption opt) {

FILE: src/main/java/com/github/javacliparser/ListOption.java
  class ListOption (line 26) | public class ListOption extends AbstractOption {
    method ListOption (line 38) | public ListOption(String name, char cliChar, String purpose,
    method setList (line 47) | public void setList(Option[] optList) {
    method getList (line 56) | public Option[] getList() {
    method getDefaultCLIString (line 60) | @Override
    method getValueAsCLIString (line 65) | @Override
    method setValueViaCLIString (line 70) | @Override
    method cliStringToOptionArray (line 76) | public static Option[] cliStringToOptionArray(String s, char separator,
    method optionArrayToCLIString (line 90) | public static String optionArrayToCLIString(Option[] os, char separato...

FILE: src/main/java/com/github/javacliparser/MultiChoiceOption.java
  class MultiChoiceOption (line 27) | public class MultiChoiceOption extends AbstractOption {
    method MultiChoiceOption (line 39) | public MultiChoiceOption(String name, char cliChar, String purpose,
    method getDefaultCLIString (line 52) | @Override
    method getValueAsCLIString (line 57) | @Override
    method setValueViaCLIString (line 62) | @Override
    method setChosenLabel (line 71) | public void setChosenLabel(String label) {
    method setChosenIndex (line 82) | public void setChosenIndex(int index) {
    method getOptionLabels (line 89) | public String[] getOptionLabels() {
    method getChosenLabel (line 93) | public String getChosenLabel() {
    method getChosenIndex (line 97) | public int getChosenIndex() {

FILE: src/main/java/com/github/javacliparser/Option.java
  type Option (line 28) | public interface Option extends Serializable {
    method getName (line 35) | public String getName();
    method getCLIChar (line 42) | public char getCLIChar();
    method getPurpose (line 49) | public String getPurpose();
    method getDefaultCLIString (line 56) | public String getDefaultCLIString();
    method setValueViaCLIString (line 63) | public void setValueViaCLIString(String s);
    method getValueAsCLIString (line 70) | public String getValueAsCLIString();
    method resetToDefault (line 76) | public void resetToDefault();
    method getStateString (line 83) | public String getStateString();
    method copy (line 90) | public Option copy();

FILE: src/main/java/com/github/javacliparser/Options.java
  class Options (line 30) | public class Options implements Serializable {//extends AbstractMOAObject {
    method addOption (line 36) | public void addOption(Option opt) {
    method numOptions (line 49) | public int numOptions() {
    method getOption (line 53) | public Option getOption(String optName) {
    method getOption (line 62) | public Option getOption(char cliChar) {
    method getOptionArray (line 71) | public Option[] getOptionArray() {
    method removeOption (line 75) | public void removeOption(String optName) {
    method removeOption (line 79) | public void removeOption(Option opt) {
    method removeAllOptions (line 83) | public void removeAllOptions() {
    method resetToDefaults (line 87) | public void resetToDefaults() {
    method setViaCLIString (line 93) | public void setViaCLIString(String cliString) {
    method getAsCLIString (line 157) | public String getAsCLIString() {
    method getHelpString (line 178) | public String getHelpString() {
    method getHelp (line 184) | public void getHelp(StringBuilder sb, int indent) {
    method splitParameterFromRemainingOptions (line 217) | protected static String[] splitParameterFromRemainingOptions(
    method getDescription (line 264) | public void getDescription(StringBuilder sb, int indent) {

FILE: src/main/java/com/github/javacliparser/SerializeUtils.java
  class SerializeUtils (line 41) | public class SerializeUtils {
    class ByteCountingOutputStream (line 43) | public static class ByteCountingOutputStream extends OutputStream {
      method getNumBytesWritten (line 47) | public int getNumBytesWritten() {
      method write (line 51) | @Override
      method write (line 56) | @Override
      method write (line 61) | @Override
    method writeToFile (line 67) | public static void writeToFile(File file, Serializable obj)
    method readFromFile (line 76) | public static Object readFromFile(File file) throws IOException,
    method copyObject (line 85) | public static Object copyObject(Serializable obj) throws Exception {
    method measureObjectByteSize (line 100) | public static int measureObjectByteSize(Serializable obj) throws Excep...

FILE: src/main/java/com/github/javacliparser/StringOption.java
  class StringOption (line 26) | public class StringOption extends AbstractOption {
    method StringOption (line 34) | public StringOption(String name, char cliChar, String purpose,
    method setValue (line 41) | public void setValue(String v) {
    method getValue (line 45) | public String getValue() {
    method getDefaultCLIString (line 49) | @Override
    method getValueAsCLIString (line 54) | @Override
    method setValueViaCLIString (line 59) | @Override

FILE: src/main/java/com/github/javacliparser/StringUtils.java
  class StringUtils (line 28) | public class StringUtils {
    method doubleToString (line 32) | public static String doubleToString(double value, int fractionDigits) {
    method doubleToString (line 36) | public static String doubleToString(double value, int minFractionDigits,
    method appendNewline (line 44) | public static void appendNewline(StringBuilder out) {
    method appendIndent (line 48) | public static void appendIndent(StringBuilder out, int indent) {
    method appendIndented (line 54) | public static void appendIndented(StringBuilder out, int indent, Strin...
    method appendNewlineIndented (line 59) | public static void appendNewlineIndented(StringBuilder out, int indent,

FILE: src/main/java/com/github/javacliparser/examples/DoTask.java
  class DoTask (line 26) | public class DoTask implements Configurable {
    method init (line 34) | public void init() {
    method main (line 39) | public static void main(String[] args) throws Exception {

FILE: src/main/java/com/github/javacliparser/examples/Task1.java
  class Task1 (line 25) | public class Task1 implements Configurable {
    method init (line 33) | public void init() {

FILE: src/main/java/com/github/javacliparser/examples/Task2.java
  class Task2 (line 23) | public class Task2 implements Configurable {
    method init (line 28) | public void init() {

FILE: website/assets/js/plugins/respond.js
  function callMedia (line 333) | function callMedia(){

FILE: website/assets/js/plugins/responsive-nav.js
  function rn (line 394) | function rn (el, options) {

FILE: website/assets/js/plugins/search.js
  function initSearch (line 49) | function initSearch() {
  function execSearch (line 72) | function execSearch(q) {
  function toggleLoadingClass (line 87) | function toggleLoadingClass() {
  function getSearchResults (line 98) | function getSearchResults(callbackFunction) {
  function processData (line 107) | function processData() {
  function showSearchResults (line 139) | function showSearchResults(results) {
  function populateResultContent (line 151) | function populateResultContent(html, item) {
  function populateResultsString (line 165) | function populateResultsString(count) {
  function getParameterByName (line 184) | function getParameterByName(name) {
  function injectContent (line 197) | function injectContent(originalContent, injection, placeholder) {
Condensed preview — 311 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (4,052K chars).
[
  {
    "path": ".gitignore",
    "chars": 40,
    "preview": "# sbt specific\ntarget/\nproject/project/\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 2747,
    "preview": "## How do I submit a contribution?\n\n1. Create a GitHub issue describing the bug or enhancement at https://github.com/hua"
  },
  {
    "path": "ISSUE_TEMPLATE.md",
    "chars": 1384,
    "preview": "# Warning\n1. Before submitting the issue, read the [CONTRIBUTING guidelines](https://github.com/huawei-noah/streamDM/blo"
  },
  {
    "path": "LICENSE",
    "chars": 11357,
    "preview": "                                 Apache License\n                           Version 2.0, January 2004\n                   "
  },
  {
    "path": "PULL_REQUEST_TEMPLATE.md",
    "chars": 795,
    "preview": "## Warning\n**Make sure you have read the [CONTRIBUTION guidelines](https://github.com/huawei-noah/streamDM/blob/master/C"
  },
  {
    "path": "README.md",
    "chars": 3439,
    "preview": "# streamDM for Spark Streaming\r\n\r\nstreamDM is a new open source software for mining big data streams using [Spark Stream"
  },
  {
    "path": "data/electNormNew.arff",
    "chars": 2994413,
    "preview": "\n\n@attribute date numeric\n@attribute day {1,2,3,4,5,6,7}\n@attribute period numeric\n@attribute nswprice numeric\n@attribut"
  },
  {
    "path": "data/hyperplanesampledata",
    "chars": 19472,
    "preview": "1.0 2.2184009561542757,2.3595683630654993,1.8448494994495541,4.696733657126028,4.646215956856672,-1.668424873976766,-1.7"
  },
  {
    "path": "data/hyperplanesampledata.arff.head",
    "chars": 402,
    "preview": "@relation sample-data\n@attribute NumericFeature0 numeric\n@attribute NumericFeature1 numeric\n@attribute NumericFeature2 n"
  },
  {
    "path": "data/iris.arff",
    "chars": 7486,
    "preview": "% 1. Title: Iris Plants Database\n% \n% 2. Sources:\n%      (a) Creator: R.A. Fisher\n%      (b) Donor: Michael Marshall (MA"
  },
  {
    "path": "data/randomtreesampledata",
    "chars": 12020,
    "preview": "0.0 4.0,2.0,2.0,2.0,1.0,0.8060225109830121,0.9043923203457621,0.8116905753399468,0.35912458818647686,0.2256564761176031\n"
  },
  {
    "path": "data/randomtreesampledata.arff.head",
    "chars": 422,
    "preview": "@relation sample-data\n@attribute NominalFeature0 {0,1,2,3,4}\n@attribute NominalFeature1 {0,1,2,3,4}\n@attribute NominalFe"
  },
  {
    "path": "data/stream2000_7anom.arff",
    "chars": 37197,
    "preview": "@relation synthetic_anomaly_detection_stream_data_7anomalies\n\n@attribute x numeric\n@attribute y numeric\n@attribute is_an"
  },
  {
    "path": "data/stream2500_51anom.arff",
    "chars": 29630,
    "preview": "@relation synthetic_anomaly_detection_stream_data_51anomalies\n\n@attribute x numeric\n@attribute y numeric\n@attribute is_a"
  },
  {
    "path": "learn.sbt",
    "chars": 383,
    "preview": "name := \"streamDM (Spark Streaming)\"\n\nversion := \"0.2\"\n\nscalaVersion := \"2.11.8\"\n\nlibraryDependencies += \"org.apache.spa"
  },
  {
    "path": "project/plugins.sbt",
    "chars": 249,
    "preview": "addSbtPlugin(\"com.typesafe.sbteclipse\" % \"sbteclipse-plugin\" % \"5.2.4\")\naddSbtPlugin(\"com.github.mpeltonen\" % \"sbt-idea\""
  },
  {
    "path": "scripts/generateData.sh",
    "chars": 176,
    "preview": "java -cp ../target/scala-2.10/streamdm-spark-streaming-_2.10-0.*.jar:$SPARK_HOME/lib/spark-assembly-1.*.0-hadoop2.*.0.ja"
  },
  {
    "path": "scripts/instance_server/generate_dataset.py",
    "chars": 1081,
    "preview": "#!/usr/bin/env python\n\nimport socket\nimport sys\nimport time\nimport random\nfrom thread import *\n\n'''\ncreates a file gener"
  },
  {
    "path": "scripts/instance_server/server.py",
    "chars": 2472,
    "preview": "#!/usr/bin/env python\n\nimport socket\nimport sys\nimport time\nimport random\nfrom thread import *\n\n'''\ncreates a text socke"
  },
  {
    "path": "scripts/spark.sh",
    "chars": 194,
    "preview": "#!/usr/bin/env bash\n$SPARK_HOME/bin/spark-submit \\\n  --class \"org.apache.spark.streamdm.streamDMJob\" \\\n  --master local["
  },
  {
    "path": "src/main/java/com/github/javacliparser/AbstractClassOption.java",
    "chars": 6743,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/AbstractOption.java",
    "chars": 3298,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/ClassOption.java",
    "chars": 6681,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/Configurable.java",
    "chars": 860,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/FileOption.java",
    "chars": 1735,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/FlagOption.java",
    "chars": 1779,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/FloatOption.java",
    "chars": 2904,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/IntOption.java",
    "chars": 2694,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/JavaCLIParser.java",
    "chars": 4203,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/ListOption.java",
    "chars": 3105,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/MultiChoiceOption.java",
    "chars": 2913,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/Option.java",
    "chars": 2279,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/Options.java",
    "chars": 10088,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/SerializeUtils.java",
    "chars": 3567,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/StringOption.java",
    "chars": 1573,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/StringUtils.java",
    "chars": 2007,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/examples/DoTask.java",
    "chars": 1535,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/examples/Task1.java",
    "chars": 1324,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/java/com/github/javacliparser/examples/Task2.java",
    "chars": 1063,
    "preview": "/*\n * Copyright 2007 University of Waikato.\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * yo"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/Classifier.scala",
    "chars": 1306,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/MultiClassLearner.scala",
    "chars": 3988,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/PerceptronLearner.scala",
    "chars": 1106,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/SGDLearner.scala",
    "chars": 4601,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/bayes/MultinomialNaiveBayes.scala",
    "chars": 9058,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/meta/Bagging.scala",
    "chars": 4342,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/meta/RandomForest.scala",
    "chars": 7627,
    "preview": "/*\n * Copyright (C) 2018 Télécom ParisTech LTCI lab.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\""
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/HingeLoss.scala",
    "chars": 1740,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/L1Regularizer.scala",
    "chars": 1059,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/L2Regularizer.scala",
    "chars": 1048,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/LinearModel.scala",
    "chars": 2730,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/LogisticLoss.scala",
    "chars": 1768,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/Loss.scala",
    "chars": 1859,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/PerceptronLoss.scala",
    "chars": 1210,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/Regularizer.scala",
    "chars": 1014,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/SquaredLoss.scala",
    "chars": 1613,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/model/ZeroRegularizer.scala",
    "chars": 1015,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/ConditionalTest.scala",
    "chars": 7162,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/FeatureClassObserver.scala",
    "chars": 15942,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/FeatureSplit.scala",
    "chars": 1627,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/GaussianEstimator.scala",
    "chars": 5736,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/HoeffdingTree.scala",
    "chars": 19890,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/SplitCriterion.scala",
    "chars": 7657,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/Utils.scala",
    "chars": 2435,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/nodes/ActiveLearningNode.scala",
    "chars": 5271,
    "preview": "package org.apache.spark.streamdm.classifiers.trees.nodes\n\nimport org.apache.spark.streamdm.classifiers.trees._\nimport o"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/nodes/FoundNode.scala",
    "chars": 819,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/nodes/InactiveLearningNode.scala",
    "chars": 1802,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/nodes/LearningNode.scala",
    "chars": 1655,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/nodes/LearningNodeNB.scala",
    "chars": 2126,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/nodes/LearningNodeNBAdaptive.scala",
    "chars": 4520,
    "preview": "package org.apache.spark.streamdm.classifiers.trees.nodes\n\nimport org.apache.spark.streamdm.classifiers.bayes.NaiveBayes"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/nodes/Node.scala",
    "chars": 3149,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/classifiers/trees/nodes/SplitNode.scala",
    "chars": 3760,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/clusterers/Clusterer.scala",
    "chars": 1454,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/clusterers/Clustream.scala",
    "chars": 6092,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/clusterers/StreamKM.scala",
    "chars": 4210,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/clusterers/clusters/BucketManager.scala",
    "chars": 5405,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/clusterers/clusters/Clusters.scala",
    "chars": 1206,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/clusterers/clusters/MicroCluster.scala",
    "chars": 3809,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/clusterers/clusters/MicroClusters.scala",
    "chars": 6235,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/clusterers/clusters/TreeCoreset.scala",
    "chars": 7440,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/clusterers/utils/KMeans.scala",
    "chars": 4750,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/ClassificationModel.scala",
    "chars": 1377,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/DenseInstance.scala",
    "chars": 6634,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/Example.scala",
    "chars": 4400,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/ExampleParser.scala",
    "chars": 4695,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/Instance.scala",
    "chars": 2911,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/Learner.scala",
    "chars": 1740,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/Model.scala",
    "chars": 1065,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/NullInstance.scala",
    "chars": 3063,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/SparseInstance.scala",
    "chars": 8030,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/TextInstance.scala",
    "chars": 5953,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/specification/ExampleSpecification.scala",
    "chars": 3067,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/specification/FeatureSpecification.scala",
    "chars": 2898,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/specification/InstanceSpecification.scala",
    "chars": 3227,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/core/specification/SpecificationParser.scala",
    "chars": 4683,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/evaluation/BasicClassificationEvaluator.scala",
    "chars": 10955,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/evaluation/ClusteringEvaluator.scala",
    "chars": 3512,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/evaluation/Evaluator.scala",
    "chars": 1712,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/outlier/Outlier.scala",
    "chars": 1218,
    "preview": "/*\n * Copyright (C) 2019 Télécom ParisTech LTCI lab.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\""
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/outlier/OutlierModel.scala",
    "chars": 1170,
    "preview": "/*\n * Copyright (C) 2019 Télécom ParisTech LTCI lab.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\""
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/outlier/SWNearestNeighbors.scala",
    "chars": 4122,
    "preview": "/*\n * Copyright (C) 2019 Télécom ParisTech LTCI lab.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\""
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streamDMJob.scala",
    "chars": 1776,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/FileReader.scala",
    "chars": 6119,
    "preview": "/*\r\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\r\n *\r\n * Licensed under the Apache License, Version 2.0 ("
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/KafkaReader.scala",
    "chars": 2929,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/PrintStreamWriter.scala",
    "chars": 1317,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/SampleDataWriter.scala",
    "chars": 4432,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/SocketTextStreamReader.scala",
    "chars": 2736,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/StreamReader.scala",
    "chars": 1451,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/StreamWriter.scala",
    "chars": 1220,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/TextStreamReader.scala",
    "chars": 2366,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/generators/Cluster.scala",
    "chars": 2361,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/generators/Generator.scala",
    "chars": 2202,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/generators/HyperplaneGenerator.scala",
    "chars": 3328,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/generators/RandomRBFEventsGenerator.scala",
    "chars": 25927,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/generators/RandomRBFGenerator.scala",
    "chars": 5925,
    "preview": "/*\r\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\r\n *\r\n * Licensed under the Apache License, Version 2.0 ("
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/generators/RandomTreeGenerator.scala",
    "chars": 8946,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/streams/generators/SphereCluster.scala",
    "chars": 8797,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/tasks/ClusteringTrainEvaluate.scala",
    "chars": 2747,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/tasks/EvaluateOutlierDetection.scala",
    "chars": 4192,
    "preview": "/*\n * Copyright (C) 2019 Télécom ParisTech LTCI lab.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\""
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/tasks/EvaluatePrequential.scala",
    "chars": 3001,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/tasks/Task.scala",
    "chars": 1073,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/utils/Statistics.scala",
    "chars": 27914,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/main/scala/org/apache/spark/streamdm/utils/Utils.scala",
    "chars": 4739,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/bayes/MultinomialNaiveBayesSuite.scala",
    "chars": 3430,
    "preview": "package org.apache.spark.streamdm.classifiers.bayes\n\n//import org.apache.spark.streamdm.classifiers.bayes.MultinomialNai"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/model/HingeLossSuite.scala",
    "chars": 1323,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/model/L1RegularizerSuite.scala",
    "chars": 1018,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/model/L2RegularizerSuite.scala",
    "chars": 1020,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/model/LogisticLossSuite.scala",
    "chars": 1372,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/model/PerceptronLossSuite.scala",
    "chars": 1353,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/model/SquaredLossSuite.scala",
    "chars": 1337,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/model/ZeroRegularizerSuite.scala",
    "chars": 1025,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/trees/ConditionalTestSuite.scala",
    "chars": 2938,
    "preview": "package org.apache.spark.streamdm.classifiers.trees\n\nimport org.scalatest.FunSuite\nimport org.apache.spark.streamdm.core"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/trees/FeatureClassObserverSuite.scala",
    "chars": 296,
    "preview": "package org.apache.spark.streamdm.classifiers.trees\n\nimport org.scalatest.FunSuite\nimport org.apache.spark.streamdm.core"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/trees/FeatureSplitSuite.scala",
    "chars": 858,
    "preview": "package org.apache.spark.streamdm.classifiers.trees\n\nimport org.scalatest.FunSuite\n\nclass FeatureSplitSuite extends FunS"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/trees/GaussianEstimatorSuite.scala",
    "chars": 1307,
    "preview": "package org.apache.spark.streamdm.classifiers.trees\n\nimport org.scalatest.FunSuite\nimport scala.math.{ abs }\nclass Gauss"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/classifiers/trees/SplitCriterionSuite.scala",
    "chars": 2317,
    "preview": "package org.apache.spark.streamdm.classifiers.trees\n\nimport org.scalatest.FunSuite\nimport org.apache.spark.streamdm.clas"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/core/DenseInstanceSuite.scala",
    "chars": 3660,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/core/ExampleSuite.scala",
    "chars": 3587,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/core/SparseInstanceSuite.scala",
    "chars": 4131,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "src/test/scala/org/apache/spark/streamdm/utils/UtilsSuite.scala",
    "chars": 1872,
    "preview": "/*\n * Copyright (C) 2015 Holmes Team at HUAWEI Noah's Ark Lab.\n *\n * Licensed under the Apache License, Version 2.0 (the"
  },
  {
    "path": "website/.editorconfig",
    "chars": 206,
    "preview": "# editorconfig.org\nroot = true\n\n[*]\nindent_style = space\nindent_size = 2\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_"
  },
  {
    "path": "website/.gitignore",
    "chars": 98,
    "preview": "_site\n.DS_Store\n*.sublime-project\n*.sublime-workspace\ncodekit-config.json\nnode_modules\n.sass-cache"
  },
  {
    "path": "website/.jshintrc",
    "chars": 325,
    "preview": "{\n  \"bitwise\": true,\n  \"browser\": true,\n  \"curly\": true,\n  \"eqeqeq\": true,\n  \"eqnull\": true,\n  \"es5\": false,\n  \"esnext\":"
  },
  {
    "path": "website/.travis.yml",
    "chars": 204,
    "preview": "language: ruby\nrvm:\n  - 2.1\n\nbefore_install:\n  - export NOKOGIRI_USE_SYSTEM_LIBRARIES=true\n\nscript:\n  - bundle exec jeky"
  },
  {
    "path": "website/404.md",
    "chars": 460,
    "preview": "---\nlayout: page\ntitle: \"Page Not Found\"\ndescription: \"Page not found.\"\nsitemap: false\nsearch_omit: true\npermalink: /404"
  },
  {
    "path": "website/Gemfile",
    "chars": 110,
    "preview": "source 'https://rubygems.org'\n\ngem 'jekyll'\ngem 'jekyll-sitemap'\ngem 'octopress', '~> 3.0.0.rc.12'\ngem 'rouge'"
  },
  {
    "path": "website/Gruntfile.js",
    "chars": 1595,
    "preview": "'use strict';\nmodule.exports = function(grunt) {\n\n  grunt.initConfig({\n    jshint: {\n      options: {\n        jshintrc: "
  },
  {
    "path": "website/LICENSE",
    "chars": 1078,
    "preview": "The MIT License (MIT)\n\nCopyright (c) 2014 Michael Rose\n\nPermission is hereby granted, free of charge, to any person obta"
  },
  {
    "path": "website/README.md",
    "chars": 993,
    "preview": "# streamDM Website and Documentation\nThis is the source for the streamDM website and documentation. It is statically gen"
  },
  {
    "path": "website/_config.yml",
    "chars": 753,
    "preview": "# Site wide configuration\n\ntitle: streamDM\nlocale: en_US\ndescription: stream Data Mining for Spark Streaming\nlogo: site-"
  },
  {
    "path": "website/_data/navigation.yml",
    "chars": 331,
    "preview": "# Site navigation links\n\n- title: About\n  url: /\n\n- title: Github\n  url: https://github.com/huawei-noah/streamDM\n\n- titl"
  },
  {
    "path": "website/_includes/ad-footer.html",
    "chars": 472,
    "preview": "<div class=\"google-ads\" style=\"margin:10px 0;\">\n  <script async src=\"http://pagead2.googlesyndication.com/pagead/js/adsb"
  },
  {
    "path": "website/_includes/ad-sidebar.html",
    "chars": 495,
    "preview": "<div class=\"google-ads\" style=\"margin-top:40px; text-align:center;\">\n  <script async src=\"http://pagead2.googlesyndicati"
  },
  {
    "path": "website/_includes/browser-upgrade.html",
    "chars": 203,
    "preview": "<!--[if lt IE 9]><div class=\"upgrade\"><strong><a href=\"http://whatbrowser.org/\">Your browser is quite old!</strong> Why "
  },
  {
    "path": "website/_includes/disqus-comments.html",
    "chars": 1242,
    "preview": "{% if site.owner.disqus-shortname %}\n<script type=\"text/javascript\">\n    /* * * CONFIGURATION VARIABLES: EDIT BEFORE PAS"
  },
  {
    "path": "website/_includes/feed-footer.html",
    "chars": 274,
    "preview": "&lt;p&gt;&lt;a href=&quot;{{ site.url }}{{ post.url }}&quot;&gt;{{ post.title | xml_escape }}&lt;/a&gt; was originally p"
  },
  {
    "path": "website/_includes/footer.html",
    "chars": 2515,
    "preview": "{% if site.owner.google.ad-client and site.owner.google.ad-slot %}{% include ad-footer.html %}{% endif %}\n\n<span>&copy; "
  },
  {
    "path": "website/_includes/footer.html~",
    "chars": 2673,
    "preview": "{% if site.owner.google.ad-client and site.owner.google.ad-slot %}{% include ad-footer.html %}{% endif %}\n\n<span>&copy; "
  },
  {
    "path": "website/_includes/head.html",
    "chars": 2833,
    "preview": "<meta charset=\"utf-8\">\n<title>{% if page.title %}{{ page.title }} &#8211; {% endif %}{{ site.title }}</title>\n{% if page"
  },
  {
    "path": "website/_includes/navigation.html",
    "chars": 1534,
    "preview": "<div class=\"navigation-wrapper\">\n\t<nav role=\"navigation\" id=\"site-nav\" class=\"animated drop\">\n\t    <ul>\n      {% for lin"
  },
  {
    "path": "website/_includes/open-graph.html",
    "chars": 1333,
    "preview": "<!-- Twitter Cards -->\n<meta name=\"twitter:title\" content=\"{% if page.title %}{{ page.title }}{% else %}{{ site.title }}"
  },
  {
    "path": "website/_includes/scripts.html",
    "chars": 1050,
    "preview": "<script type=\"text/javascript\">\n  var BASE_URL = '{{ site.url }}';\n</script>\n\n<script src=\"//ajax.googleapis.com/ajax/li"
  },
  {
    "path": "website/_includes/social-share.html",
    "chars": 854,
    "preview": "<span class=\"social-share-twitter\">\n  <a href=\"https://twitter.com/intent/tweet?hashtags={{ page.tags | join: ',' | remo"
  },
  {
    "path": "website/_layouts/page.html",
    "chars": 1523,
    "preview": "<!doctype html>\n<!--[if lt IE 7]><html class=\"no-js lt-ie9 lt-ie8 lt-ie7\" lang=\"en\"> <![endif]-->\n<!--[if (IE 7)&!(IEMob"
  },
  {
    "path": "website/_layouts/post.html",
    "chars": 3811,
    "preview": "<!doctype html>\n<!--[if lt IE 7]><html class=\"no-js lt-ie9 lt-ie8 lt-ie7\" lang=\"en\"> <![endif]-->\n<!--[if (IE 7)&!(IEMob"
  },
  {
    "path": "website/_octopress.yml",
    "chars": 156,
    "preview": "# Default extensions\npost_ext: md\npage_ext: md\n\n# Found in _templates/\npost_layout: post\npage_layout: page\n\n# Format tit"
  },
  {
    "path": "website/_sass/_animations.scss",
    "chars": 6415,
    "preview": "/* ==========================================================================\n   Animations\n   ========================="
  },
  {
    "path": "website/_sass/_archives.scss",
    "chars": 1553,
    "preview": "/* ==========================================================================\n   Archive pages\n   ======================"
  },
  {
    "path": "website/_sass/_base.scss",
    "chars": 3763,
    "preview": "/* ==========================================================================\n   Base elements\n   ======================"
  },
  {
    "path": "website/_sass/_buttons.scss",
    "chars": 853,
    "preview": "/* ==========================================================================\n   Buttons\n   ============================"
  },
  {
    "path": "website/_sass/_footer.scss",
    "chars": 632,
    "preview": "/* ==========================================================================\n   Site footer\n   ========================"
  },
  {
    "path": "website/_sass/_footnotes.scss",
    "chars": 270,
    "preview": "/* ==========================================================================\n   Footnotes (class generated by Kramdown)"
  },
  {
    "path": "website/_sass/_forms.scss",
    "chars": 4175,
    "preview": "form { \n\tmargin: 0 0 5px 0;\n\tfieldset { \n\t\tmargin-bottom: 5px; \n\t\tpadding: 0; \n\t\tborder-width: 0; \n\t}\n\tlegend { \n\t\tdispl"
  },
  {
    "path": "website/_sass/_grid-settings.scss",
    "chars": 228,
    "preview": "@import \"vendor/neat/neat-helpers\";\n\n// Change the grid settings\n$visual_grid: false;\n$max-width: em(960);\n\n// Define yo"
  },
  {
    "path": "website/_sass/_helpers.scss",
    "chars": 2024,
    "preview": "/* ==========================================================================\n   Helpers and Utility Classes\n   ========"
  },
  {
    "path": "website/_sass/_masthead.scss",
    "chars": 1767,
    "preview": "/* ==========================================================================\n   Masthead\n   ==========================="
  },
  {
    "path": "website/_sass/_mixins.scss",
    "chars": 5083,
    "preview": "// UTILITY MIXINS\n// --------------------------------------------------\n\n// Webkit-style focus\n// --------------------\n@"
  },
  {
    "path": "website/_sass/_navigation.scss",
    "chars": 1973,
    "preview": "/* ==========================================================================\n   Top navigation\n   ====================="
  },
  {
    "path": "website/_sass/_notices.scss",
    "chars": 643,
    "preview": "/* ==========================================================================\n   Notices\n   ============================"
  },
  {
    "path": "website/_sass/_page.scss",
    "chars": 5599,
    "preview": "/* ==========================================================================\n   Page/post layout and styling\n   ======="
  },
  {
    "path": "website/_sass/_reset.scss",
    "chars": 3239,
    "preview": "// STYLE RESETS\n// Adapted from http://github.com/necolas/normalize.css\n// ---------------------------------------------"
  },
  {
    "path": "website/_sass/_search.scss",
    "chars": 746,
    "preview": "/* ==========================================================================\n   Search\n   ============================="
  },
  {
    "path": "website/_sass/_syntax.scss",
    "chars": 7965,
    "preview": "/* ==========================================================================\n   Syntax highlighting and formatting\n   ="
  },
  {
    "path": "website/_sass/_variables.scss",
    "chars": 1536,
    "preview": "// TYPOGRAPHY ================================================\n$base-font: 'source-sans-pro', sans-serif;\n$heading-font:"
  },
  {
    "path": "website/_sass/_wells.scss",
    "chars": 302,
    "preview": "/* ==========================================================================\n   Wells\n   =============================="
  },
  {
    "path": "website/_sass/vendor/bourbon/_bourbon-deprecated-upcoming.scss",
    "chars": 400,
    "preview": "//************************************************************************//\n// These mixins/functions are deprecated\n//"
  },
  {
    "path": "website/_sass/vendor/bourbon/_bourbon.scss",
    "chars": 2238,
    "preview": "// Settings\n@import \"settings/prefixer\";\n@import \"settings/px-to-em\";\n\n// Custom Helpers\n@import \"helpers/convert-units\""
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_button.scss",
    "chars": 13144,
    "preview": "@mixin button ($style: simple, $base-color: #4294f0, $text-size: inherit, $padding: 7px 18px) {\n\n  @if type-of($style) ="
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_clearfix.scss",
    "chars": 515,
    "preview": "// Modern micro clearfix provides an easy way to contain floats without adding additional markup.\n//\n// Example usage:\n/"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_directional-values.scss",
    "chars": 2863,
    "preview": "// directional-property mixins are shorthands\n// for writing properties like the following\n//\n// @include margin(null 0 "
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_ellipsis.scss",
    "chars": 150,
    "preview": "@mixin ellipsis($width: 100%) {\n  display: inline-block;\n  max-width: $width;\n  overflow: hidden;\n  text-overflow: ellip"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_font-family.scss",
    "chars": 307,
    "preview": "$georgia: Georgia, Cambria, \"Times New Roman\", Times, serif;\n$helvetica: \"Helvetica Neue\", Helvetica, Roboto, Arial, san"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_hide-text.scss",
    "chars": 128,
    "preview": "@mixin hide-text {\n  overflow: hidden;\n\n  &:before {\n    content: \"\";\n    display: block;\n    width: 0;\n    height: 100%"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_html5-input-types.scss",
    "chars": 3101,
    "preview": "//************************************************************************//\n// Generate a variable ($all-text-inputs) w"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_position.scss",
    "chars": 715,
    "preview": "@mixin position ($position: relative, $coordinates: null null null null) {\n\n  @if type-of($position) == list {\n    $coor"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_prefixer.scss",
    "chars": 1205,
    "preview": "//************************************************************************//\n// Example: @include prefixer(border-radius"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_retina-image.scss",
    "chars": 845,
    "preview": "@mixin retina-image($filename, $background-size, $extension: png, $retina-filename: null, $retina-suffix: _2x, $asset-pi"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_size.scss",
    "chars": 339,
    "preview": "@mixin size($size) {\n  $height: nth($size, 1);\n  $width: $height;\n\n  @if length($size) > 1 {\n    $height: nth($size, 2);"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_timing-functions.scss",
    "chars": 1754,
    "preview": "// CSS cubic-bezier timing functions. Timing functions courtesy of jquery.easie (github.com/jaukia/easie)\n// Timing func"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_triangle.scss",
    "chars": 2564,
    "preview": "@mixin triangle ($size, $color, $direction) {\n  height: 0;\n  width: 0;\n\n  $width: nth($size, 1);\n  $height: nth($size, l"
  },
  {
    "path": "website/_sass/vendor/bourbon/addons/_word-wrap.scss",
    "chars": 151,
    "preview": "@mixin word-wrap($wrap: break-word) {\n  word-wrap: $wrap;\n\n  @if $wrap == break-word {\n    overflow-wrap: break-word;\n  "
  }
]

// ... and 111 more files (download for full content)

About this extraction

This page contains the full source code of the huawei-noah/streamDM GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 311 files (3.8 MB), approximately 1.0M tokens, and a symbol index with 171 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!