diff --git a/applications/solvers/compressible/rhoPimpleFoam/rhoPorousMRFLTSPimpleFoam/setrDeltaT.H b/applications/solvers/compressible/rhoPimpleFoam/rhoPorousMRFLTSPimpleFoam/setrDeltaT.H
index 42fbe7e76b161cb1fe55fad00166dfe89dca0119..e854f03d35f180d979fd032fbaf345ef1baa50db 100644
--- a/applications/solvers/compressible/rhoPimpleFoam/rhoPorousMRFLTSPimpleFoam/setrDeltaT.H
+++ b/applications/solvers/compressible/rhoPimpleFoam/rhoPorousMRFLTSPimpleFoam/setrDeltaT.H
@@ -19,7 +19,7 @@
         pimple.lookupOrDefault<scalar>("maxDeltaT", GREAT)
     );
 
-    volScalarField rDeltaT0 = rDeltaT;
+    volScalarField rDeltaT0("rDeltaT0", rDeltaT);
 
     // Set the reciprocal time-step from the local Courant number
     rDeltaT.dimensionedInternalField() = max
@@ -70,7 +70,9 @@
      && runTime.timeIndex() > runTime.startTimeIndex() + 1
     )
     {
-        rDeltaT = rDeltaT0*max(rDeltaT/rDeltaT0, 1.0 - rDeltaTDampingCoeff);
+        rDeltaT =
+            rDeltaT0
+           *max(rDeltaT/rDeltaT0, scalar(1) - rDeltaTDampingCoeff);
 
         Info<< "Damped flow time scale min/max = "
             << gMin(1/rDeltaT.internalField())
diff --git a/applications/solvers/multiphase/interFoam/LTSInterFoam/setrDeltaT.H b/applications/solvers/multiphase/interFoam/LTSInterFoam/setrDeltaT.H
index 1e8d8da3e7955ce4457b278808bbae831fe79be0..b296187e9eb75a53b185742e61246f53a0f8de84 100644
--- a/applications/solvers/multiphase/interFoam/LTSInterFoam/setrDeltaT.H
+++ b/applications/solvers/multiphase/interFoam/LTSInterFoam/setrDeltaT.H
@@ -49,7 +49,7 @@
         piso.lookupOrDefault<scalar>("maxDeltaT", GREAT)
     );
 
-    volScalarField rDeltaT0 = rDeltaT;
+    volScalarField rDeltaT0("rDeltaT0", rDeltaT);
 
     // Set the reciprocal time-step from the local Courant number
     rDeltaT.dimensionedInternalField() = max
diff --git a/src/OpenFOAM/containers/Lists/PackedList/PackedBoolList.C b/src/OpenFOAM/containers/Lists/PackedList/PackedBoolList.C
index 94d63086587a3d1095010f317f955e6f10695f0a..550e6caf2bdeeb43b2ee71178635df838140a9ac 100644
--- a/src/OpenFOAM/containers/Lists/PackedList/PackedBoolList.C
+++ b/src/OpenFOAM/containers/Lists/PackedList/PackedBoolList.C
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2010-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2010-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
@@ -287,7 +287,7 @@ Foam::Xfer<Foam::labelList> Foam::PackedBoolList::used() const
 // * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * * //
 
 Foam::PackedBoolList&
-Foam::PackedBoolList::operator=(const UList<bool>& lst)
+Foam::PackedBoolList::operator=(const Foam::UList<bool>& lst)
 {
     this->setSize(lst.size());
 
diff --git a/src/OpenFOAM/containers/Lists/PackedList/PackedBoolList.H b/src/OpenFOAM/containers/Lists/PackedList/PackedBoolList.H
index f9948d719a242fab123830fd25aadfb0b123066d..697c7983c15d80d30a8de9946999861dfae533fd 100644
--- a/src/OpenFOAM/containers/Lists/PackedList/PackedBoolList.H
+++ b/src/OpenFOAM/containers/Lists/PackedList/PackedBoolList.H
@@ -115,7 +115,7 @@ public:
         inline PackedBoolList(const Xfer<PackedList<1> >&);
 
         //- Construct from a list of bools
-        explicit inline PackedBoolList(const UList<bool>&);
+        explicit inline PackedBoolList(const Foam::UList<bool>&);
 
         //- Construct from a list of labels
         //  using the labels as indices to indicate which bits are set
diff --git a/src/OpenFOAM/containers/Lists/PackedList/PackedBoolListI.H b/src/OpenFOAM/containers/Lists/PackedList/PackedBoolListI.H
index 219fb79b3755a6f72d9476007546a10e1cca2cf4..c5a4770bb32eac01e07e758c2731fc466012bd85 100644
--- a/src/OpenFOAM/containers/Lists/PackedList/PackedBoolListI.H
+++ b/src/OpenFOAM/containers/Lists/PackedList/PackedBoolListI.H
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2010-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2010-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
@@ -73,7 +73,7 @@ inline Foam::PackedBoolList::PackedBoolList(const Xfer<PackedList<1> >& lst)
 {}
 
 
-inline Foam::PackedBoolList::PackedBoolList(const UList<bool>& lst)
+inline Foam::PackedBoolList::PackedBoolList(const Foam::UList<bool>& lst)
 :
     PackedList<1>()
 {
diff --git a/src/OpenFOAM/db/IOobjects/CompactIOField/CompactIOField.H b/src/OpenFOAM/db/IOobjects/CompactIOField/CompactIOField.H
index f7622cae557d22a280f4351b8aa0275e974c52fc..3bf061522f3e9b8ef2995359275602acd4d840fc 100644
--- a/src/OpenFOAM/db/IOobjects/CompactIOField/CompactIOField.H
+++ b/src/OpenFOAM/db/IOobjects/CompactIOField/CompactIOField.H
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2010-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2010-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
@@ -47,9 +47,6 @@ SourceFiles
 namespace Foam
 {
 
-class Istream;
-class Ostream;
-
 // Forward declaration of friend functions and operators
 template<class T, class BaseType> class CompactIOField;
 
@@ -58,6 +55,7 @@ template<class T, class BaseType> Istream& operator>>
     Istream&,
     CompactIOField<T, BaseType>&
 );
+
 template<class T, class BaseType> Ostream& operator<<
 (
     Ostream&,
@@ -122,23 +120,6 @@ public:
         void operator=(const CompactIOField<T, BaseType>&);
 
         void operator=(const Field<T>&);
-
-
-    // IOstream operators
-
-        //- Read Field from Istream, discarding contents of existing Field.
-        friend Istream& operator>> <T, BaseType>
-        (
-            Istream&,
-            CompactIOField<T, BaseType>&
-        );
-
-        // Write Field to Ostream.
-        friend Ostream& operator<< <T, BaseType>
-        (
-            Ostream&,
-            const CompactIOField<T, BaseType>&
-        );
 };
 
 
diff --git a/src/OpenFOAM/db/IOobjects/IOdictionary/IOdictionary.C b/src/OpenFOAM/db/IOobjects/IOdictionary/IOdictionary.C
index 0954a23a7e638342677e042dab5839fc3f405c5e..2c5087c120cde91de2592035f556dc9dda3d6b1b 100644
--- a/src/OpenFOAM/db/IOobjects/IOdictionary/IOdictionary.C
+++ b/src/OpenFOAM/db/IOobjects/IOdictionary/IOdictionary.C
@@ -124,16 +124,14 @@ Foam::IOdictionary::IOdictionary(const IOobject& io)
     regIOobject(io)
 {
     // Temporary warning
-    if (io.readOpt() == IOobject::MUST_READ)
+    if (debug && io.readOpt() == IOobject::MUST_READ)
     {
         WarningIn("IOdictionary::IOdictionary(const IOobject&)")
-        //FatalErrorIn("IOdictionary::IOdictionary(const IOobject&)")
             << "Dictionary " << name()
             << " constructed with IOobject::MUST_READ"
             " instead of IOobject::MUST_READ_IF_MODIFIED." << nl
             << "Use MUST_READ_IF_MODIFIED if you need automatic rereading."
             << endl;
-            //<< abort(FatalError);
     }
 
     // Everyone check or just master
@@ -182,7 +180,7 @@ Foam::IOdictionary::IOdictionary(const IOobject& io, const dictionary& dict)
     regIOobject(io)
 {
     // Temporary warning
-    if (io.readOpt() == IOobject::MUST_READ)
+    if (debug && io.readOpt() == IOobject::MUST_READ)
     {
         WarningIn
         (
diff --git a/src/OpenFOAM/fields/Fields/DynamicField/DynamicField.H b/src/OpenFOAM/fields/Fields/DynamicField/DynamicField.H
index e1870f4f47aeb6ecbd34030545b4a22d797f772d..5069408597d16f7794e83ec8034af7946ab8915f 100644
--- a/src/OpenFOAM/fields/Fields/DynamicField/DynamicField.H
+++ b/src/OpenFOAM/fields/Fields/DynamicField/DynamicField.H
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2009-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2009-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
@@ -55,6 +55,7 @@ Ostream& operator<<
     Ostream&,
     const DynamicField<T, SizeInc, SizeMult, SizeDiv>&
 );
+
 template<class T, unsigned SizeInc, unsigned SizeMult, unsigned SizeDiv>
 Istream& operator>>
 (
@@ -234,23 +235,6 @@ public:
 
             //- Assignment from UList
             inline void operator=(const UList<T>&);
-
-
-        // IOstream operators
-
-            // Write DynamicField to Ostream.
-            friend Ostream& operator<< <T, SizeInc, SizeMult, SizeDiv>
-            (
-                Ostream&,
-                const DynamicField<T, SizeInc, SizeMult, SizeDiv>&
-            );
-
-            //- Read from Istream, discarding contents of existing DynamicField.
-            friend Istream& operator>> <T, SizeInc, SizeMult, SizeDiv>
-            (
-                Istream&,
-                DynamicField<T, SizeInc, SizeMult, SizeDiv>&
-            );
 };
 
 
diff --git a/src/parallel/decompose/ptscotchDecomp/ptscotchDecomp.C b/src/parallel/decompose/ptscotchDecomp/ptscotchDecomp.C
index 7478de9c9a247d79cfe582d1cd36870cf0c794a9..5083bb0e891a07124b33742c5e23a851f9fc5f09 100644
--- a/src/parallel/decompose/ptscotchDecomp/ptscotchDecomp.C
+++ b/src/parallel/decompose/ptscotchDecomp/ptscotchDecomp.C
@@ -282,7 +282,10 @@ Foam::label Foam::ptscotchDecomp::decomposeZeroDomains
             <<
             (
                 cWeights.size()
-              ? scalarField::subField(cWeights, nCells, startCell)
+              ? static_cast<const scalarField&>
+                (
+                    scalarField::subField(cWeights, nCells, startCell)
+                )
               : scalarField(0)
             );
 
diff --git a/src/postProcessing/functionObjects/utilities/dsmcFields/IOdsmcFields.C b/src/postProcessing/functionObjects/utilities/dsmcFields/IOdsmcFields.C
index 9c9e87e9c244965c505d29c3575ed7a6bdb242b4..60dc0f88a402dfb1e05841934b9b3566013d76cb 100644
--- a/src/postProcessing/functionObjects/utilities/dsmcFields/IOdsmcFields.C
+++ b/src/postProcessing/functionObjects/utilities/dsmcFields/IOdsmcFields.C
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2009-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2009-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
diff --git a/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFields.C b/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFields.C
index 6d9dec61efce8e8a3f15579b2430750cbd351df9..5a6e614c0b4335c48de3a82a0b7bafde93328671 100644
--- a/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFields.C
+++ b/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFields.C
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2009-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2009-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
@@ -143,7 +143,7 @@ void Foam::dsmcFields::write()
             iDofMeanName
         );
 
-        volVectorField fDMean =  obr_.lookupObject<volVectorField>
+        const volVectorField& fDMean = obr_.lookupObject<volVectorField>
         (
             fDMeanName
         );
diff --git a/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFields.H b/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFields.H
index 34afc2f8eb699b1528b6226a15f047d925ba3a6e..b18ec3c92c2dc306a485fa84da0d34b35fc24c94 100644
--- a/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFields.H
+++ b/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFields.H
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2009-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2009-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
diff --git a/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFieldsFunctionObject.C b/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFieldsFunctionObject.C
index 92cbea8effec4540a23e124cfee1c886ea955734..092bb09b3c6d2469606ec365e1577ae56d887442 100644
--- a/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFieldsFunctionObject.C
+++ b/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFieldsFunctionObject.C
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2009-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2009-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
diff --git a/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFieldsFunctionObject.H b/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFieldsFunctionObject.H
index 6dbcf4ee02e5ee700cf00ed30cdee6d842ce811f..86280aff2e44ffb9c8d6fc9517c32330c8880bd4 100644
--- a/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFieldsFunctionObject.H
+++ b/src/postProcessing/functionObjects/utilities/dsmcFields/dsmcFieldsFunctionObject.H
@@ -2,7 +2,7 @@
   =========                 |
   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    \\    /   O peration     |
-    \\  /    A nd           | Copyright (C) 2009-2010 OpenCFD Ltd.
+    \\  /    A nd           | Copyright (C) 2009-2011 OpenCFD Ltd.
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
 License
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allclean b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allclean
new file mode 100755
index 0000000000000000000000000000000000000000..75ce1691a2146f8975402b0d62bf80d3fbf0a73d
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allclean
@@ -0,0 +1,14 @@
+#!/bin/sh
+cd ${0%/*} || exit 1    # run from this directory
+
+# Source tutorial run functions
+. $WM_PROJECT_DIR/bin/tools/CleanFunctions
+
+cd hopperInitialState
+cleanCase
+
+cd ../hopperEmptying
+cleanCase
+rm -rf 0/lagrangian
+
+# ----------------------------------------------------------------- end-of-file
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allrun b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allrun
new file mode 100755
index 0000000000000000000000000000000000000000..3be363cb27d2282b25a6e2a18315fa54474653da
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/Allrun
@@ -0,0 +1,21 @@
+#!/bin/sh
+cd ${0%/*} || exit 1    # run from this directory
+
+# Source tutorial run functions
+. $WM_PROJECT_DIR/bin/tools/RunFunctions
+
+cd hopperInitialState
+runApplication blockMesh
+runApplication decomposePar
+runParallel `getApplication` 4
+runApplication reconstructPar -latestTime
+cd ..
+
+cd hopperEmptying
+runApplication blockMesh
+runApplication mapFields ../hopperInitialState -sourceTime latestTime
+runApplication decomposePar
+runParallel `getApplication` 4
+runApplication reconstructPar
+
+# ----------------------------------------------------------------- end-of-file
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/0/U b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/0/U
new file mode 100644
index 0000000000000000000000000000000000000000..efab0e473cf23d5bf4378ee61cbeea9fb0aeb35e
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/0/U
@@ -0,0 +1,45 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       volVectorField;
+    location    "0";
+    object      U;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 1 -1 0 0 0 0];
+
+internalField   uniform (0 0 0);
+
+boundaryField
+{
+    walls
+    {
+        type            fixedValue;
+        value           uniform (0 0 0);
+    }
+    frontAndBack
+    {
+        type            fixedValue;
+        value           uniform (0 0 0);
+    }
+    inlet
+    {
+        type            zeroGradient;
+    }
+    outlet
+    {
+        type            zeroGradient;
+    }
+}
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/RASProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/RASProperties
new file mode 100644
index 0000000000000000000000000000000000000000..fe2fb03c503efa0e460cbebb5e66af803b5940e8
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/RASProperties
@@ -0,0 +1,25 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "constant";
+    object      RASProperties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+RASModel        laminar;
+
+turbulence      on;
+
+printCoeffs     on;
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/g b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/g
new file mode 100644
index 0000000000000000000000000000000000000000..4fea433a003518e15418a7270bcf4842db7b2126
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/g
@@ -0,0 +1,22 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       uniformDimensionedVectorField;
+    location    "constant";
+    object      g;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 1 -2 0 0 0 0];
+value           ( 0 -9.81 0 );
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/kinematicCloudProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/kinematicCloudProperties
new file mode 100644
index 0000000000000000000000000000000000000000..4376f6ce5aa2e7073ee836771f7d7b09203df962
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/kinematicCloudProperties
@@ -0,0 +1,132 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "constant";
+    object      reactingCloud1Properties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+solution
+{
+    active          true;
+    coupled         false;
+    transient       yes;
+    cellValueSourceCorrection off;
+
+    sourceTerms
+    {
+        schemes
+        {
+        }
+    }
+
+    interpolationSchemes
+    {
+        rho             cell;
+        U               cellPoint;
+        mu              cell;
+    }
+
+    integrationSchemes
+    {
+        U               Euler;
+    }
+}
+
+constantProperties
+{
+    parcelTypeId    1;
+
+    rhoMin          1e-15;
+    minParticleMass 1e-15;
+
+    rho0            964;
+    youngsModulus   6e8;
+    poissonsRatio   0.35;
+
+    constantVolume  false;
+}
+
+subModels
+{
+    particleForces
+    {
+        sphereDrag;
+        gravity;
+    }
+
+    injectionModel none;
+
+    dispersionModel none;
+
+    patchInteractionModel standardWallInteraction;
+
+    heatTransferModel none;
+
+    postProcessingModel none;
+
+    surfaceFilmModel none;
+
+    collisionModel pairCollision;
+
+    radiation off;
+
+    pairCollisionCoeffs
+    {
+        maxInteractionDistance  0.006;
+
+        writeReferredParticleCloud no;
+
+        pairModel pairSpringSliderDashpot;
+
+        pairSpringSliderDashpotCoeffs
+        {
+            useEquivalentSize   no;
+            alpha               0.12;
+            b                   1.5;
+            mu                  0.52;
+            collisionResolutionSteps 12;
+        };
+
+        wallModel    wallLocalSpringSliderDashpot;
+
+        wallLocalSpringSliderDashpotCoeffs
+        {
+            useEquivalentSize no;
+            collisionResolutionSteps 12;
+            walls
+            {
+                youngsModulus   1e10;
+                poissonsRatio   0.23;
+                alpha           0.12;
+                b               1.5;
+                mu              0.43;
+            }
+            frontAndBack
+            {
+                youngsModulus   1e10;
+                poissonsRatio   0.23;
+                alpha           0.12;
+                b               1.5;
+                mu              0.1;
+            }
+        };
+    }
+
+    standardWallInteractionCoeffs
+    {
+        type            rebound;
+    }
+}
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/blockMeshDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/blockMeshDict
new file mode 100644
index 0000000000000000000000000000000000000000..77ae319149f1ea79197762f80206d045b224b4a0
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/blockMeshDict
@@ -0,0 +1,85 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      http://www.OpenFOAM.com               |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    object      blockMeshDict;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+convertToMeters 0.001;
+
+vertices
+(
+    (0 77.9423 6.2)
+    (135 0 6.2)
+    (0 -77.9423 6.2)
+    (300 -77.9423 6.2)
+    (165 0 6.2)
+    (300 77.9423 6.2)
+    (300 500 6.2)
+    (0 500 6.2)
+    (0 77.9423 0)
+    (135 0 0)
+    (0 -77.9423 0)
+    (300 -77.9423 0)
+    (165 0 0)
+    (300 77.9423 0)
+    (300 500 0)
+    (0 500 0)
+);
+
+
+blocks
+(
+    hex (8 13 14 15 0 5 6 7) (24 50 1) simpleGrading (1 1 1)
+    hex (9 12 13 8 1 4 5 0) (24 8 1) simpleGrading (1 1 1)
+    hex (10 11 12 9 2 3 4 1) (24 6 1) simpleGrading (1 1 1)
+);
+
+patches
+(
+
+    wall walls
+    (
+        //side walls
+        (0 7 15 8)
+        (1 0 8 9)
+        (13 14 6 5)
+        (12 13 5 4)
+        (2 1 9 10)
+        (11 12 4 3)
+    )
+
+    wall frontAndBack
+    (
+        //front and back walls
+        (4 5 0 1)
+        (5 6 7 0)
+        (15 14 13 8)
+        (8 13 12 9)
+        (3 4 1 2)
+        (12 11 10 9)
+    )
+
+    patch inlet
+    (
+        (15 7 6 14)
+    )
+
+    patch outlet
+    (
+        (3 2 10 11)
+    )
+
+);
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/boundary b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/boundary
new file mode 100644
index 0000000000000000000000000000000000000000..a4ff6e34314c5b56f8724151222b13d569fb9596
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/polyMesh/boundary
@@ -0,0 +1,46 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       polyBoundaryMesh;
+    location    "constant/polyMesh";
+    object      boundary;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+4
+(
+    walls
+    {
+        type            wall;
+        nFaces          128;
+        startFace       2984;
+    }
+    frontAndBack
+    {
+        type            wall;
+        nFaces          3072;
+        startFace       3112;
+    }
+    inlet
+    {
+        type            patch;
+        nFaces          24;
+        startFace       6184;
+    }
+    outlet
+    {
+        type            patch;
+        nFaces          24;
+        startFace       6208;
+    }
+)
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/transportProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/transportProperties
new file mode 100644
index 0000000000000000000000000000000000000000..30ebf88e3dead68efc2be37d41ab7cc4f1d7241c
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/transportProperties
@@ -0,0 +1,24 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "constant";
+    object      transportProperties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+rhoInf          rhoInf [ 1 -3 0 0 0 0 0 ] 1.2;
+
+transportModel  Newtonian;
+
+nu              nu [ 0 2 -1 0 0 0 0 ] 1e-05;
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/turbulenceProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/turbulenceProperties
new file mode 100644
index 0000000000000000000000000000000000000000..3e945495c5107c31176f627d29157d32d6b70eb9
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/constant/turbulenceProperties
@@ -0,0 +1,21 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "constant";
+    object      turbulenceProperties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+simulationType  RASModel;
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/controlDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/controlDict
new file mode 100644
index 0000000000000000000000000000000000000000..7feb2b4eb399aa179c2ae5e3aca3842896e76338
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/controlDict
@@ -0,0 +1,48 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "system";
+    object      controlDict;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+application     icoUncoupledKinematicParcelFoam;
+
+startFrom       startTime;
+
+startTime       0;
+
+stopAt          endTime;
+
+endTime         5;
+
+deltaT          5e-5;
+
+writeControl    runTime;
+
+writeInterval   0.02;
+
+purgeWrite      0;
+
+writeFormat     ascii;
+
+writePrecision  6;
+
+writeCompression uncompressed;
+
+timeFormat      general;
+
+timePrecision   6;
+
+runTimeModifiable yes;
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/decomposeParDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/decomposeParDict
new file mode 100644
index 0000000000000000000000000000000000000000..badba37e524b25e894f69e3d44b40be460dcbc08
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/decomposeParDict
@@ -0,0 +1,45 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "system";
+    object      decomposeParDict;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+numberOfSubdomains 4;
+
+method          simple;
+
+simpleCoeffs
+{
+    n               ( 4 1 1 );
+    delta           0.001;
+}
+
+hierarchicalCoeffs
+{
+    n               ( 4 1 1 );
+    delta           0.001;
+    order           xyz;
+}
+
+manualCoeffs
+{
+    dataFile        "";
+}
+
+distributed     no;
+
+roots           ( );
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSchemes b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSchemes
new file mode 100644
index 0000000000000000000000000000000000000000..1b8a2d358ffc810af6a11c4081d4691b1d4600d5
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSchemes
@@ -0,0 +1,43 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "system";
+    object      fvSchemes;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+ddtSchemes
+{
+    default         none;
+}
+
+gradSchemes
+{
+    default         none;
+}
+
+divSchemes
+{
+    default         none;
+}
+
+laplacianSchemes
+{
+    default         none;
+}
+
+interpolationSchemes
+{
+    default         none;
+}
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSolution b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSolution
new file mode 100644
index 0000000000000000000000000000000000000000..39c45aff34bc35d20e87c93cabdbee88918ad277
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/fvSolution
@@ -0,0 +1,22 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "system";
+    object      fvSolution;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+solvers
+{
+}
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/mapFieldsDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/mapFieldsDict
new file mode 100644
index 0000000000000000000000000000000000000000..ce5f93c23cb883381fcbd2345ce82f5279721157
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperEmptying/system/mapFieldsDict
@@ -0,0 +1,29 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    object      mapFieldsDict;
+}
+
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+// List of pairs of source/target patches for mapping
+patchMap
+(
+);
+
+// List of target patches cutting the source domain (these need to be
+// handled specially e.g. interpolated from internal values)
+cuttingPatches
+(
+);
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/0/U b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/0/U
new file mode 100644
index 0000000000000000000000000000000000000000..e81e946847068c10d2cd644a874a9fe91d5ca02c
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/0/U
@@ -0,0 +1,40 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      http://www.OpenFOAM.com               |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       volVectorField;
+    object      U;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 1 -1 0 0 0 0];
+
+internalField   uniform (0 0 0);
+
+boundaryField
+{
+    outlet
+    {
+        type            zeroGradient;
+        value           uniform (0 0 0);
+    }
+    walls
+    {
+        type            fixedValue;
+        value           uniform (0 0 0);
+    }
+    frontAndBack
+    {
+        type            fixedValue;
+        value           uniform (0 0 0);
+    }
+}
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/RASProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/RASProperties
new file mode 100644
index 0000000000000000000000000000000000000000..fe2fb03c503efa0e460cbebb5e66af803b5940e8
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/RASProperties
@@ -0,0 +1,25 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "constant";
+    object      RASProperties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+RASModel        laminar;
+
+turbulence      on;
+
+printCoeffs     on;
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/g b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/g
new file mode 100644
index 0000000000000000000000000000000000000000..4fea433a003518e15418a7270bcf4842db7b2126
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/g
@@ -0,0 +1,22 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       uniformDimensionedVectorField;
+    location    "constant";
+    object      g;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 1 -2 0 0 0 0];
+value           ( 0 -9.81 0 );
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudPositions b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudPositions
new file mode 100644
index 0000000000000000000000000000000000000000..74091054f00a417e0c721baab51304a33e164aa9
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudPositions
@@ -0,0 +1,3321 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      http://www.OpenFOAM.com               |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       vectorField;
+    object      kinematicCloudPositions;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+
+(
+(0.01 0.299 0.0032)
+(0.01 0.305 0.0032)
+(0.01 0.311 0.0032)
+(0.01 0.317 0.0032)
+(0.01 0.323 0.0032)
+(0.01 0.329 0.0032)
+(0.01 0.335 0.0032)
+(0.01 0.341 0.0032)
+(0.01 0.347 0.0032)
+(0.01 0.353 0.0032)
+(0.01 0.359 0.0032)
+(0.01 0.365 0.0032)
+(0.01 0.371 0.0032)
+(0.01 0.377 0.0032)
+(0.01 0.383 0.0032)
+(0.01 0.389 0.0032)
+(0.01 0.395 0.0032)
+(0.01 0.401 0.0032)
+(0.01 0.407 0.0032)
+(0.01 0.413 0.0032)
+(0.01 0.419 0.0032)
+(0.01 0.425 0.0032)
+(0.01 0.431 0.0032)
+(0.01 0.437 0.0032)
+(0.01 0.443 0.0032)
+(0.01 0.449 0.0032)
+(0.01 0.455 0.0032)
+(0.01 0.461 0.0032)
+(0.01 0.467 0.0032)
+(0.01 0.473 0.0032)
+(0.01 0.479 0.0032)
+(0.01 0.485 0.0032)
+(0.01 0.491 0.0032)
+(0.01 0.497 0.0032)
+(0.016 0.077 0.0032)
+(0.016 0.083 0.0032)
+(0.016 0.089 0.0032)
+(0.016 0.095 0.0032)
+(0.016 0.101 0.0032)
+(0.016 0.107 0.0032)
+(0.016 0.113 0.0032)
+(0.016 0.119 0.0032)
+(0.016 0.125 0.0032)
+(0.016 0.131 0.0032)
+(0.016 0.137 0.0032)
+(0.016 0.143 0.0032)
+(0.016 0.149 0.0032)
+(0.016 0.155 0.0032)
+(0.016 0.161 0.0032)
+(0.016 0.167 0.0032)
+(0.016 0.173 0.0032)
+(0.016 0.179 0.0032)
+(0.016 0.185 0.0032)
+(0.016 0.191 0.0032)
+(0.016 0.197 0.0032)
+(0.016 0.203 0.0032)
+(0.016 0.209 0.0032)
+(0.016 0.215 0.0032)
+(0.016 0.221 0.0032)
+(0.016 0.227 0.0032)
+(0.016 0.233 0.0032)
+(0.016 0.239 0.0032)
+(0.016 0.245 0.0032)
+(0.016 0.251 0.0032)
+(0.016 0.257 0.0032)
+(0.016 0.263 0.0032)
+(0.016 0.269 0.0032)
+(0.016 0.275 0.0032)
+(0.016 0.281 0.0032)
+(0.016 0.287 0.0032)
+(0.016 0.293 0.0032)
+(0.016 0.299 0.0032)
+(0.016 0.305 0.0032)
+(0.016 0.311 0.0032)
+(0.016 0.317 0.0032)
+(0.016 0.323 0.0032)
+(0.016 0.329 0.0032)
+(0.016 0.335 0.0032)
+(0.016 0.341 0.0032)
+(0.016 0.347 0.0032)
+(0.016 0.353 0.0032)
+(0.016 0.359 0.0032)
+(0.016 0.365 0.0032)
+(0.016 0.371 0.0032)
+(0.016 0.377 0.0032)
+(0.016 0.383 0.0032)
+(0.016 0.389 0.0032)
+(0.016 0.395 0.0032)
+(0.016 0.401 0.0032)
+(0.016 0.407 0.0032)
+(0.016 0.413 0.0032)
+(0.016 0.419 0.0032)
+(0.016 0.425 0.0032)
+(0.016 0.431 0.0032)
+(0.016 0.437 0.0032)
+(0.016 0.443 0.0032)
+(0.016 0.449 0.0032)
+(0.016 0.455 0.0032)
+(0.016 0.461 0.0032)
+(0.016 0.467 0.0032)
+(0.016 0.473 0.0032)
+(0.016 0.479 0.0032)
+(0.016 0.485 0.0032)
+(0.016 0.491 0.0032)
+(0.016 0.497 0.0032)
+(0.022 0.077 0.0032)
+(0.022 0.083 0.0032)
+(0.022 0.089 0.0032)
+(0.022 0.095 0.0032)
+(0.022 0.101 0.0032)
+(0.022 0.107 0.0032)
+(0.022 0.113 0.0032)
+(0.022 0.119 0.0032)
+(0.022 0.125 0.0032)
+(0.022 0.131 0.0032)
+(0.022 0.137 0.0032)
+(0.022 0.143 0.0032)
+(0.022 0.149 0.0032)
+(0.022 0.155 0.0032)
+(0.022 0.161 0.0032)
+(0.022 0.167 0.0032)
+(0.022 0.173 0.0032)
+(0.022 0.179 0.0032)
+(0.022 0.185 0.0032)
+(0.022 0.191 0.0032)
+(0.022 0.197 0.0032)
+(0.022 0.203 0.0032)
+(0.022 0.209 0.0032)
+(0.022 0.215 0.0032)
+(0.022 0.221 0.0032)
+(0.022 0.227 0.0032)
+(0.022 0.233 0.0032)
+(0.022 0.239 0.0032)
+(0.022 0.245 0.0032)
+(0.022 0.251 0.0032)
+(0.022 0.257 0.0032)
+(0.022 0.263 0.0032)
+(0.022 0.269 0.0032)
+(0.022 0.275 0.0032)
+(0.022 0.281 0.0032)
+(0.022 0.287 0.0032)
+(0.022 0.293 0.0032)
+(0.022 0.299 0.0032)
+(0.022 0.305 0.0032)
+(0.022 0.311 0.0032)
+(0.022 0.317 0.0032)
+(0.022 0.323 0.0032)
+(0.022 0.329 0.0032)
+(0.022 0.335 0.0032)
+(0.022 0.341 0.0032)
+(0.022 0.347 0.0032)
+(0.022 0.353 0.0032)
+(0.022 0.359 0.0032)
+(0.022 0.365 0.0032)
+(0.022 0.371 0.0032)
+(0.022 0.377 0.0032)
+(0.022 0.383 0.0032)
+(0.022 0.389 0.0032)
+(0.022 0.395 0.0032)
+(0.022 0.401 0.0032)
+(0.022 0.407 0.0032)
+(0.022 0.413 0.0032)
+(0.022 0.419 0.0032)
+(0.022 0.425 0.0032)
+(0.022 0.431 0.0032)
+(0.022 0.437 0.0032)
+(0.022 0.443 0.0032)
+(0.022 0.449 0.0032)
+(0.022 0.455 0.0032)
+(0.022 0.461 0.0032)
+(0.022 0.467 0.0032)
+(0.022 0.473 0.0032)
+(0.022 0.479 0.0032)
+(0.022 0.485 0.0032)
+(0.022 0.491 0.0032)
+(0.022 0.497 0.0032)
+(0.028 0.077 0.0032)
+(0.028 0.083 0.0032)
+(0.028 0.089 0.0032)
+(0.028 0.095 0.0032)
+(0.028 0.101 0.0032)
+(0.028 0.107 0.0032)
+(0.028 0.113 0.0032)
+(0.028 0.119 0.0032)
+(0.028 0.125 0.0032)
+(0.028 0.131 0.0032)
+(0.028 0.137 0.0032)
+(0.028 0.143 0.0032)
+(0.028 0.149 0.0032)
+(0.028 0.155 0.0032)
+(0.028 0.161 0.0032)
+(0.028 0.167 0.0032)
+(0.028 0.173 0.0032)
+(0.028 0.179 0.0032)
+(0.028 0.185 0.0032)
+(0.028 0.191 0.0032)
+(0.028 0.197 0.0032)
+(0.028 0.203 0.0032)
+(0.028 0.209 0.0032)
+(0.028 0.215 0.0032)
+(0.028 0.221 0.0032)
+(0.028 0.227 0.0032)
+(0.028 0.233 0.0032)
+(0.028 0.239 0.0032)
+(0.028 0.245 0.0032)
+(0.028 0.251 0.0032)
+(0.028 0.257 0.0032)
+(0.028 0.263 0.0032)
+(0.028 0.269 0.0032)
+(0.028 0.275 0.0032)
+(0.028 0.281 0.0032)
+(0.028 0.287 0.0032)
+(0.028 0.293 0.0032)
+(0.028 0.299 0.0032)
+(0.028 0.305 0.0032)
+(0.028 0.311 0.0032)
+(0.028 0.317 0.0032)
+(0.028 0.323 0.0032)
+(0.028 0.329 0.0032)
+(0.028 0.335 0.0032)
+(0.028 0.341 0.0032)
+(0.028 0.347 0.0032)
+(0.028 0.353 0.0032)
+(0.028 0.359 0.0032)
+(0.028 0.365 0.0032)
+(0.028 0.371 0.0032)
+(0.028 0.377 0.0032)
+(0.028 0.383 0.0032)
+(0.028 0.389 0.0032)
+(0.028 0.395 0.0032)
+(0.028 0.401 0.0032)
+(0.028 0.407 0.0032)
+(0.028 0.413 0.0032)
+(0.028 0.419 0.0032)
+(0.028 0.425 0.0032)
+(0.028 0.431 0.0032)
+(0.028 0.437 0.0032)
+(0.028 0.443 0.0032)
+(0.028 0.449 0.0032)
+(0.028 0.455 0.0032)
+(0.028 0.461 0.0032)
+(0.028 0.467 0.0032)
+(0.028 0.473 0.0032)
+(0.028 0.479 0.0032)
+(0.028 0.485 0.0032)
+(0.028 0.491 0.0032)
+(0.028 0.497 0.0032)
+(0.034 0.077 0.0032)
+(0.034 0.083 0.0032)
+(0.034 0.089 0.0032)
+(0.034 0.095 0.0032)
+(0.034 0.101 0.0032)
+(0.034 0.107 0.0032)
+(0.034 0.113 0.0032)
+(0.034 0.119 0.0032)
+(0.034 0.125 0.0032)
+(0.034 0.131 0.0032)
+(0.034 0.137 0.0032)
+(0.034 0.143 0.0032)
+(0.034 0.149 0.0032)
+(0.034 0.155 0.0032)
+(0.034 0.161 0.0032)
+(0.034 0.167 0.0032)
+(0.034 0.173 0.0032)
+(0.034 0.179 0.0032)
+(0.034 0.185 0.0032)
+(0.034 0.191 0.0032)
+(0.034 0.197 0.0032)
+(0.034 0.203 0.0032)
+(0.034 0.209 0.0032)
+(0.034 0.215 0.0032)
+(0.034 0.221 0.0032)
+(0.034 0.227 0.0032)
+(0.034 0.233 0.0032)
+(0.034 0.239 0.0032)
+(0.034 0.245 0.0032)
+(0.034 0.251 0.0032)
+(0.034 0.257 0.0032)
+(0.034 0.263 0.0032)
+(0.034 0.269 0.0032)
+(0.034 0.275 0.0032)
+(0.034 0.281 0.0032)
+(0.034 0.287 0.0032)
+(0.034 0.293 0.0032)
+(0.034 0.299 0.0032)
+(0.034 0.305 0.0032)
+(0.034 0.311 0.0032)
+(0.034 0.317 0.0032)
+(0.034 0.323 0.0032)
+(0.034 0.329 0.0032)
+(0.034 0.335 0.0032)
+(0.034 0.341 0.0032)
+(0.034 0.347 0.0032)
+(0.034 0.353 0.0032)
+(0.034 0.359 0.0032)
+(0.034 0.365 0.0032)
+(0.034 0.371 0.0032)
+(0.034 0.377 0.0032)
+(0.034 0.383 0.0032)
+(0.034 0.389 0.0032)
+(0.034 0.395 0.0032)
+(0.034 0.401 0.0032)
+(0.034 0.407 0.0032)
+(0.034 0.413 0.0032)
+(0.034 0.419 0.0032)
+(0.034 0.425 0.0032)
+(0.034 0.431 0.0032)
+(0.034 0.437 0.0032)
+(0.034 0.443 0.0032)
+(0.034 0.449 0.0032)
+(0.034 0.455 0.0032)
+(0.034 0.461 0.0032)
+(0.034 0.467 0.0032)
+(0.034 0.473 0.0032)
+(0.034 0.479 0.0032)
+(0.034 0.485 0.0032)
+(0.034 0.491 0.0032)
+(0.034 0.497 0.0032)
+(0.04 0.077 0.0032)
+(0.04 0.083 0.0032)
+(0.04 0.089 0.0032)
+(0.04 0.095 0.0032)
+(0.04 0.101 0.0032)
+(0.04 0.107 0.0032)
+(0.04 0.113 0.0032)
+(0.04 0.119 0.0032)
+(0.04 0.125 0.0032)
+(0.04 0.131 0.0032)
+(0.04 0.137 0.0032)
+(0.04 0.143 0.0032)
+(0.04 0.149 0.0032)
+(0.04 0.155 0.0032)
+(0.04 0.161 0.0032)
+(0.04 0.167 0.0032)
+(0.04 0.173 0.0032)
+(0.04 0.179 0.0032)
+(0.04 0.185 0.0032)
+(0.04 0.191 0.0032)
+(0.04 0.197 0.0032)
+(0.04 0.203 0.0032)
+(0.04 0.209 0.0032)
+(0.04 0.215 0.0032)
+(0.04 0.221 0.0032)
+(0.04 0.227 0.0032)
+(0.04 0.233 0.0032)
+(0.04 0.239 0.0032)
+(0.04 0.245 0.0032)
+(0.04 0.251 0.0032)
+(0.04 0.257 0.0032)
+(0.04 0.263 0.0032)
+(0.04 0.269 0.0032)
+(0.04 0.275 0.0032)
+(0.04 0.281 0.0032)
+(0.04 0.287 0.0032)
+(0.04 0.293 0.0032)
+(0.04 0.299 0.0032)
+(0.04 0.305 0.0032)
+(0.04 0.311 0.0032)
+(0.04 0.317 0.0032)
+(0.04 0.323 0.0032)
+(0.04 0.329 0.0032)
+(0.04 0.335 0.0032)
+(0.04 0.341 0.0032)
+(0.04 0.347 0.0032)
+(0.04 0.353 0.0032)
+(0.04 0.359 0.0032)
+(0.04 0.365 0.0032)
+(0.04 0.371 0.0032)
+(0.04 0.377 0.0032)
+(0.04 0.383 0.0032)
+(0.04 0.389 0.0032)
+(0.04 0.395 0.0032)
+(0.04 0.401 0.0032)
+(0.04 0.407 0.0032)
+(0.04 0.413 0.0032)
+(0.04 0.419 0.0032)
+(0.04 0.425 0.0032)
+(0.04 0.431 0.0032)
+(0.04 0.437 0.0032)
+(0.04 0.443 0.0032)
+(0.04 0.449 0.0032)
+(0.04 0.455 0.0032)
+(0.04 0.461 0.0032)
+(0.04 0.467 0.0032)
+(0.04 0.473 0.0032)
+(0.04 0.479 0.0032)
+(0.04 0.485 0.0032)
+(0.04 0.491 0.0032)
+(0.04 0.497 0.0032)
+(0.046 0.077 0.0032)
+(0.046 0.083 0.0032)
+(0.046 0.089 0.0032)
+(0.046 0.095 0.0032)
+(0.046 0.101 0.0032)
+(0.046 0.107 0.0032)
+(0.046 0.113 0.0032)
+(0.046 0.119 0.0032)
+(0.046 0.125 0.0032)
+(0.046 0.131 0.0032)
+(0.046 0.137 0.0032)
+(0.046 0.143 0.0032)
+(0.046 0.149 0.0032)
+(0.046 0.155 0.0032)
+(0.046 0.161 0.0032)
+(0.046 0.167 0.0032)
+(0.046 0.173 0.0032)
+(0.046 0.179 0.0032)
+(0.046 0.185 0.0032)
+(0.046 0.191 0.0032)
+(0.046 0.197 0.0032)
+(0.046 0.203 0.0032)
+(0.046 0.209 0.0032)
+(0.046 0.215 0.0032)
+(0.046 0.221 0.0032)
+(0.046 0.227 0.0032)
+(0.046 0.233 0.0032)
+(0.046 0.239 0.0032)
+(0.046 0.245 0.0032)
+(0.046 0.251 0.0032)
+(0.046 0.257 0.0032)
+(0.046 0.263 0.0032)
+(0.046 0.269 0.0032)
+(0.046 0.275 0.0032)
+(0.046 0.281 0.0032)
+(0.046 0.287 0.0032)
+(0.046 0.293 0.0032)
+(0.046 0.299 0.0032)
+(0.046 0.305 0.0032)
+(0.046 0.311 0.0032)
+(0.046 0.317 0.0032)
+(0.046 0.323 0.0032)
+(0.046 0.329 0.0032)
+(0.046 0.335 0.0032)
+(0.046 0.341 0.0032)
+(0.046 0.347 0.0032)
+(0.046 0.353 0.0032)
+(0.046 0.359 0.0032)
+(0.046 0.365 0.0032)
+(0.046 0.371 0.0032)
+(0.046 0.377 0.0032)
+(0.046 0.383 0.0032)
+(0.046 0.389 0.0032)
+(0.046 0.395 0.0032)
+(0.046 0.401 0.0032)
+(0.046 0.407 0.0032)
+(0.046 0.413 0.0032)
+(0.046 0.419 0.0032)
+(0.046 0.425 0.0032)
+(0.046 0.431 0.0032)
+(0.046 0.437 0.0032)
+(0.046 0.443 0.0032)
+(0.046 0.449 0.0032)
+(0.046 0.455 0.0032)
+(0.046 0.461 0.0032)
+(0.046 0.467 0.0032)
+(0.046 0.473 0.0032)
+(0.046 0.479 0.0032)
+(0.046 0.485 0.0032)
+(0.046 0.491 0.0032)
+(0.046 0.497 0.0032)
+(0.052 0.077 0.0032)
+(0.052 0.083 0.0032)
+(0.052 0.089 0.0032)
+(0.052 0.095 0.0032)
+(0.052 0.101 0.0032)
+(0.052 0.107 0.0032)
+(0.052 0.113 0.0032)
+(0.052 0.119 0.0032)
+(0.052 0.125 0.0032)
+(0.052 0.131 0.0032)
+(0.052 0.137 0.0032)
+(0.052 0.143 0.0032)
+(0.052 0.149 0.0032)
+(0.052 0.155 0.0032)
+(0.052 0.161 0.0032)
+(0.052 0.167 0.0032)
+(0.052 0.173 0.0032)
+(0.052 0.179 0.0032)
+(0.052 0.185 0.0032)
+(0.052 0.191 0.0032)
+(0.052 0.197 0.0032)
+(0.052 0.203 0.0032)
+(0.052 0.209 0.0032)
+(0.052 0.215 0.0032)
+(0.052 0.221 0.0032)
+(0.052 0.227 0.0032)
+(0.052 0.233 0.0032)
+(0.052 0.239 0.0032)
+(0.052 0.245 0.0032)
+(0.052 0.251 0.0032)
+(0.052 0.257 0.0032)
+(0.052 0.263 0.0032)
+(0.052 0.269 0.0032)
+(0.052 0.275 0.0032)
+(0.052 0.281 0.0032)
+(0.052 0.287 0.0032)
+(0.052 0.293 0.0032)
+(0.052 0.299 0.0032)
+(0.052 0.305 0.0032)
+(0.052 0.311 0.0032)
+(0.052 0.317 0.0032)
+(0.052 0.323 0.0032)
+(0.052 0.329 0.0032)
+(0.052 0.335 0.0032)
+(0.052 0.341 0.0032)
+(0.052 0.347 0.0032)
+(0.052 0.353 0.0032)
+(0.052 0.359 0.0032)
+(0.052 0.365 0.0032)
+(0.052 0.371 0.0032)
+(0.052 0.377 0.0032)
+(0.052 0.383 0.0032)
+(0.052 0.389 0.0032)
+(0.052 0.395 0.0032)
+(0.052 0.401 0.0032)
+(0.052 0.407 0.0032)
+(0.052 0.413 0.0032)
+(0.052 0.419 0.0032)
+(0.052 0.425 0.0032)
+(0.052 0.431 0.0032)
+(0.052 0.437 0.0032)
+(0.052 0.443 0.0032)
+(0.052 0.449 0.0032)
+(0.052 0.455 0.0032)
+(0.052 0.461 0.0032)
+(0.052 0.467 0.0032)
+(0.052 0.473 0.0032)
+(0.052 0.479 0.0032)
+(0.052 0.485 0.0032)
+(0.052 0.491 0.0032)
+(0.052 0.497 0.0032)
+(0.058 0.077 0.0032)
+(0.058 0.083 0.0032)
+(0.058 0.089 0.0032)
+(0.058 0.095 0.0032)
+(0.058 0.101 0.0032)
+(0.058 0.107 0.0032)
+(0.058 0.113 0.0032)
+(0.058 0.119 0.0032)
+(0.058 0.125 0.0032)
+(0.058 0.131 0.0032)
+(0.058 0.137 0.0032)
+(0.058 0.143 0.0032)
+(0.058 0.149 0.0032)
+(0.058 0.155 0.0032)
+(0.058 0.161 0.0032)
+(0.058 0.167 0.0032)
+(0.058 0.173 0.0032)
+(0.058 0.179 0.0032)
+(0.058 0.185 0.0032)
+(0.058 0.191 0.0032)
+(0.058 0.197 0.0032)
+(0.058 0.203 0.0032)
+(0.058 0.209 0.0032)
+(0.058 0.215 0.0032)
+(0.058 0.221 0.0032)
+(0.058 0.227 0.0032)
+(0.058 0.233 0.0032)
+(0.058 0.239 0.0032)
+(0.058 0.245 0.0032)
+(0.058 0.251 0.0032)
+(0.058 0.257 0.0032)
+(0.058 0.263 0.0032)
+(0.058 0.269 0.0032)
+(0.058 0.275 0.0032)
+(0.058 0.281 0.0032)
+(0.058 0.287 0.0032)
+(0.058 0.293 0.0032)
+(0.058 0.299 0.0032)
+(0.058 0.305 0.0032)
+(0.058 0.311 0.0032)
+(0.058 0.317 0.0032)
+(0.058 0.323 0.0032)
+(0.058 0.329 0.0032)
+(0.058 0.335 0.0032)
+(0.058 0.341 0.0032)
+(0.058 0.347 0.0032)
+(0.058 0.353 0.0032)
+(0.058 0.359 0.0032)
+(0.058 0.365 0.0032)
+(0.058 0.371 0.0032)
+(0.058 0.377 0.0032)
+(0.058 0.383 0.0032)
+(0.058 0.389 0.0032)
+(0.058 0.395 0.0032)
+(0.058 0.401 0.0032)
+(0.058 0.407 0.0032)
+(0.058 0.413 0.0032)
+(0.058 0.419 0.0032)
+(0.058 0.425 0.0032)
+(0.058 0.431 0.0032)
+(0.058 0.437 0.0032)
+(0.058 0.443 0.0032)
+(0.058 0.449 0.0032)
+(0.058 0.455 0.0032)
+(0.058 0.461 0.0032)
+(0.058 0.467 0.0032)
+(0.058 0.473 0.0032)
+(0.058 0.479 0.0032)
+(0.058 0.485 0.0032)
+(0.058 0.491 0.0032)
+(0.058 0.497 0.0032)
+(0.064 0.077 0.0032)
+(0.064 0.083 0.0032)
+(0.064 0.089 0.0032)
+(0.064 0.095 0.0032)
+(0.064 0.101 0.0032)
+(0.064 0.107 0.0032)
+(0.064 0.113 0.0032)
+(0.064 0.119 0.0032)
+(0.064 0.125 0.0032)
+(0.064 0.131 0.0032)
+(0.064 0.137 0.0032)
+(0.064 0.143 0.0032)
+(0.064 0.149 0.0032)
+(0.064 0.155 0.0032)
+(0.064 0.161 0.0032)
+(0.064 0.167 0.0032)
+(0.064 0.173 0.0032)
+(0.064 0.179 0.0032)
+(0.064 0.185 0.0032)
+(0.064 0.191 0.0032)
+(0.064 0.197 0.0032)
+(0.064 0.203 0.0032)
+(0.064 0.209 0.0032)
+(0.064 0.215 0.0032)
+(0.064 0.221 0.0032)
+(0.064 0.227 0.0032)
+(0.064 0.233 0.0032)
+(0.064 0.239 0.0032)
+(0.064 0.245 0.0032)
+(0.064 0.251 0.0032)
+(0.064 0.257 0.0032)
+(0.064 0.263 0.0032)
+(0.064 0.269 0.0032)
+(0.064 0.275 0.0032)
+(0.064 0.281 0.0032)
+(0.064 0.287 0.0032)
+(0.064 0.293 0.0032)
+(0.064 0.299 0.0032)
+(0.064 0.305 0.0032)
+(0.064 0.311 0.0032)
+(0.064 0.317 0.0032)
+(0.064 0.323 0.0032)
+(0.064 0.329 0.0032)
+(0.064 0.335 0.0032)
+(0.064 0.341 0.0032)
+(0.064 0.347 0.0032)
+(0.064 0.353 0.0032)
+(0.064 0.359 0.0032)
+(0.064 0.365 0.0032)
+(0.064 0.371 0.0032)
+(0.064 0.377 0.0032)
+(0.064 0.383 0.0032)
+(0.064 0.389 0.0032)
+(0.064 0.395 0.0032)
+(0.064 0.401 0.0032)
+(0.064 0.407 0.0032)
+(0.064 0.413 0.0032)
+(0.064 0.419 0.0032)
+(0.064 0.425 0.0032)
+(0.064 0.431 0.0032)
+(0.064 0.437 0.0032)
+(0.064 0.443 0.0032)
+(0.064 0.449 0.0032)
+(0.064 0.455 0.0032)
+(0.064 0.461 0.0032)
+(0.064 0.467 0.0032)
+(0.064 0.473 0.0032)
+(0.064 0.479 0.0032)
+(0.064 0.485 0.0032)
+(0.064 0.491 0.0032)
+(0.064 0.497 0.0032)
+(0.07 0.077 0.0032)
+(0.07 0.083 0.0032)
+(0.07 0.089 0.0032)
+(0.07 0.095 0.0032)
+(0.07 0.101 0.0032)
+(0.07 0.107 0.0032)
+(0.07 0.113 0.0032)
+(0.07 0.119 0.0032)
+(0.07 0.125 0.0032)
+(0.07 0.131 0.0032)
+(0.07 0.137 0.0032)
+(0.07 0.143 0.0032)
+(0.07 0.149 0.0032)
+(0.07 0.155 0.0032)
+(0.07 0.161 0.0032)
+(0.07 0.167 0.0032)
+(0.07 0.173 0.0032)
+(0.07 0.179 0.0032)
+(0.07 0.185 0.0032)
+(0.07 0.191 0.0032)
+(0.07 0.197 0.0032)
+(0.07 0.203 0.0032)
+(0.07 0.209 0.0032)
+(0.07 0.215 0.0032)
+(0.07 0.221 0.0032)
+(0.07 0.227 0.0032)
+(0.07 0.233 0.0032)
+(0.07 0.239 0.0032)
+(0.07 0.245 0.0032)
+(0.07 0.251 0.0032)
+(0.07 0.257 0.0032)
+(0.07 0.263 0.0032)
+(0.07 0.269 0.0032)
+(0.07 0.275 0.0032)
+(0.07 0.281 0.0032)
+(0.07 0.287 0.0032)
+(0.07 0.293 0.0032)
+(0.07 0.299 0.0032)
+(0.07 0.305 0.0032)
+(0.07 0.311 0.0032)
+(0.07 0.317 0.0032)
+(0.07 0.323 0.0032)
+(0.07 0.329 0.0032)
+(0.07 0.335 0.0032)
+(0.07 0.341 0.0032)
+(0.07 0.347 0.0032)
+(0.07 0.353 0.0032)
+(0.07 0.359 0.0032)
+(0.07 0.365 0.0032)
+(0.07 0.371 0.0032)
+(0.07 0.377 0.0032)
+(0.07 0.383 0.0032)
+(0.07 0.389 0.0032)
+(0.07 0.395 0.0032)
+(0.07 0.401 0.0032)
+(0.07 0.407 0.0032)
+(0.07 0.413 0.0032)
+(0.07 0.419 0.0032)
+(0.07 0.425 0.0032)
+(0.07 0.431 0.0032)
+(0.07 0.437 0.0032)
+(0.07 0.443 0.0032)
+(0.07 0.449 0.0032)
+(0.07 0.455 0.0032)
+(0.07 0.461 0.0032)
+(0.07 0.467 0.0032)
+(0.07 0.473 0.0032)
+(0.07 0.479 0.0032)
+(0.07 0.485 0.0032)
+(0.07 0.491 0.0032)
+(0.07 0.497 0.0032)
+(0.076 0.077 0.0032)
+(0.076 0.083 0.0032)
+(0.076 0.089 0.0032)
+(0.076 0.095 0.0032)
+(0.076 0.101 0.0032)
+(0.076 0.107 0.0032)
+(0.076 0.113 0.0032)
+(0.076 0.119 0.0032)
+(0.076 0.125 0.0032)
+(0.076 0.131 0.0032)
+(0.076 0.137 0.0032)
+(0.076 0.143 0.0032)
+(0.076 0.149 0.0032)
+(0.076 0.155 0.0032)
+(0.076 0.161 0.0032)
+(0.076 0.167 0.0032)
+(0.076 0.173 0.0032)
+(0.076 0.179 0.0032)
+(0.076 0.185 0.0032)
+(0.076 0.191 0.0032)
+(0.076 0.197 0.0032)
+(0.076 0.203 0.0032)
+(0.076 0.209 0.0032)
+(0.076 0.215 0.0032)
+(0.076 0.221 0.0032)
+(0.076 0.227 0.0032)
+(0.076 0.233 0.0032)
+(0.076 0.239 0.0032)
+(0.076 0.245 0.0032)
+(0.076 0.251 0.0032)
+(0.076 0.257 0.0032)
+(0.076 0.263 0.0032)
+(0.076 0.269 0.0032)
+(0.076 0.275 0.0032)
+(0.076 0.281 0.0032)
+(0.076 0.287 0.0032)
+(0.076 0.293 0.0032)
+(0.076 0.299 0.0032)
+(0.076 0.305 0.0032)
+(0.076 0.311 0.0032)
+(0.076 0.317 0.0032)
+(0.076 0.323 0.0032)
+(0.076 0.329 0.0032)
+(0.076 0.335 0.0032)
+(0.076 0.341 0.0032)
+(0.076 0.347 0.0032)
+(0.076 0.353 0.0032)
+(0.076 0.359 0.0032)
+(0.076 0.365 0.0032)
+(0.076 0.371 0.0032)
+(0.076 0.377 0.0032)
+(0.076 0.383 0.0032)
+(0.076 0.389 0.0032)
+(0.076 0.395 0.0032)
+(0.076 0.401 0.0032)
+(0.076 0.407 0.0032)
+(0.076 0.413 0.0032)
+(0.076 0.419 0.0032)
+(0.076 0.425 0.0032)
+(0.076 0.431 0.0032)
+(0.076 0.437 0.0032)
+(0.076 0.443 0.0032)
+(0.076 0.449 0.0032)
+(0.076 0.455 0.0032)
+(0.076 0.461 0.0032)
+(0.076 0.467 0.0032)
+(0.076 0.473 0.0032)
+(0.076 0.479 0.0032)
+(0.076 0.485 0.0032)
+(0.076 0.491 0.0032)
+(0.076 0.497 0.0032)
+(0.082 0.077 0.0032)
+(0.082 0.083 0.0032)
+(0.082 0.089 0.0032)
+(0.082 0.095 0.0032)
+(0.082 0.101 0.0032)
+(0.082 0.107 0.0032)
+(0.082 0.113 0.0032)
+(0.082 0.119 0.0032)
+(0.082 0.125 0.0032)
+(0.082 0.131 0.0032)
+(0.082 0.137 0.0032)
+(0.082 0.143 0.0032)
+(0.082 0.149 0.0032)
+(0.082 0.155 0.0032)
+(0.082 0.161 0.0032)
+(0.082 0.167 0.0032)
+(0.082 0.173 0.0032)
+(0.082 0.179 0.0032)
+(0.082 0.185 0.0032)
+(0.082 0.191 0.0032)
+(0.082 0.197 0.0032)
+(0.082 0.203 0.0032)
+(0.082 0.209 0.0032)
+(0.082 0.215 0.0032)
+(0.082 0.221 0.0032)
+(0.082 0.227 0.0032)
+(0.082 0.233 0.0032)
+(0.082 0.239 0.0032)
+(0.082 0.245 0.0032)
+(0.082 0.251 0.0032)
+(0.082 0.257 0.0032)
+(0.082 0.263 0.0032)
+(0.082 0.269 0.0032)
+(0.082 0.275 0.0032)
+(0.082 0.281 0.0032)
+(0.082 0.287 0.0032)
+(0.082 0.293 0.0032)
+(0.082 0.299 0.0032)
+(0.082 0.305 0.0032)
+(0.082 0.311 0.0032)
+(0.082 0.317 0.0032)
+(0.082 0.323 0.0032)
+(0.082 0.329 0.0032)
+(0.082 0.335 0.0032)
+(0.082 0.341 0.0032)
+(0.082 0.347 0.0032)
+(0.082 0.353 0.0032)
+(0.082 0.359 0.0032)
+(0.082 0.365 0.0032)
+(0.082 0.371 0.0032)
+(0.082 0.377 0.0032)
+(0.082 0.383 0.0032)
+(0.082 0.389 0.0032)
+(0.082 0.395 0.0032)
+(0.082 0.401 0.0032)
+(0.082 0.407 0.0032)
+(0.082 0.413 0.0032)
+(0.082 0.419 0.0032)
+(0.082 0.425 0.0032)
+(0.082 0.431 0.0032)
+(0.082 0.437 0.0032)
+(0.082 0.443 0.0032)
+(0.082 0.449 0.0032)
+(0.082 0.455 0.0032)
+(0.082 0.461 0.0032)
+(0.082 0.467 0.0032)
+(0.082 0.473 0.0032)
+(0.082 0.479 0.0032)
+(0.082 0.485 0.0032)
+(0.082 0.491 0.0032)
+(0.082 0.497 0.0032)
+(0.088 0.077 0.0032)
+(0.088 0.083 0.0032)
+(0.088 0.089 0.0032)
+(0.088 0.095 0.0032)
+(0.088 0.101 0.0032)
+(0.088 0.107 0.0032)
+(0.088 0.113 0.0032)
+(0.088 0.119 0.0032)
+(0.088 0.125 0.0032)
+(0.088 0.131 0.0032)
+(0.088 0.137 0.0032)
+(0.088 0.143 0.0032)
+(0.088 0.149 0.0032)
+(0.088 0.155 0.0032)
+(0.088 0.161 0.0032)
+(0.088 0.167 0.0032)
+(0.088 0.173 0.0032)
+(0.088 0.179 0.0032)
+(0.088 0.185 0.0032)
+(0.088 0.191 0.0032)
+(0.088 0.197 0.0032)
+(0.088 0.203 0.0032)
+(0.088 0.209 0.0032)
+(0.088 0.215 0.0032)
+(0.088 0.221 0.0032)
+(0.088 0.227 0.0032)
+(0.088 0.233 0.0032)
+(0.088 0.239 0.0032)
+(0.088 0.245 0.0032)
+(0.088 0.251 0.0032)
+(0.088 0.257 0.0032)
+(0.088 0.263 0.0032)
+(0.088 0.269 0.0032)
+(0.088 0.275 0.0032)
+(0.088 0.281 0.0032)
+(0.088 0.287 0.0032)
+(0.088 0.293 0.0032)
+(0.088 0.299 0.0032)
+(0.088 0.305 0.0032)
+(0.088 0.311 0.0032)
+(0.088 0.317 0.0032)
+(0.088 0.323 0.0032)
+(0.088 0.329 0.0032)
+(0.088 0.335 0.0032)
+(0.088 0.341 0.0032)
+(0.088 0.347 0.0032)
+(0.088 0.353 0.0032)
+(0.088 0.359 0.0032)
+(0.088 0.365 0.0032)
+(0.088 0.371 0.0032)
+(0.088 0.377 0.0032)
+(0.088 0.383 0.0032)
+(0.088 0.389 0.0032)
+(0.088 0.395 0.0032)
+(0.088 0.401 0.0032)
+(0.088 0.407 0.0032)
+(0.088 0.413 0.0032)
+(0.088 0.419 0.0032)
+(0.088 0.425 0.0032)
+(0.088 0.431 0.0032)
+(0.088 0.437 0.0032)
+(0.088 0.443 0.0032)
+(0.088 0.449 0.0032)
+(0.088 0.455 0.0032)
+(0.088 0.461 0.0032)
+(0.088 0.467 0.0032)
+(0.088 0.473 0.0032)
+(0.088 0.479 0.0032)
+(0.088 0.485 0.0032)
+(0.088 0.491 0.0032)
+(0.088 0.497 0.0032)
+(0.094 0.077 0.0032)
+(0.094 0.083 0.0032)
+(0.094 0.089 0.0032)
+(0.094 0.095 0.0032)
+(0.094 0.101 0.0032)
+(0.094 0.107 0.0032)
+(0.094 0.113 0.0032)
+(0.094 0.119 0.0032)
+(0.094 0.125 0.0032)
+(0.094 0.131 0.0032)
+(0.094 0.137 0.0032)
+(0.094 0.143 0.0032)
+(0.094 0.149 0.0032)
+(0.094 0.155 0.0032)
+(0.094 0.161 0.0032)
+(0.094 0.167 0.0032)
+(0.094 0.173 0.0032)
+(0.094 0.179 0.0032)
+(0.094 0.185 0.0032)
+(0.094 0.191 0.0032)
+(0.094 0.197 0.0032)
+(0.094 0.203 0.0032)
+(0.094 0.209 0.0032)
+(0.094 0.215 0.0032)
+(0.094 0.221 0.0032)
+(0.094 0.227 0.0032)
+(0.094 0.233 0.0032)
+(0.094 0.239 0.0032)
+(0.094 0.245 0.0032)
+(0.094 0.251 0.0032)
+(0.094 0.257 0.0032)
+(0.094 0.263 0.0032)
+(0.094 0.269 0.0032)
+(0.094 0.275 0.0032)
+(0.094 0.281 0.0032)
+(0.094 0.287 0.0032)
+(0.094 0.293 0.0032)
+(0.094 0.299 0.0032)
+(0.094 0.305 0.0032)
+(0.094 0.311 0.0032)
+(0.094 0.317 0.0032)
+(0.094 0.323 0.0032)
+(0.094 0.329 0.0032)
+(0.094 0.335 0.0032)
+(0.094 0.341 0.0032)
+(0.094 0.347 0.0032)
+(0.094 0.353 0.0032)
+(0.094 0.359 0.0032)
+(0.094 0.365 0.0032)
+(0.094 0.371 0.0032)
+(0.094 0.377 0.0032)
+(0.094 0.383 0.0032)
+(0.094 0.389 0.0032)
+(0.094 0.395 0.0032)
+(0.094 0.401 0.0032)
+(0.094 0.407 0.0032)
+(0.094 0.413 0.0032)
+(0.094 0.419 0.0032)
+(0.094 0.425 0.0032)
+(0.094 0.431 0.0032)
+(0.094 0.437 0.0032)
+(0.094 0.443 0.0032)
+(0.094 0.449 0.0032)
+(0.094 0.455 0.0032)
+(0.094 0.461 0.0032)
+(0.094 0.467 0.0032)
+(0.094 0.473 0.0032)
+(0.094 0.479 0.0032)
+(0.094 0.485 0.0032)
+(0.094 0.491 0.0032)
+(0.094 0.497 0.0032)
+(0.1 0.077 0.0032)
+(0.1 0.083 0.0032)
+(0.1 0.089 0.0032)
+(0.1 0.095 0.0032)
+(0.1 0.101 0.0032)
+(0.1 0.107 0.0032)
+(0.1 0.113 0.0032)
+(0.1 0.119 0.0032)
+(0.1 0.125 0.0032)
+(0.1 0.131 0.0032)
+(0.1 0.137 0.0032)
+(0.1 0.143 0.0032)
+(0.1 0.149 0.0032)
+(0.1 0.155 0.0032)
+(0.1 0.161 0.0032)
+(0.1 0.167 0.0032)
+(0.1 0.173 0.0032)
+(0.1 0.179 0.0032)
+(0.1 0.185 0.0032)
+(0.1 0.191 0.0032)
+(0.1 0.197 0.0032)
+(0.1 0.203 0.0032)
+(0.1 0.209 0.0032)
+(0.1 0.215 0.0032)
+(0.1 0.221 0.0032)
+(0.1 0.227 0.0032)
+(0.1 0.233 0.0032)
+(0.1 0.239 0.0032)
+(0.1 0.245 0.0032)
+(0.1 0.251 0.0032)
+(0.1 0.257 0.0032)
+(0.1 0.263 0.0032)
+(0.1 0.269 0.0032)
+(0.1 0.275 0.0032)
+(0.1 0.281 0.0032)
+(0.1 0.287 0.0032)
+(0.1 0.293 0.0032)
+(0.1 0.299 0.0032)
+(0.1 0.305 0.0032)
+(0.1 0.311 0.0032)
+(0.1 0.317 0.0032)
+(0.1 0.323 0.0032)
+(0.1 0.329 0.0032)
+(0.1 0.335 0.0032)
+(0.1 0.341 0.0032)
+(0.1 0.347 0.0032)
+(0.1 0.353 0.0032)
+(0.1 0.359 0.0032)
+(0.1 0.365 0.0032)
+(0.1 0.371 0.0032)
+(0.1 0.377 0.0032)
+(0.1 0.383 0.0032)
+(0.1 0.389 0.0032)
+(0.1 0.395 0.0032)
+(0.1 0.401 0.0032)
+(0.1 0.407 0.0032)
+(0.1 0.413 0.0032)
+(0.1 0.419 0.0032)
+(0.1 0.425 0.0032)
+(0.1 0.431 0.0032)
+(0.1 0.437 0.0032)
+(0.1 0.443 0.0032)
+(0.1 0.449 0.0032)
+(0.1 0.455 0.0032)
+(0.1 0.461 0.0032)
+(0.1 0.467 0.0032)
+(0.1 0.473 0.0032)
+(0.1 0.479 0.0032)
+(0.1 0.485 0.0032)
+(0.1 0.491 0.0032)
+(0.1 0.497 0.0032)
+(0.106 0.077 0.0032)
+(0.106 0.083 0.0032)
+(0.106 0.089 0.0032)
+(0.106 0.095 0.0032)
+(0.106 0.101 0.0032)
+(0.106 0.107 0.0032)
+(0.106 0.113 0.0032)
+(0.106 0.119 0.0032)
+(0.106 0.125 0.0032)
+(0.106 0.131 0.0032)
+(0.106 0.137 0.0032)
+(0.106 0.143 0.0032)
+(0.106 0.149 0.0032)
+(0.106 0.155 0.0032)
+(0.106 0.161 0.0032)
+(0.106 0.167 0.0032)
+(0.106 0.173 0.0032)
+(0.106 0.179 0.0032)
+(0.106 0.185 0.0032)
+(0.106 0.191 0.0032)
+(0.106 0.197 0.0032)
+(0.106 0.203 0.0032)
+(0.106 0.209 0.0032)
+(0.106 0.215 0.0032)
+(0.106 0.221 0.0032)
+(0.106 0.227 0.0032)
+(0.106 0.233 0.0032)
+(0.106 0.239 0.0032)
+(0.106 0.245 0.0032)
+(0.106 0.251 0.0032)
+(0.106 0.257 0.0032)
+(0.106 0.263 0.0032)
+(0.106 0.269 0.0032)
+(0.106 0.275 0.0032)
+(0.106 0.281 0.0032)
+(0.106 0.287 0.0032)
+(0.106 0.293 0.0032)
+(0.106 0.299 0.0032)
+(0.106 0.305 0.0032)
+(0.106 0.311 0.0032)
+(0.106 0.317 0.0032)
+(0.106 0.323 0.0032)
+(0.106 0.329 0.0032)
+(0.106 0.335 0.0032)
+(0.106 0.341 0.0032)
+(0.106 0.347 0.0032)
+(0.106 0.353 0.0032)
+(0.106 0.359 0.0032)
+(0.106 0.365 0.0032)
+(0.106 0.371 0.0032)
+(0.106 0.377 0.0032)
+(0.106 0.383 0.0032)
+(0.106 0.389 0.0032)
+(0.106 0.395 0.0032)
+(0.106 0.401 0.0032)
+(0.106 0.407 0.0032)
+(0.106 0.413 0.0032)
+(0.106 0.419 0.0032)
+(0.106 0.425 0.0032)
+(0.106 0.431 0.0032)
+(0.106 0.437 0.0032)
+(0.106 0.443 0.0032)
+(0.106 0.449 0.0032)
+(0.106 0.455 0.0032)
+(0.106 0.461 0.0032)
+(0.106 0.467 0.0032)
+(0.106 0.473 0.0032)
+(0.106 0.479 0.0032)
+(0.106 0.485 0.0032)
+(0.106 0.491 0.0032)
+(0.106 0.497 0.0032)
+(0.112 0.077 0.0032)
+(0.112 0.083 0.0032)
+(0.112 0.089 0.0032)
+(0.112 0.095 0.0032)
+(0.112 0.101 0.0032)
+(0.112 0.107 0.0032)
+(0.112 0.113 0.0032)
+(0.112 0.119 0.0032)
+(0.112 0.125 0.0032)
+(0.112 0.131 0.0032)
+(0.112 0.137 0.0032)
+(0.112 0.143 0.0032)
+(0.112 0.149 0.0032)
+(0.112 0.155 0.0032)
+(0.112 0.161 0.0032)
+(0.112 0.167 0.0032)
+(0.112 0.173 0.0032)
+(0.112 0.179 0.0032)
+(0.112 0.185 0.0032)
+(0.112 0.191 0.0032)
+(0.112 0.197 0.0032)
+(0.112 0.203 0.0032)
+(0.112 0.209 0.0032)
+(0.112 0.215 0.0032)
+(0.112 0.221 0.0032)
+(0.112 0.227 0.0032)
+(0.112 0.233 0.0032)
+(0.112 0.239 0.0032)
+(0.112 0.245 0.0032)
+(0.112 0.251 0.0032)
+(0.112 0.257 0.0032)
+(0.112 0.263 0.0032)
+(0.112 0.269 0.0032)
+(0.112 0.275 0.0032)
+(0.112 0.281 0.0032)
+(0.112 0.287 0.0032)
+(0.112 0.293 0.0032)
+(0.112 0.299 0.0032)
+(0.112 0.305 0.0032)
+(0.112 0.311 0.0032)
+(0.112 0.317 0.0032)
+(0.112 0.323 0.0032)
+(0.112 0.329 0.0032)
+(0.112 0.335 0.0032)
+(0.112 0.341 0.0032)
+(0.112 0.347 0.0032)
+(0.112 0.353 0.0032)
+(0.112 0.359 0.0032)
+(0.112 0.365 0.0032)
+(0.112 0.371 0.0032)
+(0.112 0.377 0.0032)
+(0.112 0.383 0.0032)
+(0.112 0.389 0.0032)
+(0.112 0.395 0.0032)
+(0.112 0.401 0.0032)
+(0.112 0.407 0.0032)
+(0.112 0.413 0.0032)
+(0.112 0.419 0.0032)
+(0.112 0.425 0.0032)
+(0.112 0.431 0.0032)
+(0.112 0.437 0.0032)
+(0.112 0.443 0.0032)
+(0.112 0.449 0.0032)
+(0.112 0.455 0.0032)
+(0.112 0.461 0.0032)
+(0.112 0.467 0.0032)
+(0.112 0.473 0.0032)
+(0.112 0.479 0.0032)
+(0.112 0.485 0.0032)
+(0.112 0.491 0.0032)
+(0.112 0.497 0.0032)
+(0.118 0.077 0.0032)
+(0.118 0.083 0.0032)
+(0.118 0.089 0.0032)
+(0.118 0.095 0.0032)
+(0.118 0.101 0.0032)
+(0.118 0.107 0.0032)
+(0.118 0.113 0.0032)
+(0.118 0.119 0.0032)
+(0.118 0.125 0.0032)
+(0.118 0.131 0.0032)
+(0.118 0.137 0.0032)
+(0.118 0.143 0.0032)
+(0.118 0.149 0.0032)
+(0.118 0.155 0.0032)
+(0.118 0.161 0.0032)
+(0.118 0.167 0.0032)
+(0.118 0.173 0.0032)
+(0.118 0.179 0.0032)
+(0.118 0.185 0.0032)
+(0.118 0.191 0.0032)
+(0.118 0.197 0.0032)
+(0.118 0.203 0.0032)
+(0.118 0.209 0.0032)
+(0.118 0.215 0.0032)
+(0.118 0.221 0.0032)
+(0.118 0.227 0.0032)
+(0.118 0.233 0.0032)
+(0.118 0.239 0.0032)
+(0.118 0.245 0.0032)
+(0.118 0.251 0.0032)
+(0.118 0.257 0.0032)
+(0.118 0.263 0.0032)
+(0.118 0.269 0.0032)
+(0.118 0.275 0.0032)
+(0.118 0.281 0.0032)
+(0.118 0.287 0.0032)
+(0.118 0.293 0.0032)
+(0.118 0.299 0.0032)
+(0.118 0.305 0.0032)
+(0.118 0.311 0.0032)
+(0.118 0.317 0.0032)
+(0.118 0.323 0.0032)
+(0.118 0.329 0.0032)
+(0.118 0.335 0.0032)
+(0.118 0.341 0.0032)
+(0.118 0.347 0.0032)
+(0.118 0.353 0.0032)
+(0.118 0.359 0.0032)
+(0.118 0.365 0.0032)
+(0.118 0.371 0.0032)
+(0.118 0.377 0.0032)
+(0.118 0.383 0.0032)
+(0.118 0.389 0.0032)
+(0.118 0.395 0.0032)
+(0.118 0.401 0.0032)
+(0.118 0.407 0.0032)
+(0.118 0.413 0.0032)
+(0.118 0.419 0.0032)
+(0.118 0.425 0.0032)
+(0.118 0.431 0.0032)
+(0.118 0.437 0.0032)
+(0.118 0.443 0.0032)
+(0.118 0.449 0.0032)
+(0.118 0.455 0.0032)
+(0.118 0.461 0.0032)
+(0.118 0.467 0.0032)
+(0.118 0.473 0.0032)
+(0.118 0.479 0.0032)
+(0.118 0.485 0.0032)
+(0.118 0.491 0.0032)
+(0.118 0.497 0.0032)
+(0.124 0.077 0.0032)
+(0.124 0.083 0.0032)
+(0.124 0.089 0.0032)
+(0.124 0.095 0.0032)
+(0.124 0.101 0.0032)
+(0.124 0.107 0.0032)
+(0.124 0.113 0.0032)
+(0.124 0.119 0.0032)
+(0.124 0.125 0.0032)
+(0.124 0.131 0.0032)
+(0.124 0.137 0.0032)
+(0.124 0.143 0.0032)
+(0.124 0.149 0.0032)
+(0.124 0.155 0.0032)
+(0.124 0.161 0.0032)
+(0.124 0.167 0.0032)
+(0.124 0.173 0.0032)
+(0.124 0.179 0.0032)
+(0.124 0.185 0.0032)
+(0.124 0.191 0.0032)
+(0.124 0.197 0.0032)
+(0.124 0.203 0.0032)
+(0.124 0.209 0.0032)
+(0.124 0.215 0.0032)
+(0.124 0.221 0.0032)
+(0.124 0.227 0.0032)
+(0.124 0.233 0.0032)
+(0.124 0.239 0.0032)
+(0.124 0.245 0.0032)
+(0.124 0.251 0.0032)
+(0.124 0.257 0.0032)
+(0.124 0.263 0.0032)
+(0.124 0.269 0.0032)
+(0.124 0.275 0.0032)
+(0.124 0.281 0.0032)
+(0.124 0.287 0.0032)
+(0.124 0.293 0.0032)
+(0.124 0.299 0.0032)
+(0.124 0.305 0.0032)
+(0.124 0.311 0.0032)
+(0.124 0.317 0.0032)
+(0.124 0.323 0.0032)
+(0.124 0.329 0.0032)
+(0.124 0.335 0.0032)
+(0.124 0.341 0.0032)
+(0.124 0.347 0.0032)
+(0.124 0.353 0.0032)
+(0.124 0.359 0.0032)
+(0.124 0.365 0.0032)
+(0.124 0.371 0.0032)
+(0.124 0.377 0.0032)
+(0.124 0.383 0.0032)
+(0.124 0.389 0.0032)
+(0.124 0.395 0.0032)
+(0.124 0.401 0.0032)
+(0.124 0.407 0.0032)
+(0.124 0.413 0.0032)
+(0.124 0.419 0.0032)
+(0.124 0.425 0.0032)
+(0.124 0.431 0.0032)
+(0.124 0.437 0.0032)
+(0.124 0.443 0.0032)
+(0.124 0.449 0.0032)
+(0.124 0.455 0.0032)
+(0.124 0.461 0.0032)
+(0.124 0.467 0.0032)
+(0.124 0.473 0.0032)
+(0.124 0.479 0.0032)
+(0.124 0.485 0.0032)
+(0.124 0.491 0.0032)
+(0.124 0.497 0.0032)
+(0.13 0.077 0.0032)
+(0.13 0.083 0.0032)
+(0.13 0.089 0.0032)
+(0.13 0.095 0.0032)
+(0.13 0.101 0.0032)
+(0.13 0.107 0.0032)
+(0.13 0.113 0.0032)
+(0.13 0.119 0.0032)
+(0.13 0.125 0.0032)
+(0.13 0.131 0.0032)
+(0.13 0.137 0.0032)
+(0.13 0.143 0.0032)
+(0.13 0.149 0.0032)
+(0.13 0.155 0.0032)
+(0.13 0.161 0.0032)
+(0.13 0.167 0.0032)
+(0.13 0.173 0.0032)
+(0.13 0.179 0.0032)
+(0.13 0.185 0.0032)
+(0.13 0.191 0.0032)
+(0.13 0.197 0.0032)
+(0.13 0.203 0.0032)
+(0.13 0.209 0.0032)
+(0.13 0.215 0.0032)
+(0.13 0.221 0.0032)
+(0.13 0.227 0.0032)
+(0.13 0.233 0.0032)
+(0.13 0.239 0.0032)
+(0.13 0.245 0.0032)
+(0.13 0.251 0.0032)
+(0.13 0.257 0.0032)
+(0.13 0.263 0.0032)
+(0.13 0.269 0.0032)
+(0.13 0.275 0.0032)
+(0.13 0.281 0.0032)
+(0.13 0.287 0.0032)
+(0.13 0.293 0.0032)
+(0.13 0.299 0.0032)
+(0.13 0.305 0.0032)
+(0.13 0.311 0.0032)
+(0.13 0.317 0.0032)
+(0.13 0.323 0.0032)
+(0.13 0.329 0.0032)
+(0.13 0.335 0.0032)
+(0.13 0.341 0.0032)
+(0.13 0.347 0.0032)
+(0.13 0.353 0.0032)
+(0.13 0.359 0.0032)
+(0.13 0.365 0.0032)
+(0.13 0.371 0.0032)
+(0.13 0.377 0.0032)
+(0.13 0.383 0.0032)
+(0.13 0.389 0.0032)
+(0.13 0.395 0.0032)
+(0.13 0.401 0.0032)
+(0.13 0.407 0.0032)
+(0.13 0.413 0.0032)
+(0.13 0.419 0.0032)
+(0.13 0.425 0.0032)
+(0.13 0.431 0.0032)
+(0.13 0.437 0.0032)
+(0.13 0.443 0.0032)
+(0.13 0.449 0.0032)
+(0.13 0.455 0.0032)
+(0.13 0.461 0.0032)
+(0.13 0.467 0.0032)
+(0.13 0.473 0.0032)
+(0.13 0.479 0.0032)
+(0.13 0.485 0.0032)
+(0.13 0.491 0.0032)
+(0.13 0.497 0.0032)
+(0.136 0.077 0.0032)
+(0.136 0.083 0.0032)
+(0.136 0.089 0.0032)
+(0.136 0.095 0.0032)
+(0.136 0.101 0.0032)
+(0.136 0.107 0.0032)
+(0.136 0.113 0.0032)
+(0.136 0.119 0.0032)
+(0.136 0.125 0.0032)
+(0.136 0.131 0.0032)
+(0.136 0.137 0.0032)
+(0.136 0.143 0.0032)
+(0.136 0.149 0.0032)
+(0.136 0.155 0.0032)
+(0.136 0.161 0.0032)
+(0.136 0.167 0.0032)
+(0.136 0.173 0.0032)
+(0.136 0.179 0.0032)
+(0.136 0.185 0.0032)
+(0.136 0.191 0.0032)
+(0.136 0.197 0.0032)
+(0.136 0.203 0.0032)
+(0.136 0.209 0.0032)
+(0.136 0.215 0.0032)
+(0.136 0.221 0.0032)
+(0.136 0.227 0.0032)
+(0.136 0.233 0.0032)
+(0.136 0.239 0.0032)
+(0.136 0.245 0.0032)
+(0.136 0.251 0.0032)
+(0.136 0.257 0.0032)
+(0.136 0.263 0.0032)
+(0.136 0.269 0.0032)
+(0.136 0.275 0.0032)
+(0.136 0.281 0.0032)
+(0.136 0.287 0.0032)
+(0.136 0.293 0.0032)
+(0.136 0.299 0.0032)
+(0.136 0.305 0.0032)
+(0.136 0.311 0.0032)
+(0.136 0.317 0.0032)
+(0.136 0.323 0.0032)
+(0.136 0.329 0.0032)
+(0.136 0.335 0.0032)
+(0.136 0.341 0.0032)
+(0.136 0.347 0.0032)
+(0.136 0.353 0.0032)
+(0.136 0.359 0.0032)
+(0.136 0.365 0.0032)
+(0.136 0.371 0.0032)
+(0.136 0.377 0.0032)
+(0.136 0.383 0.0032)
+(0.136 0.389 0.0032)
+(0.136 0.395 0.0032)
+(0.136 0.401 0.0032)
+(0.136 0.407 0.0032)
+(0.136 0.413 0.0032)
+(0.136 0.419 0.0032)
+(0.136 0.425 0.0032)
+(0.136 0.431 0.0032)
+(0.136 0.437 0.0032)
+(0.136 0.443 0.0032)
+(0.136 0.449 0.0032)
+(0.136 0.455 0.0032)
+(0.136 0.461 0.0032)
+(0.136 0.467 0.0032)
+(0.136 0.473 0.0032)
+(0.136 0.479 0.0032)
+(0.136 0.485 0.0032)
+(0.136 0.491 0.0032)
+(0.136 0.497 0.0032)
+(0.142 0.077 0.0032)
+(0.142 0.083 0.0032)
+(0.142 0.089 0.0032)
+(0.142 0.095 0.0032)
+(0.142 0.101 0.0032)
+(0.142 0.107 0.0032)
+(0.142 0.113 0.0032)
+(0.142 0.119 0.0032)
+(0.142 0.125 0.0032)
+(0.142 0.131 0.0032)
+(0.142 0.137 0.0032)
+(0.142 0.143 0.0032)
+(0.142 0.149 0.0032)
+(0.142 0.155 0.0032)
+(0.142 0.161 0.0032)
+(0.142 0.167 0.0032)
+(0.142 0.173 0.0032)
+(0.142 0.179 0.0032)
+(0.142 0.185 0.0032)
+(0.142 0.191 0.0032)
+(0.142 0.197 0.0032)
+(0.142 0.203 0.0032)
+(0.142 0.209 0.0032)
+(0.142 0.215 0.0032)
+(0.142 0.221 0.0032)
+(0.142 0.227 0.0032)
+(0.142 0.233 0.0032)
+(0.142 0.239 0.0032)
+(0.142 0.245 0.0032)
+(0.142 0.251 0.0032)
+(0.142 0.257 0.0032)
+(0.142 0.263 0.0032)
+(0.142 0.269 0.0032)
+(0.142 0.275 0.0032)
+(0.142 0.281 0.0032)
+(0.142 0.287 0.0032)
+(0.142 0.293 0.0032)
+(0.142 0.299 0.0032)
+(0.142 0.305 0.0032)
+(0.142 0.311 0.0032)
+(0.142 0.317 0.0032)
+(0.142 0.323 0.0032)
+(0.142 0.329 0.0032)
+(0.142 0.335 0.0032)
+(0.142 0.341 0.0032)
+(0.142 0.347 0.0032)
+(0.142 0.353 0.0032)
+(0.142 0.359 0.0032)
+(0.142 0.365 0.0032)
+(0.142 0.371 0.0032)
+(0.142 0.377 0.0032)
+(0.142 0.383 0.0032)
+(0.142 0.389 0.0032)
+(0.142 0.395 0.0032)
+(0.142 0.401 0.0032)
+(0.142 0.407 0.0032)
+(0.142 0.413 0.0032)
+(0.142 0.419 0.0032)
+(0.142 0.425 0.0032)
+(0.142 0.431 0.0032)
+(0.142 0.437 0.0032)
+(0.142 0.443 0.0032)
+(0.142 0.449 0.0032)
+(0.142 0.455 0.0032)
+(0.142 0.461 0.0032)
+(0.142 0.467 0.0032)
+(0.142 0.473 0.0032)
+(0.142 0.479 0.0032)
+(0.142 0.485 0.0032)
+(0.142 0.491 0.0032)
+(0.142 0.497 0.0032)
+(0.148 0.077 0.0032)
+(0.148 0.083 0.0032)
+(0.148 0.089 0.0032)
+(0.148 0.095 0.0032)
+(0.148 0.101 0.0032)
+(0.148 0.107 0.0032)
+(0.148 0.113 0.0032)
+(0.148 0.119 0.0032)
+(0.148 0.125 0.0032)
+(0.148 0.131 0.0032)
+(0.148 0.137 0.0032)
+(0.148 0.143 0.0032)
+(0.148 0.149 0.0032)
+(0.148 0.155 0.0032)
+(0.148 0.161 0.0032)
+(0.148 0.167 0.0032)
+(0.148 0.173 0.0032)
+(0.148 0.179 0.0032)
+(0.148 0.185 0.0032)
+(0.148 0.191 0.0032)
+(0.148 0.197 0.0032)
+(0.148 0.203 0.0032)
+(0.148 0.209 0.0032)
+(0.148 0.215 0.0032)
+(0.148 0.221 0.0032)
+(0.148 0.227 0.0032)
+(0.148 0.233 0.0032)
+(0.148 0.239 0.0032)
+(0.148 0.245 0.0032)
+(0.148 0.251 0.0032)
+(0.148 0.257 0.0032)
+(0.148 0.263 0.0032)
+(0.148 0.269 0.0032)
+(0.148 0.275 0.0032)
+(0.148 0.281 0.0032)
+(0.148 0.287 0.0032)
+(0.148 0.293 0.0032)
+(0.148 0.299 0.0032)
+(0.148 0.305 0.0032)
+(0.148 0.311 0.0032)
+(0.148 0.317 0.0032)
+(0.148 0.323 0.0032)
+(0.148 0.329 0.0032)
+(0.148 0.335 0.0032)
+(0.148 0.341 0.0032)
+(0.148 0.347 0.0032)
+(0.148 0.353 0.0032)
+(0.148 0.359 0.0032)
+(0.148 0.365 0.0032)
+(0.148 0.371 0.0032)
+(0.148 0.377 0.0032)
+(0.148 0.383 0.0032)
+(0.148 0.389 0.0032)
+(0.148 0.395 0.0032)
+(0.148 0.401 0.0032)
+(0.148 0.407 0.0032)
+(0.148 0.413 0.0032)
+(0.148 0.419 0.0032)
+(0.148 0.425 0.0032)
+(0.148 0.431 0.0032)
+(0.148 0.437 0.0032)
+(0.148 0.443 0.0032)
+(0.148 0.449 0.0032)
+(0.148 0.455 0.0032)
+(0.148 0.461 0.0032)
+(0.148 0.467 0.0032)
+(0.148 0.473 0.0032)
+(0.148 0.479 0.0032)
+(0.148 0.485 0.0032)
+(0.148 0.491 0.0032)
+(0.148 0.497 0.0032)
+(0.154 0.077 0.0032)
+(0.154 0.083 0.0032)
+(0.154 0.089 0.0032)
+(0.154 0.095 0.0032)
+(0.154 0.101 0.0032)
+(0.154 0.107 0.0032)
+(0.154 0.113 0.0032)
+(0.154 0.119 0.0032)
+(0.154 0.125 0.0032)
+(0.154 0.131 0.0032)
+(0.154 0.137 0.0032)
+(0.154 0.143 0.0032)
+(0.154 0.149 0.0032)
+(0.154 0.155 0.0032)
+(0.154 0.161 0.0032)
+(0.154 0.167 0.0032)
+(0.154 0.173 0.0032)
+(0.154 0.179 0.0032)
+(0.154 0.185 0.0032)
+(0.154 0.191 0.0032)
+(0.154 0.197 0.0032)
+(0.154 0.203 0.0032)
+(0.154 0.209 0.0032)
+(0.154 0.215 0.0032)
+(0.154 0.221 0.0032)
+(0.154 0.227 0.0032)
+(0.154 0.233 0.0032)
+(0.154 0.239 0.0032)
+(0.154 0.245 0.0032)
+(0.154 0.251 0.0032)
+(0.154 0.257 0.0032)
+(0.154 0.263 0.0032)
+(0.154 0.269 0.0032)
+(0.154 0.275 0.0032)
+(0.154 0.281 0.0032)
+(0.154 0.287 0.0032)
+(0.154 0.293 0.0032)
+(0.154 0.299 0.0032)
+(0.154 0.305 0.0032)
+(0.154 0.311 0.0032)
+(0.154 0.317 0.0032)
+(0.154 0.323 0.0032)
+(0.154 0.329 0.0032)
+(0.154 0.335 0.0032)
+(0.154 0.341 0.0032)
+(0.154 0.347 0.0032)
+(0.154 0.353 0.0032)
+(0.154 0.359 0.0032)
+(0.154 0.365 0.0032)
+(0.154 0.371 0.0032)
+(0.154 0.377 0.0032)
+(0.154 0.383 0.0032)
+(0.154 0.389 0.0032)
+(0.154 0.395 0.0032)
+(0.154 0.401 0.0032)
+(0.154 0.407 0.0032)
+(0.154 0.413 0.0032)
+(0.154 0.419 0.0032)
+(0.154 0.425 0.0032)
+(0.154 0.431 0.0032)
+(0.154 0.437 0.0032)
+(0.154 0.443 0.0032)
+(0.154 0.449 0.0032)
+(0.154 0.455 0.0032)
+(0.154 0.461 0.0032)
+(0.154 0.467 0.0032)
+(0.154 0.473 0.0032)
+(0.154 0.479 0.0032)
+(0.154 0.485 0.0032)
+(0.154 0.491 0.0032)
+(0.154 0.497 0.0032)
+(0.16 0.077 0.0032)
+(0.16 0.083 0.0032)
+(0.16 0.089 0.0032)
+(0.16 0.095 0.0032)
+(0.16 0.101 0.0032)
+(0.16 0.107 0.0032)
+(0.16 0.113 0.0032)
+(0.16 0.119 0.0032)
+(0.16 0.125 0.0032)
+(0.16 0.131 0.0032)
+(0.16 0.137 0.0032)
+(0.16 0.143 0.0032)
+(0.16 0.149 0.0032)
+(0.16 0.155 0.0032)
+(0.16 0.161 0.0032)
+(0.16 0.167 0.0032)
+(0.16 0.173 0.0032)
+(0.16 0.179 0.0032)
+(0.16 0.185 0.0032)
+(0.16 0.191 0.0032)
+(0.16 0.197 0.0032)
+(0.16 0.203 0.0032)
+(0.16 0.209 0.0032)
+(0.16 0.215 0.0032)
+(0.16 0.221 0.0032)
+(0.16 0.227 0.0032)
+(0.16 0.233 0.0032)
+(0.16 0.239 0.0032)
+(0.16 0.245 0.0032)
+(0.16 0.251 0.0032)
+(0.16 0.257 0.0032)
+(0.16 0.263 0.0032)
+(0.16 0.269 0.0032)
+(0.16 0.275 0.0032)
+(0.16 0.281 0.0032)
+(0.16 0.287 0.0032)
+(0.16 0.293 0.0032)
+(0.16 0.299 0.0032)
+(0.16 0.305 0.0032)
+(0.16 0.311 0.0032)
+(0.16 0.317 0.0032)
+(0.16 0.323 0.0032)
+(0.16 0.329 0.0032)
+(0.16 0.335 0.0032)
+(0.16 0.341 0.0032)
+(0.16 0.347 0.0032)
+(0.16 0.353 0.0032)
+(0.16 0.359 0.0032)
+(0.16 0.365 0.0032)
+(0.16 0.371 0.0032)
+(0.16 0.377 0.0032)
+(0.16 0.383 0.0032)
+(0.16 0.389 0.0032)
+(0.16 0.395 0.0032)
+(0.16 0.401 0.0032)
+(0.16 0.407 0.0032)
+(0.16 0.413 0.0032)
+(0.16 0.419 0.0032)
+(0.16 0.425 0.0032)
+(0.16 0.431 0.0032)
+(0.16 0.437 0.0032)
+(0.16 0.443 0.0032)
+(0.16 0.449 0.0032)
+(0.16 0.455 0.0032)
+(0.16 0.461 0.0032)
+(0.16 0.467 0.0032)
+(0.16 0.473 0.0032)
+(0.16 0.479 0.0032)
+(0.16 0.485 0.0032)
+(0.16 0.491 0.0032)
+(0.16 0.497 0.0032)
+(0.166 0.077 0.0032)
+(0.166 0.083 0.0032)
+(0.166 0.089 0.0032)
+(0.166 0.095 0.0032)
+(0.166 0.101 0.0032)
+(0.166 0.107 0.0032)
+(0.166 0.113 0.0032)
+(0.166 0.119 0.0032)
+(0.166 0.125 0.0032)
+(0.166 0.131 0.0032)
+(0.166 0.137 0.0032)
+(0.166 0.143 0.0032)
+(0.166 0.149 0.0032)
+(0.166 0.155 0.0032)
+(0.166 0.161 0.0032)
+(0.166 0.167 0.0032)
+(0.166 0.173 0.0032)
+(0.166 0.179 0.0032)
+(0.166 0.185 0.0032)
+(0.166 0.191 0.0032)
+(0.166 0.197 0.0032)
+(0.166 0.203 0.0032)
+(0.166 0.209 0.0032)
+(0.166 0.215 0.0032)
+(0.166 0.221 0.0032)
+(0.166 0.227 0.0032)
+(0.166 0.233 0.0032)
+(0.166 0.239 0.0032)
+(0.166 0.245 0.0032)
+(0.166 0.251 0.0032)
+(0.166 0.257 0.0032)
+(0.166 0.263 0.0032)
+(0.166 0.269 0.0032)
+(0.166 0.275 0.0032)
+(0.166 0.281 0.0032)
+(0.166 0.287 0.0032)
+(0.166 0.293 0.0032)
+(0.166 0.299 0.0032)
+(0.166 0.305 0.0032)
+(0.166 0.311 0.0032)
+(0.166 0.317 0.0032)
+(0.166 0.323 0.0032)
+(0.166 0.329 0.0032)
+(0.166 0.335 0.0032)
+(0.166 0.341 0.0032)
+(0.166 0.347 0.0032)
+(0.166 0.353 0.0032)
+(0.166 0.359 0.0032)
+(0.166 0.365 0.0032)
+(0.166 0.371 0.0032)
+(0.166 0.377 0.0032)
+(0.166 0.383 0.0032)
+(0.166 0.389 0.0032)
+(0.166 0.395 0.0032)
+(0.166 0.401 0.0032)
+(0.166 0.407 0.0032)
+(0.166 0.413 0.0032)
+(0.166 0.419 0.0032)
+(0.166 0.425 0.0032)
+(0.166 0.431 0.0032)
+(0.166 0.437 0.0032)
+(0.166 0.443 0.0032)
+(0.166 0.449 0.0032)
+(0.166 0.455 0.0032)
+(0.166 0.461 0.0032)
+(0.166 0.467 0.0032)
+(0.166 0.473 0.0032)
+(0.166 0.479 0.0032)
+(0.166 0.485 0.0032)
+(0.166 0.491 0.0032)
+(0.166 0.497 0.0032)
+(0.172 0.077 0.0032)
+(0.172 0.083 0.0032)
+(0.172 0.089 0.0032)
+(0.172 0.095 0.0032)
+(0.172 0.101 0.0032)
+(0.172 0.107 0.0032)
+(0.172 0.113 0.0032)
+(0.172 0.119 0.0032)
+(0.172 0.125 0.0032)
+(0.172 0.131 0.0032)
+(0.172 0.137 0.0032)
+(0.172 0.143 0.0032)
+(0.172 0.149 0.0032)
+(0.172 0.155 0.0032)
+(0.172 0.161 0.0032)
+(0.172 0.167 0.0032)
+(0.172 0.173 0.0032)
+(0.172 0.179 0.0032)
+(0.172 0.185 0.0032)
+(0.172 0.191 0.0032)
+(0.172 0.197 0.0032)
+(0.172 0.203 0.0032)
+(0.172 0.209 0.0032)
+(0.172 0.215 0.0032)
+(0.172 0.221 0.0032)
+(0.172 0.227 0.0032)
+(0.172 0.233 0.0032)
+(0.172 0.239 0.0032)
+(0.172 0.245 0.0032)
+(0.172 0.251 0.0032)
+(0.172 0.257 0.0032)
+(0.172 0.263 0.0032)
+(0.172 0.269 0.0032)
+(0.172 0.275 0.0032)
+(0.172 0.281 0.0032)
+(0.172 0.287 0.0032)
+(0.172 0.293 0.0032)
+(0.172 0.299 0.0032)
+(0.172 0.305 0.0032)
+(0.172 0.311 0.0032)
+(0.172 0.317 0.0032)
+(0.172 0.323 0.0032)
+(0.172 0.329 0.0032)
+(0.172 0.335 0.0032)
+(0.172 0.341 0.0032)
+(0.172 0.347 0.0032)
+(0.172 0.353 0.0032)
+(0.172 0.359 0.0032)
+(0.172 0.365 0.0032)
+(0.172 0.371 0.0032)
+(0.172 0.377 0.0032)
+(0.172 0.383 0.0032)
+(0.172 0.389 0.0032)
+(0.172 0.395 0.0032)
+(0.172 0.401 0.0032)
+(0.172 0.407 0.0032)
+(0.172 0.413 0.0032)
+(0.172 0.419 0.0032)
+(0.172 0.425 0.0032)
+(0.172 0.431 0.0032)
+(0.172 0.437 0.0032)
+(0.172 0.443 0.0032)
+(0.172 0.449 0.0032)
+(0.172 0.455 0.0032)
+(0.172 0.461 0.0032)
+(0.172 0.467 0.0032)
+(0.172 0.473 0.0032)
+(0.172 0.479 0.0032)
+(0.172 0.485 0.0032)
+(0.172 0.491 0.0032)
+(0.172 0.497 0.0032)
+(0.178 0.077 0.0032)
+(0.178 0.083 0.0032)
+(0.178 0.089 0.0032)
+(0.178 0.095 0.0032)
+(0.178 0.101 0.0032)
+(0.178 0.107 0.0032)
+(0.178 0.113 0.0032)
+(0.178 0.119 0.0032)
+(0.178 0.125 0.0032)
+(0.178 0.131 0.0032)
+(0.178 0.137 0.0032)
+(0.178 0.143 0.0032)
+(0.178 0.149 0.0032)
+(0.178 0.155 0.0032)
+(0.178 0.161 0.0032)
+(0.178 0.167 0.0032)
+(0.178 0.173 0.0032)
+(0.178 0.179 0.0032)
+(0.178 0.185 0.0032)
+(0.178 0.191 0.0032)
+(0.178 0.197 0.0032)
+(0.178 0.203 0.0032)
+(0.178 0.209 0.0032)
+(0.178 0.215 0.0032)
+(0.178 0.221 0.0032)
+(0.178 0.227 0.0032)
+(0.178 0.233 0.0032)
+(0.178 0.239 0.0032)
+(0.178 0.245 0.0032)
+(0.178 0.251 0.0032)
+(0.178 0.257 0.0032)
+(0.178 0.263 0.0032)
+(0.178 0.269 0.0032)
+(0.178 0.275 0.0032)
+(0.178 0.281 0.0032)
+(0.178 0.287 0.0032)
+(0.178 0.293 0.0032)
+(0.178 0.299 0.0032)
+(0.178 0.305 0.0032)
+(0.178 0.311 0.0032)
+(0.178 0.317 0.0032)
+(0.178 0.323 0.0032)
+(0.178 0.329 0.0032)
+(0.178 0.335 0.0032)
+(0.178 0.341 0.0032)
+(0.178 0.347 0.0032)
+(0.178 0.353 0.0032)
+(0.178 0.359 0.0032)
+(0.178 0.365 0.0032)
+(0.178 0.371 0.0032)
+(0.178 0.377 0.0032)
+(0.178 0.383 0.0032)
+(0.178 0.389 0.0032)
+(0.178 0.395 0.0032)
+(0.178 0.401 0.0032)
+(0.178 0.407 0.0032)
+(0.178 0.413 0.0032)
+(0.178 0.419 0.0032)
+(0.178 0.425 0.0032)
+(0.178 0.431 0.0032)
+(0.178 0.437 0.0032)
+(0.178 0.443 0.0032)
+(0.178 0.449 0.0032)
+(0.178 0.455 0.0032)
+(0.178 0.461 0.0032)
+(0.178 0.467 0.0032)
+(0.178 0.473 0.0032)
+(0.178 0.479 0.0032)
+(0.178 0.485 0.0032)
+(0.178 0.491 0.0032)
+(0.178 0.497 0.0032)
+(0.184 0.077 0.0032)
+(0.184 0.083 0.0032)
+(0.184 0.089 0.0032)
+(0.184 0.095 0.0032)
+(0.184 0.101 0.0032)
+(0.184 0.107 0.0032)
+(0.184 0.113 0.0032)
+(0.184 0.119 0.0032)
+(0.184 0.125 0.0032)
+(0.184 0.131 0.0032)
+(0.184 0.137 0.0032)
+(0.184 0.143 0.0032)
+(0.184 0.149 0.0032)
+(0.184 0.155 0.0032)
+(0.184 0.161 0.0032)
+(0.184 0.167 0.0032)
+(0.184 0.173 0.0032)
+(0.184 0.179 0.0032)
+(0.184 0.185 0.0032)
+(0.184 0.191 0.0032)
+(0.184 0.197 0.0032)
+(0.184 0.203 0.0032)
+(0.184 0.209 0.0032)
+(0.184 0.215 0.0032)
+(0.184 0.221 0.0032)
+(0.184 0.227 0.0032)
+(0.184 0.233 0.0032)
+(0.184 0.239 0.0032)
+(0.184 0.245 0.0032)
+(0.184 0.251 0.0032)
+(0.184 0.257 0.0032)
+(0.184 0.263 0.0032)
+(0.184 0.269 0.0032)
+(0.184 0.275 0.0032)
+(0.184 0.281 0.0032)
+(0.184 0.287 0.0032)
+(0.184 0.293 0.0032)
+(0.184 0.299 0.0032)
+(0.184 0.305 0.0032)
+(0.184 0.311 0.0032)
+(0.184 0.317 0.0032)
+(0.184 0.323 0.0032)
+(0.184 0.329 0.0032)
+(0.184 0.335 0.0032)
+(0.184 0.341 0.0032)
+(0.184 0.347 0.0032)
+(0.184 0.353 0.0032)
+(0.184 0.359 0.0032)
+(0.184 0.365 0.0032)
+(0.184 0.371 0.0032)
+(0.184 0.377 0.0032)
+(0.184 0.383 0.0032)
+(0.184 0.389 0.0032)
+(0.184 0.395 0.0032)
+(0.184 0.401 0.0032)
+(0.184 0.407 0.0032)
+(0.184 0.413 0.0032)
+(0.184 0.419 0.0032)
+(0.184 0.425 0.0032)
+(0.184 0.431 0.0032)
+(0.184 0.437 0.0032)
+(0.184 0.443 0.0032)
+(0.184 0.449 0.0032)
+(0.184 0.455 0.0032)
+(0.184 0.461 0.0032)
+(0.184 0.467 0.0032)
+(0.184 0.473 0.0032)
+(0.184 0.479 0.0032)
+(0.184 0.485 0.0032)
+(0.184 0.491 0.0032)
+(0.184 0.497 0.0032)
+(0.19 0.077 0.0032)
+(0.19 0.083 0.0032)
+(0.19 0.089 0.0032)
+(0.19 0.095 0.0032)
+(0.19 0.101 0.0032)
+(0.19 0.107 0.0032)
+(0.19 0.113 0.0032)
+(0.19 0.119 0.0032)
+(0.19 0.125 0.0032)
+(0.19 0.131 0.0032)
+(0.19 0.137 0.0032)
+(0.19 0.143 0.0032)
+(0.19 0.149 0.0032)
+(0.19 0.155 0.0032)
+(0.19 0.161 0.0032)
+(0.19 0.167 0.0032)
+(0.19 0.173 0.0032)
+(0.19 0.179 0.0032)
+(0.19 0.185 0.0032)
+(0.19 0.191 0.0032)
+(0.19 0.197 0.0032)
+(0.19 0.203 0.0032)
+(0.19 0.209 0.0032)
+(0.19 0.215 0.0032)
+(0.19 0.221 0.0032)
+(0.19 0.227 0.0032)
+(0.19 0.233 0.0032)
+(0.19 0.239 0.0032)
+(0.19 0.245 0.0032)
+(0.19 0.251 0.0032)
+(0.19 0.257 0.0032)
+(0.19 0.263 0.0032)
+(0.19 0.269 0.0032)
+(0.19 0.275 0.0032)
+(0.19 0.281 0.0032)
+(0.19 0.287 0.0032)
+(0.19 0.293 0.0032)
+(0.19 0.299 0.0032)
+(0.19 0.305 0.0032)
+(0.19 0.311 0.0032)
+(0.19 0.317 0.0032)
+(0.19 0.323 0.0032)
+(0.19 0.329 0.0032)
+(0.19 0.335 0.0032)
+(0.19 0.341 0.0032)
+(0.19 0.347 0.0032)
+(0.19 0.353 0.0032)
+(0.19 0.359 0.0032)
+(0.19 0.365 0.0032)
+(0.19 0.371 0.0032)
+(0.19 0.377 0.0032)
+(0.19 0.383 0.0032)
+(0.19 0.389 0.0032)
+(0.19 0.395 0.0032)
+(0.19 0.401 0.0032)
+(0.19 0.407 0.0032)
+(0.19 0.413 0.0032)
+(0.19 0.419 0.0032)
+(0.19 0.425 0.0032)
+(0.19 0.431 0.0032)
+(0.19 0.437 0.0032)
+(0.19 0.443 0.0032)
+(0.19 0.449 0.0032)
+(0.19 0.455 0.0032)
+(0.19 0.461 0.0032)
+(0.19 0.467 0.0032)
+(0.19 0.473 0.0032)
+(0.19 0.479 0.0032)
+(0.19 0.485 0.0032)
+(0.19 0.491 0.0032)
+(0.19 0.497 0.0032)
+(0.196 0.077 0.0032)
+(0.196 0.083 0.0032)
+(0.196 0.089 0.0032)
+(0.196 0.095 0.0032)
+(0.196 0.101 0.0032)
+(0.196 0.107 0.0032)
+(0.196 0.113 0.0032)
+(0.196 0.119 0.0032)
+(0.196 0.125 0.0032)
+(0.196 0.131 0.0032)
+(0.196 0.137 0.0032)
+(0.196 0.143 0.0032)
+(0.196 0.149 0.0032)
+(0.196 0.155 0.0032)
+(0.196 0.161 0.0032)
+(0.196 0.167 0.0032)
+(0.196 0.173 0.0032)
+(0.196 0.179 0.0032)
+(0.196 0.185 0.0032)
+(0.196 0.191 0.0032)
+(0.196 0.197 0.0032)
+(0.196 0.203 0.0032)
+(0.196 0.209 0.0032)
+(0.196 0.215 0.0032)
+(0.196 0.221 0.0032)
+(0.196 0.227 0.0032)
+(0.196 0.233 0.0032)
+(0.196 0.239 0.0032)
+(0.196 0.245 0.0032)
+(0.196 0.251 0.0032)
+(0.196 0.257 0.0032)
+(0.196 0.263 0.0032)
+(0.196 0.269 0.0032)
+(0.196 0.275 0.0032)
+(0.196 0.281 0.0032)
+(0.196 0.287 0.0032)
+(0.196 0.293 0.0032)
+(0.196 0.299 0.0032)
+(0.196 0.305 0.0032)
+(0.196 0.311 0.0032)
+(0.196 0.317 0.0032)
+(0.196 0.323 0.0032)
+(0.196 0.329 0.0032)
+(0.196 0.335 0.0032)
+(0.196 0.341 0.0032)
+(0.196 0.347 0.0032)
+(0.196 0.353 0.0032)
+(0.196 0.359 0.0032)
+(0.196 0.365 0.0032)
+(0.196 0.371 0.0032)
+(0.196 0.377 0.0032)
+(0.196 0.383 0.0032)
+(0.196 0.389 0.0032)
+(0.196 0.395 0.0032)
+(0.196 0.401 0.0032)
+(0.196 0.407 0.0032)
+(0.196 0.413 0.0032)
+(0.196 0.419 0.0032)
+(0.196 0.425 0.0032)
+(0.196 0.431 0.0032)
+(0.196 0.437 0.0032)
+(0.196 0.443 0.0032)
+(0.196 0.449 0.0032)
+(0.196 0.455 0.0032)
+(0.196 0.461 0.0032)
+(0.196 0.467 0.0032)
+(0.196 0.473 0.0032)
+(0.196 0.479 0.0032)
+(0.196 0.485 0.0032)
+(0.196 0.491 0.0032)
+(0.196 0.497 0.0032)
+(0.202 0.077 0.0032)
+(0.202 0.083 0.0032)
+(0.202 0.089 0.0032)
+(0.202 0.095 0.0032)
+(0.202 0.101 0.0032)
+(0.202 0.107 0.0032)
+(0.202 0.113 0.0032)
+(0.202 0.119 0.0032)
+(0.202 0.125 0.0032)
+(0.202 0.131 0.0032)
+(0.202 0.137 0.0032)
+(0.202 0.143 0.0032)
+(0.202 0.149 0.0032)
+(0.202 0.155 0.0032)
+(0.202 0.161 0.0032)
+(0.202 0.167 0.0032)
+(0.202 0.173 0.0032)
+(0.202 0.179 0.0032)
+(0.202 0.185 0.0032)
+(0.202 0.191 0.0032)
+(0.202 0.197 0.0032)
+(0.202 0.203 0.0032)
+(0.202 0.209 0.0032)
+(0.202 0.215 0.0032)
+(0.202 0.221 0.0032)
+(0.202 0.227 0.0032)
+(0.202 0.233 0.0032)
+(0.202 0.239 0.0032)
+(0.202 0.245 0.0032)
+(0.202 0.251 0.0032)
+(0.202 0.257 0.0032)
+(0.202 0.263 0.0032)
+(0.202 0.269 0.0032)
+(0.202 0.275 0.0032)
+(0.202 0.281 0.0032)
+(0.202 0.287 0.0032)
+(0.202 0.293 0.0032)
+(0.202 0.299 0.0032)
+(0.202 0.305 0.0032)
+(0.202 0.311 0.0032)
+(0.202 0.317 0.0032)
+(0.202 0.323 0.0032)
+(0.202 0.329 0.0032)
+(0.202 0.335 0.0032)
+(0.202 0.341 0.0032)
+(0.202 0.347 0.0032)
+(0.202 0.353 0.0032)
+(0.202 0.359 0.0032)
+(0.202 0.365 0.0032)
+(0.202 0.371 0.0032)
+(0.202 0.377 0.0032)
+(0.202 0.383 0.0032)
+(0.202 0.389 0.0032)
+(0.202 0.395 0.0032)
+(0.202 0.401 0.0032)
+(0.202 0.407 0.0032)
+(0.202 0.413 0.0032)
+(0.202 0.419 0.0032)
+(0.202 0.425 0.0032)
+(0.202 0.431 0.0032)
+(0.202 0.437 0.0032)
+(0.202 0.443 0.0032)
+(0.202 0.449 0.0032)
+(0.202 0.455 0.0032)
+(0.202 0.461 0.0032)
+(0.202 0.467 0.0032)
+(0.202 0.473 0.0032)
+(0.202 0.479 0.0032)
+(0.202 0.485 0.0032)
+(0.202 0.491 0.0032)
+(0.202 0.497 0.0032)
+(0.208 0.077 0.0032)
+(0.208 0.083 0.0032)
+(0.208 0.089 0.0032)
+(0.208 0.095 0.0032)
+(0.208 0.101 0.0032)
+(0.208 0.107 0.0032)
+(0.208 0.113 0.0032)
+(0.208 0.119 0.0032)
+(0.208 0.125 0.0032)
+(0.208 0.131 0.0032)
+(0.208 0.137 0.0032)
+(0.208 0.143 0.0032)
+(0.208 0.149 0.0032)
+(0.208 0.155 0.0032)
+(0.208 0.161 0.0032)
+(0.208 0.167 0.0032)
+(0.208 0.173 0.0032)
+(0.208 0.179 0.0032)
+(0.208 0.185 0.0032)
+(0.208 0.191 0.0032)
+(0.208 0.197 0.0032)
+(0.208 0.203 0.0032)
+(0.208 0.209 0.0032)
+(0.208 0.215 0.0032)
+(0.208 0.221 0.0032)
+(0.208 0.227 0.0032)
+(0.208 0.233 0.0032)
+(0.208 0.239 0.0032)
+(0.208 0.245 0.0032)
+(0.208 0.251 0.0032)
+(0.208 0.257 0.0032)
+(0.208 0.263 0.0032)
+(0.208 0.269 0.0032)
+(0.208 0.275 0.0032)
+(0.208 0.281 0.0032)
+(0.208 0.287 0.0032)
+(0.208 0.293 0.0032)
+(0.208 0.299 0.0032)
+(0.208 0.305 0.0032)
+(0.208 0.311 0.0032)
+(0.208 0.317 0.0032)
+(0.208 0.323 0.0032)
+(0.208 0.329 0.0032)
+(0.208 0.335 0.0032)
+(0.208 0.341 0.0032)
+(0.208 0.347 0.0032)
+(0.208 0.353 0.0032)
+(0.208 0.359 0.0032)
+(0.208 0.365 0.0032)
+(0.208 0.371 0.0032)
+(0.208 0.377 0.0032)
+(0.208 0.383 0.0032)
+(0.208 0.389 0.0032)
+(0.208 0.395 0.0032)
+(0.208 0.401 0.0032)
+(0.208 0.407 0.0032)
+(0.208 0.413 0.0032)
+(0.208 0.419 0.0032)
+(0.208 0.425 0.0032)
+(0.208 0.431 0.0032)
+(0.208 0.437 0.0032)
+(0.208 0.443 0.0032)
+(0.208 0.449 0.0032)
+(0.208 0.455 0.0032)
+(0.208 0.461 0.0032)
+(0.208 0.467 0.0032)
+(0.208 0.473 0.0032)
+(0.208 0.479 0.0032)
+(0.208 0.485 0.0032)
+(0.208 0.491 0.0032)
+(0.208 0.497 0.0032)
+(0.214 0.077 0.0032)
+(0.214 0.083 0.0032)
+(0.214 0.089 0.0032)
+(0.214 0.095 0.0032)
+(0.214 0.101 0.0032)
+(0.214 0.107 0.0032)
+(0.214 0.113 0.0032)
+(0.214 0.119 0.0032)
+(0.214 0.125 0.0032)
+(0.214 0.131 0.0032)
+(0.214 0.137 0.0032)
+(0.214 0.143 0.0032)
+(0.214 0.149 0.0032)
+(0.214 0.155 0.0032)
+(0.214 0.161 0.0032)
+(0.214 0.167 0.0032)
+(0.214 0.173 0.0032)
+(0.214 0.179 0.0032)
+(0.214 0.185 0.0032)
+(0.214 0.191 0.0032)
+(0.214 0.197 0.0032)
+(0.214 0.203 0.0032)
+(0.214 0.209 0.0032)
+(0.214 0.215 0.0032)
+(0.214 0.221 0.0032)
+(0.214 0.227 0.0032)
+(0.214 0.233 0.0032)
+(0.214 0.239 0.0032)
+(0.214 0.245 0.0032)
+(0.214 0.251 0.0032)
+(0.214 0.257 0.0032)
+(0.214 0.263 0.0032)
+(0.214 0.269 0.0032)
+(0.214 0.275 0.0032)
+(0.214 0.281 0.0032)
+(0.214 0.287 0.0032)
+(0.214 0.293 0.0032)
+(0.214 0.299 0.0032)
+(0.214 0.305 0.0032)
+(0.214 0.311 0.0032)
+(0.214 0.317 0.0032)
+(0.214 0.323 0.0032)
+(0.214 0.329 0.0032)
+(0.214 0.335 0.0032)
+(0.214 0.341 0.0032)
+(0.214 0.347 0.0032)
+(0.214 0.353 0.0032)
+(0.214 0.359 0.0032)
+(0.214 0.365 0.0032)
+(0.214 0.371 0.0032)
+(0.214 0.377 0.0032)
+(0.214 0.383 0.0032)
+(0.214 0.389 0.0032)
+(0.214 0.395 0.0032)
+(0.214 0.401 0.0032)
+(0.214 0.407 0.0032)
+(0.214 0.413 0.0032)
+(0.214 0.419 0.0032)
+(0.214 0.425 0.0032)
+(0.214 0.431 0.0032)
+(0.214 0.437 0.0032)
+(0.214 0.443 0.0032)
+(0.214 0.449 0.0032)
+(0.214 0.455 0.0032)
+(0.214 0.461 0.0032)
+(0.214 0.467 0.0032)
+(0.214 0.473 0.0032)
+(0.214 0.479 0.0032)
+(0.214 0.485 0.0032)
+(0.214 0.491 0.0032)
+(0.214 0.497 0.0032)
+(0.22 0.077 0.0032)
+(0.22 0.083 0.0032)
+(0.22 0.089 0.0032)
+(0.22 0.095 0.0032)
+(0.22 0.101 0.0032)
+(0.22 0.107 0.0032)
+(0.22 0.113 0.0032)
+(0.22 0.119 0.0032)
+(0.22 0.125 0.0032)
+(0.22 0.131 0.0032)
+(0.22 0.137 0.0032)
+(0.22 0.143 0.0032)
+(0.22 0.149 0.0032)
+(0.22 0.155 0.0032)
+(0.22 0.161 0.0032)
+(0.22 0.167 0.0032)
+(0.22 0.173 0.0032)
+(0.22 0.179 0.0032)
+(0.22 0.185 0.0032)
+(0.22 0.191 0.0032)
+(0.22 0.197 0.0032)
+(0.22 0.203 0.0032)
+(0.22 0.209 0.0032)
+(0.22 0.215 0.0032)
+(0.22 0.221 0.0032)
+(0.22 0.227 0.0032)
+(0.22 0.233 0.0032)
+(0.22 0.239 0.0032)
+(0.22 0.245 0.0032)
+(0.22 0.251 0.0032)
+(0.22 0.257 0.0032)
+(0.22 0.263 0.0032)
+(0.22 0.269 0.0032)
+(0.22 0.275 0.0032)
+(0.22 0.281 0.0032)
+(0.22 0.287 0.0032)
+(0.22 0.293 0.0032)
+(0.22 0.299 0.0032)
+(0.22 0.305 0.0032)
+(0.22 0.311 0.0032)
+(0.22 0.317 0.0032)
+(0.22 0.323 0.0032)
+(0.22 0.329 0.0032)
+(0.22 0.335 0.0032)
+(0.22 0.341 0.0032)
+(0.22 0.347 0.0032)
+(0.22 0.353 0.0032)
+(0.22 0.359 0.0032)
+(0.22 0.365 0.0032)
+(0.22 0.371 0.0032)
+(0.22 0.377 0.0032)
+(0.22 0.383 0.0032)
+(0.22 0.389 0.0032)
+(0.22 0.395 0.0032)
+(0.22 0.401 0.0032)
+(0.22 0.407 0.0032)
+(0.22 0.413 0.0032)
+(0.22 0.419 0.0032)
+(0.22 0.425 0.0032)
+(0.22 0.431 0.0032)
+(0.22 0.437 0.0032)
+(0.22 0.443 0.0032)
+(0.22 0.449 0.0032)
+(0.22 0.455 0.0032)
+(0.22 0.461 0.0032)
+(0.22 0.467 0.0032)
+(0.22 0.473 0.0032)
+(0.22 0.479 0.0032)
+(0.22 0.485 0.0032)
+(0.22 0.491 0.0032)
+(0.22 0.497 0.0032)
+(0.226 0.077 0.0032)
+(0.226 0.083 0.0032)
+(0.226 0.089 0.0032)
+(0.226 0.095 0.0032)
+(0.226 0.101 0.0032)
+(0.226 0.107 0.0032)
+(0.226 0.113 0.0032)
+(0.226 0.119 0.0032)
+(0.226 0.125 0.0032)
+(0.226 0.131 0.0032)
+(0.226 0.137 0.0032)
+(0.226 0.143 0.0032)
+(0.226 0.149 0.0032)
+(0.226 0.155 0.0032)
+(0.226 0.161 0.0032)
+(0.226 0.167 0.0032)
+(0.226 0.173 0.0032)
+(0.226 0.179 0.0032)
+(0.226 0.185 0.0032)
+(0.226 0.191 0.0032)
+(0.226 0.197 0.0032)
+(0.226 0.203 0.0032)
+(0.226 0.209 0.0032)
+(0.226 0.215 0.0032)
+(0.226 0.221 0.0032)
+(0.226 0.227 0.0032)
+(0.226 0.233 0.0032)
+(0.226 0.239 0.0032)
+(0.226 0.245 0.0032)
+(0.226 0.251 0.0032)
+(0.226 0.257 0.0032)
+(0.226 0.263 0.0032)
+(0.226 0.269 0.0032)
+(0.226 0.275 0.0032)
+(0.226 0.281 0.0032)
+(0.226 0.287 0.0032)
+(0.226 0.293 0.0032)
+(0.226 0.299 0.0032)
+(0.226 0.305 0.0032)
+(0.226 0.311 0.0032)
+(0.226 0.317 0.0032)
+(0.226 0.323 0.0032)
+(0.226 0.329 0.0032)
+(0.226 0.335 0.0032)
+(0.226 0.341 0.0032)
+(0.226 0.347 0.0032)
+(0.226 0.353 0.0032)
+(0.226 0.359 0.0032)
+(0.226 0.365 0.0032)
+(0.226 0.371 0.0032)
+(0.226 0.377 0.0032)
+(0.226 0.383 0.0032)
+(0.226 0.389 0.0032)
+(0.226 0.395 0.0032)
+(0.226 0.401 0.0032)
+(0.226 0.407 0.0032)
+(0.226 0.413 0.0032)
+(0.226 0.419 0.0032)
+(0.226 0.425 0.0032)
+(0.226 0.431 0.0032)
+(0.226 0.437 0.0032)
+(0.226 0.443 0.0032)
+(0.226 0.449 0.0032)
+(0.226 0.455 0.0032)
+(0.226 0.461 0.0032)
+(0.226 0.467 0.0032)
+(0.226 0.473 0.0032)
+(0.226 0.479 0.0032)
+(0.226 0.485 0.0032)
+(0.226 0.491 0.0032)
+(0.226 0.497 0.0032)
+(0.232 0.077 0.0032)
+(0.232 0.083 0.0032)
+(0.232 0.089 0.0032)
+(0.232 0.095 0.0032)
+(0.232 0.101 0.0032)
+(0.232 0.107 0.0032)
+(0.232 0.113 0.0032)
+(0.232 0.119 0.0032)
+(0.232 0.125 0.0032)
+(0.232 0.131 0.0032)
+(0.232 0.137 0.0032)
+(0.232 0.143 0.0032)
+(0.232 0.149 0.0032)
+(0.232 0.155 0.0032)
+(0.232 0.161 0.0032)
+(0.232 0.167 0.0032)
+(0.232 0.173 0.0032)
+(0.232 0.179 0.0032)
+(0.232 0.185 0.0032)
+(0.232 0.191 0.0032)
+(0.232 0.197 0.0032)
+(0.232 0.203 0.0032)
+(0.232 0.209 0.0032)
+(0.232 0.215 0.0032)
+(0.232 0.221 0.0032)
+(0.232 0.227 0.0032)
+(0.232 0.233 0.0032)
+(0.232 0.239 0.0032)
+(0.232 0.245 0.0032)
+(0.232 0.251 0.0032)
+(0.232 0.257 0.0032)
+(0.232 0.263 0.0032)
+(0.232 0.269 0.0032)
+(0.232 0.275 0.0032)
+(0.232 0.281 0.0032)
+(0.232 0.287 0.0032)
+(0.232 0.293 0.0032)
+(0.232 0.299 0.0032)
+(0.232 0.305 0.0032)
+(0.232 0.311 0.0032)
+(0.232 0.317 0.0032)
+(0.232 0.323 0.0032)
+(0.232 0.329 0.0032)
+(0.232 0.335 0.0032)
+(0.232 0.341 0.0032)
+(0.232 0.347 0.0032)
+(0.232 0.353 0.0032)
+(0.232 0.359 0.0032)
+(0.232 0.365 0.0032)
+(0.232 0.371 0.0032)
+(0.232 0.377 0.0032)
+(0.232 0.383 0.0032)
+(0.232 0.389 0.0032)
+(0.232 0.395 0.0032)
+(0.232 0.401 0.0032)
+(0.232 0.407 0.0032)
+(0.232 0.413 0.0032)
+(0.232 0.419 0.0032)
+(0.232 0.425 0.0032)
+(0.232 0.431 0.0032)
+(0.232 0.437 0.0032)
+(0.232 0.443 0.0032)
+(0.232 0.449 0.0032)
+(0.232 0.455 0.0032)
+(0.232 0.461 0.0032)
+(0.232 0.467 0.0032)
+(0.232 0.473 0.0032)
+(0.232 0.479 0.0032)
+(0.232 0.485 0.0032)
+(0.232 0.491 0.0032)
+(0.232 0.497 0.0032)
+(0.238 0.077 0.0032)
+(0.238 0.083 0.0032)
+(0.238 0.089 0.0032)
+(0.238 0.095 0.0032)
+(0.238 0.101 0.0032)
+(0.238 0.107 0.0032)
+(0.238 0.113 0.0032)
+(0.238 0.119 0.0032)
+(0.238 0.125 0.0032)
+(0.238 0.131 0.0032)
+(0.238 0.137 0.0032)
+(0.238 0.143 0.0032)
+(0.238 0.149 0.0032)
+(0.238 0.155 0.0032)
+(0.238 0.161 0.0032)
+(0.238 0.167 0.0032)
+(0.238 0.173 0.0032)
+(0.238 0.179 0.0032)
+(0.238 0.185 0.0032)
+(0.238 0.191 0.0032)
+(0.238 0.197 0.0032)
+(0.238 0.203 0.0032)
+(0.238 0.209 0.0032)
+(0.238 0.215 0.0032)
+(0.238 0.221 0.0032)
+(0.238 0.227 0.0032)
+(0.238 0.233 0.0032)
+(0.238 0.239 0.0032)
+(0.238 0.245 0.0032)
+(0.238 0.251 0.0032)
+(0.238 0.257 0.0032)
+(0.238 0.263 0.0032)
+(0.238 0.269 0.0032)
+(0.238 0.275 0.0032)
+(0.238 0.281 0.0032)
+(0.238 0.287 0.0032)
+(0.238 0.293 0.0032)
+(0.238 0.299 0.0032)
+(0.238 0.305 0.0032)
+(0.238 0.311 0.0032)
+(0.238 0.317 0.0032)
+(0.238 0.323 0.0032)
+(0.238 0.329 0.0032)
+(0.238 0.335 0.0032)
+(0.238 0.341 0.0032)
+(0.238 0.347 0.0032)
+(0.238 0.353 0.0032)
+(0.238 0.359 0.0032)
+(0.238 0.365 0.0032)
+(0.238 0.371 0.0032)
+(0.238 0.377 0.0032)
+(0.238 0.383 0.0032)
+(0.238 0.389 0.0032)
+(0.238 0.395 0.0032)
+(0.238 0.401 0.0032)
+(0.238 0.407 0.0032)
+(0.238 0.413 0.0032)
+(0.238 0.419 0.0032)
+(0.238 0.425 0.0032)
+(0.238 0.431 0.0032)
+(0.238 0.437 0.0032)
+(0.238 0.443 0.0032)
+(0.238 0.449 0.0032)
+(0.238 0.455 0.0032)
+(0.238 0.461 0.0032)
+(0.238 0.467 0.0032)
+(0.238 0.473 0.0032)
+(0.238 0.479 0.0032)
+(0.238 0.485 0.0032)
+(0.238 0.491 0.0032)
+(0.238 0.497 0.0032)
+(0.244 0.077 0.0032)
+(0.244 0.083 0.0032)
+(0.244 0.089 0.0032)
+(0.244 0.095 0.0032)
+(0.244 0.101 0.0032)
+(0.244 0.107 0.0032)
+(0.244 0.113 0.0032)
+(0.244 0.119 0.0032)
+(0.244 0.125 0.0032)
+(0.244 0.131 0.0032)
+(0.244 0.137 0.0032)
+(0.244 0.143 0.0032)
+(0.244 0.149 0.0032)
+(0.244 0.155 0.0032)
+(0.244 0.161 0.0032)
+(0.244 0.167 0.0032)
+(0.244 0.173 0.0032)
+(0.244 0.179 0.0032)
+(0.244 0.185 0.0032)
+(0.244 0.191 0.0032)
+(0.244 0.197 0.0032)
+(0.244 0.203 0.0032)
+(0.244 0.209 0.0032)
+(0.244 0.215 0.0032)
+(0.244 0.221 0.0032)
+(0.244 0.227 0.0032)
+(0.244 0.233 0.0032)
+(0.244 0.239 0.0032)
+(0.244 0.245 0.0032)
+(0.244 0.251 0.0032)
+(0.244 0.257 0.0032)
+(0.244 0.263 0.0032)
+(0.244 0.269 0.0032)
+(0.244 0.275 0.0032)
+(0.244 0.281 0.0032)
+(0.244 0.287 0.0032)
+(0.244 0.293 0.0032)
+(0.244 0.299 0.0032)
+(0.244 0.305 0.0032)
+(0.244 0.311 0.0032)
+(0.244 0.317 0.0032)
+(0.244 0.323 0.0032)
+(0.244 0.329 0.0032)
+(0.244 0.335 0.0032)
+(0.244 0.341 0.0032)
+(0.244 0.347 0.0032)
+(0.244 0.353 0.0032)
+(0.244 0.359 0.0032)
+(0.244 0.365 0.0032)
+(0.244 0.371 0.0032)
+(0.244 0.377 0.0032)
+(0.244 0.383 0.0032)
+(0.244 0.389 0.0032)
+(0.244 0.395 0.0032)
+(0.244 0.401 0.0032)
+(0.244 0.407 0.0032)
+(0.244 0.413 0.0032)
+(0.244 0.419 0.0032)
+(0.244 0.425 0.0032)
+(0.244 0.431 0.0032)
+(0.244 0.437 0.0032)
+(0.244 0.443 0.0032)
+(0.244 0.449 0.0032)
+(0.244 0.455 0.0032)
+(0.244 0.461 0.0032)
+(0.244 0.467 0.0032)
+(0.244 0.473 0.0032)
+(0.244 0.479 0.0032)
+(0.244 0.485 0.0032)
+(0.244 0.491 0.0032)
+(0.244 0.497 0.0032)
+(0.25 0.077 0.0032)
+(0.25 0.083 0.0032)
+(0.25 0.089 0.0032)
+(0.25 0.095 0.0032)
+(0.25 0.101 0.0032)
+(0.25 0.107 0.0032)
+(0.25 0.113 0.0032)
+(0.25 0.119 0.0032)
+(0.25 0.125 0.0032)
+(0.25 0.131 0.0032)
+(0.25 0.137 0.0032)
+(0.25 0.143 0.0032)
+(0.25 0.149 0.0032)
+(0.25 0.155 0.0032)
+(0.25 0.161 0.0032)
+(0.25 0.167 0.0032)
+(0.25 0.173 0.0032)
+(0.25 0.179 0.0032)
+(0.25 0.185 0.0032)
+(0.25 0.191 0.0032)
+(0.25 0.197 0.0032)
+(0.25 0.203 0.0032)
+(0.25 0.209 0.0032)
+(0.25 0.215 0.0032)
+(0.25 0.221 0.0032)
+(0.25 0.227 0.0032)
+(0.25 0.233 0.0032)
+(0.25 0.239 0.0032)
+(0.25 0.245 0.0032)
+(0.25 0.251 0.0032)
+(0.25 0.257 0.0032)
+(0.25 0.263 0.0032)
+(0.25 0.269 0.0032)
+(0.25 0.275 0.0032)
+(0.25 0.281 0.0032)
+(0.25 0.287 0.0032)
+(0.25 0.293 0.0032)
+(0.25 0.299 0.0032)
+(0.25 0.305 0.0032)
+(0.25 0.311 0.0032)
+(0.25 0.317 0.0032)
+(0.25 0.323 0.0032)
+(0.25 0.329 0.0032)
+(0.25 0.335 0.0032)
+(0.25 0.341 0.0032)
+(0.25 0.347 0.0032)
+(0.25 0.353 0.0032)
+(0.25 0.359 0.0032)
+(0.25 0.365 0.0032)
+(0.25 0.371 0.0032)
+(0.25 0.377 0.0032)
+(0.25 0.383 0.0032)
+(0.25 0.389 0.0032)
+(0.25 0.395 0.0032)
+(0.25 0.401 0.0032)
+(0.25 0.407 0.0032)
+(0.25 0.413 0.0032)
+(0.25 0.419 0.0032)
+(0.25 0.425 0.0032)
+(0.25 0.431 0.0032)
+(0.25 0.437 0.0032)
+(0.25 0.443 0.0032)
+(0.25 0.449 0.0032)
+(0.25 0.455 0.0032)
+(0.25 0.461 0.0032)
+(0.25 0.467 0.0032)
+(0.25 0.473 0.0032)
+(0.25 0.479 0.0032)
+(0.25 0.485 0.0032)
+(0.25 0.491 0.0032)
+(0.25 0.497 0.0032)
+(0.256 0.077 0.0032)
+(0.256 0.083 0.0032)
+(0.256 0.089 0.0032)
+(0.256 0.095 0.0032)
+(0.256 0.101 0.0032)
+(0.256 0.107 0.0032)
+(0.256 0.113 0.0032)
+(0.256 0.119 0.0032)
+(0.256 0.125 0.0032)
+(0.256 0.131 0.0032)
+(0.256 0.137 0.0032)
+(0.256 0.143 0.0032)
+(0.256 0.149 0.0032)
+(0.256 0.155 0.0032)
+(0.256 0.161 0.0032)
+(0.256 0.167 0.0032)
+(0.256 0.173 0.0032)
+(0.256 0.179 0.0032)
+(0.256 0.185 0.0032)
+(0.256 0.191 0.0032)
+(0.256 0.197 0.0032)
+(0.256 0.203 0.0032)
+(0.256 0.209 0.0032)
+(0.256 0.215 0.0032)
+(0.256 0.221 0.0032)
+(0.256 0.227 0.0032)
+(0.256 0.233 0.0032)
+(0.256 0.239 0.0032)
+(0.256 0.245 0.0032)
+(0.256 0.251 0.0032)
+(0.256 0.257 0.0032)
+(0.256 0.263 0.0032)
+(0.256 0.269 0.0032)
+(0.256 0.275 0.0032)
+(0.256 0.281 0.0032)
+(0.256 0.287 0.0032)
+(0.256 0.293 0.0032)
+(0.256 0.299 0.0032)
+(0.256 0.305 0.0032)
+(0.256 0.311 0.0032)
+(0.256 0.317 0.0032)
+(0.256 0.323 0.0032)
+(0.256 0.329 0.0032)
+(0.256 0.335 0.0032)
+(0.256 0.341 0.0032)
+(0.256 0.347 0.0032)
+(0.256 0.353 0.0032)
+(0.256 0.359 0.0032)
+(0.256 0.365 0.0032)
+(0.256 0.371 0.0032)
+(0.256 0.377 0.0032)
+(0.256 0.383 0.0032)
+(0.256 0.389 0.0032)
+(0.256 0.395 0.0032)
+(0.256 0.401 0.0032)
+(0.256 0.407 0.0032)
+(0.256 0.413 0.0032)
+(0.256 0.419 0.0032)
+(0.256 0.425 0.0032)
+(0.256 0.431 0.0032)
+(0.256 0.437 0.0032)
+(0.256 0.443 0.0032)
+(0.256 0.449 0.0032)
+(0.256 0.455 0.0032)
+(0.256 0.461 0.0032)
+(0.256 0.467 0.0032)
+(0.256 0.473 0.0032)
+(0.256 0.479 0.0032)
+(0.256 0.485 0.0032)
+(0.256 0.491 0.0032)
+(0.256 0.497 0.0032)
+(0.262 0.077 0.0032)
+(0.262 0.083 0.0032)
+(0.262 0.089 0.0032)
+(0.262 0.095 0.0032)
+(0.262 0.101 0.0032)
+(0.262 0.107 0.0032)
+(0.262 0.113 0.0032)
+(0.262 0.119 0.0032)
+(0.262 0.125 0.0032)
+(0.262 0.131 0.0032)
+(0.262 0.137 0.0032)
+(0.262 0.143 0.0032)
+(0.262 0.149 0.0032)
+(0.262 0.155 0.0032)
+(0.262 0.161 0.0032)
+(0.262 0.167 0.0032)
+(0.262 0.173 0.0032)
+(0.262 0.179 0.0032)
+(0.262 0.185 0.0032)
+(0.262 0.191 0.0032)
+(0.262 0.197 0.0032)
+(0.262 0.203 0.0032)
+(0.262 0.209 0.0032)
+(0.262 0.215 0.0032)
+(0.262 0.221 0.0032)
+(0.262 0.227 0.0032)
+(0.262 0.233 0.0032)
+(0.262 0.239 0.0032)
+(0.262 0.245 0.0032)
+(0.262 0.251 0.0032)
+(0.262 0.257 0.0032)
+(0.262 0.263 0.0032)
+(0.262 0.269 0.0032)
+(0.262 0.275 0.0032)
+(0.262 0.281 0.0032)
+(0.262 0.287 0.0032)
+(0.262 0.293 0.0032)
+(0.262 0.299 0.0032)
+(0.262 0.305 0.0032)
+(0.262 0.311 0.0032)
+(0.262 0.317 0.0032)
+(0.262 0.323 0.0032)
+(0.262 0.329 0.0032)
+(0.262 0.335 0.0032)
+(0.262 0.341 0.0032)
+(0.262 0.347 0.0032)
+(0.262 0.353 0.0032)
+(0.262 0.359 0.0032)
+(0.262 0.365 0.0032)
+(0.262 0.371 0.0032)
+(0.262 0.377 0.0032)
+(0.262 0.383 0.0032)
+(0.262 0.389 0.0032)
+(0.262 0.395 0.0032)
+(0.262 0.401 0.0032)
+(0.262 0.407 0.0032)
+(0.262 0.413 0.0032)
+(0.262 0.419 0.0032)
+(0.262 0.425 0.0032)
+(0.262 0.431 0.0032)
+(0.262 0.437 0.0032)
+(0.262 0.443 0.0032)
+(0.262 0.449 0.0032)
+(0.262 0.455 0.0032)
+(0.262 0.461 0.0032)
+(0.262 0.467 0.0032)
+(0.262 0.473 0.0032)
+(0.262 0.479 0.0032)
+(0.262 0.485 0.0032)
+(0.262 0.491 0.0032)
+(0.262 0.497 0.0032)
+(0.268 0.077 0.0032)
+(0.268 0.083 0.0032)
+(0.268 0.089 0.0032)
+(0.268 0.095 0.0032)
+(0.268 0.101 0.0032)
+(0.268 0.107 0.0032)
+(0.268 0.113 0.0032)
+(0.268 0.119 0.0032)
+(0.268 0.125 0.0032)
+(0.268 0.131 0.0032)
+(0.268 0.137 0.0032)
+(0.268 0.143 0.0032)
+(0.268 0.149 0.0032)
+(0.268 0.155 0.0032)
+(0.268 0.161 0.0032)
+(0.268 0.167 0.0032)
+(0.268 0.173 0.0032)
+(0.268 0.179 0.0032)
+(0.268 0.185 0.0032)
+(0.268 0.191 0.0032)
+(0.268 0.197 0.0032)
+(0.268 0.203 0.0032)
+(0.268 0.209 0.0032)
+(0.268 0.215 0.0032)
+(0.268 0.221 0.0032)
+(0.268 0.227 0.0032)
+(0.268 0.233 0.0032)
+(0.268 0.239 0.0032)
+(0.268 0.245 0.0032)
+(0.268 0.251 0.0032)
+(0.268 0.257 0.0032)
+(0.268 0.263 0.0032)
+(0.268 0.269 0.0032)
+(0.268 0.275 0.0032)
+(0.268 0.281 0.0032)
+(0.268 0.287 0.0032)
+(0.268 0.293 0.0032)
+(0.268 0.299 0.0032)
+(0.268 0.305 0.0032)
+(0.268 0.311 0.0032)
+(0.268 0.317 0.0032)
+(0.268 0.323 0.0032)
+(0.268 0.329 0.0032)
+(0.268 0.335 0.0032)
+(0.268 0.341 0.0032)
+(0.268 0.347 0.0032)
+(0.268 0.353 0.0032)
+(0.268 0.359 0.0032)
+(0.268 0.365 0.0032)
+(0.268 0.371 0.0032)
+(0.268 0.377 0.0032)
+(0.268 0.383 0.0032)
+(0.268 0.389 0.0032)
+(0.268 0.395 0.0032)
+(0.268 0.401 0.0032)
+(0.268 0.407 0.0032)
+(0.268 0.413 0.0032)
+(0.268 0.419 0.0032)
+(0.268 0.425 0.0032)
+(0.268 0.431 0.0032)
+(0.268 0.437 0.0032)
+(0.268 0.443 0.0032)
+(0.268 0.449 0.0032)
+(0.268 0.455 0.0032)
+(0.268 0.461 0.0032)
+(0.268 0.467 0.0032)
+(0.268 0.473 0.0032)
+(0.268 0.479 0.0032)
+(0.268 0.485 0.0032)
+(0.268 0.491 0.0032)
+(0.268 0.497 0.0032)
+(0.274 0.077 0.0032)
+(0.274 0.083 0.0032)
+(0.274 0.089 0.0032)
+(0.274 0.095 0.0032)
+(0.274 0.101 0.0032)
+(0.274 0.107 0.0032)
+(0.274 0.113 0.0032)
+(0.274 0.119 0.0032)
+(0.274 0.125 0.0032)
+(0.274 0.131 0.0032)
+(0.274 0.137 0.0032)
+(0.274 0.143 0.0032)
+(0.274 0.149 0.0032)
+(0.274 0.155 0.0032)
+(0.274 0.161 0.0032)
+(0.274 0.167 0.0032)
+(0.274 0.173 0.0032)
+(0.274 0.179 0.0032)
+(0.274 0.185 0.0032)
+(0.274 0.191 0.0032)
+(0.274 0.197 0.0032)
+(0.274 0.203 0.0032)
+(0.274 0.209 0.0032)
+(0.274 0.215 0.0032)
+(0.274 0.221 0.0032)
+(0.274 0.227 0.0032)
+(0.274 0.233 0.0032)
+(0.274 0.239 0.0032)
+(0.274 0.245 0.0032)
+(0.274 0.251 0.0032)
+(0.274 0.257 0.0032)
+(0.274 0.263 0.0032)
+(0.274 0.269 0.0032)
+(0.274 0.275 0.0032)
+(0.274 0.281 0.0032)
+(0.274 0.287 0.0032)
+(0.274 0.293 0.0032)
+(0.274 0.299 0.0032)
+(0.274 0.305 0.0032)
+(0.274 0.311 0.0032)
+(0.274 0.317 0.0032)
+(0.274 0.323 0.0032)
+(0.274 0.329 0.0032)
+(0.274 0.335 0.0032)
+(0.274 0.341 0.0032)
+(0.274 0.347 0.0032)
+(0.274 0.353 0.0032)
+(0.274 0.359 0.0032)
+(0.274 0.365 0.0032)
+(0.274 0.371 0.0032)
+(0.274 0.377 0.0032)
+(0.274 0.383 0.0032)
+(0.274 0.389 0.0032)
+(0.274 0.395 0.0032)
+(0.274 0.401 0.0032)
+(0.274 0.407 0.0032)
+(0.274 0.413 0.0032)
+(0.274 0.419 0.0032)
+(0.274 0.425 0.0032)
+(0.274 0.431 0.0032)
+(0.274 0.437 0.0032)
+(0.274 0.443 0.0032)
+(0.274 0.449 0.0032)
+(0.274 0.455 0.0032)
+(0.274 0.461 0.0032)
+(0.274 0.467 0.0032)
+(0.274 0.473 0.0032)
+(0.274 0.479 0.0032)
+(0.274 0.485 0.0032)
+(0.274 0.491 0.0032)
+(0.274 0.497 0.0032)
+(0.28 0.077 0.0032)
+(0.28 0.083 0.0032)
+(0.28 0.089 0.0032)
+(0.28 0.095 0.0032)
+(0.28 0.101 0.0032)
+(0.28 0.107 0.0032)
+(0.28 0.113 0.0032)
+(0.28 0.119 0.0032)
+(0.28 0.125 0.0032)
+(0.28 0.131 0.0032)
+(0.28 0.137 0.0032)
+(0.28 0.143 0.0032)
+(0.28 0.149 0.0032)
+(0.28 0.155 0.0032)
+(0.28 0.161 0.0032)
+(0.28 0.167 0.0032)
+(0.28 0.173 0.0032)
+(0.28 0.179 0.0032)
+(0.28 0.185 0.0032)
+(0.28 0.191 0.0032)
+(0.28 0.197 0.0032)
+(0.28 0.203 0.0032)
+(0.28 0.209 0.0032)
+(0.28 0.215 0.0032)
+(0.28 0.221 0.0032)
+(0.28 0.227 0.0032)
+(0.28 0.233 0.0032)
+(0.28 0.239 0.0032)
+(0.28 0.245 0.0032)
+(0.28 0.251 0.0032)
+(0.28 0.257 0.0032)
+(0.28 0.263 0.0032)
+(0.28 0.269 0.0032)
+(0.28 0.275 0.0032)
+(0.28 0.281 0.0032)
+(0.28 0.287 0.0032)
+(0.28 0.293 0.0032)
+(0.28 0.299 0.0032)
+(0.28 0.305 0.0032)
+(0.28 0.311 0.0032)
+(0.28 0.317 0.0032)
+(0.28 0.323 0.0032)
+(0.28 0.329 0.0032)
+(0.28 0.335 0.0032)
+(0.28 0.341 0.0032)
+(0.28 0.347 0.0032)
+(0.28 0.353 0.0032)
+(0.28 0.359 0.0032)
+(0.28 0.365 0.0032)
+(0.28 0.371 0.0032)
+(0.28 0.377 0.0032)
+(0.28 0.383 0.0032)
+(0.28 0.389 0.0032)
+(0.28 0.395 0.0032)
+(0.28 0.401 0.0032)
+(0.28 0.407 0.0032)
+(0.28 0.413 0.0032)
+(0.28 0.419 0.0032)
+(0.28 0.425 0.0032)
+(0.28 0.431 0.0032)
+(0.28 0.437 0.0032)
+(0.28 0.443 0.0032)
+(0.28 0.449 0.0032)
+(0.28 0.455 0.0032)
+(0.28 0.461 0.0032)
+(0.28 0.467 0.0032)
+(0.28 0.473 0.0032)
+(0.28 0.479 0.0032)
+(0.28 0.485 0.0032)
+(0.28 0.491 0.0032)
+(0.28 0.497 0.0032)
+(0.286 0.077 0.0032)
+(0.286 0.083 0.0032)
+(0.286 0.089 0.0032)
+(0.286 0.095 0.0032)
+(0.286 0.101 0.0032)
+(0.286 0.107 0.0032)
+(0.286 0.113 0.0032)
+(0.286 0.119 0.0032)
+(0.286 0.125 0.0032)
+(0.286 0.131 0.0032)
+(0.286 0.137 0.0032)
+(0.286 0.143 0.0032)
+(0.286 0.149 0.0032)
+(0.286 0.155 0.0032)
+(0.286 0.161 0.0032)
+(0.286 0.167 0.0032)
+(0.286 0.173 0.0032)
+(0.286 0.179 0.0032)
+(0.286 0.185 0.0032)
+(0.286 0.191 0.0032)
+(0.286 0.197 0.0032)
+(0.286 0.203 0.0032)
+(0.286 0.209 0.0032)
+(0.286 0.215 0.0032)
+(0.286 0.221 0.0032)
+(0.286 0.227 0.0032)
+(0.286 0.233 0.0032)
+(0.286 0.239 0.0032)
+(0.286 0.245 0.0032)
+(0.286 0.251 0.0032)
+(0.286 0.257 0.0032)
+(0.286 0.263 0.0032)
+(0.286 0.269 0.0032)
+(0.286 0.275 0.0032)
+(0.286 0.281 0.0032)
+(0.286 0.287 0.0032)
+(0.286 0.293 0.0032)
+(0.286 0.299 0.0032)
+(0.286 0.305 0.0032)
+(0.286 0.311 0.0032)
+(0.286 0.317 0.0032)
+(0.286 0.323 0.0032)
+(0.286 0.329 0.0032)
+(0.286 0.335 0.0032)
+(0.286 0.341 0.0032)
+(0.286 0.347 0.0032)
+(0.286 0.353 0.0032)
+(0.286 0.359 0.0032)
+(0.286 0.365 0.0032)
+(0.286 0.371 0.0032)
+(0.286 0.377 0.0032)
+(0.286 0.383 0.0032)
+(0.286 0.389 0.0032)
+(0.286 0.395 0.0032)
+(0.286 0.401 0.0032)
+(0.286 0.407 0.0032)
+(0.286 0.413 0.0032)
+(0.286 0.419 0.0032)
+(0.286 0.425 0.0032)
+(0.286 0.431 0.0032)
+(0.286 0.437 0.0032)
+(0.286 0.443 0.0032)
+(0.286 0.449 0.0032)
+(0.286 0.455 0.0032)
+(0.286 0.461 0.0032)
+(0.286 0.467 0.0032)
+(0.286 0.473 0.0032)
+(0.286 0.479 0.0032)
+(0.286 0.485 0.0032)
+(0.286 0.491 0.0032)
+(0.286 0.497 0.0032)
+)
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudProperties
new file mode 100644
index 0000000000000000000000000000000000000000..ab3efa0bc4f0589537ee9c4f5796bcc88c8c5856
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/kinematicCloudProperties
@@ -0,0 +1,150 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "constant";
+    object      reactingCloud1Properties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+solution
+{
+    active          true;
+    coupled         false;
+    transient       yes;
+    cellValueSourceCorrection off;
+
+    sourceTerms
+    {
+        schemes
+        {
+        }
+    }
+
+    interpolationSchemes
+    {
+        rho             cell;
+        U               cellPoint;
+        mu              cell;
+    }
+
+    integrationSchemes
+    {
+        U               Euler;
+    }
+}
+
+constantProperties
+{
+    parcelTypeId    1;
+
+    rhoMin          1e-15;
+    minParticleMass 1e-15;
+
+    rho0            964;
+    youngsModulus   6e8;
+    poissonsRatio   0.35;
+
+    constantVolume  false;
+}
+
+subModels
+{
+    particleForces
+    {
+        sphereDrag;
+        gravity;
+    }
+
+    injectionModel manualInjection;
+
+    dispersionModel none;
+
+    patchInteractionModel standardWallInteraction;
+
+    heatTransferModel none;
+
+    postProcessingModel none;
+
+    surfaceFilmModel none;
+
+    collisionModel pairCollision;
+
+    radiation off;
+
+    manualInjectionCoeffs
+    {
+        massTotal       0;
+        parcelBasisType fixed;
+        nParticle       1;
+        SOI             0;
+        positionsFile   "kinematicCloudPositions";
+        U0              ( 0 0 0 );
+        sizeDistribution
+        {
+            type        fixedValue;
+            fixedValueDistribution
+            {
+                value   0.006;
+            }
+        }
+    }
+
+    pairCollisionCoeffs
+    {
+        maxInteractionDistance  0.006;
+
+        writeReferredParticleCloud no;
+
+        pairModel pairSpringSliderDashpot;
+
+        pairSpringSliderDashpotCoeffs
+        {
+            useEquivalentSize   no;
+            alpha               0.12;
+            b                   1.5;
+            mu                  0.52;
+            collisionResolutionSteps 12;
+        };
+
+        wallModel    wallLocalSpringSliderDashpot;
+
+        wallLocalSpringSliderDashpotCoeffs
+        {
+            useEquivalentSize no;
+            collisionResolutionSteps 12;
+            walls
+            {
+                youngsModulus   1e10;
+                poissonsRatio   0.23;
+                alpha           0.12;
+                b               1.5;
+                mu              0.43;
+            }
+            frontAndBack
+            {
+                youngsModulus   1e10;
+                poissonsRatio   0.23;
+                alpha           0.12;
+                b               1.5;
+                mu              0.1;
+            }
+        };
+    }
+
+    standardWallInteractionCoeffs
+    {
+        type            rebound;
+    }
+}
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/blockMeshDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/blockMeshDict
new file mode 100644
index 0000000000000000000000000000000000000000..d06297d05639fc05cfeea111a39955f8181c2462
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/blockMeshDict
@@ -0,0 +1,64 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      http://www.OpenFOAM.com               |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    object      blockMeshDict;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+convertToMeters 0.001;
+
+vertices
+(
+    (0 77.9423 6.2)
+    (135 0 6.2)
+    (165 0 6.2)
+    (300 77.9423 6.2)
+    (300 500 6.2)
+    (0 500 6.2)
+    (0 77.9423 0)
+    (135 0 0)
+    (165 0 0)
+    (300 77.9423 0)
+    (300 500 0)
+    (0 500 0)
+);
+
+
+blocks
+(
+    hex (6 9 10 11 0 3 4 5 ) (20 40 1) simpleGrading (1 1 1)
+    hex (7 8 9 6 1 2 3 0) (20 8 1) simpleGrading (1 1 1)
+);
+
+patches
+(
+    wall walls
+    (
+        (1 7 8 2)
+        (0 6 7 1)
+        (2 8 9 3)
+        (0 5 11 6)
+        (3 4 10 9)
+        (4 10 11 5)
+    )
+
+    wall frontAndBack
+    (
+        (0 3 4 5)
+        (1 2 3 0)
+        (6 11 10 9)
+        (6 9 8 7)
+    )
+);
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/boundary b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/boundary
new file mode 100644
index 0000000000000000000000000000000000000000..586d76d640b6ecff8facd7d0c6315fbd1a84ea73
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/polyMesh/boundary
@@ -0,0 +1,34 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       polyBoundaryMesh;
+    location    "constant/polyMesh";
+    object      boundary;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+2
+(
+    walls
+    {
+        type            wall;
+        nFaces          136;
+        startFace       1852;
+    }
+    frontAndBack
+    {
+        type            wall;
+        nFaces          1920;
+        startFace       1988;
+    }
+)
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/transportProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/transportProperties
new file mode 100644
index 0000000000000000000000000000000000000000..30ebf88e3dead68efc2be37d41ab7cc4f1d7241c
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/transportProperties
@@ -0,0 +1,24 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "constant";
+    object      transportProperties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+rhoInf          rhoInf [ 1 -3 0 0 0 0 0 ] 1.2;
+
+transportModel  Newtonian;
+
+nu              nu [ 0 2 -1 0 0 0 0 ] 1e-05;
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/turbulenceProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/turbulenceProperties
new file mode 100644
index 0000000000000000000000000000000000000000..3e945495c5107c31176f627d29157d32d6b70eb9
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/constant/turbulenceProperties
@@ -0,0 +1,21 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "constant";
+    object      turbulenceProperties;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+simulationType  RASModel;
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/controlDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/controlDict
new file mode 100644
index 0000000000000000000000000000000000000000..590365cdab339ce4ae533c0155c33fc100a7b210
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/controlDict
@@ -0,0 +1,48 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "system";
+    object      controlDict;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+application     icoUncoupledKinematicParcelFoam;
+
+startFrom       startTime;
+
+startTime       0;
+
+stopAt          endTime;
+
+endTime         0.25;
+
+deltaT          5e-5;
+
+writeControl    runTime;
+
+writeInterval   0.05;
+
+purgeWrite      0;
+
+writeFormat     ascii;
+
+writePrecision  6;
+
+writeCompression uncompressed;
+
+timeFormat      general;
+
+timePrecision   6;
+
+runTimeModifiable yes;
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/decomposeParDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/decomposeParDict
new file mode 100644
index 0000000000000000000000000000000000000000..badba37e524b25e894f69e3d44b40be460dcbc08
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/decomposeParDict
@@ -0,0 +1,45 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "system";
+    object      decomposeParDict;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+numberOfSubdomains 4;
+
+method          simple;
+
+simpleCoeffs
+{
+    n               ( 4 1 1 );
+    delta           0.001;
+}
+
+hierarchicalCoeffs
+{
+    n               ( 4 1 1 );
+    delta           0.001;
+    order           xyz;
+}
+
+manualCoeffs
+{
+    dataFile        "";
+}
+
+distributed     no;
+
+roots           ( );
+
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSchemes b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSchemes
new file mode 100644
index 0000000000000000000000000000000000000000..1b8a2d358ffc810af6a11c4081d4691b1d4600d5
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSchemes
@@ -0,0 +1,43 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "system";
+    object      fvSchemes;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+ddtSchemes
+{
+    default         none;
+}
+
+gradSchemes
+{
+    default         none;
+}
+
+divSchemes
+{
+    default         none;
+}
+
+laplacianSchemes
+{
+    default         none;
+}
+
+interpolationSchemes
+{
+    default         none;
+}
+
+// ************************************************************************* //
diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSolution b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSolution
new file mode 100644
index 0000000000000000000000000000000000000000..39c45aff34bc35d20e87c93cabdbee88918ad277
--- /dev/null
+++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopperInitialState/system/fvSolution
@@ -0,0 +1,22 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  dev                                   |
+|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       dictionary;
+    location    "system";
+    object      fvSolution;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+solvers
+{
+}
+
+// ************************************************************************* //