This commit is contained in:
s460941 2020-06-04 19:20:10 +02:00
parent 6b95c96789
commit e8235ebc1e
8392 changed files with 0 additions and 1686820 deletions

View File

@ -1,64 +0,0 @@
Examples of FCL files (with data)
=======================================
This directory contains some examples of FCL files, along with data
that can be used to test them.
These files were gathered from two sources:
* [jFuzzyLogic](http://jfuzzylogic.sourceforge.net/)
GNU Lesser General Public License (GPL) 3.0
* [FuzzyLite](http://www.fuzzylite.com/)
GNU General Public License (GPL) 3.0
The files in this folder are a _subset_ of those provided by these
tools. I've removed any FCL files that used features not (yet)
supported by `scikit-fuzzy`. For `FuzzyLite` I've only used the
mamdani-style examples - this is a small subset of those supplied with
the tool. Also, I've tweaked some of the RANGEs for fuzzy variables
(or added them if not there), since this can have a dramatic effect on
the accuracy of the results.
Test Data
---------
Each of the FCL files in this folder is accompanied by an `.fld` file
which contains test data: basically a list of values for the input and
output variables. In the case of FuzzyLite these were supplied with
the tool. For jFuzzyLogic I ran the tool with some sample inputs;
since jFuzzyLogic also reports rule fire-strengths, I've included
these in the `.fld` file too as they helped with debugging.
The purpose of these files is to test the implementation: when we run
the same files through `scikit-fuzzy` we should get mostly the same
answers as the original tools.
The script [simulate.py](../simulate.py) can be used to run these -
note that running them _all_ make take a while.
Example run:
```
> python3 simulate.py Examples/jFuzzyLogic/tipper.fcl
======================================================================
= Examples/jFuzzyLogic/tipper.fcl on 08 Sep 2018 at 16:06
======================================================================
----------------------------------------------------------------------
Run 0: food=0.00 service=0.00
Output variables:
tip=5.00 CORRECT, ERROR=0.0%
Rule fire-strengths for test case 0:
RULE No1.1 = 1.00 (CORRECT)
RULE No1.2 = 0.00 (CORRECT)
RULE No1.3 = 0.00 (CORRECT)
----------------------------------------------------------------------
.....
```
[James Power](http://www.cs.nuim.ie/~jpower/),
8 Sept 2018.

View File

@ -1,90 +0,0 @@
//Code automatically generated with fuzzylite 6.0.
FUNCTION_BLOCK AllTerms
VAR_INPUT
AllInputTerms: REAL;
END_VAR
VAR_OUTPUT
AllOutputTerms: REAL;
END_VAR
FUZZIFY AllInputTerms
RANGE := (0.000 .. 6.500);
TERM A := Sigmoid 0.500 -20.000;
TERM B := ZShape 0.000 1.000;
TERM C := Ramp 1.000 0.000;
TERM D := Triangle 0.500 1.000 1.500;
TERM E := Trapezoid 1.000 1.250 1.750 2.000;
TERM F := Concave 0.850 0.250;
TERM G := Rectangle 1.750 2.250;
TERM H := (2.000, 0.000) (2.250, 1.000) (2.500, 0.500) (2.750, 1.000) (3.000, 0.000);
TERM I := Gaussian 3.000 0.200;
TERM J := Cosine 3.250 0.650;
TERM K := GaussianProduct 3.500 0.100 3.300 0.300;
TERM L := Spike 3.640 1.040;
TERM M := Bell 4.000 0.250 3.000;
TERM N := PiShape 4.000 4.500 4.500 5.000;
TERM O := Concave 5.650 6.250;
TERM P := SigmoidDifference 4.750 10.000 30.000 5.250;
TERM Q := SigmoidProduct 5.250 20.000 -10.000 5.750;
TERM R := Ramp 5.500 6.500;
TERM S := SShape 5.500 6.500;
TERM T := Sigmoid 6.000 20.000;
END_FUZZIFY
DEFUZZIFY AllOutputTerms
RANGE := (0.000 .. 6.500);
TERM A := Sigmoid 0.500 -20.000;
TERM B := ZShape 0.000 1.000;
TERM C := Ramp 1.000 0.000;
TERM D := Triangle 0.500 1.000 1.500;
TERM E := Trapezoid 1.000 1.250 1.750 2.000;
TERM F := Concave 0.850 0.250;
TERM G := Rectangle 1.750 2.250;
TERM H := (2.000, 0.000) (2.250, 1.000) (2.500, 0.500) (2.750, 1.000) (3.000, 0.000);
TERM I := Gaussian 3.000 0.200;
TERM J := Cosine 3.250 0.650;
TERM K := GaussianProduct 3.500 0.100 3.300 0.300;
TERM L := Spike 3.640 1.040;
TERM M := Bell 4.000 0.250 3.000;
TERM N := PiShape 4.000 4.500 4.500 5.000;
TERM O := Concave 5.650 6.250;
TERM P := SigmoidDifference 4.750 10.000 30.000 5.250;
TERM Q := SigmoidProduct 5.250 20.000 -10.000 5.750;
TERM R := Ramp 5.500 6.500;
TERM S := SShape 5.500 6.500;
TERM T := Sigmoid 6.000 20.000;
METHOD : COG;
ACCU : MAX;
DEFAULT := nan;
END_DEFUZZIFY
RULEBLOCK
AND : MIN;
OR : MAX;
ACT : MIN;
RULE 1 : if AllInputTerms is A then AllOutputTerms is T
RULE 2 : if AllInputTerms is B then AllOutputTerms is S
RULE 3 : if AllInputTerms is C then AllOutputTerms is R
RULE 4 : if AllInputTerms is D then AllOutputTerms is Q
RULE 5 : if AllInputTerms is E then AllOutputTerms is P
RULE 6 : if AllInputTerms is F then AllOutputTerms is O
RULE 7 : if AllInputTerms is G then AllOutputTerms is N
RULE 8 : if AllInputTerms is H then AllOutputTerms is M
RULE 9 : if AllInputTerms is I then AllOutputTerms is L
RULE 10 : if AllInputTerms is J then AllOutputTerms is K
RULE 11 : if AllInputTerms is K then AllOutputTerms is J
RULE 12 : if AllInputTerms is L then AllOutputTerms is I
RULE 13 : if AllInputTerms is M then AllOutputTerms is H
RULE 14 : if AllInputTerms is N then AllOutputTerms is G
RULE 15 : if AllInputTerms is O then AllOutputTerms is F
RULE 16 : if AllInputTerms is P then AllOutputTerms is E
RULE 17 : if AllInputTerms is Q then AllOutputTerms is D
RULE 18 : if AllInputTerms is R then AllOutputTerms is C
RULE 19 : if AllInputTerms is S then AllOutputTerms is B
RULE 20 : if AllInputTerms is T then AllOutputTerms is A
END_RULEBLOCK
END_FUNCTION_BLOCK

File diff suppressed because it is too large Load Diff

View File

@ -1,674 +0,0 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.

View File

@ -1,58 +0,0 @@
//Code automatically generated with fuzzylite 6.0.
FUNCTION_BLOCK Laundry
VAR_INPUT
Load: REAL;
Dirt: REAL;
END_VAR
VAR_OUTPUT
Detergent: REAL;
Cycle: REAL;
END_VAR
FUZZIFY Load
RANGE := (0.000 .. 6.000);
TERM small := (0.000, 1.000) (1.000, 1.000) (2.000, 0.800) (5.000, 0.000);
TERM normal := (3.000, 0.000) (4.000, 1.000) (6.000, 0.000);
END_FUZZIFY
FUZZIFY Dirt
RANGE := (0.000 .. 6.000);
TERM low := (0.000, 1.000) (2.000, 0.800) (5.000, 0.000);
TERM high := (1.000, 0.000) (2.000, 0.200) (4.000, 0.800) (6.000, 1.000);
END_FUZZIFY
DEFUZZIFY Detergent
RANGE := (0.000 .. 80.000);
TERM less_than_usual := (10.000, 0.000) (40.000, 1.000) (50.000, 0.000);
TERM usual := (40.000, 0.000) (50.000, 1.000) (60.000, 1.000) (80.000, 0.000);
TERM more_than_usual := (50.000, 0.000) (80.000, 1.000);
METHOD : MM;
ACCU : MAX;
DEFAULT := nan;
END_DEFUZZIFY
DEFUZZIFY Cycle
RANGE := (0.000 .. 20.000);
TERM short := (0.000, 1.000) (10.000, 1.000) (20.000, 0.000);
TERM long := (10.000, 0.000) (20.000, 1.000);
METHOD : MM;
ACCU : MAX;
DEFAULT := nan;
END_DEFUZZIFY
RULEBLOCK
AND : MIN;
OR : MAX;
ACT : MIN;
RULE 1 : if Load is small and Dirt is not high then Detergent is less_than_usual
RULE 2 : if Load is small and Dirt is high then Detergent is usual
RULE 3 : if Load is normal and Dirt is low then Detergent is less_than_usual
RULE 4 : if Load is normal and Dirt is high then Detergent is more_than_usual
RULE 5 : if Detergent is usual or Detergent is less_than_usual then Cycle is short
RULE 6 : if Detergent is more_than_usual then Cycle is long
END_RULEBLOCK
END_FUNCTION_BLOCK

File diff suppressed because it is too large Load Diff

View File

@ -1,34 +0,0 @@
//Code automatically generated with fuzzylite 6.0.
FUNCTION_BLOCK ObstacleAvoidance
VAR_INPUT
obstacle: REAL;
END_VAR
VAR_OUTPUT
mSteer: REAL;
END_VAR
FUZZIFY obstacle
RANGE := (0.000 .. 1.000);
TERM left := Ramp 1.000 0.000;
TERM right := Ramp 0.000 1.000;
END_FUZZIFY
DEFUZZIFY mSteer
RANGE := (0.000 .. 1.000);
TERM left := Ramp 1.000 0.000;
TERM right := Ramp 0.000 1.000;
METHOD : COG;
ACCU : MAX;
DEFAULT := nan;
END_DEFUZZIFY
RULEBLOCK mamdani
ACT : PROD;
RULE 1 : if obstacle is left then mSteer is right
RULE 2 : if obstacle is right then mSteer is left
END_RULEBLOCK
END_FUNCTION_BLOCK

File diff suppressed because it is too large Load Diff

View File

@ -1,37 +0,0 @@
//Code automatically generated with fuzzylite 6.0.
FUNCTION_BLOCK SimpleDimmer
VAR_INPUT
Ambient: REAL;
END_VAR
VAR_OUTPUT
Power: REAL;
END_VAR
FUZZIFY Ambient
RANGE := (0.000 .. 1.000) WITH .01;
TERM DARK := Triangle 0.000 0.250 0.500;
TERM MEDIUM := Triangle 0.250 0.500 0.750;
TERM BRIGHT := Triangle 0.500 0.750 1.000;
END_FUZZIFY
DEFUZZIFY Power
RANGE := (0.000 .. 1.000) WITH .01;
TERM LOW := Triangle 0.000 0.250 0.500;
TERM MEDIUM := Triangle 0.250 0.500 0.750;
TERM HIGH := Triangle 0.500 0.750 1.000;
METHOD : COG;
ACCU : MAX;
DEFAULT := nan;
END_DEFUZZIFY
RULEBLOCK
ACT : MIN;
RULE 1 : if Ambient is DARK then Power is HIGH
RULE 2 : if Ambient is MEDIUM then Power is MEDIUM
RULE 3 : if Ambient is BRIGHT then Power is LOW
END_RULEBLOCK
END_FUNCTION_BLOCK

File diff suppressed because it is too large Load Diff

View File

@ -1,51 +0,0 @@
//Code automatically generated with fuzzylite 6.0.
FUNCTION_BLOCK SimpleDimmerChained
VAR_INPUT
Ambient: REAL;
END_VAR
VAR_OUTPUT
Power: REAL;
InversePower: REAL;
END_VAR
FUZZIFY Ambient
RANGE := (0.000 .. 1.000);
TERM DARK := Triangle 0.000 0.250 0.500;
TERM MEDIUM := Triangle 0.250 0.500 0.750;
TERM BRIGHT := Triangle 0.500 0.750 1.000;
END_FUZZIFY
DEFUZZIFY Power
RANGE := (0.000 .. 1.000);
TERM LOW := Triangle 0.000 0.250 0.500;
TERM MEDIUM := Triangle 0.250 0.500 0.750;
TERM HIGH := Triangle 0.500 0.750 1.000;
METHOD : COG;
ACCU : MAX;
DEFAULT := nan;
END_DEFUZZIFY
DEFUZZIFY InversePower
RANGE := (0.000 .. 1.000);
TERM LOW := Cosine 0.200 0.500;
TERM MEDIUM := Cosine 0.500 0.500;
TERM HIGH := Cosine 0.800 0.500;
METHOD : COG;
ACCU : MAX;
DEFAULT := nan;
END_DEFUZZIFY
RULEBLOCK
ACT : MIN;
RULE 1 : if Ambient is DARK then Power is HIGH
RULE 2 : if Ambient is MEDIUM then Power is MEDIUM
RULE 3 : if Ambient is BRIGHT then Power is LOW
RULE 4 : if Power is LOW then InversePower is HIGH
RULE 5 : if Power is MEDIUM then InversePower is MEDIUM
RULE 6 : if Power is HIGH then InversePower is LOW
END_RULEBLOCK
END_FUNCTION_BLOCK

File diff suppressed because it is too large Load Diff

View File

@ -1,165 +0,0 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.

View File

@ -1,55 +0,0 @@
FUNCTION_BLOCK LarsenQoSFewRules
VAR_INPUT
commitment : REAL;
clarity : REAL;
influence : REAL;
END_VAR
VAR_OUTPUT
service_quality : REAL;
END_VAR
FUZZIFY commitment
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for commitment
END_FUZZIFY
FUZZIFY clarity
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for clarity
END_FUZZIFY
FUZZIFY influence
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for influence
END_FUZZIFY
DEFUZZIFY service_quality
TERM inadequate := GAUSS 0 1;
TERM sufficient := GAUSS 2.5 1;
TERM excellent := GAUSS 5 1;
METHOD : COG;
DEFAULT := 0;
RANGE := (-4.0 .. 9.0); // Added range for service_quality
END_DEFUZZIFY
RULEBLOCK No1
AND : PROD;
ACCU : MAX;
RULE 1 : IF commitment IS fully AND influence IS high THEN service_quality IS excellent;
RULE 2 : IF commitment IS partially AND clarity IS high AND influence IS low THEN service_quality IS sufficient;
RULE 3 : IF commitment IS nothing THEN service_quality IS inadequate;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
clarity commitment influence service_quality No1.1 No1.2 No1.3
-4.0 -4.0 -4.0 0.11814588732224174 6.639677199580735E-36 1.3164881474367886E-29 3.3546262790251185E-4
-4.0 -4.0 -1.4 0.11814588732224174 3.286415676451725E-27 1.4728693217741432E-26 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 0.11814588732224174 1.8856770853470695E-21 1.9102085371358956E-26 3.3546262790251185E-4
-4.0 -4.0 3.8 0.11814588732224174 1.2542423359420818E-18 2.8718823814904615E-29 3.3546262790251185E-4
-4.0 -4.0 6.4 0.11814588732224174 9.670855421101112E-19 5.005204418506582E-35 3.3546262790251185E-4
-4.0 -1.4 -4.0 2.1440130067640695E-4 3.286415676451725E-27 2.6699032394713253E-24 0.37531109885139957
-4.0 -1.4 -1.4 2.1440130067640695E-4 1.6266646214532314E-18 2.9870520149985134E-21 0.37531109885139957
-4.0 -1.4 1.2000000000000002 2.1440130820477154E-4 9.333463883457657E-13 3.873997628687189E-21 0.37531109885139957
-4.0 -1.4 3.8 2.144090802361429E-4 6.208075409403594E-10 5.8243198684705E-24 0.37531109885139957
-4.0 -1.4 6.4 2.1440721360819752E-4 4.786746389208764E-10 1.0150802737727316E-29 0.37531109885139957
-4.0 1.2000000000000002 -4.0 1.9531210161944423E-4 1.8856770853470695E-21 6.27687374904115E-22 0.48675225595997157
-4.0 1.2000000000000002 -1.4 1.9531210789947975E-4 9.333463883457657E-13 7.022482351711461E-19 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 2.0298466893760368E-4 5.35534780279311E-7 9.107668645013996E-19 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.006619048840501731 3.562064783070342E-4 1.3692825997566989E-21 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.005108750846418389 2.7465356997214227E-4 2.3864275788793028E-27 0.48675225595997157
-4.0 3.8 -4.0 0.05592821568344743 1.2542423359420818E-18 1.7106476574743098E-22 7.318024188804728E-4
-4.0 3.8 -1.4 0.05593013860181266 6.208075409403594E-10 1.9138497068616342E-19 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 1.5301815892116188 3.562064783070342E-4 2.4821292661853207E-19 7.318024188804728E-4
-4.0 3.8 3.8 4.977155265586825 0.23692775868212168 3.731730420819674E-22 7.318024188804728E-4
-4.0 3.8 6.4 4.971945843841512 0.18268352405273452 6.503773870177941E-28 7.318024188804728E-4
-4.0 6.4 -4.0 1.274193733749591 9.670855421101112E-19 5.404394494224472E-26 1.2754076295260396E-9
-4.0 6.4 -1.4 1.7691439975272403 4.786746389208764E-10 6.046364237161134E-23 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 4.851873305784807 2.7465356997214227E-4 7.841711694114211E-23 1.2754076295260396E-9
-4.0 6.4 3.8 4.999596457247931 0.18268352405273452 1.1789536700961867E-25 1.2754076295260396E-9
-4.0 6.4 6.4 4.999475787552176 0.14085842092104486 2.0547165012090466E-31 1.2754076295260396E-9
-1.4 -4.0 -4.0 0.11814588732224174 6.639677199580735E-36 6.516171126319744E-21 3.3546262790251185E-4
-1.4 -4.0 -1.4 0.11814588732224271 3.286415676451725E-27 7.290205055072584E-18 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 0.11814588732224349 1.8856770853470695E-21 9.454886273886531E-18 3.3546262790251185E-4
-1.4 -4.0 3.8 0.11814588732224174 1.2542423359420818E-18 1.42148465893067E-20 3.3546262790251185E-4
-1.4 -4.0 6.4 0.11814588732224174 9.670855421101112E-19 2.4774069236173352E-26 3.3546262790251185E-4
-1.4 -1.4 -4.0 2.144013006811132E-4 3.286415676451725E-27 1.3215118140625677E-15 0.37531109885139957
-1.4 -1.4 -1.4 2.1440131306941333E-4 1.6266646214532314E-18 1.4784897327670847E-12 0.37531109885139957
-1.4 -1.4 1.2000000000000002 2.1440131709138892E-4 9.333463883457657E-13 1.9174978172520684E-12 0.37531109885139957
-1.4 -1.4 3.8 2.144090802361429E-4 6.208075409403594E-10 2.882841370905708E-15 0.37531109885139957
-1.4 -1.4 6.4 2.1440721360819752E-4 4.786746389208764E-10 5.024304080316231E-21 0.37531109885139957
-1.4 1.2000000000000002 -4.0 1.9531210351410677E-4 1.8856770853470695E-21 3.106840237543436E-13 0.48675225595997157
-1.4 1.2000000000000002 -1.4 1.953156195923943E-4 9.333463883457657E-13 3.475891281239913E-10 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 2.0298466893760368E-4 5.35534780279311E-7 4.50798798061928E-10 0.48675225595997157
-1.4 1.2000000000000002 3.8 0.006619048840501731 3.562064783070342E-4 6.77748581153485E-13 0.48675225595997157
-1.4 1.2000000000000002 6.4 0.005108750846418389 2.7465356997214227E-4 1.1812009485101043E-18 0.48675225595997157
-1.4 3.8 -4.0 0.055928215817828315 1.2542423359420818E-18 8.467127406079305E-14 7.318024188804728E-4
-1.4 3.8 -1.4 0.05593013860181266 6.208075409403594E-10 9.472908832676052E-11 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 1.5301815892116188 3.562064783070342E-4 1.2285700473339503E-10 7.318024188804728E-4
-1.4 3.8 3.8 4.977155265586825 0.23692775868212168 1.8470803604801732E-13 7.318024188804728E-4
-1.4 3.8 6.4 4.971945843841512 0.18268352405273452 3.219148124309352E-19 7.318024188804728E-4
-1.4 6.4 -4.0 1.2741937361045474 9.670855421101112E-19 2.6749925114838757E-17 1.2754076295260396E-9
-1.4 6.4 -1.4 1.7691439975272403 4.786746389208764E-10 2.9927458244202264E-14 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 4.851873305784807 2.7465356997214227E-4 3.88138210143395E-14 1.2754076295260396E-9
-1.4 6.4 3.8 4.999596457247931 0.18268352405273452 5.835421974217454E-17 1.2754076295260396E-9
-1.4 6.4 6.4 4.999475787552176 0.14085842092104486 1.017015182705546E-22 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 0.11814588733053943 6.639677199580735E-36 3.738843709012425E-15 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 0.11814590706366652 3.286415676451725E-27 4.182968307488742E-12 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 0.11814591342684355 1.8856770853470695E-21 5.42501744955155E-12 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 0.11814588734260972 1.2542423359420818E-18 8.156183856243035E-15 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 0.11814588732224174 9.670855421101112E-19 1.42148465893067E-20 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 2.1441090426171526E-4 3.286415676451725E-27 7.582560427911914E-10 0.37531109885139957
1.2000000000000002 -1.4 -1.4 2.2419211642465433E-4 1.6266646214532314E-18 8.483267135001927E-7 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 2.2700953918110934E-4 9.333463883457657E-13 1.1002204380606938E-6 0.37531109885139957
1.2000000000000002 -1.4 3.8 2.14422693302235E-4 6.208075409403594E-10 1.6541145274954016E-9 0.37531109885139957
1.2000000000000002 -1.4 6.4 2.1440721360819752E-4 4.786746389208764E-10 2.882841370905708E-15 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 1.97099029194876E-4 1.8856770853470695E-21 1.7826404266958715E-7 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 0.001797132556082525 9.333463883457657E-13 1.9943942536412287E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 0.002252747097245062 5.35534780279311E-7 2.5865899122206357E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 0.006619048840501731 3.562064783070342E-4 3.888780650192924E-7 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 0.005108750846418389 2.7465356997214227E-4 6.777485811534851E-13 0.48675225595997157
1.2000000000000002 3.8 -4.0 0.05607687723151827 1.2542423359420818E-18 4.8582619182234314E-8 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 0.1885960877558892 6.208075409403594E-10 5.4353584196157534E-5 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 1.5301815892116188 3.562064783070342E-4 7.04927986621179E-5 7.318024188804728E-4
1.2000000000000002 3.8 3.8 4.977155265586825 0.23692775868212168 1.0598163633130508E-7 7.318024188804728E-4
1.2000000000000002 3.8 6.4 4.971945843841512 0.18268352405273452 1.847080360480173E-13 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 1.2881278403918364 9.670855421101112E-19 1.5348551671425328E-11 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 2.498580908582361 4.786746389208764E-10 1.7171754211781134E-8 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 4.851707658506448 2.7465356997214227E-4 2.227056467808863E-8 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 4.999596457247931 0.18268352405273452 3.3482439786780416E-11 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 4.999475787552176 0.14085842092104486 5.835421974217454E-17 1.2754076295260396E-9
3.8 -4.0 -4.0 0.11814589859782343 6.639677199580735E-36 2.486860610310162E-12 3.3546262790251185E-4
3.8 -4.0 -1.4 0.11816457197697199 3.286415676451725E-27 2.7822663710158708E-9 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 0.1181700887677895 1.8856770853470695E-21 3.608404965688875E-9 3.3546262790251185E-4
3.8 -4.0 3.8 0.11814591342684355 1.2542423359420818E-18 5.42501744955155E-12 3.3546262790251185E-4
3.8 -4.0 6.4 0.11814588732224349 9.670855421101112E-19 9.45488627388653E-18 3.3546262790251185E-4
3.8 -1.4 -4.0 2.203034376078097E-4 3.286415676451725E-27 5.043476625678883E-7 0.37531109885139957
3.8 -1.4 -1.4 0.005405046549942568 1.6266646214532314E-18 5.642574155726743E-4 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.006864070750542262 9.333463883457657E-13 7.318024188804728E-4 0.37531109885139957
3.8 -1.4 3.8 2.2700953918110934E-4 6.208075409403594E-10 1.100220438060694E-6 0.37531109885139957
3.8 -1.4 6.4 2.1440721360819752E-4 4.786746389208764E-10 1.917497817252069E-12 0.37531109885139957
3.8 1.2000000000000002 -4.0 0.001167805668872799 1.8856770853470695E-21 1.1857083645433894E-4 0.48675225595997157
3.8 1.2000000000000002 -1.4 0.5878199905727955 9.333463883457657E-13 0.13265546508012174 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 0.7056697584570883 5.35534780279311E-7 0.1720448638230505 0.48675225595997157
3.8 1.2000000000000002 3.8 0.006619048840501731 3.562064783070342E-4 2.586589912220635E-4 0.48675225595997157
3.8 1.2000000000000002 6.4 0.005108750846418389 2.7465356997214227E-4 4.5079879806192804E-10 0.48675225595997157
3.8 3.8 -4.0 0.13704384069610503 1.2542423359420818E-18 3.231432266044366E-5 7.318024188804728E-4
3.8 3.8 -1.4 2.4569501355751564 6.208075409403594E-10 0.036152831754046426 7.318024188804728E-4
3.8 3.8 1.2000000000000002 2.4819165096787366 3.562064783070342E-4 0.046887695219988486 7.318024188804728E-4
3.8 3.8 3.8 4.977155265586825 0.23692775868212168 7.04927986621179E-5 7.318024188804728E-4
3.8 3.8 6.4 4.971945843841512 0.18268352405273452 1.2285700473339503E-10 7.318024188804728E-4
3.8 6.4 -4.0 2.497644044698082 9.670855421101112E-19 1.0208960723597606E-8 1.2754076295260396E-9
3.8 6.4 -1.4 2.499997366179424 4.786746389208764E-10 1.1421648638660496E-5 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 4.755368368994469 2.7465356997214227E-4 1.4813079758803949E-5 1.2754076295260396E-9
3.8 6.4 3.8 4.999595998084372 0.18268352405273452 2.227056467808863E-8 1.2754076295260396E-9
3.8 6.4 6.4 4.999475787552176 0.14085842092104486 3.88138210143395E-14 1.2754076295260396E-9
6.4 -4.0 -4.0 0.1181458958393851 6.639677199580735E-36 1.9174978172520745E-12 3.3546262790251185E-4
6.4 -4.0 -1.4 0.1181602941754421 3.286415676451725E-27 2.14527089749972E-9 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 0.11816457197697199 1.8856770853470695E-21 2.782266371015869E-9 3.3546262790251185E-4
6.4 -4.0 3.8 0.11814590706366652 1.2542423359420818E-18 4.18296830748874E-12 3.3546262790251185E-4
6.4 -4.0 6.4 0.11814588732224271 9.670855421101112E-19 7.290205055072577E-18 3.3546262790251185E-4
6.4 -1.4 -4.0 2.1898334133570592E-4 3.286415676451725E-27 3.888780650192921E-7 0.37531109885139957
6.4 -1.4 -1.4 0.004264566189502784 1.6266646214532314E-18 4.3507157507873234E-4 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.005405046549942563 9.333463883457657E-13 5.64257415572674E-4 0.37531109885139957
6.4 -1.4 3.8 2.2419211642465433E-4 6.208075409403594E-10 8.483267135001922E-7 0.37531109885139957
6.4 -1.4 6.4 2.1440721360819752E-4 4.786746389208764E-10 1.478489732767084E-12 0.37531109885139957
6.4 1.2000000000000002 -4.0 9.52749510665797E-4 1.8856770853470695E-21 9.142423147817332E-5 0.48675225595997157
6.4 1.2000000000000002 -1.4 0.4841087069628467 9.333463883457657E-13 0.10228420671553745 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 0.5878219094240962 5.35534780279311E-7 0.13265546508012166 0.48675225595997157
6.4 1.2000000000000002 3.8 0.006619048840501731 3.562064783070342E-4 1.9943942536412276E-4 0.48675225595997157
6.4 1.2000000000000002 6.4 0.005108750846418389 2.7465356997214227E-4 3.4758912812399117E-10 0.48675225595997157
6.4 3.8 -4.0 0.11924101816258234 1.2542423359420818E-18 2.491600973150319E-5 7.318024188804728E-4
6.4 3.8 -1.4 2.4459234017320988 6.208075409403594E-10 0.027875698255247015 7.318024188804728E-4
6.4 3.8 1.2000000000000002 2.4773357168198733 3.562064783070342E-4 0.036152831754046405 7.318024188804728E-4
6.4 3.8 3.8 4.977155265586825 0.23692775868212168 5.4353584196157506E-5 7.318024188804728E-4
6.4 3.8 6.4 4.971945843841512 0.18268352405273452 9.472908832676046E-11 7.318024188804728E-4
6.4 6.4 -4.0 2.496963696852765 9.670855421101112E-19 7.871635355336256E-9 1.2754076295260396E-9
6.4 6.4 -1.4 2.4999966195044543 4.786746389208764E-10 8.806680295330318E-6 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 4.776536274876287 2.7465356997214227E-4 1.142164863866049E-5 1.2754076295260396E-9
6.4 6.4 3.8 4.999596107814058 0.18268352405273452 1.7171754211781124E-8 1.2754076295260396E-9
6.4 6.4 6.4 4.999475787552176 0.14085842092104486 2.9927458244202245E-14 1.2754076295260396E-9

View File

@ -1,83 +0,0 @@
FUNCTION_BLOCK LarsenQoSFewRules
VAR_INPUT
commitment : REAL;
clarity : REAL;
influence : REAL;
END_VAR
VAR_OUTPUT
service_quality : REAL;
END_VAR
FUZZIFY commitment
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for commitment
END_FUZZIFY
FUZZIFY clarity
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for clarity
END_FUZZIFY
FUZZIFY influence
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for influence
END_FUZZIFY
DEFUZZIFY service_quality
TERM inadequate := GAUSS 0 1;
TERM sufficient := GAUSS 2.5 1;
TERM excellent := GAUSS 5 1;
METHOD : COG;
DEFAULT := 0;
RANGE := (-4.0 .. 9.0); // Added range for service_quality
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : PROD;
RULE 1 : IF commitment IS fully AND influence IS high THEN service_quality IS excellent;
RULE 2 : IF commitment IS fully AND influence IS medium THEN service_quality IS excellent WITH 0.8;
RULE 3 : IF commitment IS fully AND influence IS low THEN service_quality IS excellent WITH 0.6;
RULE 4 : IF commitment IS largely AND influence IS high AND clarity IS NOT high THEN service_quality IS excellent;
RULE 5 : IF commitment IS largely AND influence IS medium AND clarity IS NOT high THEN service_quality IS excellent WITH 0.66;
RULE 6 : IF commitment IS largely AND influence IS low AND clarity IS NOT high THEN service_quality IS excellent WITH 0.33;
RULE 7 : IF commitment IS largely AND influence IS high AND clarity IS high THEN service_quality IS sufficient WITH 0.66;
RULE 8 : IF commitment IS largely AND influence IS medium AND clarity IS high THEN service_quality IS sufficient WITH 0.33;
RULE 9 : IF commitment IS largely AND influence IS low AND clarity IS high THEN service_quality IS sufficient WITH 0.1;
RULE 10 : IF commitment IS satISfactory AND influence IS high THEN service_quality IS sufficient;
RULE 11 : IF commitment IS satISfactory AND influence IS medium THEN service_quality IS sufficient WITH 0.66;
RULE 12 : IF commitment IS satISfactory AND influence IS low THEN service_quality IS sufficient WITH 0.33;
RULE 13 : IF commitment IS satISfactory AND influence IS high AND clarity IS high THEN service_quality IS sufficient;
RULE 14 : IF commitment IS satISfactory AND influence IS medium AND clarity IS high THEN service_quality IS sufficient WITH 0.66;
RULE 15 : IF commitment IS satISfactory AND influence IS low AND clarity IS high THEN service_quality IS sufficient WITH 0.33;
RULE 16 : IF commitment IS satISfactory AND influence IS high AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.5;
RULE 17 : IF commitment IS satISfactory AND influence IS medium AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.3;
RULE 18 : IF commitment IS satISfactory AND influence IS low AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.1;
RULE 19 : IF commitment IS partially AND influence IS high AND clarity IS high THEN service_quality IS sufficient;
RULE 20 : IF commitment IS partially AND influence IS medium AND clarity IS high THEN service_quality IS sufficient WITH 0.66;
RULE 21 : IF commitment IS partially AND influence IS low AND clarity IS high THEN service_quality IS sufficient WITH 0.33;
RULE 22 : IF commitment IS partially AND influence IS high AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.4;
RULE 23 : IF commitment IS partially AND influence IS medium AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.25;
RULE 24 : IF commitment IS partially AND influence IS low AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.1;
RULE 25 : IF commitment IS minimal AND influence IS high AND clarity IS high THEN service_quality IS inadequate WITH 0.5;
RULE 26 : IF commitment IS minimal AND influence IS medium AND clarity IS high THEN service_quality IS inadequate WITH 0.3;
RULE 27 : IF commitment IS minimal AND influence IS low AND clarity IS high THEN service_quality IS inadequate WITH 0.1;
RULE 28 : IF commitment IS minimal AND influence IS high AND clarity IS NOT high THEN service_quality IS inadequate WITH 0.4;
RULE 29 : IF commitment IS minimal AND influence IS medium AND clarity IS NOT high THEN service_quality IS inadequate WITH 0.2;
RULE 30 : IF commitment IS minimal AND influence IS low AND clarity IS NOT high THEN service_quality IS inadequate WITH 0.05;
RULE 31 : IF commitment IS nothing THEN service_quality IS inadequate;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
clarity commitment influence service_quality No1.1 No1.2 No1.3 No1.4 No1.5 No1.6 No1.7 No1.8 No1.9 No1.10 No1.11 No1.12 No1.13 No1.14 No1.15 No1.16 No1.17 No1.18 No1.19 No1.20 No1.21 No1.22 No1.23 No1.24 No1.25 No1.26 No1.27 No1.28 No1.29 No1.30 No1.31
-4.0 -4.0 -4.0 0.11814588935110436 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 3.263247861014401E-32 5.593061367045755E-24 1.4019569042462244E-18 5.549674102370404E-50 7.205980319737613E-42 1.0946977029531417E-36 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 1.5203100247718292E-46 2.6057436111642533E-38 6.531557597224785E-33 2.950045270798531E-29 4.5965873537610616E-21 7.681204685202096E-16 1.0112214926104486E-43 1.7331885608247045E-35 4.344410886541402E-30 1.5697583431789854E-26 2.5478180157597454E-18 5.109089028063326E-13 1.2371887048697986E-41 1.927714808756546E-33 3.221340285992516E-28 3.8410720218034705E-24 4.987444106670752E-16 6.250764331933714E-11 3.3546262790251185E-4
-4.0 -4.0 -1.4 0.11814958430796335 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 1.615197336289554E-23 4.1620853300310446E-18 1.5684906231279692E-15 2.7469010045217157E-41 5.362341481533575E-36 1.2247331405417942E-33 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 7.525020491647316E-38 1.9390681678819735E-32 7.30741923281549E-30 1.4601726458639834E-20 3.4205576405824954E-15 8.593629009975723E-13 5.005204418506583E-35 1.2897549677693547E-29 4.860468761854674E-27 7.769772945573413E-18 1.8959627458161753E-12 5.715980433472656E-10 6.123665702708946E-33 1.4345119782311848E-27 3.6039924031760686E-25 1.9012007553066216E-15 3.711414302197895E-10 6.993271485254499E-8 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 0.11815685039287001 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 9.267666981929868E-18 3.590390428160152E-15 2.0342226797878067E-15 1.5761147675439327E-35 4.625782030201833E-33 1.5883932581053113E-33 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 4.3177005299545283E-32 1.6727220221267184E-29 9.47721185891852E-30 8.378167493191608E-15 2.9507173538957358E-12 1.1145336016681302E-12 2.871882381490462E-29 1.1125970574266328E-26 6.303688172548456E-27 4.458134406672523E-12 1.6355374661854566E-9 7.413226998963544E-10 3.51363224581236E-27 1.2374705627873112E-24 4.674126179793921E-25 1.0908695222623033E-9 3.201622583131571E-7 9.069784193448386E-8 3.3546262790251185E-4
-4.0 -4.0 3.8 0.11816579723261839 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 6.164311150872142E-15 3.590390428160152E-15 3.0583301040368564E-18 1.0483395503495055E-32 4.625782030201833E-33 2.3880526780968675E-36 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 2.8718823814904604E-29 1.6727220221267184E-29 1.4248411748849945E-32 5.572668008340651E-12 2.9507173538957358E-12 1.6756334986383217E-15 1.9102085371358956E-26 1.1125970574266328E-26 9.477211858918525E-30 2.9652907995854175E-9 1.6355374661854566E-9 1.1145336016681308E-12 2.3370630898969603E-24 1.2374705627873112E-24 7.02726449162472E-28 7.255827354758709E-7 3.201622583131571E-7 1.3635869028278791E-10 3.3546262790251185E-4
-4.0 -4.0 6.4 0.11816124304793059 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 4.75300188826657E-15 4.162085330031037E-18 5.330151209755528E-24 8.083238727575837E-33 5.362341481533565E-36 4.161971218972297E-42 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 2.2143694644895412E-29 1.9390681678819702E-32 2.4832567622436145E-38 4.296814504987859E-12 3.4205576405824895E-15 2.920345291727967E-21 1.4728693217741423E-26 1.2897549677693525E-29 1.6517174581071724E-35 2.2863921733890607E-9 1.895962745816172E-12 1.9424432363933533E-18 1.801996201588033E-24 1.4345119782311823E-27 1.2247331405417894E-33 5.594617188203596E-7 3.7114143021978885E-10 2.376500944133277E-16 3.3546262790251185E-4
-4.0 -1.4 -4.0 2.1566273940289027E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 1.1996648568848618E-24 2.0561720868973193E-16 5.154001474985931E-11 2.040221666063764E-42 2.6491280212793504E-34 4.024427254928865E-29 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 4.1512260309717424E-40 7.115016366695864E-32 1.7834501830940759E-26 8.055136466341391E-23 1.255104075198887E-14 2.0973627956717985E-9 2.0508073272063395E-38 3.514992339407074E-30 8.810680690255373E-25 3.1835477545322526E-21 5.167101266429722E-13 1.0361485876900873E-7 1.8635835244683486E-37 2.90372644313013E-29 4.852320959649879E-24 5.785825968143316E-20 7.512611964378164E-12 9.415557528511377E-7 0.37531109885139957
-4.0 -1.4 -1.4 0.0013552945189541795 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 5.937935344814024E-16 1.5301036618904385E-10 5.766227878059916E-8 1.0098407294878434E-33 1.9713527442601284E-28 4.5024753569086456E-26 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 2.054716501209046E-31 5.294650514159714E-26 1.9953001982631742E-23 3.9870201461923353E-14 9.339876529562729E-9 2.346501428356968E-6 1.0150802737727316E-29 2.6156870255734497E-24 9.857271649495095E-22 1.5757484788399258E-12 3.845106457530496E-7 1.159229173904592E-4 9.224108228599837E-29 2.1608125565335446E-23 5.4287117546670765E-21 2.863788192011557E-11 5.590521897611475E-6 0.0010533999761520717 0.37531109885139957
-4.0 -1.4 1.2000000000000002 0.0033401946531637643 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 3.4070640224298884E-10 1.3199319826783202E-7 7.478394421626833E-8 5.794256451153972E-28 1.7005720599836953E-25 5.83939575484603E-26 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 1.1789536700961867E-25 4.5673889454713485E-23 2.5877648590576898E-23 2.2876693847228997E-8 8.056971597862353E-6 3.043248300840359E-6 5.824319868470499E-24 2.2564019992380993E-21 1.2784192174667725E-21 9.041317627924226E-7 3.316951077567482E-4 1.5034391929775732E-4 5.2926017983859147E-23 1.8640080884570515E-20 7.040659606463864E-21 1.643182209012029E-5 0.004822620085363375 0.0013661861223646281 0.37531109885139957
-4.0 -1.4 3.8 0.005731124154253197 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 2.266180127765707E-7 1.3199319826783202E-7 1.1243311274018632E-10 3.854001198198379E-25 1.7005720599836953E-25 8.779176441142381E-29 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 7.841711694114211E-23 4.5673889454713485E-23 3.8905471113174165E-26 1.5216241504201794E-5 8.056971597862353E-6 4.5753387694457995E-9 3.873997628687189E-21 2.2564019992380993E-21 1.9220255565952648E-24 6.013756771910293E-4 3.316951077567482E-4 2.2603294069810565E-7 3.520329803231932E-20 1.8640080884570515E-20 1.058520359677183E-23 0.010929488978917025 0.004822620085363375 2.0539777612650365E-6 0.37531109885139957
-4.0 -1.4 6.4 0.004519283465705212 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 1.7473417812302764E-7 1.5301036618904356E-10 1.9595186637886281E-16 2.971633735559704E-25 1.9713527442601248E-28 1.5300617113452173E-34 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 6.04636423716113E-23 5.294650514159705E-26 6.780564453989853E-32 1.1732507141784832E-5 9.339876529562714E-9 7.974040292384671E-15 2.9870520149985116E-21 2.6156870255734456E-24 3.349764903450014E-30 4.6369166956183655E-4 3.8451064575304893E-7 3.9393711970998146E-13 2.714355877333536E-20 2.1608125565335405E-23 1.8448216457199674E-29 0.008427199809216569 5.590521897611466E-6 3.5797352400144464E-12 0.37531109885139957
-4.0 1.2000000000000002 -4.0 4.1968710934414503E-4 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 5.1125681935973695E-20 8.76271397941174E-12 2.1964621085250285E-6 8.694738649668496E-38 1.1289692770970466E-29 1.7150755615549714E-24 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 1.3139834801321656E-36 2.2521091111292437E-28 5.645137269665221E-23 2.549684398781133E-19 3.9727685468185554E-11 6.638761765307781E-6 4.821395204955692E-36 8.263656456581472E-28 2.0713683371835797E-22 7.484438774342709E-19 1.2147721991719894E-10 2.4359586422561893E-5 3.254101391107074E-36 5.070349750317637E-28 8.472893314185803E-23 1.010293559930985E-18 1.3118167618006242E-10 1.644100114070199E-5 0.48675225595997157
-4.0 1.2000000000000002 -1.4 0.18491722622280213 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 2.5305483615118886E-11 6.520787259702742E-6 0.002457372413405034 4.303601597186924E-29 8.401242464363133E-24 1.9188035866917437E-21 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 6.503773870177941E-28 1.6759105037339026E-22 6.315704032643393E-20 1.2620075534226006E-10 2.9563419035139285E-5 0.007427357821433391 2.3864275788793028E-27 6.149412826578897E-22 2.3174191760647823E-19 3.7045440882270904E-10 9.039746245755658E-5 0.027253179303401265 1.6106701429962517E-27 3.7731086660810757E-22 9.479359653504757E-20 5.00061146554695E-10 9.761904870468304E-5 0.018393972058572117 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.4404150022767337 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 1.451976112716682E-5 0.005625106239984455 0.003187040217087467 2.46931724870551E-23 7.247266246815995E-21 2.4885541019827166E-21 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 3.7317304208196737E-22 1.4457111168872598E-19 8.191026578411558E-20 7.241137334134403E-5 0.025502652711509876 0.009632763823049305 1.369282599756699E-21 5.304742983534518E-19 3.005530652854619E-19 2.1255904871930132E-4 0.07798066550816173 0.03534546819587802 9.241690886710733E-22 3.254842744659578E-19 1.229406673695594E-19 2.8692470404372553E-4 0.08421031052546425 0.023855695776051716 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.6888340090725914 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.009657697627537778 0.005625106239984455 4.7915211719650505E-6 1.642445707308593E-20 7.247266246815995E-21 3.741389770765924E-24 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 2.4821292661853207E-19 1.4457111168872598E-19 1.2314710388704924E-22 0.04816381911524652 0.025502652711509876 1.4482274668268806E-5 9.107668645013996E-19 5.304742983534518E-19 4.518632579197107E-22 0.14138187278351208 0.07798066550816173 5.313976217982533E-5 6.14703336847797E-19 3.254842744659578E-19 1.8483381773421468E-22 0.19084556620841372 0.08421031052546425 3.586558800546569E-5 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.5687815869853887 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.007446583070924341 6.52078725970273E-6 8.350809592989233E-12 1.2664103672165502E-20 8.401242464363119E-24 6.520608480586249E-30 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 1.913849706861633E-19 1.6759105037338995E-22 2.1462453771587204E-28 0.03713678910716693 2.956341903513923E-5 2.524015106845201E-11 7.022482351711458E-19 6.149412826578886E-22 7.875211010301699E-28 0.10901271721360502 9.039746245755642E-5 9.261360220567726E-11 4.739679826752375E-19 3.773108666081069E-22 3.2213402859925036E-28 0.14715177646857686 9.761904870468288E-5 6.250764331933688E-11 0.48675225595997157
-4.0 3.8 -4.0 0.5708220864589763 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 2.5257338998274624E-18 4.32899531394206E-10 1.0851060752863316E-4 4.295413836261338E-36 5.5773847253494E-28 8.472893314185803E-23 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 4.821395204955692E-36 8.263656456581472E-28 2.0713683371835797E-22 9.355548467928386E-19 1.4577266390063872E-10 2.4359586422561893E-5 1.3139834801321656E-36 2.2521091111292437E-28 5.645137269665221E-23 2.0397475190249064E-19 3.3106404556821296E-11 6.638761765307781E-6 6.586923219445831E-38 1.0263357064518605E-29 1.7150755615549714E-24 2.045027277438948E-20 2.655367872549012E-12 3.3279728917045884E-7 7.318024188804728E-4
-4.0 3.8 -1.4 3.937862356477235 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 1.2501528663867376E-9 3.2214286072545405E-4 0.12140021558657597 2.126084588755052E-27 4.1504195326891836E-22 9.479359653504757E-20 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 2.3864275788793028E-27 6.149412826578897E-22 2.3174191760647823E-19 4.6306801102838626E-10 1.084769549490679E-4 0.027253179303401265 6.503773870177941E-28 1.6759105037339026E-22 6.315704032643393E-20 1.0096060427380805E-10 2.4636182529282737E-5 0.007427357821433391 3.260304240293124E-29 7.637493149421029E-24 1.9188035866917437E-21 1.0122193446047554E-11 1.975996139303861E-6 3.7232915354621726E-4 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 3.9144955714527043 3.562064783070342E-4 0.16727041053862637 0.142156655209273 7.173117601093138E-4 0.277894024734032 0.15744759212194132 1.2199031970458169E-21 3.580327019125536E-19 1.229406673695594E-19 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 1.369282599756699E-21 5.304742983534518E-19 3.005530652854619E-19 2.6569881089912663E-4 0.09357679860979407 0.03534546819587802 3.7317304208196737E-22 1.4457111168872598E-19 8.191026578411558E-20 5.7929098673075225E-5 0.021252210592924897 0.009632763823049305 1.870694885382962E-23 6.5884238607418124E-21 2.4885541019827166E-21 5.807904450866728E-6 0.001704577648480138 4.8288488137688895E-4 7.318024188804728E-4
-4.0 3.8 3.8 3.8843679884165048 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.47711391552103427 0.277894024734032 2.3671288083607357E-4 8.114084046390922E-19 3.580327019125536E-19 1.8483381773421468E-22 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 9.107668645013996E-19 5.304742983534518E-19 4.518632579197107E-22 0.17672734097939008 0.09357679860979407 5.313976217982533E-5 2.4821292661853207E-19 1.4457111168872598E-19 1.2314710388704924E-22 0.03853105529219722 0.021252210592924897 1.4482274668268806E-5 1.2442770509913582E-20 6.5884238607418124E-21 3.741389770765924E-24 0.0038630790510151116 0.001704577648480138 7.25988056358341E-7 7.318024188804728E-4
-4.0 3.8 6.4 3.8979628503193475 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.3678794411714421 3.221428607254535E-4 4.125504459076234E-10 6.256377371313136E-19 4.150419532689176E-22 3.2213402859925036E-28 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 7.022482351711458E-19 6.149412826578886E-22 7.875211010301699E-28 0.13626589651700627 1.084769549490677E-4 9.261360220567726E-11 1.913849706861633E-19 1.6759105037338995E-22 2.1462453771587204E-28 0.029709431285733546 2.4636182529282693E-5 2.524015106845201E-11 9.594017933458713E-21 7.637493149421016E-24 6.520608480586249E-30 0.0029786332283697364 1.9759961393038577E-6 1.2652741807559443E-12 7.318024188804728E-4
-4.0 6.4 -4.0 4.69760242041261 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 1.4464564920358277E-19 2.479161948244792E-11 6.2142679688175035E-6 2.459930252298218E-37 3.1940990874431406E-29 4.852320959649875E-24 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 2.0508073272063356E-38 3.514992339407067E-30 8.810680690255358E-25 3.979434693165308E-21 6.200521519715655E-13 1.0361485876900853E-7 4.1512260309717424E-40 7.115016366695864E-32 1.7834501830940759E-26 6.444109173073113E-23 1.0459200626657392E-14 2.0973627956717985E-9 1.5456224742907302E-42 2.4082982011630456E-34 4.024427254928865E-29 4.798659427539447E-25 6.230824505749453E-17 7.809093143918077E-12 1.2754076295260396E-9
-4.0 6.4 -1.4 4.987426791297433 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 7.159470480028886E-11 1.844872226211785E-5 0.006952439842603668 1.2175822861751776E-28 2.376893812186897E-23 5.428711754667073E-21 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 1.0150802737727296E-29 2.6156870255734456E-24 9.857271649495077E-22 1.9696855985499037E-12 4.614127749036587E-7 1.1592291739045899E-4 2.054716501209046E-31 5.294650514159714E-26 1.9953001982631742E-23 3.1896161169538684E-14 7.783230441302274E-9 2.346501428356968E-6 7.650308556726086E-34 1.7921388584182984E-28 4.5024753569086456E-26 2.37517413792561E-16 4.636677763304359E-11 8.736708906151387E-9 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 4.981272386417009 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 4.107955522530069E-5 0.015914646281699123 0.009016828407606536 6.986234373869401E-23 2.050408897302755E-20 7.040659606463858E-21 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 5.82431986847049E-24 2.2564019992380948E-21 1.2784192174667702E-21 1.1301647034905263E-6 3.9803412930809707E-4 1.5034391929775705E-4 1.1789536700961867E-25 4.5673889454713485E-23 2.5877648590576898E-23 1.8301355077783198E-8 6.714142998218627E-6 3.043248300840359E-6 4.389588220571191E-28 1.5459745999851774E-25 5.83939575484603E-26 1.3628256089719553E-10 3.999793886904E-8 1.1330900638828535E-8 1.2754076295260396E-9
-4.0 6.4 3.8 4.97673182644395 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.027323722447292535 0.015914646281699123 1.3556253224349228E-5 4.646835340266146E-20 2.050408897302755E-20 1.058520359677182E-23 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 3.873997628687182E-21 2.2564019992380948E-21 1.922025556595262E-24 7.517195964887852E-4 3.9803412930809707E-4 2.2603294069810528E-7 7.841711694114211E-23 4.5673889454713485E-23 3.8905471113174165E-26 1.2172993203361436E-5 6.714142998218627E-6 4.5753387694457995E-9 2.9196978774230145E-25 1.5459745999851774E-25 8.779176441142381E-29 9.064720511062828E-8 3.999793886904E-8 1.703532011214944E-11 1.2754076295260396E-9
-4.0 6.4 6.4 4.977397875118472 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.021067999523041402 1.844872226211782E-5 2.3626252584095325E-11 3.582949758080266E-20 2.376893812186893E-23 1.844821645719966E-29 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 2.987052014998506E-21 2.6156870255734405E-24 3.349764903450008E-30 5.796145869522946E-4 4.6141277490365785E-7 3.9393711970998075E-13 6.04636423716113E-23 5.294650514159705E-26 6.780564453989853E-32 9.386005713427867E-6 7.783230441302261E-9 7.974040292384671E-15 2.251237678454321E-25 1.792138858418295E-28 1.5300617113452173E-34 6.989367124921106E-8 4.6366777633043505E-11 2.9689676724070125E-17 1.2754076295260396E-9
-1.4 -4.0 -4.0 0.11814588935110436 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 3.2632478568524295E-32 5.593061359912321E-24 1.4019569024581579E-18 2.7469010045217157E-41 3.5667165699687486E-33 5.418383430128308E-28 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 7.525020491647316E-38 1.2897549677693489E-29 3.2329001296211116E-24 2.9500452670360205E-29 4.5965873478985384E-21 7.681204675405428E-16 5.005204418506582E-35 8.57869725489183E-27 2.1503364716855153E-21 1.5697583411769035E-26 2.5478180125102386E-18 5.109089021547154E-13 6.1236657027089455E-33 9.54153639822384E-25 1.5944545038634991E-19 3.8410720169045376E-24 4.987444100309728E-16 6.25076432396144E-11 3.3546262790251185E-4
-1.4 -4.0 -1.4 0.11814958430795829 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 1.6151973342295188E-23 4.1620853247226886E-18 1.5684906211275042E-15 1.35962310388993E-32 2.6541776923299992E-27 6.062014871446861E-25 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 3.724630665920297E-29 9.597731686471509E-24 3.616925401530983E-21 1.460172644001668E-20 3.42055763621989E-15 8.593628999015342E-13 2.4774069236173352E-26 6.3838509274612766E-21 2.4057676681739527E-18 7.769772935663786E-18 1.8959627433980497E-12 5.71598042618245E-10 3.031007435723418E-24 7.100349176032886E-19 1.7838543615280973E-16 1.901200752881816E-15 3.711414297464329E-10 6.993271476335228E-8 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 0.11815685039285569 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 9.267666970109815E-18 3.5903904235809405E-15 2.0342226771933438E-15 7.801235096595546E-27 2.2896056725263606E-24 7.862009472594772E-25 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 2.1371157484527262E-23 8.279408336613719E-21 4.6908993744712085E-21 8.37816748250603E-15 2.950717350132368E-12 1.1145336002466456E-12 1.42148465893067E-20 5.506979181656353E-18 3.120112470382555E-18 4.458134400986585E-12 1.6355374640994796E-9 7.413226989508659E-10 1.7391291393884594E-18 6.125060804083309E-16 2.3135343916957497E-16 1.090869520871E-9 3.201622579048197E-7 9.069784181880714E-8 3.3546262790251185E-4
-1.4 -4.0 3.8 0.11816579723259257 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 6.164311143010132E-15 3.5903904235809405E-15 3.058330100136239E-18 5.18892625191255E-24 2.2896056725263606E-24 1.182005317665992E-27 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 1.421484658930669E-20 8.279408336613719E-21 7.052481969893997E-24 5.572668001233227E-12 2.950717350132368E-12 1.675633496501206E-15 9.45488627388653E-18 5.506979181656353E-18 4.6908993744712115E-21 2.9652907958034634E-9 1.6355374640994796E-9 1.1145336002466462E-12 1.1567671958478748E-15 6.125060804083309E-16 3.478258278776919E-19 7.255827345504571E-7 3.201622579048197E-7 1.36358690108875E-10 3.3546262790251185E-4
-1.4 -4.0 6.4 0.11816124304791356 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 4.753001882204555E-15 4.162085324722682E-18 5.3301512029574124E-24 4.000929815154925E-24 2.6541776923299946E-27 2.0600350058938336E-33 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 1.0960380004639338E-20 9.597731686471491E-24 1.229128119753698E-29 4.296814499507669E-12 3.420557636219884E-15 2.9203452880033366E-21 7.290205055072577E-18 6.383850927461265E-21 8.175442847937207E-27 2.2863921704729785E-9 1.8959627433980465E-12 1.9424432339159464E-18 8.919271807640483E-16 7.100349176032873E-19 6.062014871446836E-25 5.594617181068179E-7 3.711414297464322E-10 2.37650094110227E-16 3.3546262790251185E-4
-1.4 -1.4 -4.0 2.1566273940131387E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 1.1996648553548E-24 2.0561720842748616E-16 5.1540014684124785E-11 1.0098407294878434E-33 1.31122878362366E-25 1.9919553950865206E-20 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 2.0547165012090466E-31 3.5216924893873464E-23 8.82747528789679E-18 8.055136456067808E-23 1.2551040735981176E-14 2.097362792996806E-9 1.0150802737727316E-29 1.739802339722866E-21 4.3609889864064744E-16 3.183547750471931E-21 5.167101259839562E-13 1.0361485863685754E-7 9.224108228599837E-29 1.4372463925554774E-20 2.4017347816209506E-15 5.785825960764029E-20 7.51261195479652E-12 9.415557516502703E-7 0.37531109885139957
-1.4 -1.4 -1.4 0.0013552945175577269 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 5.937935337240736E-16 1.5301036599389325E-10 5.7662278707056246E-8 4.998370107989373E-25 9.757529421703984E-20 2.2285730391707162E-17 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 1.017015182705546E-22 2.620672952619809E-17 9.876061220586747E-15 3.987020141107259E-14 9.33987651765058E-9 2.346501425364222E-6 5.024304080316231E-21 1.294676621640399E-15 4.879016118131381E-13 1.5757484768302043E-12 3.845106452626418E-7 1.1592291724261023E-4 4.5656216367976534E-20 1.0695291421869102E-14 2.687028733053801E-12 2.8637881883590597E-11 5.59052189048128E-6 0.0010533999748085574 0.37531109885139957
-1.4 -1.4 1.2000000000000002 0.003340194649359548 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 3.407064018084493E-10 1.3199319809948686E-7 7.478394412088832E-8 2.8679609960039004E-19 8.417256605816809E-17 2.890303424832678E-17 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 5.835421974217454E-17 2.2607030702934155E-14 1.2808560934732036E-14 2.2876693818051885E-8 8.056971587586428E-6 3.0432482969589766E-6 2.882841370905708E-15 1.1168426837288649E-12 6.327742796931828E-13 9.04131761639286E-7 3.3169510733370173E-4 1.5034391910600755E-4 2.6196589075942415E-14 9.226209676766952E-12 3.484888407632884E-12 1.6431822069163016E-5 0.004822620079212568 0.0013661861206221838 0.37531109885139957
-1.4 -1.4 3.8 0.005731124147523805 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 2.2661801248754035E-7 1.3199319809948686E-7 1.1243311259678828E-10 1.9076002603895674E-16 8.417256605816809E-17 4.345395448490758E-20 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 3.88138210143395E-14 2.2607030702934155E-14 1.92568925149176E-17 1.5216241484794883E-5 8.056971587586428E-6 4.575338763610378E-9 1.917497817252069E-12 1.1168426837288649E-12 9.513376523988836E-16 6.013756764240302E-4 3.3169510733370173E-4 2.260329404098215E-7 1.742444203816442E-11 9.226209676766952E-12 5.239317815188483E-15 0.01092948896497747 0.004822620079212568 2.053977758645377E-6 0.37531109885139957
-1.4 -1.4 6.4 0.004519283460468586 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 1.7473417790017033E-7 1.53010365993893E-10 1.9595186612894428E-16 1.4708582058526717E-16 9.757529421703967E-20 7.573288042408141E-26 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 2.9927458244202245E-14 2.6206729526198044E-17 3.356150102928302E-23 1.1732507126821102E-5 9.339876517650563E-9 7.974040282214518E-15 1.478489732767084E-12 1.2946766216403966E-15 1.6580203465043563E-21 4.6369166897044064E-4 3.845106452626411E-7 3.939371192075511E-13 1.3435143665268995E-11 1.0695291421869083E-14 9.131243273595307E-21 0.008427199798468453 5.590521890481271E-6 3.5797352354488247E-12 0.37531109885139957
-1.4 1.2000000000000002 -4.0 4.1968710906520605E-4 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 5.1125681870767605E-20 8.762713968235707E-12 2.1964621057236437E-6 4.303601597186924E-29 5.588016132348108E-21 8.489044033871738E-16 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 6.503773870177941E-28 1.1147178492897619E-19 2.79415204400617E-14 2.549684395529246E-19 3.9727685417516554E-11 6.638761756840654E-6 2.3864275788793028E-27 4.0902304897346143E-19 1.0252572783893339E-13 7.484438764796999E-19 1.2147721976226597E-10 2.4359586391493486E-5 1.6106701429962517E-27 2.5096516598109887E-19 4.1937956583795287E-14 1.0102935586424489E-18 1.311816760127523E-10 1.6441001119733013E-5 0.48675225595997157
-1.4 1.2000000000000002 -1.4 0.18491722601366667 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 2.530548358284408E-11 6.52078725138608E-6 0.0024573724102708826 2.1301372535235416E-20 4.158330910770536E-15 9.497428862556356E-13 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 3.219148124309352E-19 8.295190242304239E-14 3.1260599147830967E-11 1.2620075518130265E-10 2.9563418997433874E-5 0.007427357811960482 1.1812009485101043E-18 3.043751391335461E-13 1.1470441228091714E-10 3.7045440835022864E-10 9.039746234226297E-5 0.027253179268642354 7.972272519317463E-19 1.8675611925754022E-13 4.691962460158335E-11 5.000611459169132E-10 9.761904858017896E-5 0.018393972035112307 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 0.4404150018272695 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 1.4519761108648204E-5 0.005625106232810152 0.003187040213022692 1.2222285319519553E-14 3.587151707685354E-12 1.2317501237817214E-12 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 1.847080360480173E-13 7.15578112511078E-11 4.054281156202036E-11 7.241137324899E-5 0.0255026526789836 0.009632763810763605 6.777485811534851E-13 2.625668383658167E-10 1.4876360336043625E-10 2.1255904844820185E-4 0.07798066540870459 0.035345468150798136 4.574324457960856E-13 1.6110370879340108E-10 6.085147280085695E-11 2.8692470367777954E-4 0.08421031041806178 0.023855695745625977 0.48675225595997157
-1.4 1.2000000000000002 3.8 0.6888340084428971 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.009657697615220277 0.005625106232810152 4.791521165853908E-6 8.129550816959362E-12 3.587151707685354E-12 1.851861412048417E-15 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 1.2285700473339503E-10 7.15578112511078E-11 6.095365189584572E-14 0.048163819053818016 0.0255026526789836 1.4482274649798003E-5 4.5079879806192804E-10 2.625668383658167E-10 2.236570317806501E-13 0.14138187260319254 0.07798066540870459 5.313976211205046E-5 3.0425736400428474E-10 1.6110370879340108E-10 9.148648915921711E-14 0.19084556596500782 0.08421031041806178 3.586558795972244E-5 0.48675225595997157
-1.4 1.2000000000000002 6.4 0.5687815864372212 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.007446583061426912 6.520787251386068E-6 8.350809582338546E-12 6.268303049287191E-12 4.158330910770529E-15 3.227480687156881E-21 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 9.472908832676046E-11 8.295190242304224E-14 1.0623188810220862E-19 0.03713678905980239 2.956341899743382E-5 2.5240151036260533E-11 3.4758912812399117E-10 3.0437513913354553E-13 3.8979631300833443E-19 0.10901271707456937 9.03974623422628E-5 9.261360208755716E-11 2.3459812300791656E-10 1.867561192575399E-13 1.5944545038634926E-19 0.14715177628089834 9.76190485801788E-5 6.250764323961415E-11 0.48675225595997157
-1.4 3.8 -4.0 0.5708220858339339 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 2.525733896606122E-18 4.328995308420826E-10 1.0851060739023788E-4 2.126084588755052E-27 2.760616825792088E-19 4.1937956583795287E-14 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 2.3864275788793028E-27 4.0902304897346143E-19 1.0252572783893339E-13 9.355548455996249E-19 1.4577266371471915E-10 2.4359586391493486E-5 6.503773870177941E-28 1.1147178492897619E-19 2.79415204400617E-14 2.0397475164233968E-19 3.310640451459713E-11 6.638761756840654E-6 3.260304240293124E-29 5.080014665771007E-21 8.489044033871738E-16 2.0450272748307044E-20 2.6553678691623354E-12 3.327972887460066E-7 7.318024188804728E-4
-1.4 3.8 -1.4 3.9378623556568337 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 1.250152864792283E-9 3.221428603145906E-4 0.12140021543174122 1.0523399725499051E-18 2.0543173118329425E-13 4.691962460158335E-11 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 1.1812009485101043E-18 3.043751391335461E-13 1.1470441228091714E-10 4.6306801043778576E-10 1.0847695481071556E-4 0.027253179268642354 3.219148124309352E-19 8.295190242304239E-14 3.1260599147830967E-11 1.0096060414504213E-10 2.4636182497861562E-5 0.007427357811960482 1.6137403435784405E-20 3.7803008279732145E-15 9.497428862556356E-13 1.0122193433137632E-11 1.9759961367836607E-6 3.723291530713458E-4 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 3.914495570739971 3.562064783070342E-4 0.16727041053862637 0.142156655209273 7.173117591944488E-4 0.27789402437960387 0.15744759192113145 6.038108284508329E-13 1.772140796727412E-10 6.085147280085695E-11 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 6.777485811534851E-13 2.625668383658167E-10 1.4876360336043625E-10 2.656988105602523E-4 0.0935767984904455 0.035345468150798136 1.847080360480173E-13 7.15578112511078E-11 4.054281156202036E-11 5.792909859919201E-5 0.021252210565819666 0.009632763810763605 9.259307060242086E-15 3.261047006986685E-12 1.2317501237817214E-12 5.807904443459282E-6 0.0017045776463061064 4.8288488076101387E-4 7.318024188804728E-4
-1.4 3.8 3.8 3.884367987815739 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.47711391491251953 0.27789402437960387 2.3671288053416813E-4 4.016197204856559E-10 1.772140796727412E-10 9.148648915921711E-14 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 4.5079879806192804E-10 2.625668383658167E-10 2.236570317806501E-13 0.17672734075399069 0.0935767984904455 5.313976211205046E-5 1.2285700473339503E-10 7.15578112511078E-11 6.095365189584572E-14 0.03853105524305442 0.021252210565819666 1.4482274649798003E-5 6.158750618908607E-12 3.261047006986685E-12 1.851861412048417E-15 0.003863079046088111 0.0017045776463061064 7.259880554324102E-7 7.318024188804728E-4
-1.4 3.8 6.4 3.8979628496547742 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.3678794407022459 3.2214286031459E-4 4.125504453814534E-10 3.096695223704499E-10 2.0543173118329388E-13 1.5944545038634926E-19 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 3.4758912812399117E-10 3.0437513913354553E-13 3.8979631300833443E-19 0.1362658963432117 1.0847695481071537E-4 9.261360208755716E-11 9.472908832676046E-11 8.295190242304224E-14 1.0623188810220862E-19 0.02970943124784191 2.4636182497861518E-5 2.5240151036260533E-11 4.748714431278175E-12 3.780300827973208E-15 3.227480687156881E-21 0.002978633224570765 1.9759961367836573E-6 1.265274179142204E-12 7.318024188804728E-4
-1.4 6.4 -4.0 4.69760242041261 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 1.4464564901910059E-19 2.4791619450828498E-11 6.214267960891779E-6 1.2175822861751776E-28 1.580971031811024E-20 2.4017347816209482E-15 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 1.0150802737727296E-29 1.739802339722863E-21 4.360988986406466E-16 3.979434688089906E-21 6.200521511807462E-13 1.0361485863685734E-7 2.0547165012090466E-31 3.5216924893873464E-23 8.82747528789679E-18 6.444109164854247E-23 1.0459200613317647E-14 2.097362792996806E-9 7.650308556726086E-34 1.1920261669305998E-25 1.9919553950865206E-20 4.7986594214192E-25 6.230824497802611E-17 7.8090931339583E-12 1.2754076295260396E-9
-1.4 6.4 -1.4 4.987426791297434 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 7.159470470897642E-11 1.844872223858821E-5 0.006952439833736473 6.026620560572897E-20 1.1764820564056003E-14 2.6870287330537986E-12 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 5.024304080316222E-21 1.2946766216403966E-15 4.879016118131372E-13 1.9696855960377517E-12 4.614127743151693E-7 1.1592291724261001E-4 1.017015182705546E-22 2.620672952619809E-17 9.876061220586747E-15 3.1896161128858074E-14 7.783230431375483E-9 2.346501425364222E-6 3.7866440212040705E-25 8.870481292458167E-20 2.2285730391707162E-17 2.3751741348962944E-16 4.6366777573907045E-11 8.736708895008521E-9 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 4.98127238641701 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 4.107955517290751E-5 0.01591464626140146 0.009016828396106406 3.457949758024396E-14 1.014883064444364E-11 3.4848884076328814E-12 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 2.882841370905703E-15 1.1168426837288626E-12 6.327742796931816E-13 1.1301647020491055E-6 3.980341288004413E-4 1.5034391910600728E-4 5.835421974217454E-17 2.2607030702934155E-14 1.2808560934732036E-14 1.830135505444151E-8 6.714142989655358E-6 3.0432482969589766E-6 2.172697724245379E-19 7.652051459833462E-17 2.890303424832678E-17 1.3628256072337973E-10 3.999793881802633E-8 1.1330900624377018E-8 1.2754076295260396E-9
-1.4 6.4 3.8 4.976731826443951 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.02732372241244365 0.01591464626140146 1.3556253207059478E-5 2.3000263490377015E-11 1.014883064444364E-11 5.239317815188479E-15 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 1.917497817252065E-12 1.1168426837288626E-12 9.51337652398882E-16 7.517195955300363E-4 3.980341288004413E-4 2.260329404098211E-7 3.88138210143395E-14 2.2607030702934155E-14 1.92568925149176E-17 1.2172993187835906E-5 6.714142989655358E-6 4.575338763610378E-9 1.445151712416339E-16 7.652051459833462E-17 4.345395448490758E-20 9.064720499501614E-8 3.999793881802633E-8 1.7035320090422466E-11 1.2754076295260396E-9
-1.4 6.4 6.4 4.9773978751184735 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.021067999496171115 1.844872223858818E-5 2.362625255396222E-11 1.773438963815506E-11 1.1764820564055982E-14 9.1312432735953E-21 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 1.4784897327670813E-12 1.2946766216403942E-15 1.6580203465043535E-21 5.796145862130497E-4 4.6141277431516847E-7 3.9393711920755037E-13 2.9927458244202245E-14 2.6206729526198044E-17 3.356150102928302E-23 9.386005701456883E-6 7.78323043137547E-9 7.974040282214518E-15 1.1142865195853572E-16 8.870481292458152E-20 7.573288042408141E-26 6.989367116006813E-8 4.636677757390697E-11 2.968967668620368E-17 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 0.11814588934948658 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 3.260859808336304E-32 5.5889683512084044E-24 1.4009309487925308E-18 1.5761147675439324E-35 2.0465079186755038E-27 3.1089559202835345E-22 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 4.317700529954529E-32 7.40034623697102E-24 1.8549709756204818E-18 2.947886420533554E-29 4.593223560016983E-21 7.675583561033549E-16 2.8718823814904615E-29 4.9222783811526025E-21 1.2338184239741003E-15 1.568609590226389E-26 2.545953516372945E-18 5.105350184354313E-13 3.51363224581236E-27 5.474735491939222E-19 9.148648915921748E-14 3.838261116006821E-24 4.983794283009459E-16 6.246190007475752E-11 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 0.11814958145327799 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 1.614015330971888E-23 4.1590395059189404E-18 1.567342797895973E-15 7.801235096595546E-27 1.5229120560518244E-21 3.478258278776933E-19 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 2.137115748452726E-23 5.506979181656377E-18 2.07531670383234E-15 1.459104087989757E-20 3.4180544682271972E-15 8.587340171479261E-13 1.42148465893067E-20 3.662921126028226E-15 1.380379541471285E-12 7.764087006937691E-18 1.8945752756926796E-12 5.711797465165166E-10 1.7391291393884594E-18 4.074032945724002E-13 1.0235385977594158E-10 1.899809451995111E-15 3.7086982802340793E-10 6.988153792265702E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 0.11815684229315888 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 9.260884880815113E-18 3.5877629717600986E-15 2.0327340307101963E-15 4.4761867357382794E-21 1.3137282000264475E-18 4.511057810940104E-19 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 1.2262326474606731E-17 4.750552613429672E-15 2.6915406725602E-15 8.372036329954304E-15 2.948558011798722E-12 1.113717983282506E-12 8.156183856243035E-15 3.1597903231597735E-12 1.7902557583520114E-12 4.4548719331300265E-12 1.6343405759115325E-9 7.407801981513993E-10 9.978761938431742E-13 3.514432726017046E-10 1.3274580022978815E-10 1.0900712213072289E-9 3.199279627980893E-7 9.063146903436896E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 0.11816578266305734 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 6.159800093061201E-15 3.5877629717600986E-15 3.0560920106689874E-18 2.977298155220469E-18 1.3137282000264475E-18 6.782101114754968E-22 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 8.15618385624303E-15 4.750552613429672E-15 4.0465677366202215E-18 5.568589916412529E-12 2.948558011798722E-12 1.6744072659908608E-15 5.42501744955155E-12 3.1597903231597735E-12 2.6915406725602017E-15 2.963120792605597E-9 1.6343405759115325E-9 1.1137179832825066E-12 6.637290011489407E-10 3.514432726017046E-10 1.9957523876863485E-13 7.250517522749517E-7 3.199279627980893E-7 1.362589026634036E-10 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 0.11816123175482864 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 4.749523629987793E-15 4.1590395059189335E-18 5.32625059220723E-24 2.295650463992774E-18 1.522912056051822E-21 1.182005317665992E-27 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 6.288838496461633E-15 5.5069791816563666E-18 7.052481969893996E-24 4.293670085739628E-12 3.418054468227191E-15 2.9182081759795144E-21 4.18296830748874E-12 3.66292112602822E-15 4.6908993744712115E-21 2.284718986066065E-9 1.8945752756926764E-12 1.941021751734423E-18 5.117692988797076E-10 4.074032945723995E-13 3.478258278776919E-19 5.590523033812558E-7 3.7086982802340726E-10 2.3747618149938887E-16 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 2.156618350218161E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 1.1987869392407475E-24 2.0546673751904932E-16 5.150229764239622E-11 5.794256451153972E-28 7.523558534129839E-20 1.142942650396433E-14 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 1.1789536700961867E-25 2.0206740359900258E-17 5.0650220515703585E-12 8.04924169799091E-23 1.2541855870007096E-14 2.095827940504656E-9 5.8243198684705E-24 9.982624622186371E-16 2.5022449412109315E-10 3.181218026584864E-21 5.163319969224349E-13 1.0353903316472959E-7 5.2926017983859147E-23 8.24662141146348E-15 1.3780655548945743E-9 5.781591886704606E-20 7.507114216770521E-12 9.408667200736903E-7 0.37531109885139957
1.2000000000000002 -1.4 -1.4 0.0013544932725351579 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 5.933589949365533E-16 1.5289839283295292E-10 5.762008138550935E-8 2.8679609960038995E-19 5.59866780454646E-14 1.2787089421152309E-11 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 5.835421974217454E-17 1.5036877320033714E-11 5.666678889887775E-9 3.9841024352052266E-14 9.333041585326349E-9 2.3447842529357897E-6 2.882841370905708E-15 7.428585665090682E-10 2.799478154550636E-7 1.5745953422915636E-12 3.8422925993240223E-7 1.158380847191092E-4 2.6196589075942415E-14 6.136736171214492E-9 1.5417613011934368E-6 2.8616924648854818E-11 5.586430740163999E-6 0.001052629095501475 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 0.0033380118599870313 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 3.4045707247369935E-10 1.3189660532606383E-7 7.472921714499744E-8 1.6455764773105851E-13 4.8296470884084643E-11 1.6583960991178033E-11 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 3.3482439786780416E-11 1.2971444869167263E-8 7.3492863437692484E-9 2.285995262733561E-8 8.051075486558185E-6 3.0410212443725503E-6 1.6541145274954016E-9 6.408211449742276E-7 3.6307274456002905E-7 9.034701169814244E-7 3.31452372474561E-4 1.5023389725395126E-4 1.5031058940204516E-8 5.293807565715704E-6 1.9995566179747367E-6 1.6419797242968125E-5 0.0048190908803195645 0.0013651863440556408 0.37531109885139957
1.2000000000000002 -1.4 3.8 0.005727262962250436 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 2.264521731666589E-7 1.3189660532606383E-7 1.1235083391632079E-10 1.0945414254177502E-10 4.8296470884084643E-11 2.493297692894826E-14 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 2.227056467808863E-8 1.2971444869167263E-8 1.1049205129637537E-11 1.520510622186275E-5 8.051075486558185E-6 4.571990525467122E-9 1.100220438060694E-6 6.408211449742276E-7 5.458577940734826E-10 6.00935589015805E-4 3.31452372474561E-4 2.258675292453561E-7 9.997783089873683E-6 5.293807565715704E-6 3.0062117880409034E-9 0.010921490752445126 0.0048190908803195645 2.0524746553710156E-6 0.37531109885139957
1.2000000000000002 -1.4 6.4 0.004516278773197737 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 1.746063072288161E-7 1.5289839283295264E-10 1.9580846832906261E-16 8.439479017960519E-11 5.59866780454645E-14 4.345395448490757E-20 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 1.7171754211781124E-8 1.503687732003369E-11 1.92568925149176E-17 1.1723921264678942E-5 9.333041585326334E-9 7.968204870410453E-15 8.483267135001922E-7 7.428585665090668E-10 9.513376523988836E-16 4.633523388764365E-4 3.8422925993240154E-7 3.936488355728909E-13 7.708806505967179E-6 6.136736171214481E-9 5.239317815188483E-15 0.008421032764011795 5.5864307401639895E-6 3.577115581106852E-12 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 4.1952706147150746E-4 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 5.1088268038266034E-20 8.756301404125649E-12 2.1948547322410305E-6 2.46931724870551E-23 3.2062876430456223E-15 4.870837224236119E-10 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 3.731730420819674E-22 6.396019590870976E-14 1.6032264330137327E-8 2.547818533570723E-19 3.969861265186341E-11 6.633903503389558E-6 1.3692825997566989E-21 2.346889337081027E-13 5.8827134080963754E-8 7.478961643943682E-19 1.2138832259382465E-10 2.434176001829493E-5 9.241690886710733E-22 1.4399860191204686E-13 2.4063128807164664E-8 1.009554224660048E-18 1.3108567711212106E-10 1.642896957629841E-5 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 0.18479722601208076 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 2.52869650009984E-11 6.516015331813086E-6 0.002455574102328814 1.2222285319519553E-14 2.3859639448277177E-9 5.449427503696815E-7 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 1.8470803604801732E-13 4.759607943264227E-8 1.7936682784731988E-5 1.2610840132423605E-10 2.9541784453578993E-5 0.007421922463013775 6.77748581153485E-13 1.7464413565393514E-7 6.581501037016055E-5 3.7018330939024766E-10 9.033130937586949E-5 0.027233235360864857 4.574324457960856E-13 1.0715678395634659E-7 2.6921506490565812E-5 4.996952005980582E-10 9.754761084871214E-5 0.018380511305326832 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 0.44015708677500726 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 1.4509135530852391E-5 0.0056209897736315744 0.003184707933347533 7.012893567522043E-9 2.058233176440133E-6 7.06752648464835E-7 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 1.0598163633130508E-7 4.1058386472733474E-5 2.3262623558498908E-5 7.235838252317838E-5 0.025483989808567722 0.009625714543183093 3.888780650192924E-7 1.5065540066222397E-4 8.535746710328096E-5 2.124034974932936E-4 0.07792359906851694 0.03531960229675581 2.6246524056970265E-7 9.24379634058157E-5 3.4915311745982646E-5 2.867147318512698E-4 0.08414868521652705 0.023838238120178726 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 0.6884726537911412 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.00965063010105313 0.0056209897736315744 4.788014725181289E-6 4.66456747986791E-6 2.058233176440133E-6 1.0625596314427338E-9 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 7.04927986621179E-5 4.1058386472733474E-5 3.497393998933068E-8 0.04812857271591546 0.025483989808567722 1.4471676504635676E-5 2.586589912220635E-4 1.5065540066222397E-4 1.283297614563665E-7 0.14127840918702325 0.07792359906851694 5.31008743733234E-5 1.745765587299132E-4 9.24379634058157E-5 5.249304811394053E-8 0.1907059049614298 0.08414868521652705 3.583934148140872E-5 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 0.5684670275517375 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.007441133643420644 6.516015331813075E-6 8.344698450329473E-12 3.596622152439896E-6 2.3859639448277136E-9 1.851861412048417E-15 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 5.4353584196157506E-5 4.759607943264218E-8 6.095365189584572E-14 0.03710961231506885 2.954178445357894E-5 2.522168026484721E-11 1.9943942536412276E-4 1.7464413565393482E-7 2.2365703178065008E-13 0.10893294144345939 9.033130937586932E-5 9.254582734756191E-11 1.3460753245282897E-4 1.071567839563464E-7 9.148648915921711E-14 0.14704409044261457 9.754761084871196E-5 6.246190007475727E-11 0.48675225595997157
1.2000000000000002 3.8 -4.0 0.5704634302935501 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 2.52388556165012E-18 4.325827344699995E-10 1.084311992035695E-4 1.2199031970458169E-21 1.5839846210325154E-13 2.4063128807164664E-8 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 1.3692825997566989E-21 2.346889337081027E-13 5.8827134080963754E-8 9.348702054929602E-19 1.4566598711258956E-10 2.434176001829493E-5 3.731730420819674E-22 6.396019590870976E-14 1.6032264330137327E-8 2.0382548268565787E-19 3.308217720988618E-11 6.633903503389558E-6 1.870694885382962E-23 2.9148069482232926E-15 4.870837224236119E-10 2.0435307215306415E-20 2.653424667916863E-12 3.3255374730924705E-7 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 3.9373914228681013 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 1.2492380014951454E-9 3.219071158007501E-4 0.1213113746151571 6.038108284508329E-13 1.1787246235198127E-7 2.6921506490565812E-5 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 6.77748581153485E-13 1.7464413565393514E-7 6.581501037016055E-5 4.627291367378095E-10 1.0839757125104338E-4 0.027233235360864857 1.8470803604801732E-13 4.759607943264227E-8 1.7936682784731988E-5 1.0088672105938884E-10 2.461815371131583E-5 0.007421922463013775 9.259307060242086E-15 2.1690581316615615E-9 5.449427503696815E-7 1.0114786000399361E-11 1.9745501005494202E-6 3.7205668217103245E-4 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 3.914086446933782 3.562064783070342E-4 0.16727041053862637 0.142156655209273 7.167868296281744E-4 0.2776906612145392 0.1573323715931796 3.464541175520075E-7 1.016817597463973E-4 3.4915311745982646E-5 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 3.888780650192924E-7 1.5065540066222397E-4 8.535746710328096E-5 2.65504371866617E-4 0.09350831888222032 0.03531960229675581 1.0598163633130508E-7 4.1058386472733474E-5 2.3262623558498908E-5 5.78867060185427E-5 0.021236658173806437 0.009625714543183093 5.312798157213669E-9 1.8711210694910295E-6 7.06752648464835E-7 5.8036542123409565E-6 0.0017033302344338103 4.825315050526565E-4 7.318024188804728E-4
1.2000000000000002 3.8 3.8 3.8840231477722065 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.47676476240357446 0.2776906612145392 2.3653965377729756E-4 2.3044105752348544E-4 1.016817597463973E-4 5.249304811394053E-8 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 2.586589912220635E-4 1.5065540066222397E-4 1.283297614563665E-7 0.17659801148377904 0.09350831888222032 5.31008743733234E-5 7.04927986621179E-5 4.1058386472733474E-5 3.497393998933068E-8 0.03850285817273237 0.021236658173806437 1.4471676504635676E-5 3.5337632423241746E-6 1.8711210694910295E-6 1.0625596314427338E-9 0.003860252040421252 0.0017033302344338103 7.254567765426196E-7 7.318024188804728E-4
1.2000000000000002 3.8 6.4 3.89758137229352 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.36761022610653643 3.219071158007495E-4 4.12248540493398E-10 1.7768194283773425E-4 1.1787246235198105E-7 9.148648915921711E-14 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 1.9943942536412276E-4 1.7464413565393482E-7 2.2365703178065008E-13 0.13616617680432422 1.0839757125104319E-4 9.254582734756191E-11 5.4353584196157506E-5 4.759607943264218E-8 6.095365189584572E-14 0.029687689852055082 2.4618153711315784E-5 2.522168026484721E-11 2.724713751848406E-6 2.169058131661558E-9 1.851861412048417E-15 0.002976453457368258 1.974550100549417E-6 1.2643482500499202E-12 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 4.69760242041261 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 1.4453979716761504E-19 2.47734769153427E-11 6.209720352486351E-6 6.986234373869401E-23 9.07128355260982E-15 1.3780655548945733E-9 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 5.824319868470489E-24 9.982624622186351E-16 2.5022449412109274E-10 3.9765225332310725E-21 6.195983963069206E-13 1.035390331647294E-7 1.1789536700961867E-25 2.0206740359900258E-17 5.0650220515703585E-12 6.439393358392728E-23 1.0451546558339247E-14 2.095827940504656E-9 4.389588220571191E-28 6.839598667390763E-20 1.142942650396433E-14 4.79514775696299E-25 6.226264773304524E-17 7.803378430666094E-12 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 4.987426791350262 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 7.154231162213698E-11 1.843522144254118E-5 0.00694735203030973 3.457949758024396E-14 6.750409788335935E-9 1.5417613011934356E-6 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 2.8828413709057025E-15 7.428585665090668E-10 2.799478154550631E-7 1.9682441778644506E-12 4.610751119188818E-7 1.1583808471910898E-4 5.835421974217454E-17 1.5036877320033714E-11 5.666678889887775E-9 3.1872819481641813E-14 7.777534654438625E-9 2.3447842529357897E-6 2.1726977242453784E-19 5.089698004133145E-14 1.2787089421152309E-11 2.3734359797462134E-16 4.633284631301604E-11 8.730315361440811E-9 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 4.98127238668786 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 4.104949310742028E-5 0.01590299990505455 0.00901022987076722 1.984099780106995E-8 5.82318832228727E-6 1.9995566179747345E-6 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 1.6541145274953988E-9 6.408211449742263E-7 3.6307274456002836E-7 1.1293376462267786E-6 3.977428469694724E-4 1.5023389725395098E-4 3.3482439786780416E-11 1.2971444869167263E-8 7.3492863437692484E-9 1.828796210186849E-8 6.709229572131821E-6 3.0410212443725503E-6 1.246648846447413E-13 4.390588262189513E-11 1.6583960991178033E-11 1.3618282898947975E-10 3.99686682806254E-8 1.1322608658332946E-8 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 4.9767318269895675 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.027303726881112787 0.01590299990505455 1.3546332725448693E-5 1.3197073678633248E-5 5.82318832228727E-6 3.0062117880409013E-9 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 1.100220438060692E-6 6.408211449742263E-7 5.458577940734816E-10 7.511694862697548E-4 3.977428469694724E-4 2.2586752924535573E-7 2.227056467808863E-8 1.2971444869167263E-8 1.1049205129637537E-11 1.2164084977490201E-5 6.709229572131821E-6 4.571990525467122E-9 8.291980495589016E-11 4.390588262189513E-11 2.493297692894826E-14 9.058086926666357E-8 3.99686682806254E-8 1.702285362368497E-11 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 4.977397875614508 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.02105258191002947 1.843522144254115E-5 2.3608962835305205E-11 1.0175624587876668E-5 6.7504097883359245E-9 5.239317815188479E-15 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 8.483267135001907E-7 7.428585665090656E-10 9.513376523988819E-16 5.791904235955445E-4 4.61075111918881E-7 3.9364883557289013E-13 1.7171754211781124E-8 1.503687732003369E-11 1.92568925149176E-17 9.379137011743154E-6 7.777534654438611E-9 7.968204870410453E-15 6.393544710576151E-11 5.089698004133136E-14 4.345395448490757E-20 6.984252289152645E-8 4.6332846313015953E-11 2.966794974682767E-17 1.2754076295260396E-9
3.8 -4.0 -4.0 0.11814589071963325 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 1.6748546029090895E-32 2.8706261289136714E-24 7.19551218345717E-19 1.0483395503495055E-32 1.3612176190660418E-24 2.067896017880326E-19 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 2.8718823814904604E-29 4.9222783811525995E-21 1.2338184239740997E-15 1.5141040800533008E-29 2.359188089600789E-21 3.942360976189673E-16 1.9102085371358956E-26 3.2740122807387982E-18 8.206640014023534E-13 8.05674928324627E-27 1.307661848813231E-18 2.6222284177531636E-13 2.3370630898969603E-24 3.64147450559438E-16 6.085147280085719E-11 1.9714215498859025E-24 2.559794436274499E-16 3.208190691890854E-11 3.3546262790251185E-4
3.8 -4.0 -1.4 0.11815196453926008 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 8.289963890300767E-24 2.136180906140531E-18 8.050242738683686E-16 5.18892625191255E-24 1.0129522119452568E-18 2.313534391695759E-16 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 1.421484658930669E-20 3.662921126028225E-15 1.3803795414712844E-12 7.494303163986489E-21 1.7555934923878484E-15 4.4106607024869835E-13 9.454886273886531E-18 2.4363613394791054E-12 9.181479024352375E-10 3.9878184360188014E-18 9.7309860207409E-13 2.9337140624567847E-10 1.156767195847875E-15 2.7098089265953933E-10 6.807981343976337E-8 9.75786998628322E-16 1.904875017800966E-10 3.5892808132663314E-8 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 0.11815999963636283 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 4.756609170989764E-18 1.8427597874761098E-15 1.0440602012761531E-15 2.977298155220469E-18 8.738153203420209E-16 3.000492359126224E-16 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 8.15618385624303E-15 3.159790323159772E-12 1.7902557583520104E-12 4.300075565070094E-15 1.5144490251867489E-12 5.720318567129756E-13 5.42501744955155E-12 2.1017080956242625E-9 1.1907736386773288E-9 2.288127426851904E-12 8.3943591481263E-10 3.80482203327467E-10 6.637290011489407E-10 2.3375955226075254E-7 8.829475834462187E-8 5.598863213431508E-10 1.6432255680598873E-7 4.6550462762172937E-8 3.3546262790251185E-4
3.8 -4.0 3.8 0.1181700887677895 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 3.1638187917459184E-15 1.8427597874761098E-15 1.5696810264266224E-18 1.9803249570233076E-15 8.738153203420209E-16 4.511057810940104E-19 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 5.4250174495515465E-12 3.159790323159772E-12 2.6915406725602E-15 2.8601592835648775E-12 1.5144490251867489E-12 8.600151130140188E-16 3.608404965688875E-9 2.1017080956242625E-9 1.7902557583520114E-12 1.521928813309868E-9 8.3943591481263E-10 5.72031856712976E-13 4.414737917231093E-7 2.3375955226075254E-7 1.3274580022978815E-10 3.724037020973835E-7 1.6432255680598873E-7 6.998579016789385E-11 3.3546262790251185E-4
3.8 -4.0 6.4 0.11816457197697199 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 2.4394674965708124E-15 2.1361809061405274E-18 2.735688083799253E-24 1.5269326985192E-15 1.0129522119452551E-18 7.862009472594772E-25 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 4.182968307488738E-12 3.662921126028218E-15 4.6908993744712085E-21 2.2053303512434904E-12 1.7555934923878452E-15 1.4988606327972979E-21 2.782266371015869E-9 2.436361339479102E-12 3.1201124703825552E-18 1.173485624982713E-9 9.730986020740883E-13 9.969546090047003E-19 3.4039906719881664E-7 2.7098089265953887E-10 2.31353439169575E-16 2.871424650613063E-7 1.9048750178009626E-10 1.2197337482854024E-16 3.3546262790251185E-4
3.8 -1.4 -4.0 2.164046348976332E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 6.157252814002589E-25 1.0553256849581265E-16 2.6452796298155085E-11 3.854001198198379E-25 5.004232009695965E-17 7.602187409607342E-12 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 7.841711694114211E-23 1.3440344281487465E-14 3.368957038787211E-9 4.1342806192842857E-23 6.441793351312751E-15 1.0764667233120378E-9 3.873997628687189E-21 6.639859243269895E-13 1.6643472864740315E-7 1.633948703057377E-21 2.652003068221429E-13 5.3180092512219895E-8 3.520329803231932E-20 5.485171232719416E-12 9.166087736247614E-7 2.969562125557771E-20 3.855831142565219E-12 4.83251366038757E-7 0.37531109885139957
3.8 -1.4 -1.4 0.002012301925863406 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 3.0476319199813464E-16 7.853222526126541E-11 2.9595034500349723E-8 1.9076002603895674E-16 3.7239070463889225E-11 8.505225539469527E-9 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 3.88138210143395E-14 1.0001653136534946E-8 3.769144050757964E-6 2.0463290954753607E-14 4.793670558410481E-9 1.2043365644909184E-6 1.9174978172520684E-12 4.94106160048835E-7 1.8620494713898254E-4 8.087493519390986E-13 1.9734922149212726E-7 5.9497175833191773E-5 1.7424442038164422E-11 4.081798718484009E-6 0.0010254896296404022 1.4698328289584038E-11 2.8693227519554687E-6 5.406551613318706E-4 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.004186317640735878 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 1.7486679233120852E-10 6.774521123959297E-8 3.838269065941506E-8 1.0945414254177502E-10 3.212399351411952E-8 1.1030682896016145E-8 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 2.227056467808863E-8 8.627848023222818E-6 4.888316320405303E-6 1.1741411508184684E-8 4.135222496397436E-6 1.561940324959964E-6 1.1002204380606938E-6 4.262368228575153E-4 2.4149479823055604E-4 4.6404358756814503E-7 1.7024176576526518E-4 7.716367740971005E-5 9.997783089873683E-6 0.0035211318092827396 0.001329988354244377 8.433595618221345E-6 0.002475198879174882 7.011919452424396E-4 0.37531109885139957
3.8 -1.4 3.8 0.0068645332980936955 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 1.1631118381640927E-7 6.774521123959297E-8 5.770604146929881E-11 7.280250711370656E-8 3.212399351411952E-8 1.6583960991178033E-11 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 1.4813079758803949E-5 8.627848023222818E-6 7.3492863437692484E-9 7.80970162479982E-6 4.135222496397436E-6 2.348282301636937E-9 7.318024188804728E-4 4.262368228575153E-4 3.63072744560029E-7 3.086547096388402E-4 1.7024176576526518E-4 1.1601089689203626E-7 0.0066499417712218845 0.0035211318092827396 1.9995566179747367E-6 0.005609535561939517 0.002475198879174882 1.0541994522776681E-6 0.37531109885139957
3.8 -1.4 6.4 0.0054053806631733465 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 8.968192272833243E-8 7.853222526126527E-11 1.0057185335938444E-16 5.613448856049884E-8 3.7239070463889154E-11 2.890303424832678E-17 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 1.142164863866049E-5 1.0001653136534931E-8 1.2808560934732036E-14 6.021682822454587E-6 4.793670558410473E-9 4.092658190950722E-15 5.64257415572674E-4 4.941061600488342E-7 6.327742796931826E-13 2.3798870333276696E-4 1.9734922149212692E-7 2.0218733798477464E-13 0.005127448148202008 4.0817987184840025E-6 3.4848884076328846E-12 0.0043252412906549615 2.869322751955464E-6 1.8372910361980047E-12 0.37531109885139957
3.8 1.2000000000000002 -4.0 5.356698507845659E-4 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 2.6240140916146534E-20 4.4974431816010965E-12 1.127329222069875E-6 1.642445707308593E-20 2.132635398905322E-12 3.2397966256216773E-7 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 2.4821292661853207E-19 4.25425891565565E-11 1.0663726477946408E-5 1.308619765688473E-19 2.039014494247806E-11 3.407329499263416E-6 9.107668645013996E-19 1.5610138062404734E-10 3.912837602993185E-5 3.8413713163371116E-19 6.234790907475677E-11 1.2502502777127999E-5 6.14703336847797E-19 9.577946523188376E-11 1.6005388790954323E-5 5.185308904527474E-19 6.732869935880658E-11 8.438306745224832E-6 0.48675225595997157
3.8 1.2000000000000002 -1.4 0.25466969868358624 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 1.2987982377301673E-11 3.3467793504073916E-6 0.0012612408474463339 8.129550816959362E-12 1.5870039546476752E-6 3.6246411089657584E-4 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 1.2285700473339503E-10 3.165813400033683E-5 0.01193043447883532 6.477225297556255E-11 1.5173358125895274E-5 0.0038120746460287487 4.50798798061928E-10 1.1616308559047941E-4 0.04377630347644017 1.901348895979378E-10 4.639629367328408E-5 0.013987632795389095 3.0425736400428474E-10 7.127443827250621E-5 0.01790661479114932 2.566552553512673E-10 5.010275652301224E-5 0.009440664662997457 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 0.5013032340027925 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 7.452234642518471E-6 0.002887073087657509 0.001635741201584985 4.66456747986791E-6 0.0013690165761634735 4.7009061075832786E-4 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 7.04927986621179E-5 0.027309642228640463 0.015472939422596201 3.7164974010285084E-5 0.01308917897121876 0.0049439943010504556 2.5865899122206357E-4 0.10020717922342423 0.05677480506160667 1.0909545223047591E-4 0.040023400650804064 0.01814098181357297 1.745765587299132E-4 0.06148433793503919 0.023223627472975874 1.4726345705979498E-4 0.043220751902104795 0.01224388203956378 0.48675225595997157
3.8 1.2000000000000002 3.8 0.7426615716206166 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.0049567915199545 0.002887073087657509 2.4592374320310954E-6 0.003102598031004964 0.0013690165761634735 7.06752648464835E-7 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 0.046887695219988486 0.027309642228640463 2.3262623558498908E-5 0.024719971505252274 0.01308917897121876 7.432994802057017E-6 0.1720448638230505 0.10020717922342423 8.535746710328098E-5 0.07256392725429188 0.040023400650804064 2.7273863057618978E-5 0.11611813736487936 0.06148433793503919 3.4915311745982646E-5 0.09795105631651024 0.043220751902104795 1.8407932132474372E-5 0.48675225595997157
3.8 1.2000000000000002 6.4 0.6185227301911822 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.0038219419619585854 3.3467793504073853E-6 4.286034184509552E-12 0.002392263131917399 1.5870039546476725E-6 1.2317501237817214E-12 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 0.036152831754046405 3.1658134000336774E-5 4.054281156202036E-11 0.019060373230143732 1.5173358125895245E-5 1.2954450595112511E-11 0.13265546508012166 1.161630855904792E-4 1.4876360336043625E-10 0.05595053118155635 4.6396293673284E-5 4.753372239948445E-11 0.08953307395574654 7.127443827250609E-5 6.085147280085695E-11 0.07552531730397961 5.010275652301215E-5 3.208190691890841E-11 0.48675225595997157
3.8 3.8 -4.0 0.5229129880476612 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 1.2963272261318683E-18 2.2218470788406172E-10 5.569282451848389E-5 8.114084046390922E-19 1.0535741175507215E-10 1.6005388790954323E-5 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 9.107668645013996E-19 1.5610138062404734E-10 3.912837602993185E-5 4.801714145421389E-19 7.481749088970812E-11 1.2502502777127999E-5 2.4821292661853207E-19 4.25425891565565E-11 1.0663726477946408E-5 1.0468958125507784E-19 1.699178745206505E-11 3.407329499263416E-6 1.2442770509913582E-20 1.9387594535502925E-12 3.2397966256216773E-7 1.0496056366458614E-20 1.3628615701821503E-12 1.7080745788937503E-7 7.318024188804728E-4
3.8 3.8 -1.4 3.8708485141247406 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 6.416381383781682E-10 1.653390965259404E-4 0.062308386775783216 4.016197204856559E-10 7.840188209975684E-5 0.01790661479114932 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 4.50798798061928E-10 1.1616308559047941E-4 0.04377630347644017 2.3766861199742226E-10 5.5675552407940894E-5 0.013987632795389095 1.2285700473339503E-10 3.165813400033683E-5 0.01193043447883532 5.1817802380450045E-11 1.2644465104912728E-5 0.0038120746460287487 6.158750618908607E-12 1.4427308678615227E-6 3.6246411089657584E-4 5.195192950920669E-12 1.0141755607295127E-6 1.910970980979294E-4 7.318024188804728E-4
3.8 3.8 1.2000000000000002 3.6034684977610336 3.562064783070342E-4 0.16727041053862637 0.142156655209273 3.681586426494874E-4 0.14262848127694583 0.08080962146112095 2.3044105752348544E-4 0.06763277172854311 0.023223627472975874 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 2.5865899122206357E-4 0.10020717922342423 0.05677480506160667 1.3636931528809488E-4 0.04802808078096488 0.01814098181357297 7.04927986621179E-5 0.027309642228640463 0.015472939422596201 2.973197920822807E-5 0.0109076491426823 0.0049439943010504556 3.5337632423241746E-6 0.0012445605237849757 4.7009061075832786E-4 2.9808938570073884E-6 8.748706326234875E-4 2.47839575997725E-4 7.318024188804728E-4
3.8 3.8 3.8 3.521900629791554 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.24487764079127558 0.14262848127694583 1.2149235207433084E-4 0.15327594132164077 0.06763277172854311 3.4915311745982646E-5 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 0.1720448638230505 0.10020717922342423 8.535746710328098E-5 0.09070490906786484 0.04802808078096488 2.7273863057618978E-5 0.046887695219988486 0.027309642228640463 2.3262623558498908E-5 0.019775977204201822 0.0109076491426823 7.432994802057017E-6 0.0023504530537916393 0.0012445605237849757 7.06752648464835E-7 0.0019827166079818 8.748706326234875E-4 3.7261173212592355E-7 7.318024188804728E-4
3.8 3.8 6.4 3.511344850379243 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.18881329325994903 1.653390965259401E-4 2.1174058566479553E-10 0.11818365762158545 7.84018820997567E-5 6.085147280085695E-11 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 0.13265546508012166 1.161630855904792E-4 1.4876360336043625E-10 0.06993816397694544 5.56755524079408E-5 4.753372239948445E-11 0.036152831754046405 3.1658134000336774E-5 4.054281156202036E-11 0.015248298584114986 1.2644465104912705E-5 1.2954450595112511E-11 0.0018123205544828779 1.4427308678615202E-6 1.2317501237817214E-12 0.0015287767847834343 1.0141755607295108E-6 6.493991188650837E-13 7.318024188804728E-4
3.8 6.4 -4.0 4.683673728542989 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 7.42390531389442E-20 1.2724242770465213E-11 3.1894590158557936E-6 4.646835340266146E-20 6.033688355991353E-12 9.166087736247606E-7 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 3.8739976286871815E-21 6.639859243269883E-13 1.6643472864740286E-7 2.0424358788217172E-21 3.182403681865709E-13 5.318009251221979E-8 7.841711694114211E-23 1.3440344281487465E-14 3.368957038787211E-9 3.3074244954274285E-23 5.368161126093959E-15 1.0764667233120378E-9 2.9196978774230145E-25 4.549301826996331E-17 7.602187409607342E-12 2.462901125601036E-25 3.197956621085232E-17 4.007999439114407E-12 1.2754076295260396E-9
3.8 6.4 -1.4 4.969119223401883 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 3.674582072396006E-11 9.468765081453039E-6 0.003568324064790343 2.3000263490377015E-11 4.489978590332408E-6 0.0010254896296404013 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 1.917497817252065E-12 4.941061600488342E-7 1.8620494713898221E-4 1.0109366899238713E-12 2.3681906579055228E-7 5.9497175833191665E-5 3.88138210143395E-14 1.0001653136534946E-8 3.769144050757964E-6 1.6370632763802887E-14 3.994725465342068E-9 1.2043365644909184E-6 1.445151712416339E-16 3.3853700421717474E-11 8.505225539469527E-9 1.2190527679925385E-16 2.3797644018565275E-11 4.484096136416625E-9 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 4.925863475771374 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 2.1083989045553344E-5 0.008168156301277103 0.004627866838600098 1.3197073678633252E-5 0.0038732449902110105 0.0013299883542443759 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 1.1002204380606921E-6 4.262368228575144E-4 2.414947982305556E-4 5.800544844601803E-7 2.0429011891831778E-4 7.716367740970992E-5 2.227056467808863E-8 8.627848023222818E-6 4.888316320405303E-6 9.393129206547748E-9 3.4460187469978634E-6 1.561940324959964E-6 8.291980495589016E-11 2.920363046738138E-8 1.1030682896016145E-8 6.994671693248341E-11 2.052885189078575E-8 5.815559190820464E-9 1.2754076295260396E-9
3.8 6.4 3.8 4.881436296612853 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.01402383890484878 0.008168156301277103 6.957716385032604E-6 0.00877792313801288 0.0038732449902110105 1.999556617974735E-6 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 7.318024188804715E-4 4.262368228575144E-4 3.630727445600284E-7 3.858183870485495E-4 2.0429011891831778E-4 1.1601089689203607E-7 1.4813079758803949E-5 8.627848023222818E-6 7.3492863437692484E-9 6.247761299839856E-6 3.4460187469978634E-6 2.348282301636937E-9 5.515341448008072E-8 2.920363046738138E-8 1.6583960991178033E-11 4.652447352656371E-8 2.052885189078575E-8 8.743339616560426E-12 1.2754076295260396E-9
3.8 6.4 6.4 4.884879261681911 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.010813103226637396 9.468765081453023E-6 1.212612083890682E-11 0.006768231555626646 4.489978590332399E-6 3.4848884076328814E-12 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 5.64257415572673E-4 4.941061600488333E-7 6.327742796931816E-13 2.9748587916595814E-4 2.3681906579055189E-7 2.0218733798477426E-13 1.142164863866049E-5 1.0001653136534931E-8 1.2808560934732036E-14 4.81734625796367E-6 3.994725465342061E-9 4.092658190950722E-15 4.2526127697347605E-8 3.3853700421717415E-11 2.890303424832678E-17 3.587276909133297E-8 2.3797644018565233E-11 1.523815959990673E-17 1.2754076295260396E-9
6.4 -4.0 -4.0 0.11814588988316833 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 2.0385147204726077E-32 3.493923359436503E-24 8.757869179712679E-19 8.083238727575837E-33 1.049569003804626E-24 1.5944545038635047E-19 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 2.2143694644895412E-29 3.795330551554322E-21 9.513376523988862E-16 1.8428605385537604E-29 2.8714371030545516E-21 4.79836331429638E-16 1.4728693217741423E-26 2.5244323610040006E-18 6.327742796931846E-13 9.806106144693283E-27 1.5915936365915635E-18 3.191591210811251E-13 1.801996201588033E-24 2.807764692201803E-16 4.69196246015835E-11 2.399475060533044E-24 3.1156009785362165E-16 3.904783101854538E-11 3.3546262790251185E-4
6.4 -4.0 -1.4 0.11815051973076414 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 1.0089958491448682E-23 2.6000085113038037E-18 9.798186838236948E-16 4.000929815154926E-24 7.810384093636201E-19 1.7838543615281037E-16 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 1.0960380004639336E-20 2.8243011428974462E-15 1.0643438344622332E-12 9.121536456320166E-21 2.1367843938109294E-15 5.368344663120472E-13 7.290205055072579E-18 1.8785602743958647E-12 7.079393961749077E-10 4.853690923544382E-18 1.1843868843025903E-12 3.570709535972935E-10 8.919271807640483E-16 2.089402470076037E-10 5.249304811394048E-8 1.187659010695383E-15 2.3184793221472032E-10 4.3686190795574755E-8 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 0.11815674880151704 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 5.7894087031529375E-18 2.242877051261819E-15 1.2707563305282067E-15 2.295650463992774E-18 6.737566884491663E-16 2.313534391695758E-16 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 6.288838496461632E-15 2.4363613394791046E-12 1.3803795414712834E-12 5.233748244960792E-15 1.843280381405234E-12 6.962367709192564E-13 4.18296830748874E-12 1.6205253600272804E-9 9.181479024352368E-10 2.7849470836770274E-12 1.0217021025387595E-9 4.6309606279476743E-10 5.117692988797076E-10 1.802406734673848E-7 6.807981343976333E-8 6.814540831585373E-10 2.0000180933490054E-7 5.665793521460219E-8 3.3546262790251185E-4
6.4 -4.0 3.8 0.11816457197697199 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 3.850776759176384E-15 2.242877051261819E-15 1.9105048720404694E-18 1.5269326985192003E-15 6.737566884491663E-16 3.4782582787769304E-19 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 4.182968307488737E-12 2.4363613394791046E-12 2.075316703832339E-15 3.481183854596282E-12 1.843280381405234E-12 1.0467496489921584E-15 2.782266371015869E-9 1.6205253600272804E-9 1.3803795414712842E-12 1.8523842511790697E-9 1.0217021025387595E-9 6.962367709192568E-13 3.4039906719881664E-7 1.802406734673848E-7 1.0235385977594153E-10 4.532634817168175E-7 2.0000180933490054E-7 8.518176039481716E-11 3.3546262790251185E-4
6.4 -4.0 6.4 0.1181602941754421 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 2.9691475267384674E-15 2.6000085113037995E-18 3.329686302178065E-24 1.1773438786085476E-15 7.810384093636188E-19 6.062014871446857E-25 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 3.22528434685525E-12 2.824301142897441E-15 3.616925401530981E-21 2.684172331560234E-12 2.1367843938109255E-15 1.824307291264033E-21 2.1452708974997186E-9 1.8785602743958615E-12 2.405767668173951E-18 1.4282838143891731E-9 1.1843868843025883E-12 1.2134227308860955E-18 2.624652405697022E-7 2.0894024700760334E-10 1.7838543615280966E-16 3.4948952636459783E-7 2.318479322147199E-10 1.4845737633692289E-16 3.3546262790251185E-4
6.4 -1.4 -4.0 2.1595567103765393E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 7.494173211939976E-25 1.2844678815363115E-16 3.219647517927228E-11 2.971633735559704E-25 3.8585210268050395E-17 5.8616786577536455E-12 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 6.04636423716113E-23 1.0363198771986802E-14 2.5976396672609644E-9 5.0319543477608255E-23 7.840495855631233E-15 1.3101992601381728E-9 2.9870520149985116E-21 5.119673999035719E-13 1.2832976145636641E-7 1.988726948532848E-21 3.227830812249526E-13 6.47270522670795E-8 2.714355877333537E-20 4.2293499773924074E-12 7.067526484648342E-7 3.614341266276486E-20 4.6930453127832256E-12 5.881794286187207E-7 0.37531109885139957
6.4 -1.4 -1.4 0.0016153813924435114 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 3.70936230564331E-16 9.55838775189788E-11 3.602098556917676E-8 1.4708582058526717E-16 2.8713244335032526E-11 6.557967639824969E-9 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 2.9927458244202245E-14 7.711790511582482E-9 2.906204497459005E-6 2.490647233982223E-14 5.834517206116147E-9 1.465833398823936E-6 1.478489732767084E-12 3.809813382609649E-7 1.4357361977598168E-4 9.843525857330924E-13 2.4019953277541143E-7 7.241575988258598E-5 1.3435143665268997E-11 3.147277374818059E-6 7.907054051593438E-4 1.7889766987900377E-11 3.4923369810661022E-6 6.580472735723998E-4 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.003312495632295527 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 2.1283550803146582E-10 8.245468598502135E-8 4.6716699936018914E-8 8.439479017960519E-11 2.4769256141405325E-8 8.505225539469522E-9 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 1.7171754211781124E-8 6.652515900378115E-6 3.769144050757962E-6 1.4290816741338435E-8 5.033100734054117E-6 1.9010834369743098E-6 8.483267135001921E-7 3.286505781921608E-4 1.8620494713898243E-4 5.648010773923457E-7 2.0720625238092972E-4 9.391817774048993E-5 7.708806505967179E-6 0.002714974265370836 0.0010254896296404018 1.0264776885346548E-5 0.003012637241782817 8.534413075444272E-4 0.37531109885139957
6.4 -1.4 3.8 0.005405636868369749 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 1.415657573818755E-7 8.245468598502135E-8 7.023571765038373E-11 5.613448856049884E-8 2.4769256141405325E-8 1.2787089421152303E-11 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 1.142164863866049E-5 6.652515900378115E-6 5.666678889887771E-9 9.505417184871548E-6 5.033100734054117E-6 2.858163348267687E-9 5.64257415572674E-4 3.286505781921608E-4 2.799478154550634E-7 3.7567271096195973E-4 2.0720625238092972E-4 1.4120026934808643E-7 0.0051274481482020086 0.002714974265370836 1.5417613011934358E-6 0.006827530460355418 0.003012637241782817 1.2830971106683185E-6 0.37531109885139957
6.4 -1.4 6.4 0.004264993880885309 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 1.0915450172477799E-7 9.558387751897864E-11 1.2240895608622924E-16 4.3282586422844775E-8 2.8713244335032474E-11 2.2285730391707147E-17 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 8.806680295330312E-6 7.711790511582468E-9 9.876061220586741E-15 7.329166994119676E-6 5.834517206116137E-9 4.981294467964446E-15 4.350715750787321E-4 3.809813382609642E-7 4.879016118131377E-13 2.896630395303437E-4 2.40199532775411E-7 2.460881464332731E-13 0.003953527025796716 3.147277374818054E-6 2.6870287330537994E-12 0.005264378188579195 3.4923369810660963E-6 2.236220873487547E-12 0.37531109885139957
6.4 1.2000000000000002 -4.0 4.6297350997180175E-4 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 3.193764606905627E-20 5.473970166878201E-12 1.3721055009890384E-6 1.2664103672165502E-20 1.644371906266769E-12 2.498050325866636E-7 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 1.913849706861633E-19 3.2802530833352484E-11 8.222283211396053E-6 1.5927595453503165E-19 2.4817444180298066E-11 4.1471607921574625E-6 7.022482351711457E-19 1.2036221707629776E-10 3.0169996387797192E-5 4.675445833658126E-19 7.588547102466191E-11 1.5217163274744562E-5 4.739679826752375E-19 7.38509085544615E-11 1.2340980408667952E-5 6.311191737907949E-19 8.194773714375475E-11 1.0270510936368018E-5 0.48675225595997157
6.4 1.2000000000000002 -1.4 0.20886401716115185 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 1.5808054752562536E-11 4.0734634278875E-6 0.0015350932726428755 6.2683030492871925E-12 1.2236619159076206E-6 2.794785275036844E-4 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 9.472908832676046E-11 2.44100544245415E-5 0.009198980424231515 7.883621117887982E-11 1.846793975125678E-5 0.004639787995908689 3.475891281239911E-10 8.956773135637453E-5 0.03375378821612735 2.3141875757311254E-10 5.64702914892329E-5 0.017024758631847523 2.3459812300791656E-10 5.49562686572743E-5 0.013806923731089275 3.123826481483618E-10 6.098153626650018E-5 0.01149051019302748 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 0.41971686109965206 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 9.070333623470007E-6 0.003513941435900026 0.0019909086511287677 3.596622152439896E-6 0.0010555824020422146 3.624641108965756E-4 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 5.4353584196157506E-5 0.02105714294812126 0.011930434478835314 4.523458124326528E-5 0.015931224098727485 0.006017480647644663 1.9943942536412276E-4 0.0772649044491234 0.04377630347644015 1.3278327857365222E-4 0.04871365624713013 0.02207992168786585 1.3460753245282897E-4 0.04740759626689432 0.01790661479114931 1.7923867808146237E-4 0.05260524634753471 0.014902388380477059 0.48675225595997157
6.4 1.2000000000000002 3.8 0.6354184334749563 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.006033056518572022 0.003513941435900026 2.9932100957451026E-6 0.0023922631319173993 0.0010555824020422146 5.449427503696812E-7 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 0.036152831754046405 0.02105714294812126 1.7936682784731978E-5 0.030087403238223315 0.015931224098727485 9.046916248653056E-6 0.13265546508012166 0.0772649044491234 6.581501037016052E-5 0.0883196867514634 0.04871365624713013 3.3195819643413054E-5 0.08953307395574654 0.04740759626689432 2.6921506490565795E-5 0.11921910704381647 0.05260524634753471 2.2404834760182796E-5 0.48675225595997157
6.4 1.2000000000000002 6.4 0.5232009732919237 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.004651797795887498 4.073463427887494E-6 5.216658068345637E-12 0.0018445582815243158 1.2236619159076185E-6 9.497428862556352E-13 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 0.027875698255246998 2.441005442454146E-5 3.1260599147830954E-11 0.023198939979543434 1.846793975125675E-5 1.5767242235775964E-11 0.10228420671553738 8.956773135637437E-5 1.1470441228091708E-10 0.06809903452739006 5.6470291489232795E-5 5.7854689393278135E-11 0.06903461865544633 5.49562686572742E-5 4.6919624601583315E-11 0.09192408154421979 6.098153626650007E-5 3.9047831018545226E-11 0.48675225595997157
6.4 3.8 -4.0 0.5229129880476612 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 1.5777979344769873E-18 2.7042753257439066E-10 6.778537218002892E-5 6.256377371313136E-19 8.123599940990764E-11 1.2340980408667952E-5 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 7.022482351711457E-19 1.2036221707629776E-10 3.0169996387797192E-5 5.844307292072658E-19 9.106256522959429E-11 1.5217163274744562E-5 1.913849706861633E-19 3.2802530833352484E-11 8.222283211396053E-6 1.2742076362802533E-19 2.0681203483581722E-11 4.1471607921574625E-6 9.594017933458713E-21 1.494883551151608E-12 2.498050325866636E-7 1.2775058427622509E-20 1.6587788384479398E-12 2.07894772877127E-7 7.318024188804728E-4
6.4 3.8 -1.4 3.8708485141247406 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 7.809566203709045E-10 2.0123906967945058E-4 0.07583736727398137 3.096695223704499E-10 6.0451895523001736E-5 0.013806923731089275 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 3.475891281239911E-10 8.956773135637453E-5 0.03375378821612735 2.892734469663907E-10 6.776434978707948E-5 0.017024758631847523 9.472908832676046E-11 2.44100544245415E-5 0.009198980424231515 6.306896894310386E-11 1.5389949792713985E-5 0.004639787995908689 4.748714431278176E-12 1.1124199235523823E-6 2.794785275036844E-4 6.323221901025015E-12 1.2343828569356062E-6 2.3258988979437507E-4 7.318024188804728E-4
6.4 3.8 1.2000000000000002 3.6290855123861623 3.562064783070342E-4 0.16727041053862637 0.142156655209273 4.4809669520365586E-4 0.17359731294686453 0.09835576331114859 1.7768194283773425E-4 0.052148355893583756 0.01790661479114931 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 1.9943942536412276E-4 0.0772649044491234 0.04377630347644015 1.6597909821706525E-4 0.058456387496556156 0.02207992168786585 5.4353584196157506E-5 0.02105714294812126 0.011930434478835314 3.6187664994612223E-5 0.013276020082272905 0.006017480647644663 2.724713751848406E-6 9.596203654929223E-4 3.624641108965756E-4 3.628133449388003E-6 0.001064830738151523 3.0165282592860114E-4 7.318024188804728E-4
6.4 3.8 3.8 3.635762453547546 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.29804776760954116 0.17359731294686453 1.4787190941720644E-4 0.11818365762158545 0.052148355893583756 2.6921506490565795E-5 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 0.13265546508012166 0.0772649044491234 6.581501037016052E-5 0.11039960843932925 0.058456387496556156 3.3195819643413054E-5 0.036152831754046405 0.02105714294812126 1.7936682784731978E-5 0.024069922590578652 0.013276020082272905 9.046916248653056E-6 0.001812320554482878 9.596203654929223E-4 5.449427503696812E-7 0.002413222607428809 0.001064830738151523 4.535166811735004E-7 7.318024188804728E-4
6.4 3.8 6.4 3.6301789409912497 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.22981020386054946 2.0123906967945023E-4 2.5771568472239847E-10 0.09112569662518916 6.045189552300163E-5 4.6919624601583315E-11 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 0.10228420671553738 8.956773135637437E-5 1.1470441228091708E-10 0.08512379315923757 6.776434978707936E-5 5.7854689393278135E-11 0.027875698255246998 2.441005442454146E-5 3.1260599147830954E-11 0.01855915198363475 1.5389949792713958E-5 1.5767242235775964E-11 0.001397392637518421 1.1124199235523804E-6 9.497428862556352E-13 0.0018607191183549995 1.234382856935604E-6 7.904027376281269E-13 7.318024188804728E-4
6.4 6.4 -4.0 4.688709643938755 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 9.035853165691208E-20 1.548704953218463E-11 3.881984228883553E-6 3.582949758080266E-20 4.652284975131645E-12 7.067526484648335E-7 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 2.987052014998506E-21 5.119673999035709E-13 1.2832976145636618E-7 2.4859086856660552E-21 3.8733969746994236E-13 6.472705226707939E-8 6.04636423716113E-23 1.0363198771986802E-14 2.5976396672609644E-9 4.025563478208661E-23 6.533746546359361E-15 1.3101992601381728E-9 2.251237678454321E-25 3.507746388004581E-17 5.8616786577536455E-12 2.9976692847759905E-25 3.892326913746398E-17 4.878253815041255E-12 1.2754076295260396E-9
6.4 6.4 -1.4 4.975688524460382 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 4.472441746975089E-11 1.1524712037518126E-5 0.004343112005577836 1.773438963815506E-11 3.4620051122998623E-6 7.907054051593432E-4 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 1.478489732767081E-12 3.809813382609642E-7 1.435736197759814E-4 1.230440732166363E-12 2.882394393304932E-7 7.241575988258583E-5 2.9927458244202245E-14 7.711790511582482E-9 2.906204497459005E-6 1.9925177871857785E-14 4.862097671763456E-9 1.465833398823936E-6 1.1142865195853572E-16 2.6102949395484113E-11 6.557967639824969E-9 1.483744922257324E-16 2.8964811369387517E-11 5.4577250862389026E-9 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 4.941678884038287 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 2.5661942213366343E-5 0.009941702897883289 0.005632712629793214 1.017562458787667E-5 0.002986471691907917 0.0010254896296404009 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 8.483267135001907E-7 3.2865057819216016E-4 1.862049471389821E-4 7.060013467404309E-7 2.4864750285711517E-4 9.391817774048974E-5 1.7171754211781124E-8 6.652515900378115E-6 3.769144050757962E-6 1.1432653393070749E-8 4.194250611711765E-6 1.9010834369743098E-6 6.393544710576151E-11 2.251750558309575E-8 8.505225539469522E-9 8.513420321258633E-11 2.4986268480309502E-8 7.078287869093775E-9 1.2754076295260396E-9
6.4 6.4 3.8 4.906434745201772 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.017068826150888526 0.009941702897883289 8.468440930410894E-6 0.006768231555626646 0.002986471691907917 1.5417613011934347E-6 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 5.64257415572673E-4 3.2865057819216016E-4 2.799478154550629E-7 4.695908887024487E-4 2.4864750285711517E-4 1.412002693480862E-7 1.142164863866049E-5 6.652515900378115E-6 5.666678889887771E-9 7.604333747897239E-6 4.194250611711765E-6 2.858163348267687E-9 4.2526127697347605E-8 2.251750558309575E-8 1.2787089421152303E-11 5.66263029527502E-8 2.4986268480309502E-8 1.0641775401573292E-11 1.2754076295260396E-9
6.4 6.4 6.4 4.9092061517502215 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.013160945471447976 1.1524712037518108E-5 1.4759057765017797E-11 0.005218655674051662 3.462005112299857E-6 2.687028733053797E-12 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 4.350715750787313E-4 3.809813382609635E-7 4.879016118131368E-13 3.6207879941292897E-4 2.8823943933049264E-7 2.4608814643327263E-13 8.806680295330312E-6 7.711790511582468E-9 9.876061220586741E-15 5.863333595295741E-6 4.8620976717634475E-9 4.981294467964446E-15 3.2789838199124826E-8 2.6102949395484064E-11 2.2285730391707147E-17 4.3661800689911194E-8 2.8964811369387465E-11 1.854681152821655E-17 1.2754076295260396E-9

View File

@ -1,55 +0,0 @@
FUNCTION_BLOCK MamdaniQoSFewRules
VAR_INPUT
commitment : REAL;
clarity : REAL;
influence : REAL;
END_VAR
VAR_OUTPUT
service_quality : REAL;
END_VAR
FUZZIFY commitment
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for commitment
END_FUZZIFY
FUZZIFY clarity
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for clarity
END_FUZZIFY
FUZZIFY influence
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for influence
END_FUZZIFY
DEFUZZIFY service_quality
TERM inadequate := GAUSS 0 1;
TERM sufficient := GAUSS 2.5 1;
TERM excellent := GAUSS 5 1;
METHOD : COG;
DEFAULT := 0;
RANGE := (-4.0 .. 9.0); // Added range for service_quality
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : MIN;
RULE 1 : IF commitment IS fully AND influence IS high THEN service_quality IS excellent;
RULE 2 : IF commitment IS partially AND clarity IS high AND influence IS low THEN service_quality IS sufficient;
RULE 3 : IF commitment IS nothing THEN service_quality IS inadequate;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
clarity commitment influence service_quality No1.1 No1.2 No1.3
-4.0 -4.0 -4.0 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 -1.4 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 3.8 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 6.4 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -1.4 -4.0 2.1440130067640695E-4 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 -1.4 2.1441791333979342E-4 1.2754076295260396E-9 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 1.2000000000000002 2.1441791333979342E-4 1.2754076295260396E-9 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 3.8 2.1441791333979342E-4 1.2754076295260396E-9 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 6.4 2.1441791333979342E-4 1.2754076295260396E-9 2.576757109154981E-18 0.37531109885139957
-4.0 1.2000000000000002 -4.0 1.9531210161944423E-4 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 -1.4 1.9532595962674313E-4 1.2754076295260396E-9 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.013466242916050405 7.318024188804728E-4 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.013466242916050405 7.318024188804728E-4 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.013466242916050405 7.318024188804728E-4 2.576757109154981E-18 0.48675225595997157
-4.0 3.8 -4.0 0.05592821568344743 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 -1.4 0.05593232172333802 1.2754076295260396E-9 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 2.4969922645135156 7.318024188804728E-4 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 3.8 4.98650133474635 0.48675225595997157 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 6.4 4.983844332639953 0.37531109885139935 2.576757109154981E-18 7.318024188804728E-4
-4.0 6.4 -4.0 1.274193733749591 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 -1.4 2.4934999999999605 1.2754076295260396E-9 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 4.941040359589573 7.318024188804728E-4 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 3.8 4.999773597633503 0.37531109885139935 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 6.4 4.999773597633503 0.37531109885139935 2.576757109154981E-18 1.2754076295260396E-9
-1.4 -4.0 -4.0 0.11815440484561586 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -4.0 -1.4 0.11815440484561586 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 0.11815440484561586 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -4.0 3.8 0.11815440484561586 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -4.0 6.4 0.11815440484561586 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -1.4 -4.0 2.144177309941489E-4 2.576757109154981E-18 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 -1.4 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 1.2000000000000002 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 3.8 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 6.4 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 1.2000000000000002 -4.0 1.9532580751709105E-4 2.576757109154981E-18 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 -1.4 1.9532595962674313E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 0.013466242916050405 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 3.8 0.013466242916050405 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 6.4 0.013466242916050405 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
-1.4 3.8 -4.0 0.05593227661090372 2.576757109154981E-18 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 -1.4 0.05593232172333802 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 2.4969922645135156 7.318024188804728E-4 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 3.8 4.98650133474635 0.48675225595997157 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 6.4 4.983844332639953 0.37531109885139935 1.2754076295260396E-9 7.318024188804728E-4
-1.4 6.4 -4.0 2.481925003446635 2.576757109154981E-18 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 -1.4 2.4934999999999605 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 4.941040359589573 7.318024188804728E-4 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 3.8 4.999773597633503 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 6.4 4.999773597633503 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 0.11815440484561586 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 0.00337352439733487 2.576757109154981E-18 3.3546262790251185E-4 0.37531109885139957
1.2000000000000002 -1.4 -1.4 0.006864070932523873 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 0.006864070932523873 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
1.2000000000000002 -1.4 3.8 0.006864070932523873 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
1.2000000000000002 -1.4 6.4 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 0.002830854341554809 2.576757109154981E-18 3.3546262790251185E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 0.0057435169812833 1.2754076295260396E-9 7.318024188804728E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 0.013466242916050405 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 0.013466242916050405 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 0.013466242916050405 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
1.2000000000000002 3.8 -4.0 0.7371439769851642 2.576757109154981E-18 3.3546262790251185E-4 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 1.3051507596381537 1.2754076295260396E-9 7.318024188804728E-4 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 2.4969922645135156 7.318024188804728E-4 7.318024188804728E-4 7.318024188804728E-4
1.2000000000000002 3.8 3.8 4.98650133474635 0.48675225595997157 7.318024188804728E-4 7.318024188804728E-4
1.2000000000000002 3.8 6.4 4.983844332639953 0.37531109885139935 1.2754076295260396E-9 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 2.4999994818236524 2.576757109154981E-18 6.252150377482015E-5 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 2.4999998133236305 1.2754076295260396E-9 6.252150377482015E-5 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 4.7897223007885525 7.318024188804728E-4 6.252150377482015E-5 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 4.9991437345489995 0.37531109885139935 6.252150377482015E-5 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 4.999773597633503 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9
3.8 -4.0 -4.0 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
3.8 -4.0 -1.4 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
3.8 -4.0 3.8 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
3.8 -4.0 6.4 0.11815440484561586 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
3.8 -1.4 -4.0 0.00337352439733487 2.576757109154981E-18 3.3546262790251185E-4 0.37531109885139957
3.8 -1.4 -1.4 0.026192490780329366 1.2754076295260396E-9 0.0030887154082367718 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.026192490780329366 1.2754076295260396E-9 0.0030887154082367718 0.37531109885139957
3.8 -1.4 3.8 0.006864070932523873 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
3.8 -1.4 6.4 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
3.8 1.2000000000000002 -4.0 0.002830854341554809 2.576757109154981E-18 3.3546262790251185E-4 0.48675225595997157
3.8 1.2000000000000002 -1.4 1.1153641551681739 1.2754076295260396E-9 0.37531109885139957 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 1.2539682405047998 7.318024188804728E-4 0.48675225595997157 0.48675225595997157
3.8 1.2000000000000002 3.8 0.013466242916050405 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
3.8 1.2000000000000002 6.4 0.013466242916050405 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
3.8 3.8 -4.0 0.7371439769851642 2.576757109154981E-18 3.3546262790251185E-4 7.318024188804728E-4
3.8 3.8 -1.4 2.4897435637821252 1.2754076295260396E-9 0.19789869908361474 7.318024188804728E-4
3.8 3.8 1.2000000000000002 2.4999683652434324 7.318024188804728E-4 0.19789869908361474 7.318024188804728E-4
3.8 3.8 3.8 4.98650133474635 0.48675225595997157 7.318024188804728E-4 7.318024188804728E-4
3.8 3.8 6.4 4.983844332639953 0.37531109885139935 1.2754076295260396E-9 7.318024188804728E-4
3.8 6.4 -4.0 2.4999994818236524 2.576757109154981E-18 6.252150377482015E-5 1.2754076295260396E-9
3.8 6.4 -1.4 2.4999998133236305 1.2754076295260396E-9 6.252150377482015E-5 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 4.7897223007885525 7.318024188804728E-4 6.252150377482015E-5 1.2754076295260396E-9
3.8 6.4 3.8 4.9991437345489995 0.37531109885139935 6.252150377482015E-5 1.2754076295260396E-9
3.8 6.4 6.4 4.999773597633503 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9
6.4 -4.0 -4.0 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
6.4 -4.0 -1.4 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
6.4 -4.0 3.8 0.11824597576586889 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
6.4 -4.0 6.4 0.11815440484561586 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
6.4 -1.4 -4.0 0.00337352439733487 2.576757109154981E-18 3.3546262790251185E-4 0.37531109885139957
6.4 -1.4 -1.4 0.026192490780329366 1.2754076295260396E-9 0.0030887154082367718 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.026192490780329366 1.2754076295260396E-9 0.0030887154082367718 0.37531109885139957
6.4 -1.4 3.8 0.006864070932523873 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
6.4 -1.4 6.4 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
6.4 1.2000000000000002 -4.0 0.002830854341554809 2.576757109154981E-18 3.3546262790251185E-4 0.48675225595997157
6.4 1.2000000000000002 -1.4 1.1153641551681732 1.2754076295260396E-9 0.37531109885139935 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 1.1196711092043583 7.318024188804728E-4 0.37531109885139935 0.48675225595997157
6.4 1.2000000000000002 3.8 0.013466242916050405 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
6.4 1.2000000000000002 6.4 0.013466242916050405 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
6.4 3.8 -4.0 0.7371439769851642 2.576757109154981E-18 3.3546262790251185E-4 7.318024188804728E-4
6.4 3.8 -1.4 2.4897435637821252 1.2754076295260396E-9 0.19789869908361474 7.318024188804728E-4
6.4 3.8 1.2000000000000002 2.4999683652434324 7.318024188804728E-4 0.19789869908361474 7.318024188804728E-4
6.4 3.8 3.8 4.98650133474635 0.48675225595997157 7.318024188804728E-4 7.318024188804728E-4
6.4 3.8 6.4 4.983844332639953 0.37531109885139935 1.2754076295260396E-9 7.318024188804728E-4
6.4 6.4 -4.0 2.4999994818236524 2.576757109154981E-18 6.252150377482015E-5 1.2754076295260396E-9
6.4 6.4 -1.4 2.4999998133236305 1.2754076295260396E-9 6.252150377482015E-5 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 4.7897223007885525 7.318024188804728E-4 6.252150377482015E-5 1.2754076295260396E-9
6.4 6.4 3.8 4.9991437345489995 0.37531109885139935 6.252150377482015E-5 1.2754076295260396E-9
6.4 6.4 6.4 4.999773597633503 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9

View File

@ -1,83 +0,0 @@
FUNCTION_BLOCK MamdaniQoSFewRules
VAR_INPUT
commitment : REAL;
clarity : REAL;
influence : REAL;
END_VAR
VAR_OUTPUT
service_quality : REAL;
END_VAR
FUZZIFY commitment
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for commitment
END_FUZZIFY
FUZZIFY clarity
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for clarity
END_FUZZIFY
FUZZIFY influence
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for influence
END_FUZZIFY
DEFUZZIFY service_quality
TERM inadequate := GAUSS 0 1;
TERM sufficient := GAUSS 2.5 1;
TERM excellent := GAUSS 5 1;
METHOD : COG;
DEFAULT := 0;
RANGE := (-4.0 .. 9.0); // Added range for service_quality
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : MIN;
RULE 1 : IF commitment IS fully AND influence IS high THEN service_quality IS excellent;
RULE 2 : IF commitment IS fully AND influence IS medium THEN service_quality IS excellent WITH 0.8;
RULE 3 : IF commitment IS fully AND influence IS low THEN service_quality IS excellent WITH 0.6;
RULE 4 : IF commitment IS largely AND influence IS high AND clarity IS NOT high THEN service_quality IS excellent;
RULE 5 : IF commitment IS largely AND influence IS medium AND clarity IS NOT high THEN service_quality IS excellent WITH 0.66;
RULE 6 : IF commitment IS largely AND influence IS low AND clarity IS NOT high THEN service_quality IS excellent WITH 0.33;
RULE 7 : IF commitment IS largely AND influence IS high AND clarity IS high THEN service_quality IS sufficient WITH 0.66;
RULE 8 : IF commitment IS largely AND influence IS medium AND clarity IS high THEN service_quality IS sufficient WITH 0.33;
RULE 9 : IF commitment IS largely AND influence IS low AND clarity IS high THEN service_quality IS sufficient WITH 0.1;
RULE 10 : IF commitment IS satISfactory AND influence IS high THEN service_quality IS sufficient;
RULE 11 : IF commitment IS satISfactory AND influence IS medium THEN service_quality IS sufficient WITH 0.66;
RULE 12 : IF commitment IS satISfactory AND influence IS low THEN service_quality IS sufficient WITH 0.33;
RULE 13 : IF commitment IS satISfactory AND influence IS high AND clarity IS high THEN service_quality IS sufficient;
RULE 14 : IF commitment IS satISfactory AND influence IS medium AND clarity IS high THEN service_quality IS sufficient WITH 0.66;
RULE 15 : IF commitment IS satISfactory AND influence IS low AND clarity IS high THEN service_quality IS sufficient WITH 0.33;
RULE 16 : IF commitment IS satISfactory AND influence IS high AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.5;
RULE 17 : IF commitment IS satISfactory AND influence IS medium AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.3;
RULE 18 : IF commitment IS satISfactory AND influence IS low AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.1;
RULE 19 : IF commitment IS partially AND influence IS high AND clarity IS high THEN service_quality IS sufficient;
RULE 20 : IF commitment IS partially AND influence IS medium AND clarity IS high THEN service_quality IS sufficient WITH 0.66;
RULE 21 : IF commitment IS partially AND influence IS low AND clarity IS high THEN service_quality IS sufficient WITH 0.33;
RULE 22 : IF commitment IS partially AND influence IS high AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.4;
RULE 23 : IF commitment IS partially AND influence IS medium AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.25;
RULE 24 : IF commitment IS partially AND influence IS low AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.1;
RULE 25 : IF commitment IS minimal AND influence IS high AND clarity IS high THEN service_quality IS inadequate WITH 0.5;
RULE 26 : IF commitment IS minimal AND influence IS medium AND clarity IS high THEN service_quality IS inadequate WITH 0.3;
RULE 27 : IF commitment IS minimal AND influence IS low AND clarity IS high THEN service_quality IS inadequate WITH 0.1;
RULE 28 : IF commitment IS minimal AND influence IS high AND clarity IS NOT high THEN service_quality IS inadequate WITH 0.4;
RULE 29 : IF commitment IS minimal AND influence IS medium AND clarity IS NOT high THEN service_quality IS inadequate WITH 0.2;
RULE 30 : IF commitment IS minimal AND influence IS low AND clarity IS NOT high THEN service_quality IS inadequate WITH 0.05;
RULE 31 : IF commitment IS nothing THEN service_quality IS inadequate;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
clarity commitment influence service_quality No1.1 No1.2 No1.3 No1.4 No1.5 No1.6 No1.7 No1.8 No1.9 No1.10 No1.11 No1.12 No1.13 No1.14 No1.15 No1.16 No1.17 No1.18 No1.19 No1.20 No1.21 No1.22 No1.23 No1.24 No1.25 No1.26 No1.27 No1.28 No1.29 No1.30 No1.31
-4.0 -4.0 -4.0 0.11815608791282411 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
-4.0 -4.0 -1.4 0.11817141532486804 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 0.1181865280667859 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-4.0 -4.0 3.8 0.1181865280667859 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-4.0 -4.0 6.4 0.1181865280667859 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
-4.0 -1.4 -4.0 5.607142338016129E-4 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
-4.0 -1.4 -1.4 0.003135044822862266 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
-4.0 -1.4 1.2000000000000002 0.007215402160999039 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
-4.0 -1.4 3.8 0.011154389699234763 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
-4.0 -1.4 6.4 0.011154389699234763 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
-4.0 1.2000000000000002 -4.0 0.0037609776242212584 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
-4.0 1.2000000000000002 -1.4 0.3970676152455999 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.6808208055835437 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.9062374990314668 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.9062374990314668 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
-4.0 3.8 -4.0 0.9663752852395127 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
-4.0 3.8 -1.4 4.102793568985088 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 3.8309441946419502 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
-4.0 3.8 3.8 3.710740189055049 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
-4.0 3.8 6.4 3.701537173785213 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
-4.0 6.4 -4.0 4.030121714491898 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
-4.0 6.4 -1.4 4.986254092998642 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 4.979006190501742 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-4.0 6.4 3.8 4.973794674919233 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-4.0 6.4 6.4 4.973794674919233 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9
-1.4 -4.0 -4.0 0.11815608791282411 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
-1.4 -4.0 -1.4 0.11817141532486804 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 0.1181865280667859 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-1.4 -4.0 3.8 0.1181865280667859 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-1.4 -4.0 6.4 0.1181865280667859 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
-1.4 -1.4 -4.0 5.607142338016129E-4 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
-1.4 -1.4 -1.4 0.003135044822862266 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
-1.4 -1.4 1.2000000000000002 0.007215402160999039 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
-1.4 -1.4 3.8 0.011154389699234763 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
-1.4 -1.4 6.4 0.011154389699234763 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
-1.4 1.2000000000000002 -4.0 0.0037609776242212584 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
-1.4 1.2000000000000002 -1.4 0.3970676152455999 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 0.6808208055835437 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
-1.4 1.2000000000000002 3.8 0.9062374990314668 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
-1.4 1.2000000000000002 6.4 0.9062374990314668 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
-1.4 3.8 -4.0 0.9663752852395127 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
-1.4 3.8 -1.4 4.102793568985088 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 3.8309441946419502 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
-1.4 3.8 3.8 3.710740189055049 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
-1.4 3.8 6.4 3.701537173785213 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
-1.4 6.4 -4.0 4.030121714491898 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
-1.4 6.4 -1.4 4.986254092998642 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 4.979006190501742 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-1.4 6.4 3.8 4.973794674919233 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-1.4 6.4 6.4 4.973794674919233 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 0.11817949341112592 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 4.416446820253236E-10 5.025893315755168E-9 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 0.11821244175982118 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 1.0051786631510336E-8 5.025893315755168E-9 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 0.11824597576586889 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 0.11824597576586889 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 0.11824597576586889 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 0.00130634613143027 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
1.2000000000000002 -1.4 -1.4 0.003313711398655566 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 0.007215402160999039 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
1.2000000000000002 -1.4 3.8 0.011154389699234763 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
1.2000000000000002 -1.4 6.4 0.011154389699234763 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 0.0037609776242212584 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 0.3970676152455999 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 0.6808208055835437 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 0.9062374990314668 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 0.9062374990314668 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
1.2000000000000002 3.8 -4.0 0.9663752852395127 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 4.102793568985088 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 3.8309441946419502 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
1.2000000000000002 3.8 3.8 3.710740189055049 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
1.2000000000000002 3.8 6.4 3.701537173785213 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 4.03006270824493 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 4.98625374927366 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 4.979005883759914 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 4.973794415273984 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 4.973794415273984 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9
3.8 -4.0 -4.0 0.11817949341112592 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 4.416446820253236E-10 5.025893315755168E-9 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
3.8 -4.0 -1.4 0.11821244175982118 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 1.0051786631510336E-8 5.025893315755168E-9 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 0.11824597576586889 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
3.8 -4.0 3.8 0.11824597576586889 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
3.8 -4.0 6.4 0.11824597576586889 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
3.8 -1.4 -4.0 0.00130634613143027 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
3.8 -1.4 -1.4 0.00932831265194775 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181348 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 6.377038147630198E-10 1.4938662645098218E-4 0.005613476283413373 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.01778386544879001 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 7.318024188804728E-4 0.0020385521694362696 0.0010192760847181348 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 3.659012094402364E-4 0.016840428850240115 0.005613476283413373 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
3.8 -1.4 3.8 0.02619496147046741 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 0.0030887154082367718 0.0020385521694362696 2.4149479823055604E-4 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 0.028067381417066863 0.016840428850240115 7.318024188804729E-5 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
3.8 -1.4 6.4 0.02619496147046741 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 0.0030887154082367718 3.286505781921602E-4 4.2088451774359307E-10 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 0.028067381417066863 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
3.8 1.2000000000000002 -4.0 0.0037609776242212584 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
3.8 1.2000000000000002 -1.4 0.6112624914549254 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 0.00198410947443703 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 1.0425407980229744 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 0.006547561265642199 0.00198410947443703 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
3.8 1.2000000000000002 3.8 1.3425868428254457 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 0.013095122531284397 0.006547561265642199 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
3.8 1.2000000000000002 6.4 1.2196245188194168 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 0.013095122531284397 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
3.8 3.8 -4.0 0.9663752852395127 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
3.8 3.8 -1.4 4.090487675317852 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 6.377038147630198E-10 1.4938662645098218E-4 0.00198410947443703 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
3.8 3.8 1.2000000000000002 3.817074116634072 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 0.14175392820954397 0.04867522559599716 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 3.659012094402364E-4 0.005952328423311089 0.00198410947443703 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
3.8 3.8 3.8 3.7015444515220532 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.3212564889335813 0.14175392820954397 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 0.009920547372185149 0.005952328423311089 7.318024188804729E-5 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
3.8 3.8 6.4 3.690206482447506 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.2477053252419236 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 0.009920547372185149 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
3.8 6.4 -4.0 4.03006270824493 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
3.8 6.4 -1.4 4.9330976812916925 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 0.005613476283413368 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 4.840793607186286 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 0.018524471735264114 0.005613476283413368 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
3.8 6.4 3.8 4.750683615645646 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 0.03704894347052823 0.018524471735264114 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
3.8 6.4 6.4 4.750683615645646 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 0.03704894347052823 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9
6.4 -4.0 -4.0 0.11817949341112592 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 4.416446820253236E-10 5.025893315755168E-9 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
6.4 -4.0 -1.4 0.11821244175982118 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 1.0051786631510336E-8 5.025893315755168E-9 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 0.11824597576586889 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
6.4 -4.0 3.8 0.11824597576586889 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
6.4 -4.0 6.4 0.11824597576586889 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
6.4 -1.4 -4.0 0.00130634613143027 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
6.4 -1.4 -1.4 0.00932831265194775 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181348 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 6.377038147630198E-10 1.4938662645098218E-4 0.005613476283413373 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.01778386544879001 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 7.318024188804728E-4 0.0020385521694362696 0.0010192760847181348 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 3.659012094402364E-4 0.016840428850240115 0.005613476283413373 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
6.4 -1.4 3.8 0.02619496147046741 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 0.0030887154082367718 0.0020385521694362696 2.4149479823055604E-4 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 0.028067381417066863 0.016840428850240115 7.318024188804729E-5 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
6.4 -1.4 6.4 0.02619496147046741 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 0.0030887154082367718 3.286505781921602E-4 4.2088451774359307E-10 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 0.028067381417066863 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
6.4 1.2000000000000002 -4.0 0.0037609776242212584 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
6.4 1.2000000000000002 -1.4 0.6112624914549251 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 0.00198410947443703 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 1.2754076295260396E-9 3.286505781921608E-4 0.1238526626209618 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513994 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 0.9739714136639687 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 0.006547561265642199 0.00198410947443703 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 7.318024188804728E-4 0.2477053252419236 0.1238526626209618 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 3.659012094402364E-4 0.1125933296554198 0.03753110988513994 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
6.4 1.2000000000000002 3.8 1.2196245188194168 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 0.013095122531284397 0.006547561265642199 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 0.37531109885139935 0.2477053252419236 2.4149479823055604E-4 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 0.18765554942569967 0.1125933296554198 7.318024188804729E-5 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
6.4 1.2000000000000002 6.4 1.2196245188194168 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 0.013095122531284397 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
6.4 3.8 -4.0 0.9663752852395127 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
6.4 3.8 -1.4 4.090487675317852 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 0.03753110988513994 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 0.1238526626209618 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 6.377038147630198E-10 1.4938662645098218E-4 0.00198410947443703 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
6.4 3.8 1.2000000000000002 3.817074116634072 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 0.1238526626209618 0.03753110988513994 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 0.2477053252419236 0.1238526626209618 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 3.659012094402364E-4 0.005952328423311089 0.00198410947443703 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
6.4 3.8 3.8 3.7015444515220532 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.2477053252419236 0.1238526626209618 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.37531109885139935 0.2477053252419236 2.4149479823055604E-4 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 0.009920547372185149 0.005952328423311089 7.318024188804729E-5 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
6.4 3.8 6.4 3.690206482447506 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.2477053252419236 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 0.009920547372185149 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
6.4 6.4 -4.0 4.03006270824493 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
6.4 6.4 -1.4 4.9330976812916925 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 0.005613476283413368 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 4.840793607186286 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 0.018524471735264114 0.005613476283413368 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
6.4 6.4 3.8 4.750683615645646 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 0.03704894347052823 0.018524471735264114 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
6.4 6.4 6.4 4.750683615645646 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 0.03704894347052823 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9

View File

@ -1,55 +0,0 @@
FUNCTION_BLOCK SingletonQoSFewRules
VAR_INPUT
commitment : REAL;
clarity : REAL;
influence : REAL;
END_VAR
VAR_OUTPUT
service_quality : REAL;
END_VAR
FUZZIFY commitment
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for commitment
END_FUZZIFY
FUZZIFY clarity
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for clarity
END_FUZZIFY
FUZZIFY influence
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for influence
END_FUZZIFY
DEFUZZIFY service_quality
TERM inadequate := 0;
TERM sufficient := 2.5;
TERM excellent := 5;
METHOD : COGS;
DEFAULT := 0;
RANGE := (0.0 .. 5.0); // Added range for service_quality
END_DEFUZZIFY
RULEBLOCK No1
AND : MIN;
ACCU : MAX;
RULE 1 : IF commitment IS fully AND influence IS high THEN service_quality IS excellent;
RULE 2 : IF commitment IS partially AND clarity IS high AND influence IS low THEN service_quality IS sufficient;
RULE 3 : IF commitment IS nothing THEN service_quality IS inadequate;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
clarity commitment influence service_quality No1.1 No1.2 No1.3
-4.0 -4.0 -4.0 5.760903513901482E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 -1.4 5.760903513901482E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 5.760903513901482E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 3.8 5.760903513901482E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 6.4 5.760903513901482E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -1.4 -4.0 5.1492424225679916E-17 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 -1.4 1.6991339056898312E-8 1.2754076295260396E-9 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 1.2000000000000002 1.6991339056898312E-8 1.2754076295260396E-9 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 3.8 1.6991339056898312E-8 1.2754076295260396E-9 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 6.4 1.6991339056898312E-8 1.2754076295260396E-9 2.576757109154981E-18 0.37531109885139957
-4.0 1.2000000000000002 -4.0 3.970331535608048E-17 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 -1.4 1.3101198934940618E-8 1.2754076295260396E-9 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.0075059112836849745 7.318024188804728E-4 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.0075059112836849745 7.318024188804728E-4 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.0075059112836849745 7.318024188804728E-4 2.576757109154981E-18 0.48675225595997157
-4.0 3.8 -4.0 2.6408328013218462E-14 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 -1.4 8.714137689993001E-6 1.2754076295260396E-9 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 2.5 7.318024188804728E-4 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 3.8 4.992494088716315 0.48675225595997157 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 6.4 4.990269695074573 0.37531109885139935 2.576757109154981E-18 7.318024188804728E-4
-4.0 6.4 -4.0 1.5152550285241103E-8 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 -1.4 2.5000000000000004 1.2754076295260396E-9 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 4.99999128586231 7.318024188804728E-4 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 3.8 4.999999983008662 0.37531109885139935 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 6.4 4.999999983008662 0.37531109885139935 2.576757109154981E-18 1.2754076295260396E-9
-1.4 -4.0 -4.0 9.504805301663191E-6 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -4.0 -1.4 9.504805301663191E-6 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 9.504805301663191E-6 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -4.0 3.8 9.504805301663191E-6 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -4.0 6.4 9.504805301663191E-6 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
-1.4 -1.4 -4.0 8.495669554195368E-9 2.576757109154981E-18 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 -1.4 2.5487008472989575E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 1.2000000000000002 2.5487008472989575E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 3.8 2.5487008472989575E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 6.4 2.5487008472989575E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 1.2000000000000002 -4.0 6.5505994873219665E-9 2.576757109154981E-18 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 -1.4 1.9651798331066846E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 0.007505917804813016 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 3.8 0.007505917804813016 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 6.4 0.007505917804813016 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
-1.4 3.8 -4.0 4.3570688582006414E-6 2.576757109154981E-18 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 -1.4 1.3071183740966453E-5 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 2.5 7.318024188804728E-4 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 3.8 4.992494082195187 0.48675225595997157 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 6.4 4.990269686628437 0.37531109885139935 1.2754076295260396E-9 7.318024188804728E-4
-1.4 6.4 -4.0 1.2500000037881376 2.576757109154981E-18 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 -1.4 2.5000000000000004 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 4.999986928816259 7.318024188804728E-4 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 3.8 4.999999974512992 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 6.4 4.999999974512992 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 9.504805301663191E-6 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 0.002232568205745448 2.576757109154981E-18 3.3546262790251185E-4 0.37531109885139957
1.2000000000000002 -1.4 -1.4 0.004865169404485839 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 0.004865169404485839 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
1.2000000000000002 -1.4 3.8 0.004865169404485839 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
1.2000000000000002 -1.4 6.4 2.5487008472989575E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 0.0017217772851831675 2.576757109154981E-18 3.3546262790251185E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 0.0037529687135552333 1.2754076295260396E-9 7.318024188804728E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 0.011241990648635307 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 0.011241990648635307 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 0.007505917804813016 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
1.2000000000000002 3.8 -4.0 0.7857997151543754 2.576757109154981E-18 3.3546262790251185E-4 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 1.2500032678044781 1.2754076295260396E-9 7.318024188804728E-4 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 2.5000000000000004 7.318024188804728E-4 7.318024188804728E-4 7.318024188804728E-4
1.2000000000000002 3.8 3.8 4.988758009351365 0.48675225595997157 7.318024188804728E-4 7.318024188804728E-4
1.2000000000000002 3.8 6.4 4.990269686628437 0.37531109885139935 1.2754076295260396E-9 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 2.499949002281903 2.576757109154981E-18 6.252150377482015E-5 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 2.5 1.2754076295260396E-9 6.252150377482015E-5 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 4.803216444780573 7.318024188804728E-4 6.252150377482015E-5 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 4.999583587850963 0.37531109885139935 6.252150377482015E-5 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 4.999999974512992 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9
3.8 -4.0 -4.0 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
3.8 -4.0 -1.4 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
3.8 -4.0 3.8 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
3.8 -4.0 6.4 9.504805301663191E-6 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
3.8 -1.4 -4.0 0.002232568205745448 2.576757109154981E-18 3.3546262790251185E-4 0.37531109885139957
3.8 -1.4 -1.4 0.020406444666765312 1.2754076295260396E-9 0.0030887154082367718 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.020406444666765312 1.2754076295260396E-9 0.0030887154082367718 0.37531109885139957
3.8 -1.4 3.8 0.004865169404485839 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
3.8 -1.4 6.4 2.5487008472989575E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
3.8 1.2000000000000002 -4.0 0.0017217772851831675 2.576757109154981E-18 3.3546262790251185E-4 0.48675225595997157
3.8 1.2000000000000002 -1.4 1.0884092762795572 1.2754076295260396E-9 0.37531109885139957 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 1.2528168310197556 7.318024188804728E-4 0.48675225595997157 0.48675225595997157
3.8 1.2000000000000002 3.8 0.011241990648635307 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
3.8 1.2000000000000002 6.4 0.007505917804813016 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
3.8 3.8 -4.0 0.7857997151543754 2.576757109154981E-18 3.3546262790251185E-4 7.318024188804728E-4
3.8 3.8 -1.4 2.490789416363066 1.2754076295260396E-9 0.19789869908361474 7.318024188804728E-4
3.8 3.8 1.2000000000000002 2.4999999999999996 7.318024188804728E-4 0.19789869908361474 7.318024188804728E-4
3.8 3.8 3.8 4.988758009351365 0.48675225595997157 7.318024188804728E-4 7.318024188804728E-4
3.8 3.8 6.4 4.990269686628437 0.37531109885139935 1.2754076295260396E-9 7.318024188804728E-4
3.8 6.4 -4.0 2.499949002281903 2.576757109154981E-18 6.252150377482015E-5 1.2754076295260396E-9
3.8 6.4 -1.4 2.5 1.2754076295260396E-9 6.252150377482015E-5 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 4.803216444780573 7.318024188804728E-4 6.252150377482015E-5 1.2754076295260396E-9
3.8 6.4 3.8 4.999583587850963 0.37531109885139935 6.252150377482015E-5 1.2754076295260396E-9
3.8 6.4 6.4 4.999999974512992 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9
6.4 -4.0 -4.0 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
6.4 -4.0 -1.4 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
6.4 -4.0 3.8 1.134946717944894E-4 2.576757109154981E-18 1.522997974471263E-8 3.3546262790251185E-4
6.4 -4.0 6.4 9.504805301663191E-6 2.576757109154981E-18 1.2754076295260396E-9 3.3546262790251185E-4
6.4 -1.4 -4.0 0.002232568205745448 2.576757109154981E-18 3.3546262790251185E-4 0.37531109885139957
6.4 -1.4 -1.4 0.020406444666765312 1.2754076295260396E-9 0.0030887154082367718 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.020406444666765312 1.2754076295260396E-9 0.0030887154082367718 0.37531109885139957
6.4 -1.4 3.8 0.004865169404485839 1.2754076295260396E-9 7.318024188804728E-4 0.37531109885139957
6.4 -1.4 6.4 2.5487008472989575E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
6.4 1.2000000000000002 -4.0 0.0017217772851831675 2.576757109154981E-18 3.3546262790251185E-4 0.48675225595997157
6.4 1.2000000000000002 -1.4 1.088409276279557 1.2754076295260396E-9 0.37531109885139935 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 1.0917269891114247 7.318024188804728E-4 0.37531109885139935 0.48675225595997157
6.4 1.2000000000000002 3.8 0.011241990648635307 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
6.4 1.2000000000000002 6.4 0.007505917804813016 7.318024188804728E-4 1.2754076295260396E-9 0.48675225595997157
6.4 3.8 -4.0 0.7857997151543754 2.576757109154981E-18 3.3546262790251185E-4 7.318024188804728E-4
6.4 3.8 -1.4 2.490789416363066 1.2754076295260396E-9 0.19789869908361474 7.318024188804728E-4
6.4 3.8 1.2000000000000002 2.4999999999999996 7.318024188804728E-4 0.19789869908361474 7.318024188804728E-4
6.4 3.8 3.8 4.988758009351365 0.48675225595997157 7.318024188804728E-4 7.318024188804728E-4
6.4 3.8 6.4 4.990269686628437 0.37531109885139935 1.2754076295260396E-9 7.318024188804728E-4
6.4 6.4 -4.0 2.499949002281903 2.576757109154981E-18 6.252150377482015E-5 1.2754076295260396E-9
6.4 6.4 -1.4 2.5 1.2754076295260396E-9 6.252150377482015E-5 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 4.803216444780573 7.318024188804728E-4 6.252150377482015E-5 1.2754076295260396E-9
6.4 6.4 3.8 4.999583587850963 0.37531109885139935 6.252150377482015E-5 1.2754076295260396E-9
6.4 6.4 6.4 4.999999974512992 0.37531109885139935 1.2754076295260396E-9 1.2754076295260396E-9

View File

@ -1,83 +0,0 @@
FUNCTION_BLOCK SingletonQoSFewRules
VAR_INPUT
commitment : REAL;
clarity : REAL;
influence : REAL;
END_VAR
VAR_OUTPUT
service_quality : REAL;
END_VAR
FUZZIFY commitment
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for commitment
END_FUZZIFY
FUZZIFY clarity
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for clarity
END_FUZZIFY
FUZZIFY influence
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high:= GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for influence
END_FUZZIFY
DEFUZZIFY service_quality
TERM inadequate := 0;
TERM sufficient := 2.5;
TERM excellent := 5;
METHOD : COGS;
DEFAULT := 0;
RANGE := (0.0 .. 5.0); // Added range for service_quality
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : MIN;
RULE 1 : IF commitment IS fully AND influence IS high THEN service_quality IS excellent;
RULE 2 : IF commitment IS fully AND influence IS medium THEN service_quality IS excellent WITH 0.8;
RULE 3 : IF commitment IS fully AND influence IS low THEN service_quality IS excellent WITH 0.6;
RULE 4 : IF commitment IS largely AND influence IS high AND clarity IS NOT high THEN service_quality IS excellent;
RULE 5 : IF commitment IS largely AND influence IS medium AND clarity IS NOT high THEN service_quality IS excellent WITH 0.66;
RULE 6 : IF commitment IS largely AND influence IS low AND clarity IS NOT high THEN service_quality IS excellent WITH 0.33;
RULE 7 : IF commitment IS largely AND influence IS high AND clarity IS high THEN service_quality IS sufficient WITH 0.66;
RULE 8 : IF commitment IS largely AND influence IS medium AND clarity IS high THEN service_quality IS sufficient WITH 0.33;
RULE 9 : IF commitment IS largely AND influence IS low AND clarity IS high THEN service_quality IS sufficient WITH 0.1;
RULE 10 : IF commitment IS satISfactory AND influence IS high THEN service_quality IS sufficient;
RULE 11 : IF commitment IS satISfactory AND influence IS medium THEN service_quality IS sufficient WITH 0.66;
RULE 12 : IF commitment IS satISfactory AND influence IS low THEN service_quality IS sufficient WITH 0.33;
RULE 13 : IF commitment IS satISfactory AND influence IS high AND clarity IS high THEN service_quality IS sufficient;
RULE 14 : IF commitment IS satISfactory AND influence IS medium AND clarity IS high THEN service_quality IS sufficient WITH 0.66;
RULE 15 : IF commitment IS satISfactory AND influence IS low AND clarity IS high THEN service_quality IS sufficient WITH 0.33;
RULE 16 : IF commitment IS satISfactory AND influence IS high AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.5;
RULE 17 : IF commitment IS satISfactory AND influence IS medium AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.3;
RULE 18 : IF commitment IS satISfactory AND influence IS low AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.1;
RULE 19 : IF commitment IS partially AND influence IS high AND clarity IS high THEN service_quality IS sufficient;
RULE 20 : IF commitment IS partially AND influence IS medium AND clarity IS high THEN service_quality IS sufficient WITH 0.66;
RULE 21 : IF commitment IS partially AND influence IS low AND clarity IS high THEN service_quality IS sufficient WITH 0.33;
RULE 22 : IF commitment IS partially AND influence IS high AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.4;
RULE 23 : IF commitment IS partially AND influence IS medium AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.25;
RULE 24 : IF commitment IS partially AND influence IS low AND clarity IS NOT high THEN service_quality IS sufficient WITH 0.1;
RULE 25 : IF commitment IS minimal AND influence IS high AND clarity IS high THEN service_quality IS inadequate WITH 0.5;
RULE 26 : IF commitment IS minimal AND influence IS medium AND clarity IS high THEN service_quality IS inadequate WITH 0.3;
RULE 27 : IF commitment IS minimal AND influence IS low AND clarity IS high THEN service_quality IS inadequate WITH 0.1;
RULE 28 : IF commitment IS minimal AND influence IS high AND clarity IS NOT high THEN service_quality IS inadequate WITH 0.4;
RULE 29 : IF commitment IS minimal AND influence IS medium AND clarity IS NOT high THEN service_quality IS inadequate WITH 0.2;
RULE 30 : IF commitment IS minimal AND influence IS low AND clarity IS NOT high THEN service_quality IS inadequate WITH 0.05;
RULE 31 : IF commitment IS nothing THEN service_quality IS inadequate;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
clarity commitment influence service_quality No1.1 No1.2 No1.3 No1.4 No1.5 No1.6 No1.7 No1.8 No1.9 No1.10 No1.11 No1.12 No1.13 No1.14 No1.15 No1.16 No1.17 No1.18 No1.19 No1.20 No1.21 No1.22 No1.23 No1.24 No1.25 No1.26 No1.27 No1.28 No1.29 No1.30 No1.31
-4.0 -4.0 -4.0 1.1350055490606169E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
-4.0 -4.0 -1.4 2.8374822803468476E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 4.5399294067593406E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-4.0 -4.0 3.8 4.5399294067593406E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-4.0 -4.0 6.4 4.5399294067593406E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
-4.0 -1.4 -4.0 2.2548294354937814E-4 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
-4.0 -1.4 -1.4 0.0020598335186958615 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
-4.0 -1.4 1.2000000000000002 0.005139214397237144 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
-4.0 -1.4 3.8 0.008208916419029324 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
-4.0 -1.4 6.4 0.008208916419029324 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
-4.0 1.2000000000000002 -4.0 0.002634446252362264 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
-4.0 1.2000000000000002 -1.4 0.35088075845480393 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.621781148508704 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.8430928661432882 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.8430928661432882 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
-4.0 3.8 -4.0 1.2293215795023484 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
-4.0 3.8 -1.4 4.101246484723092 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 3.8455310071029714 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
-4.0 3.8 3.8 3.719675565175792 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
-4.0 3.8 6.4 3.710765535161309 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
-4.0 6.4 -4.0 4.112596362152626 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
-4.0 6.4 -1.4 4.988733033331799 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 4.983137544272435 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-4.0 6.4 3.8 4.979591121422384 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-4.0 6.4 6.4 4.979591121422384 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9
-1.4 -4.0 -4.0 1.1350055490606169E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
-1.4 -4.0 -1.4 2.8374822803468476E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 4.5399294067593406E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-1.4 -4.0 3.8 4.5399294067593406E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
-1.4 -4.0 6.4 4.5399294067593406E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
-1.4 -1.4 -4.0 2.2548294354937814E-4 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
-1.4 -1.4 -1.4 0.0020598335186958615 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
-1.4 -1.4 1.2000000000000002 0.005139214397237144 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
-1.4 -1.4 3.8 0.008208916419029324 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
-1.4 -1.4 6.4 0.008208916419029324 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
-1.4 1.2000000000000002 -4.0 0.002634446252362264 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
-1.4 1.2000000000000002 -1.4 0.35088075845480393 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 0.621781148508704 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
-1.4 1.2000000000000002 3.8 0.8430928661432882 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
-1.4 1.2000000000000002 6.4 0.8430928661432882 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
-1.4 3.8 -4.0 1.2293215795023484 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
-1.4 3.8 -1.4 4.101246484723092 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 3.8455310071029714 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
-1.4 3.8 3.8 3.719675565175792 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
-1.4 3.8 6.4 3.710765535161309 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
-1.4 6.4 -4.0 4.112596362152626 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
-1.4 6.4 -1.4 4.988733033331799 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 4.983137544272435 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-1.4 6.4 3.8 4.979591121422384 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
-1.4 6.4 6.4 4.979591121422384 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 3.745450549002364E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 4.416446820253236E-10 5.025893315755168E-9 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 7.490782832730384E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 1.0051786631510336E-8 5.025893315755168E-9 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 1.1349486049995967E-4 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 1.1349486049995967E-4 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 1.1349486049995967E-4 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 7.392344994752629E-4 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
1.2000000000000002 -1.4 -1.4 0.0021913606309272122 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 0.005139214397237144 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
1.2000000000000002 -1.4 3.8 0.008208916419029324 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
1.2000000000000002 -1.4 6.4 0.008208916419029324 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 0.002634446252362264 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 0.35088075845480393 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 0.621781148508704 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 0.8430928661432882 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 0.8430928661432882 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
1.2000000000000002 3.8 -4.0 1.2293215795023484 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 4.101246484723092 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 3.8455310071029714 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
1.2000000000000002 3.8 3.8 3.719675565175792 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
1.2000000000000002 3.8 6.4 3.710765535161309 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 4.11228954428557 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 4.988732006563496 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 4.983136776789188 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 4.979590508749082 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 4.979590508749082 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9
3.8 -4.0 -4.0 3.745450549002364E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 4.416446820253236E-10 5.025893315755168E-9 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
3.8 -4.0 -1.4 7.490782832730384E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 1.0051786631510336E-8 5.025893315755168E-9 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 1.1349486049995967E-4 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
3.8 -4.0 3.8 1.1349486049995967E-4 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
3.8 -4.0 6.4 1.1349486049995967E-4 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
3.8 -1.4 -4.0 7.392344994752629E-4 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
3.8 -1.4 -1.4 0.006775229122923378 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181348 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 6.377038147630198E-10 1.4938662645098218E-4 0.005613476283413373 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.01351187678830349 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 7.318024188804728E-4 0.0020385521694362696 0.0010192760847181348 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 3.659012094402364E-4 0.016840428850240115 0.005613476283413373 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
3.8 -1.4 3.8 0.020412554615169148 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 0.0030887154082367718 0.0020385521694362696 2.4149479823055604E-4 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 0.028067381417066863 0.016840428850240115 7.318024188804729E-5 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
3.8 -1.4 6.4 0.020412554615169148 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 0.0030887154082367718 3.286505781921602E-4 4.2088451774359307E-10 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 0.028067381417066863 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
3.8 1.2000000000000002 -4.0 0.002634446252362264 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
3.8 1.2000000000000002 -1.4 0.5547566834143304 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 0.00198410947443703 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 0.9883705619108492 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 0.006547561265642199 0.00198410947443703 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
3.8 1.2000000000000002 3.8 1.324902536229299 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 0.013095122531284397 0.006547561265642199 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
3.8 1.2000000000000002 6.4 1.176412276151891 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 0.013095122531284397 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
3.8 3.8 -4.0 1.2293215795023484 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
3.8 3.8 -1.4 4.0896556316926524 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 6.377038147630198E-10 1.4938662645098218E-4 0.00198410947443703 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
3.8 3.8 1.2000000000000002 3.8334793859766254 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 0.14175392820954397 0.04867522559599716 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 3.659012094402364E-4 0.005952328423311089 0.00198410947443703 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
3.8 3.8 3.8 3.7121709328085735 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.3212564889335813 0.14175392820954397 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 0.009920547372185149 0.005952328423311089 7.318024188804729E-5 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
3.8 3.8 6.4 3.7010848629000774 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.2477053252419236 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 0.009920547372185149 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
3.8 6.4 -4.0 4.11228954428557 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
3.8 6.4 -1.4 4.939192494247536 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 0.005613476283413368 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 4.8547171232203254 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 0.018524471735264114 0.005613476283413368 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
3.8 6.4 3.8 4.775382042848198 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 0.03704894347052823 0.018524471735264114 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
3.8 6.4 6.4 4.775382042848198 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 0.03704894347052823 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9
6.4 -4.0 -4.0 3.745450549002364E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 6.869204536936659E-12 2.289734845645553E-12 2.576757109154981E-18 4.416446820253236E-10 5.025893315755168E-9 1.0307028436619925E-18 1.6728965228231954E-10 1.522997974471263E-9 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 1.3383172182585565E-10 1.8633265860393355E-7 3.3546262790251185E-4
6.4 -4.0 -1.4 7.490782832730384E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.2754076295260396E-9 1.0051786631510336E-8 5.025893315755168E-9 5.101630518104158E-10 3.807494936178157E-9 1.522997974471263E-9 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 1.1349486049995967E-4 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
6.4 -4.0 3.8 1.1349486049995967E-4 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 5.025893315755168E-9 6.091991897885052E-9 3.807494936178157E-9 1.522997974471263E-9 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 7.453306344157342E-7 1.8633265860393355E-7 3.3546262790251185E-4
6.4 -4.0 6.4 1.1349486049995967E-4 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 6.869204536936659E-12 2.289734845645553E-12 1.522997974471263E-8 1.0051786631510336E-8 4.2088451774359307E-10 6.091991897885052E-9 3.807494936178157E-9 1.2754076295260396E-10 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 7.453306344157342E-7 6.377038147630198E-11 3.3546262790251185E-4
6.4 -1.4 -4.0 7.392344994752629E-4 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 2.0074758273878343E-10 6.252150377482016E-6 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.37531109885139957
6.4 -1.4 -1.4 0.006775229122923378 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 1.8756451132446044E-5 6.252150377482016E-6 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181348 5.101630518104158E-10 1.2448885537581848E-4 3.088715408236772E-4 6.377038147630198E-10 1.4938662645098218E-4 0.005613476283413373 5.101630518104158E-10 9.959108430065478E-5 0.0028067381417066863 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.01351187678830349 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 7.318024188804728E-4 0.0020385521694362696 0.0010192760847181348 2.9272096755218914E-4 7.721788520591929E-4 3.088715408236772E-4 3.659012094402364E-4 0.016840428850240115 0.005613476283413373 2.9272096755218914E-4 0.011226952566826745 0.0028067381417066863 0.37531109885139957
6.4 -1.4 3.8 0.020412554615169148 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 1.8756451132446044E-5 6.252150377482016E-6 0.0030887154082367718 0.0020385521694362696 2.4149479823055604E-4 0.0012354861632947088 7.721788520591929E-4 7.318024188804729E-5 0.028067381417066863 0.016840428850240115 7.318024188804729E-5 0.02245390513365349 0.011226952566826745 3.659012094402364E-5 0.37531109885139957
6.4 -1.4 6.4 0.020412554615169148 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 1.8756451132446044E-5 1.2754076295260396E-10 0.0030887154082367718 3.286505781921602E-4 4.2088451774359307E-10 0.0012354861632947088 1.2448885537581826E-4 1.2754076295260396E-10 0.028067381417066863 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 9.959108430065462E-5 6.377038147630198E-11 0.37531109885139957
6.4 1.2000000000000002 -4.0 0.002634446252362264 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 0.48675225595997157
6.4 1.2000000000000002 -1.4 0.55475668341433 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 0.00198410947443703 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 6.377038147630198E-10 1.4938662645098218E-4 0.019789869908361474 1.2754076295260396E-9 3.286505781921608E-4 0.1238526626209618 5.101630518104158E-10 1.2448885537581848E-4 0.03753110988513996 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513994 5.101630518104158E-10 9.959108430065478E-5 0.01876555494256998 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 0.915974114389173 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 0.006547561265642199 0.00198410947443703 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 3.659012094402364E-4 0.05936960972508442 0.019789869908361474 7.318024188804728E-4 0.2477053252419236 0.1238526626209618 2.9272096755218914E-4 0.10738933955268481 0.04867522559599716 3.659012094402364E-4 0.1125933296554198 0.03753110988513994 2.9272096755218914E-4 0.08591147164214785 0.02433761279799858 0.48675225595997157
6.4 1.2000000000000002 3.8 1.176412276151891 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 0.013095122531284397 0.006547561265642199 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.09894934954180737 0.05936960972508442 7.318024188804729E-5 0.37531109885139935 0.2477053252419236 2.4149479823055604E-4 0.19470090238398863 0.10738933955268481 7.318024188804729E-5 0.18765554942569967 0.1125933296554198 7.318024188804729E-5 0.19470090238398863 0.08591147164214785 3.659012094402364E-5 0.48675225595997157
6.4 1.2000000000000002 6.4 1.176412276151891 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 0.013095122531284397 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 1.493866264509819E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.15012443954055976 1.2448885537581826E-4 1.2754076295260396E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 9.959108430065462E-5 6.377038147630198E-11 0.48675225595997157
6.4 3.8 -4.0 1.2293215795023484 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.0307028436619925E-18 1.6728965228231954E-10 3.354626279025119E-5 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 1.3383172182585565E-10 1.6773131395125595E-5 7.318024188804728E-4
6.4 3.8 -1.4 4.0896556316926524 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 0.03753110988513994 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 0.1238526626209618 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 5.101630518104158E-10 1.2448885537581848E-4 0.019789869908361474 6.377038147630198E-10 1.4938662645098218E-4 0.00198410947443703 5.101630518104158E-10 9.959108430065478E-5 9.92054737218515E-4 7.318024188804728E-4
6.4 3.8 1.2000000000000002 3.8334793859766254 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 0.1238526626209618 0.03753110988513994 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 0.2477053252419236 0.1238526626209618 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 2.9272096755218914E-4 0.049474674770903684 0.019789869908361474 3.659012094402364E-4 0.005952328423311089 0.00198410947443703 2.9272096755218914E-4 0.00396821894887406 9.92054737218515E-4 7.318024188804728E-4
6.4 3.8 3.8 3.7121709328085735 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.2477053252419236 0.1238526626209618 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.37531109885139935 0.2477053252419236 2.4149479823055604E-4 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.0791594796334459 0.049474674770903684 7.318024188804729E-5 0.009920547372185149 0.005952328423311089 7.318024188804729E-5 0.00793643789774812 0.00396821894887406 3.659012094402364E-5 7.318024188804728E-4
6.4 3.8 6.4 3.7010848629000774 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.2477053252419236 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.0791594796334459 1.2448885537581826E-4 1.2754076295260396E-10 0.009920547372185149 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 9.959108430065462E-5 6.377038147630198E-11 7.318024188804728E-4
6.4 6.4 -4.0 4.11228954428557 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.0307028436619925E-18 1.6728965228231954E-10 6.252150377482016E-6 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 1.3383172182585565E-10 2.3278578578915392E-8 1.2754076295260396E-9
6.4 6.4 -1.4 4.939192494247536 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 0.005613476283413368 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 6.377038147630198E-10 1.4938662645098218E-4 3.0887154082367665E-4 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 5.101630518104158E-10 1.5630375943705038E-5 6.252150377482016E-6 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 4.8547171232203254 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 0.018524471735264114 0.005613476283413368 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 3.659012094402364E-4 9.266146224710298E-4 3.0887154082367665E-4 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
6.4 6.4 3.8 4.775382042848198 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 0.03704894347052823 0.018524471735264114 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.001544357704118383 9.266146224710298E-4 7.318024188804729E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.5008601509928064E-5 1.5630375943705038E-5 6.252150377482016E-6 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 9.311431431566157E-8 2.3278578578915392E-8 1.2754076295260396E-9
6.4 6.4 6.4 4.775382042848198 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 0.03704894347052823 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 1.493866264509819E-4 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.5008601509928064E-5 1.5630375943705038E-5 1.2754076295260396E-10 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 9.311431431566157E-8 6.377038147630198E-11 1.2754076295260396E-9

View File

@ -1,42 +0,0 @@
FUNCTION_BLOCK Example
VAR_INPUT
temp: REAL;
END_VAR
VAR_OUTPUT
hot_valve: REAL;
cold_valve: REAL;
END_VAR
FUZZIFY temp
TERM hot := (1,0)(70,0)(90,1);
TERM cold := (1,1)(50,1)(80,0);
RANGE := (1.0 .. 90.0); // Added range for temp
END_FUZZIFY
DEFUZZIFY hot_valve
TERM open := 100;
TERM closed := 0;
METHOD : COGS;
DEFAULT := 0;
RANGE := (0.0 .. 100.0); // Added range for hot_valve
END_DEFUZZIFY
DEFUZZIFY cold_valve
TERM open := 100;
TERM closed := 0;
METHOD : COGS;
DEFAULT := 0;
RANGE := (0.0 .. 100.0); // Added range for cold_valve
END_DEFUZZIFY
RULEBLOCK Control
AND: MIN;
ACCU: MAX;
RULE 1: IF temp IS cold THEN hot_valve IS open;
RULE 2: IF temp IS hot THEN cold_valve IS open;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,6 +0,0 @@
temp hot_valve cold_valve Control.1 Control.2
1.0 100.0 0.0 1.0 0.0
18.8 100.0 0.0 1.0 0.0
36.6 100.0 0.0 1.0 0.0
54.4 100.0 0.0 0.8533333333333334 0.0
72.2 100.0 100.0 0.2599999999999999 0.11000000000000014

View File

@ -1,51 +0,0 @@
FUNCTION_BLOCK ip // Block definition (there may be more than one block per file)
VAR_OUTPUT // Define input variables
force : REAL;
END_VAR
VAR_INPUT // Define output variable
x : REAL;
dxdt : REAL;
END_VAR
FUZZIFY x
TERM ok := (-0.1,0) (0,1) (0.1,0) ;
TERM left := (-2,1) (0,0);
TERM right := ( 0, 0) (2,1) ;
RANGE := (-2.0 .. 2.0) WITH 0.1; // Added range for x
END_FUZZIFY
FUZZIFY dxdt
TERM ok := TRIAN -1 0 1 ;
TERM left := (-1,1) (0,0);
TERM right := (0,0) (1,1) ;
TERM tooRight := (3,0) (4,1);
TERM tooLeft := (-4,1) (-3,0);
RANGE := (-4.0 .. 4.0) WITH 0.1; // Added range for dxdt
END_FUZZIFY
DEFUZZIFY force
TERM zero := TRIAN -1 0 1 ;
TERM left := (-101,0) (-100,1) (-99,0);
TERM right := (99,0) (100,1) (101,0);
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (-101.0 .. 101.0); // Added range for force
END_DEFUZZIFY
RULEBLOCK No1
AND : MIN; // Use 'min' for 'and' (also implicit use 'max' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1 : IF x IS right AND dxdt IS NOT tooLeft THEN force IS left ;
RULE 2 : IF x IS left AND dxdt IS NOT tooRight THEN force IS right ;
RULE 3 : IF x IS ok AND dxdt IS right THEN force IS left ;
RULE 4 : IF x IS ok AND dxdt IS left THEN force IS right ;
RULE 5 : IF x IS ok AND dxdt IS ok THEN force IS zero ;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
x dxdt force No1.1 No1.2 No1.3 No1.4 No1.5
-2.0 -4.0 99.99816161616144 0.0 1.0 0.0 0.0 0.0
-2.0 -2.4 99.99816161616144 0.0 1.0 0.0 0.0 0.0
-2.0 -0.7999999999999998 99.99816161616144 0.0 1.0 0.0 0.0 0.0
-2.0 0.7999999999999998 99.99816161616144 0.0 1.0 0.0 0.0 0.0
-2.0 2.4000000000000004 99.99816161616144 0.0 1.0 0.0 0.0 0.0
-1.2 -4.0 99.99816161616141 0.0 0.6 0.0 0.0 0.0
-1.2 -2.4 99.99816161616141 0.0 0.6 0.0 0.0 0.0
-1.2 -0.7999999999999998 99.99816161616141 0.0 0.6 0.0 0.0 0.0
-1.2 0.7999999999999998 99.99816161616141 0.0 0.6 0.0 0.0 0.0
-1.2 2.4000000000000004 99.99816161616141 0.0 0.6 0.0 0.0 0.0
-0.3999999999999999 -4.0 99.9981616161611 0.0 0.19999999999999996 0.0 0.0 0.0
-0.3999999999999999 -2.4 99.9981616161611 0.0 0.19999999999999996 0.0 0.0 0.0
-0.3999999999999999 -0.7999999999999998 99.9981616161611 0.0 0.19999999999999996 0.0 0.0 0.0
-0.3999999999999999 0.7999999999999998 99.9981616161611 0.0 0.19999999999999996 0.0 0.0 0.0
-0.3999999999999999 2.4000000000000004 99.9981616161611 0.0 0.19999999999999996 0.0 0.0 0.0
0.3999999999999999 -4.0 0.0 0.0 0.0 0.0 0.0 0.0
0.3999999999999999 -2.4 -99.99816161616162 0.19999999999999996 0.0 0.0 0.0 0.0
0.3999999999999999 -0.7999999999999998 -99.99816161616162 0.19999999999999996 0.0 0.0 0.0 0.0
0.3999999999999999 0.7999999999999998 -99.99816161616162 0.19999999999999996 0.0 0.0 0.0 0.0
0.3999999999999999 2.4000000000000004 -99.99816161616162 0.19999999999999996 0.0 0.0 0.0 0.0
1.2000000000000002 -4.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 -2.4 -99.99816161616161 0.6000000000000001 0.0 0.0 0.0 0.0
1.2000000000000002 -0.7999999999999998 -99.99816161616161 0.6000000000000001 0.0 0.0 0.0 0.0
1.2000000000000002 0.7999999999999998 -99.99816161616161 0.6000000000000001 0.0 0.0 0.0 0.0
1.2000000000000002 2.4000000000000004 -99.99816161616161 0.6000000000000001 0.0 0.0 0.0 0.0

View File

@ -1,59 +0,0 @@
FUNCTION_BLOCK ipPhi0 // control block fOR the angle
VAR_OUTPUT
fORce : REAL;
END_VAR
VAR_INPUT
phi : REAL;
dphidt : REAL;
END_VAR
FUZZIFY phi
TERM Z := TRIAN -5 0 5;
TERM PS := TRIAN 0 5 10;
TERM NS := TRIAN -10 -5 0;
TERM PB := (5,0) (10,1) (60,1) (70,0);
TERM NB := (-70,0) (-60,1) (-10, 1) (-5,0);
RANGE := (-70.0 .. 70.0); // Added range for phi
RANGE := (-70.0 .. 70.0); // Added range for phi
END_FUZZIFY
FUZZIFY dphidt
TERM Z := TRIAN -8 0 8;
TERM PS := TRIAN 0 8 200 ;
TERM NS := TRIAN -200 -8 0 ;
TERM PB := (8,0) (200,1) (500,1) ;
TERM NB := (-500,1) (-200,1) (-8,0);
RANGE := (-500.0 .. 500.0); // Added range for dphidt
END_FUZZIFY
DEFUZZIFY fORce
TERM Z := TRIAN -20 0 20;
TERM PS := TRIAN 30 50 70;
TERM NS := TRIAN -70 -50 -30;
TERM PB := TRIAN 190 200 210;
TERM NB := TRIAN -210 -200 -190;
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (-210.0 .. 210.0); // Added range for fORce
END_DEFUZZIFY
RULEBLOCK No1
AND : MIN;
ACT : MIN;
ACCU : MAX;
RULE 1 : IF phi IS PS AND (dphidt IS PS OR dphidt IS Z) THEN fORce IS PS;
RULE 2 : IF phi IS PS AND dphidt IS PB THEN fORce IS PB ;
RULE 3 : IF phi IS NS AND (dphidt IS NS OR dphidt IS Z) THEN fORce IS NS;
RULE 4 : IF phi IS NS AND dphidt IS NB THEN fORce IS NB ;
RULE 5 : IF phi IS PB AND (dphidt IS NOT NB) AND (dphidt IS NOT NS) THEN fORce IS PB ;
RULE 6 : IF phi IS NB AND (dphidt IS NOT PB) AND (dphidt IS NOT PS) THEN fORce IS NB ;
RULE 7 : IF phi IS Z AND dphidt IS Z THEN fORce IS Z;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
phi dphidt fORce No1.1 No1.2 No1.3 No1.4 No1.5 No1.6 No1.7
-70.0 -500.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
-70.0 -300.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
-70.0 -100.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
-70.0 100.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
-70.0 300.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
-42.0 -500.0 -199.9979032258064 0.0 0.0 0.0 0.0 0.0 1.0 0.0
-42.0 -300.0 -199.9979032258064 0.0 0.0 0.0 0.0 0.0 1.0 0.0
-42.0 -100.0 -199.9979032258064 0.0 0.0 0.0 0.0 0.0 1.0 0.0
-42.0 100.0 -199.99670186293636 0.0 0.0 0.0 0.0 0.0 0.47916666666666674 0.0
-42.0 300.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
-14.0 -500.0 -199.9979032258064 0.0 0.0 0.0 0.0 0.0 1.0 0.0
-14.0 -300.0 -199.9979032258064 0.0 0.0 0.0 0.0 0.0 1.0 0.0
-14.0 -100.0 -199.9979032258064 0.0 0.0 0.0 0.0 0.0 1.0 0.0
-14.0 100.0 -199.99670186293636 0.0 0.0 0.0 0.0 0.0 0.47916666666666674 0.0
-14.0 300.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
14.0 -500.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
14.0 -300.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
14.0 -100.0 199.99670186293625 0.0 0.0 0.0 0.0 0.47916666666666663 0.0 0.0
14.0 100.0 199.99790322580637 0.0 0.0 0.0 0.0 1.0 0.0 0.0
14.0 300.0 199.99790322580637 0.0 0.0 0.0 0.0 1.0 0.0 0.0
42.0 -500.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
42.0 -300.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
42.0 -100.0 199.99670186293625 0.0 0.0 0.0 0.0 0.47916666666666663 0.0 0.0
42.0 100.0 199.99790322580637 0.0 0.0 0.0 0.0 1.0 0.0 0.0
42.0 300.0 199.99790322580637 0.0 0.0 0.0 0.0 1.0 0.0 0.0

View File

@ -1,124 +0,0 @@
FUNCTION_BLOCK qualify
VAR_INPUT
scoring : REAL; // Account owner's scoring
sel : REAL; // Social economic level
occupation_type: REAL; // enum_occupation_type.rid
city: REAL; // City (actually Zip code)
scoring_partner : REAL; // Partner's scoring
END_VAR
VAR_OUTPUT
qualify : REAL; // Qualify
credLimMul : REAL; // Credit limit multiplier
END_VAR
// Scoring : [0,1000]
FUZZIFY scoring
TERM veryHigh := TRAPE 850 900 1000 1000;
TERM high := TRAPE 650 700 900 1000;
TERM midHigh := TRAPE 500 550 700 900;
TERM midLow := TRAPE 380 420 550 700;
TERM low := TRAPE 0 0 420 550;
RANGE := (0.0 .. 1000.0); // Added range for scoring
END_FUZZIFY
// Social economic level: {A,B,C1,C2,C3,D1,D2,E}
FUZZIFY sel
TERM a := SIGM 0.01 4500; // Use sigm
TERM b := TRAPE 2000 3000 5000 10000;
TERM c1 := TRAPE 1300 2000 3000 5000;
TERM c2 := TRAPE 900 1300 2000 3000;
TERM c3 := TRAPE 600 900 1300 2000;
TERM d1 := TRAPE 400 600 900 1300;
TERM low := TRAPE -100 0 600 900;
RANGE := (-100.0 .. 10000.0); // Added range for sel
END_FUZZIFY
// City (zip code < 1900 => BsAs)
FUZZIFY city
TERM bsas := TRAPE 0 0 1899 1900;
TERM other := TRAPE 1900 1900 10000 10000;
RANGE := (0.0 .. 10000.0); // Added range for city
END_FUZZIFY
// Occupation type rid
// Good ones: { Hired State Employee, Hired Private company Employee, Contractor State Employee}
// Rids: { 9, 10 ,11 }
FUZZIFY occupation_type
TERM good := TRAPE 8.5 9 11 11.5;
TERM other_1 := TRAPE 0 0 8 8.5;
TERM other_2 := TRAPE 11.5 12 20 20;
RANGE := (0.0 .. 20.0); // Added range for occupation_type
END_FUZZIFY
// Partner's Scoring : [0,1000]
FUZZIFY scoring_partner
TERM midLow := TRAPE 0 420 550 700;
TERM low := TRIAN 0 0 420;
TERM noPartner := TRAPE -100 -50 -1 0; // No partner
TERM fakeRange := (0,0) (1000,0); // Fake term: it's always 0. Used to simulate 'range' (0..1000)
RANGE := (-100.0 .. 1000.0); // Added range for scoring_partner
END_FUZZIFY
// Qualify : {accept,manual_accept,manual_reject,reject}
DEFUZZIFY qualify
METHOD : COG;
DEFAULT := 0;
TERM accept := TRIAN 3 4 5; // Center in 4
TERM manual_accept := TRIAN 2 3 4; // Center in 3
TERM manual_reject := TRIAN 1 2 3; // Center in 2
TERM reject := TRIAN 0 1 2; // Center in 1
RANGE := (0.0 .. 5.0) WITH 0.1; // Added range for qualify
END_DEFUZZIFY
// Credit limit multiplier
DEFUZZIFY credLimMul
METHOD : COG;
DEFAULT := 0;
TERM veryHigh := TRIAN 3 3.5 4;
TERM high := TRIAN 2 3 3.5;
TERM midHigh := TRIAN 1 2 3;
TERM midLow := TRIAN 0 0.5 1;
TERM low := TRIAN -2 -1 0;
RANGE := (-2.0 .. 4.0) WITH 0.01; // Added range for credLimMul
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : MIN;
ACT : MIN;
// Scoring rules
RULE 1 : IF scoring IS veryHigh THEN qualify IS accept , credLimMul IS veryHigh;
RULE 2 : IF scoring IS high THEN qualify IS accept , credLimMul IS high;
RULE 3 : IF scoring IS midHigh THEN qualify IS manual_accept , credLimMul IS midHigh;
RULE 4 : IF scoring IS midLow THEN qualify IS manual_reject , credLimMul IS midLow;
RULE 5 : IF scoring IS low THEN qualify IS reject , credLimMul IS low;
// Social economic level
RULE 6 : IF sel IS a OR sel IS b THEN qualify IS accept , credLimMul IS veryHigh;
RULE 7 : IF sel IS c1 THEN qualify IS accept , credLimMul IS high;
RULE 8 : IF sel IS c2 THEN qualify IS manual_accept , credLimMul IS midHigh;
RULE 9 : IF sel IS c3 THEN qualify IS manual_reject , credLimMul IS midLow;
RULE 10 : IF sel IS d1 OR sel IS low THEN qualify IS reject , credLimMul IS low;
// Ocupation type
RULE 11 : IF NOT occupation_type IS good THEN qualify IS reject , credLimMul IS low;
// City
RULE 12 : IF city IS other AND (scoring IS midLow OR scoring IS low) THEN qualify IS reject , credLimMul IS low;
// Partner's scoring
RULE 13 : IF scoring_partner IS midLow THEN qualify IS manual_reject , credLimMul IS midLow;
RULE 14 : IF scoring_partner IS low THEN qualify IS reject , credLimMul IS low;
END_RULEBLOCK
END_FUNCTION_BLOCK

File diff suppressed because it is too large Load Diff

View File

@ -1,98 +0,0 @@
FUNCTION_BLOCK qualify
VAR_INPUT
city : REAL;
occupation_type : REAL;
scoring : REAL;
scoring_partner : REAL;
sel : REAL;
END_VAR
VAR_OUTPUT
credLimMul : REAL;
qualify : REAL;
END_VAR
FUZZIFY city
TERM bsas := TRAPE 0.0 0.0 1899.0 1900.0;
TERM other := TRAPE 1900.0 1900.0 10000.0 10000.0;
RANGE := (0.0 .. 10000.0); // Added range for city
END_FUZZIFY
FUZZIFY occupation_type
TERM good := TRAPE 8.5 9.0 11.0 11.5;
TERM other_1 := TRAPE 0.0 0.0 8.0 8.5;
TERM other_2 := TRAPE 11.5 12.0 20.0 20.0;
RANGE := (0.0 .. 20.0); // Added range for occupation_type
END_FUZZIFY
FUZZIFY scoring
TERM high := TRAPE 648.9499999999999 889.7 889.8499999999999 904.0999999999996;
TERM low := TRAPE 0.0 0.0 384.25000000000006 541.1999999999998;
TERM midHigh := TRAPE 342.8000000000001 438.40000000000003 522.0000000000001 999.9999999999998;
TERM midLow := TRAPE 52.31999999999999 399.52 646.9599999999996 720.48;
TERM veryHigh := TRAPE 893.65 914.8500000000001 1000.0 1000.0;
RANGE := (0.0 .. 1000.0); // Added range for scoring
END_FUZZIFY
FUZZIFY scoring_partner
TERM fakeRange := (0.0, 0.0) (1000.0, 0.0) ;
TERM low := TRIAN 0.0 0.0 420.0;
TERM midLow := TRAPE 0.0 420.0 550.0 700.0;
TERM noPartner := TRAPE -100.0 -50.0 -1.0 0.0;
RANGE := (-100.0 .. 1000.0); // Added range for scoring_partner
END_FUZZIFY
FUZZIFY sel
TERM a := SIGM 0.01 4500.0;
TERM b := TRAPE 2000.0 3000.0 5000.0 10000.0;
TERM c1 := TRAPE 1300.0 2000.0 3000.0 5000.0;
TERM c2 := TRAPE 900.0 1300.0 2000.0 3000.0;
TERM c3 := TRAPE 600.0 900.0 1300.0 2000.0;
TERM d1 := TRAPE 400.0 600.0 900.0 1300.0;
TERM low := TRAPE -100.0 0.0 600.0 900.0;
RANGE := (-100.0 .. 10000.0); // Added range for sel
END_FUZZIFY
DEFUZZIFY credLimMul
TERM high := TRIAN 2.7050000000000005 2.7059999999999995 3.7085000000000004;
TERM low := TRIAN -1.6839999999999997 -1.5280000000000005 -0.40800000000000014;
TERM midHigh := TRIAN 0.5799999999999998 2.188 3.5240000000000005;
TERM midLow := TRIAN -0.5480000000000002 -0.12000000000000002 0.8239999999999994;
TERM veryHigh := TRIAN 3.519 3.9860000000000007 4.0;
METHOD : COG;
DEFAULT := 0.0;
RANGE := (-2.0 .. 4.0) WITH 0.01;
END_DEFUZZIFY
DEFUZZIFY qualify
TERM accept := TRIAN 3.0 4.0 5.0;
TERM manual_accept := TRIAN 2.0 3.0 4.0;
TERM manual_reject := TRIAN 1.0 2.0 3.0;
TERM reject := TRIAN 0.0 1.0 2.0;
METHOD : COG;
DEFAULT := 0.0;
RANGE := (0.0 .. 5.0) WITH 0.1;
END_DEFUZZIFY
RULEBLOCK No1
ACT : MIN;
ACCU : MAX;
AND : MIN;
RULE 1 : IF scoring IS veryHigh THEN qualify IS accept , credLimMul IS veryHigh WITH 0.9999999999999999;
RULE 2 : IF scoring IS high THEN qualify IS accept , credLimMul IS high WITH 0.6299999999999997;
RULE 3 : IF scoring IS midHigh THEN qualify IS manual_accept , credLimMul IS midHigh WITH 0.2799999999999998;
RULE 4 : IF scoring IS midLow THEN qualify IS manual_reject , credLimMul IS midLow WITH 0.3299999999999999;
RULE 5 : IF scoring IS low THEN qualify IS reject , credLimMul IS low;
RULE 6 : IF (sel IS a) OR (sel IS b) THEN qualify IS accept , credLimMul IS veryHigh WITH 0.43999999999999984;
RULE 7 : IF sel IS c1 THEN qualify IS accept , credLimMul IS high;
RULE 8 : IF sel IS c2 THEN qualify IS manual_accept , credLimMul IS midHigh WITH 0.6699999999999998;
RULE 9 : IF sel IS c3 THEN qualify IS manual_reject , credLimMul IS midLow WITH 0.7199999999999999;
RULE 10 : IF (sel IS d1) OR (sel IS low) THEN qualify IS reject , credLimMul IS low WITH 0.16999999999999982;
RULE 11 : IF NOT occupation_type IS good THEN qualify IS reject , credLimMul IS low;
RULE 12 : IF (city IS other) AND ((scoring IS midLow) OR (scoring IS low)) THEN qualify IS reject , credLimMul IS low;
RULE 13 : IF scoring_partner IS midLow THEN qualify IS manual_reject , credLimMul IS midLow;
RULE 14 : IF scoring_partner IS low THEN qualify IS reject , credLimMul IS low;
END_RULEBLOCK
END_FUNCTION_BLOCK

File diff suppressed because it is too large Load Diff

View File

@ -1,62 +0,0 @@
FUNCTION_BLOCK Libcfuz // Block definition (there may be more than one block per file)
VAR_INPUT // Define input variables
Age : REAL;
Lactation : REAL;
END_VAR
VAR_OUTPUT // Define output variable
rISk : REAL;
END_VAR
FUZZIFY Age // Fuzzify input variable 'Age': {'young', 'mature' , 'old'}
TERM young := (0, 1)(10,1) (30, 1) (40, 0) ;
TERM mature:= (30, 0) (40,1) (60,1) (70,0);
TERM old := (60, 0) (70, 1) (90,1);
RANGE := (0.0 .. 90.0); // Added range for Age
END_FUZZIFY
FUZZIFY Lactation // Fuzzify input variable 'Lactation': { 'low', 'medium','full' }
TERM low := (0, 1) (2,1) (6, 1) (10,0);
TERM medium := (6,0) (10,1) (16,1) (20,0);
TERM full := (16,0) (20,1) (24,0);
RANGE := (0.0 .. 24.0); // Added range for Lactation
END_FUZZIFY
DEFUZZIFY rISk // Defzzzify output variable 'rISk' : {'verylow',low', 'medium', 'high','veryhigh' }
TERM verylow := (0,1) (5,1) (10,0);
TERM low := (5,0) (10,1) (25,1) (30,0);
TERM medium := (25,0) (30,1) (45,1) (50,0);
TERM high := (45,0) (50,1) (75,1) (80,0);
TERM veryhigh := (75,0) (80,1) (95,1) (100,0);
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value IS 0 (if no rule activates defuzzifier)
RANGE := (0.0 .. 100.0); // Added range for rISk
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX; // Use 'max' accumulation method
AND : MIN; // Use 'min' for 'and' (also implicit use 'max' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
RULE 1 : IF Age IS old AND Lactation IS low THEN rISk IS veryhigh;
RULE 2 : IF Age IS old THEN rISk IS high;
RULE 3 : IF Age IS old AND Lactation IS full THEN rISk IS low;
/* In thIS it picks Rule2 When given the in put it should pick Rule3 with the given input */
RULE 4 : IF Age IS young THEN rISk IS low;
RULE 5 : IF Age IS mature THEN rISk IS veryhigh;
RULE 6 : IF Lactation IS medium THEN rISk IS medium;
RULE 7 : IF Lactation IS full THEN rISk IS low;
RULE 8 : IF Lactation IS low THEN rISk IS veryhigh;
RULE 9 : IF Age IS young AND Lactation IS medium THEN rISk IS low;
RULE 10 : IF Age IS young AND Lactation IS full THEN rISk IS verylow;
RULE 11 : IF Age IS mature AND Lactation IS low THEN rISk IS veryhigh;
RULE 12 : IF Age IS mature AND Lactation IS medium THEN rISk IS high;
RULE 13 : IF Age IS mature AND Lactation IS full THEN rISk IS low ;
RULE 14: IF Age IS old AND Lactation IS low THEN rISk IS high;
RULE 15: IF Age IS old AND Lactation IS medium THEN rISk IS medium;
RULE 16: IF Age IS old AND Lactation IS full THEN rISk IS low;
RULE 17 : IF Age IS young AND Lactation IS low THEN rISk IS medium;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
Lactation Age rISk No1.1 No1.2 No1.3 No1.4 No1.5 No1.6 No1.7 No1.8 No1.9 No1.10 No1.11 No1.12 No1.13 No1.14 No1.15 No1.16 No1.17
0.0 0.0 47.92553191489446 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0.0 18.0 47.92553191489446 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0.0 36.0 59.758064516129764 0.0 0.0 0.0 0.4 0.6 0.0 0.0 1.0 0.0 0.0 0.6 0.0 0.0 0.0 0.0 0.0 0.4
0.0 54.0 87.49999999999996 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 72.0 72.37179487179526 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
4.800000000000001 0.0 47.92553191489446 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
4.800000000000001 18.0 47.92553191489446 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
4.800000000000001 36.0 59.758064516129764 0.0 0.0 0.0 0.4 0.6 0.0 0.0 1.0 0.0 0.0 0.6 0.0 0.0 0.0 0.0 0.0 0.4
4.800000000000001 54.0 87.49999999999996 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
4.800000000000001 72.0 72.37179487179526 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
9.600000000000001 0.0 30.8165195460276 0.0 0.0 0.0 1.0 0.0 0.9000000000000004 0.0 0.09999999999999964 0.9000000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09999999999999964
9.600000000000001 18.0 30.8165195460276 0.0 0.0 0.0 1.0 0.0 0.9000000000000004 0.0 0.09999999999999964 0.9000000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.09999999999999964
9.600000000000001 36.0 53.569210292812286 0.0 0.0 0.0 0.4 0.6 0.9000000000000004 0.0 0.09999999999999964 0.4 0.0 0.09999999999999964 0.6 0.0 0.0 0.0 0.0 0.09999999999999964
9.600000000000001 54.0 63.11119873817127 0.0 0.0 0.0 0.0 1.0 0.9000000000000004 0.0 0.09999999999999964 0.0 0.0 0.09999999999999964 0.9000000000000004 0.0 0.0 0.0 0.0 0.0
9.600000000000001 72.0 54.61382113821117 0.09999999999999964 1.0 0.0 0.0 0.0 0.9000000000000004 0.0 0.09999999999999964 0.0 0.0 0.0 0.0 0.0 0.09999999999999964 0.9000000000000004 0.0 0.0
14.399999999999999 0.0 27.499999999999943 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
14.399999999999999 18.0 27.499999999999943 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
14.399999999999999 36.0 53.13903281519825 0.0 0.0 0.0 0.4 0.6 1.0 0.0 0.0 0.4 0.0 0.0 0.6 0.0 0.0 0.0 0.0 0.0
14.399999999999999 54.0 62.50000000000055 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
14.399999999999999 72.0 52.62820512820545 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
19.200000000000003 0.0 17.97728674203499 0.0 0.0 0.0 1.0 0.0 0.1999999999999993 0.8000000000000007 0.0 0.1999999999999993 0.8000000000000007 0.0 0.0 0.0 0.0 0.0 0.0 0.0
19.200000000000003 18.0 17.97728674203499 0.0 0.0 0.0 1.0 0.0 0.1999999999999993 0.8000000000000007 0.0 0.1999999999999993 0.8000000000000007 0.0 0.0 0.0 0.0 0.0 0.0 0.0
19.200000000000003 36.0 46.59456991830936 0.0 0.0 0.0 0.4 0.6 0.1999999999999993 0.8000000000000007 0.0 0.1999999999999993 0.4 0.0 0.1999999999999993 0.6 0.0 0.0 0.0 0.0
19.200000000000003 54.0 54.934782608697176 0.0 0.0 0.0 0.0 1.0 0.1999999999999993 0.8000000000000007 0.0 0.0 0.0 0.0 0.1999999999999993 0.8000000000000007 0.0 0.0 0.0 0.0
19.200000000000003 72.0 45.78000000000053 0.0 1.0 0.8000000000000007 0.0 0.0 0.1999999999999993 0.8000000000000007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1999999999999993 0.8000000000000007 0.0

View File

@ -1,135 +0,0 @@
/*
Robot controller.
References:
"Learning Weighted LinguIStic Rules to Control an Autonomous Robot"
, M. Mucientes, R. Alcala , J. Alcala-Fdez, J. Casillas
Pablo Cingolani
pcingola@users.sourceforge.net
*/
FUNCTION_BLOCK robot
VAR_INPUT
rd : REAL; // Right dIStance
dq : REAL; // DIStance quotient
o : REAL; // Orientation. Note: I cannot use 'or' (like the reference paper) because it IS a reserved word in FCL
v : REAL; // Velocity
END_VAR
VAR_OUTPUT
la : REAL; // Linear acceleration
av : REAL; // Angular velocity
END_VAR
FUZZIFY rd
TERM L := TRIAN 0 0 1;
TERM M := TRIAN 0 1 2;
TERM H := TRIAN 1 2 3;
TERM VH := TRIAN 2 3 3;
RANGE := (0.0 .. 3.0) WITH 0.1; // Added range for rd
END_FUZZIFY
FUZZIFY dq
TERM L := TRIAN 0 0 2;
TERM H := TRIAN 0 2 2;
RANGE := (0.0 .. 2.0) WITH 0.1; // Added range for dq
END_FUZZIFY
FUZZIFY o
TERM HL := TRIAN -45 -45 -22.5;
TERM LL := TRIAN -45 -22.5 0;
TERM Z := TRIAN -22.5 0 22.5;
TERM LR := TRIAN 0 22.5 45;
TERM HR := TRIAN 22.5 45 45;
RANGE := (-45.0 .. 45.0) WITH 0.1; // Added range for o
END_FUZZIFY
FUZZIFY v
TERM L := TRIAN 0 0 1;
TERM H := TRIAN 0 1 1;
RANGE := (0.0 .. 1.0) WITH 0.1; // Added range for v
END_FUZZIFY
DEFUZZIFY la
TERM VHB := TRIAN -1 -1 -0.75;
TERM HB := TRIAN -1 -0.75 -0.5;
TERM MB := TRIAN -0.75 -0.5 -0.25;
TERM SB := TRIAN -0.5 -0.25 0;
TERM Z := TRIAN -0.25 0 0.25;
TERM SA := TRIAN 0 0.25 0.5;
TERM MA := TRIAN 0.25 0.5 0.75;
TERM HA := TRIAN 0.5 0.75 1;
TERM VHA := TRIAN 0.75 1 1;
METHOD : COG;
DEFAULT := 0;
RANGE := (-1.0 .. 1.0) WITH 0.01; // Added range for la
END_DEFUZZIFY
DEFUZZIFY av
TERM VHR := TRIAN -1 -1 -0.55;
TERM HR := TRIAN -1 -0.75 -0.5;
TERM MR := TRIAN -0.75 -0.5 -0.25;
TERM SR := TRIAN -0.5 -0.25 0;
TERM Z := TRIAN -0.25 0 0.25;
TERM SL := TRIAN 0 0.25 0.5;
TERM ML := TRIAN 0.25 0.5 0.75;
TERM HL := TRIAN 0.5 0.75 1;
TERM VHL := TRIAN 0.75 1 1;
METHOD : COG;
DEFAULT := 0;
RANGE := (-1.0 .. 1.0) WITH 0.01; // Added range for av
END_DEFUZZIFY
RULEBLOCK rules
AND : MIN; // Use 'min' for 'AND' (also implicit use 'max' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1: IF rd IS L AND dq IS L AND o IS LL AND v IS L THEN la IS VHB , av IS VHR WITH 0.4610;
RULE 2: IF rd IS L AND dq IS L AND o IS LL AND v IS H THEN la IS VHB , av IS VHR WITH 0.4896;
RULE 3: IF rd IS L AND dq IS L AND o IS Z AND v IS L THEN la IS Z , av IS MR WITH 0.6664;
RULE 4: IF rd IS L AND dq IS L AND o IS Z AND v IS H THEN la IS HB , av IS SR WITH 0.5435;
RULE 5: IF rd IS L AND dq IS H AND o IS LL AND v IS L THEN la IS MA , av IS HR WITH 0.7276;
RULE 6: IF rd IS L AND dq IS H AND o IS Z AND v IS L THEN la IS MA , av IS HL WITH 0.4845;
RULE 7: IF rd IS L AND dq IS H AND o IS Z AND v IS H THEN la IS HB , av IS ML WITH 0.5023;
RULE 8: IF rd IS L AND dq IS H AND o IS LR AND v IS H THEN la IS VHB , av IS VHL WITH 0.7363;
RULE 9: IF rd IS L AND dq IS H AND o IS HR AND v IS L THEN la IS VHB , av IS VHL WITH 0.9441;
RULE 10: IF rd IS M AND dq IS L AND o IS Z AND v IS H THEN la IS SA , av IS HR WITH 0.3402;
RULE 11: IF rd IS M AND dq IS L AND o IS LR AND v IS H THEN la IS Z , av IS VHL WITH 0.4244;
RULE 12: IF rd IS M AND dq IS L AND o IS HR AND v IS L THEN la IS SA , av IS HL WITH 0.5472;
RULE 13: IF rd IS M AND dq IS L AND o IS HR AND v IS H THEN la IS MB , av IS VHL WITH 0.4369;
RULE 14: IF rd IS M AND dq IS H AND o IS HL AND v IS L THEN la IS Z , av IS VHR WITH 0.1770;
RULE 15: IF rd IS M AND dq IS H AND o IS HL AND v IS H THEN la IS VHB , av IS VHR WITH 0.4526;
RULE 16: IF rd IS M AND dq IS H AND o IS LL AND v IS H THEN la IS SA , av IS VHR WITH 0.2548;
RULE 17: IF rd IS M AND dq IS H AND o IS Z AND v IS L THEN la IS HA , av IS Z WITH 0.2084;
RULE 18: IF rd IS M AND dq IS H AND o IS LR AND v IS L THEN la IS HA , av IS VHL WITH 0.6242;
RULE 19: IF rd IS M AND dq IS H AND o IS LR AND v IS H THEN la IS SA , av IS VHL WITH 0.3779;
RULE 20: IF rd IS M AND dq IS H AND o IS HR AND v IS L THEN la IS Z , av IS VHL WITH 0.6931;
RULE 21: IF rd IS M AND dq IS H AND o IS HR AND v IS H THEN la IS VHB , av IS VHL WITH 0.7580;
RULE 22: IF rd IS H AND dq IS L AND o IS Z AND v IS L THEN la IS HA , av IS VHR WITH 0.5758;
RULE 23: IF rd IS H AND dq IS L AND o IS LR AND v IS H THEN la IS SA , av IS MR WITH 0.2513;
RULE 24: IF rd IS H AND dq IS L AND o IS HR AND v IS L THEN la IS HA , av IS VHL WITH 0.5471;
RULE 25: IF rd IS H AND dq IS L AND o IS HR AND v IS H THEN la IS SA , av IS HL WITH 0.5595;
RULE 26: IF rd IS H AND dq IS H AND o IS HL AND v IS L THEN la IS VHB , av IS VHR WITH 0.9999;
RULE 27: IF rd IS H AND dq IS H AND o IS HL AND v IS H THEN la IS VHB , av IS VHR WITH 0.9563;
RULE 28: IF rd IS H AND dq IS H AND o IS LL AND v IS L THEN la IS HA , av IS VHR WITH 0.9506;
RULE 29: IF rd IS H AND dq IS H AND o IS Z AND v IS L THEN la IS HA , av IS VHR WITH 0.4529;
RULE 30: IF rd IS H AND dq IS H AND o IS Z AND v IS H THEN la IS SA , av IS VHR WITH 0.2210;
RULE 31: IF rd IS H AND dq IS H AND o IS LR AND v IS L THEN la IS HA , av IS MR WITH 0.3612;
RULE 32: IF rd IS H AND dq IS H AND o IS LR AND v IS H THEN la IS SA , av IS MR WITH 0.2122;
RULE 33: IF rd IS H AND dq IS H AND o IS HR AND v IS L THEN la IS HA , av IS HL WITH 0.7878;
RULE 34: IF rd IS H AND dq IS H AND o IS HR AND v IS H THEN la IS SA , av IS VHL WITH 0.3859;
RULE 35: IF rd IS VH AND dq IS L AND o IS LR AND v IS L THEN la IS HA , av IS VHR WITH 0.5530;
RULE 36: IF rd IS VH AND dq IS L AND o IS HR AND v IS L THEN la IS HA , av IS HR WITH 0.4223;
RULE 37: IF rd IS VH AND dq IS L AND o IS HR AND v IS H THEN la IS SA , av IS HR WITH 0.3854;
RULE 38: IF rd IS VH AND dq IS H AND o IS LL AND v IS L THEN la IS HA , av IS VHR WITH 0.0936;
RULE 39: IF rd IS VH AND dq IS H AND o IS LR AND v IS L THEN la IS HA , av IS VHR WITH 0.7325;
RULE 40: IF rd IS VH AND dq IS H AND o IS LR AND v IS H THEN la IS SA , av IS VHR WITH 0.5631;
RULE 41: IF rd IS VH AND dq IS H AND o IS HR AND v IS L THEN la IS HA , av IS HR WITH 0.5146;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,626 +0,0 @@
rd v dq o la av rules.1 rules.2 rules.3 rules.4 rules.5 rules.6 rules.7 rules.8 rules.9 rules.10 rules.11 rules.12 rules.13 rules.14 rules.15 rules.16 rules.17 rules.18 rules.19 rules.20 rules.21 rules.22 rules.23 rules.24 rules.25 rules.26 rules.27 rules.28 rules.29 rules.30 rules.31 rules.32 rules.33 rules.34 rules.35 rules.36 rules.37 rules.38 rules.39 rules.40 rules.41
0.0 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 -27.0 -0.8968226725105329 -0.8968226725105329 0.3688 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 -9.0 -0.18451141786173775 -0.5804602711643171 0.1844 0.0 0.39984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 9.0 -1.1512282770330305E-17 -0.5000000000000017 0.0 0.0 0.39984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 -27.0 -0.23797748610920041 -0.8144006488819687 0.3688 0.0 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 -9.0 -0.01312616868213907 -0.3419373930570476 0.1844 0.0 0.39984 0.0 0.14552 0.0969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 9.0 0.11186702352039189 -0.22033244119901596 0.0 0.0 0.39984 0.0 0.0 0.0969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 -27.0 0.047674284272385445 -0.7666945590978691 0.2766 0.0 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 -9.0 0.07630875974609881 -0.24559233065257405 0.1844 0.0 0.39984 0.0 0.29104 0.1938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 9.0 0.17681212036178373 -0.05796969909554479 0.0 0.0 0.39984 0.0 0.0 0.1938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 -27.0 0.2259267108905184 -0.7559611554831708 0.1844 0.0 0.0 0.0 0.43656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 -9.0 0.08833864042974462 -0.09908528335868977 0.1844 0.0 0.26656 0.0 0.29104 0.29069999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 9.0 0.25907973528524014 0.14769933821310044 0.0 0.0 0.26656 0.0 0.0 0.29069999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 -27.0 0.3664984116309937 -0.7513545315042293 0.09219999999999999 0.0 0.0 0.0 0.58208 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 -9.0 0.20476035274456297 -0.05048630856288615 0.09219999999999999 0.0 0.13327999999999998 0.0 0.29104 0.29069999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 9.0 0.3331802343283801 0.3329505858209505 0.0 0.0 0.13327999999999998 0.0 0.0 0.29069999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 -27.0 -0.8968226725105329 -0.8968226725105329 0.3688 0.09792000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 -9.0 -0.23836020099120225 -0.5280628492861009 0.1844 0.09792000000000001 0.39984 0.1087 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 9.0 -0.1823764662596338 -0.44751737165432764 0.0 0.0 0.39984 0.1087 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 -27.0 -0.23797748610920041 -0.8144006488819687 0.3688 0.09792000000000001 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 -9.0 -0.07042904311791527 -0.26185584557143216 0.1844 0.09792000000000001 0.39984 0.1087 0.14552 0.0969 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 9.0 -0.09195651489255174 -0.10375330497341205 0.0 0.0 0.39984 0.1087 0.0 0.0969 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 -27.0 0.047674284272385445 -0.7666945590978691 0.2766 0.09792000000000001 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 -9.0 0.021350439054616234 -0.1956926134055589 0.1844 0.09792000000000001 0.39984 0.1087 0.29104 0.1938 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 9.0 -0.012603382396856124 -0.01933620495520787 0.0 0.0 0.39984 0.1087 0.0 0.1938 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 -27.0 0.2259267108905184 -0.7559611554831708 0.1844 0.09792000000000001 0.0 0.0 0.43656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 -9.0 0.024420331317641052 -0.06910998008309042 0.1844 0.09792000000000001 0.26656 0.1087 0.29104 0.29069999999999996 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 9.0 0.04802511191821985 0.14904841430808746 0.0 0.0 0.26656 0.1087 0.0 0.29069999999999996 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 -27.0 0.35940086313777564 -0.7515158111477913 0.09219999999999999 0.09791999999999998 0.0 0.0 0.58208 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 -9.0 0.09337521722155485 -0.02522327610023263 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29104 0.29069999999999996 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 9.0 0.05835668243329308 0.29247902049266966 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.29069999999999996 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 -27.0 -0.8918700594040894 -0.8918700594040894 0.2766 0.19584000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 -9.0 -0.29628603275278514 -0.49333751280052324 0.1844 0.19584000000000001 0.39984 0.2174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 9.0 -0.28291266161042516 -0.41178790572243984 0.0 0.0 0.39984 0.2174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 -27.0 -0.15438205558198095 -0.7978700598080697 0.2766 0.19584000000000001 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 -9.0 -0.13314597624215985 -0.25849545190711315 0.1844 0.19584000000000001 0.39984 0.2174 0.14552 0.0969 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 9.0 -0.17147997060510087 -0.10940149214505325 0.0 0.0 0.39984 0.2174 0.0 0.0969 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 -27.0 0.047674284272385445 -0.7666945590978691 0.2766 0.19584000000000001 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 -9.0 -0.03989273623995292 -0.15729894670743266 0.1844 0.19584000000000001 0.39984 0.2174 0.29104 0.1938 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 9.0 -0.13158489345715846 0.05235214069906453 0.0 0.0 0.39984 0.2174 0.0 0.1938 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 27.0 -0.892854957533669 0.8918450170519161 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 -27.0 0.21375195823425866 -0.7566608541803894 0.1844 0.19584000000000001 0.0 0.0 0.43656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 -9.0 -0.04508044898514305 -0.04799742902050382 0.1844 0.19584000000000001 0.26656 0.2174 0.29104 0.29069999999999996 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 9.0 -0.08303733630877981 0.16288488830755737 0.0 0.0 0.26656 0.2174 0.0 0.29069999999999996 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 27.0 -0.892854957533669 0.8918450170519161 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 -27.0 0.3335266813959684 -0.75183058753021 0.09219999999999999 0.09791999999999998 0.0 0.0 0.43656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 -9.0 -0.02477611396932928 0.005275849591085308 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29104 0.29069999999999996 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 9.0 -0.08963980928173518 0.32401819636008894 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.29069999999999996 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 27.0 -0.892854957533669 0.8918450170519161 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 -27.0 -0.8928138116154225 -0.8928138116154225 0.1844 0.29375999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 -9.0 -0.41740862514669386 -0.4562531590775282 0.1844 0.19584000000000001 0.26656 0.3261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 9.0 -0.406176991695519 -0.3621069335673068 0.0 0.0 0.26656 0.3261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 -27.0 -0.17227867567219524 -0.8013868710966677 0.1844 0.29375999999999997 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 -9.0 -0.22663846913426125 -0.22213061507186846 0.1844 0.19584000000000001 0.26656 0.3261 0.14552 0.0969 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 9.0 -0.2728905494875901 -0.062461165748524845 0.0 0.0 0.26656 0.3261 0.0 0.0969 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 27.0 -0.8868976915953508 0.8858940655543883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 -27.0 0.031885365141038235 -0.7687312929902189 0.1844 0.29375999999999997 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 -9.0 -0.11825136034772105 -0.12965924104418874 0.1844 0.19584000000000001 0.26656 0.3261 0.29104 0.1938 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 9.0 -0.1981200567541831 0.09419839503768405 0.0 0.0 0.26656 0.3261 0.0 0.1938 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 27.0 -0.892854957533669 0.8918450170519161 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 -27.0 0.13520800019727328 -0.7590448655616651 0.1844 0.19584000000000001 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 -9.0 -0.1038772974237815 -0.06664678310423362 0.1844 0.19584000000000001 0.26656 0.2174 0.29104 0.1938 0.30138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 9.0 -0.18443702056631647 0.16428136088282644 0.0 0.0 0.26656 0.2174 0.0 0.1938 0.30138 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 27.0 -0.9005166564149035 0.8994898607147835 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.44177999999999995 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 -27.0 0.28135967540330825 -0.7525050443305067 0.09219999999999999 0.09791999999999998 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 -9.0 -0.11114926687535542 -0.016966057123236872 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29104 0.1938 0.30138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 9.0 -0.21848483356104068 0.3177440019383676 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.1938 0.30138 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 27.0 -0.9005166564149035 0.8994898607147835 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.44177999999999995 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 -27.0 -0.898003623188404 -0.898003623188404 0.09219999999999999 0.39168000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 -9.0 -0.5266904009303862 -0.43777320489239435 0.09219999999999999 0.19584000000000001 0.13327999999999998 0.3261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 9.0 -0.5151904294289307 -0.3203222606898989 0.0 0.0 0.13327999999999998 0.3261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 -27.0 -0.25465179718392256 -0.817755739528264 0.09219999999999999 0.39168000000000003 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 -9.0 -0.2712095155655473 -0.18510842037897404 0.09219999999999999 0.19584000000000001 0.13327999999999998 0.3261 0.14551999999999998 0.09689999999999997 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 9.0 -0.3316496612930696 0.004832843608776533 0.0 0.0 0.13327999999999998 0.3261 0.0 0.09689999999999997 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 27.0 -0.8868976915953506 0.8858940655543885 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18881999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 -27.0 -0.1722786756721953 -0.8013868710966676 0.09219999999999999 0.29375999999999997 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 -9.0 -0.2712095155655473 -0.09817902318459112 0.09219999999999999 0.19584000000000001 0.13327999999999998 0.3261 0.14551999999999998 0.09689999999999997 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 9.0 -0.35236204876340604 0.14859816175638174 0.0 0.0 0.13327999999999998 0.3261 0.0 0.09689999999999997 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 27.0 -0.892854957533669 0.8918450170519161 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18881999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 -27.0 -0.05033617353107441 -0.7773138560866227 0.09219999999999999 0.19584000000000001 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 -9.0 -0.2557448569097408 -0.012893947817537749 0.09219999999999999 0.19584000000000001 0.13327999999999998 0.2174 0.14551999999999998 0.09689999999999997 0.30138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 9.0 -0.33872869247495774 0.23835582446643383 0.0 0.0 0.13327999999999998 0.2174 0.0 0.09689999999999997 0.30138 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 27.0 -0.9005166564149035 0.8994898607147835 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.44177999999999995 0.18881999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 -27.0 0.14446700800867973 -0.7545771141500212 0.09219999999999999 0.09791999999999998 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 -9.0 -0.24539140473188623 0.05752062719720071 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.14551999999999998 0.09689999999999997 0.30138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 9.0 -0.33872869247495774 0.3069549893398098 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.09689999999999997 0.30138 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 27.0 -0.9072218948322746 0.9061637916212987 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.58904 0.18881999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 -27.0 -0.88663808001218 -0.88663808001218 0.18439999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 -9.0 -0.23655604032230312 -0.6031554760700601 0.18439999999999998 0.0 0.26655999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 9.0 -8.252152399603125E-18 -0.5000000000000016 0.0 0.0 0.26655999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 27.0 0.2500000000000009 0.7500000000000031 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 -45.0 5.3340641203350615E-17 -0.8777265435211057 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 -27.0 -0.027875414801648842 -0.7736942367140389 0.18439999999999998 0.0 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 -9.0 0.023472147654199298 -0.28089165294800983 0.18439999999999998 0.0 0.26655999999999996 0.0 0.14552 0.0969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 9.0 0.26868006457044374 -0.08781399999112188 0.0 0.0 0.26655999999999996 0.0 0.0 0.0969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 27.0 0.08119283004461932 0.7891610861007349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.12484 0.0 0.13862000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 -45.0 7.125388565923568E-17 -0.8798784824303494 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 -27.0 0.13551347282513387 -0.7581039602607186 0.18439999999999998 0.0 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 -9.0 0.14177423651272086 -0.1833765501677111 0.18439999999999998 0.0 0.26655999999999996 0.0 0.29103999999999997 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 9.0 0.3707041568099725 0.08540866643394822 0.0 0.0 0.26655999999999996 0.0 0.0 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 27.0 0.22022239391731677 0.8054556163906265 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.24968 0.0 0.13862000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 -45.0 6.936865116695767E-17 -0.8820212954747122 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 -27.0 0.13551347282513387 -0.7581039602607186 0.18439999999999998 0.0 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 -9.0 0.16530567396650261 -0.1733528743905941 0.18439999999999998 0.0 0.26655999999999996 0.0 0.29103999999999997 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 9.0 0.3707041568099725 0.07965137757785999 0.0 0.0 0.26655999999999996 0.0 0.0 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 27.0 0.2994870582568326 0.8277811447916009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.37451999999999996 0.0 0.13862000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 -45.0 6.053583609670591E-17 -0.8820212954747124 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10620000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 -27.0 0.2607788935520128 -0.7522395060406223 0.09219999999999999 0.0 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 -9.0 0.290066358370555 -0.13715720300730372 0.09219999999999999 0.0 0.13327999999999998 0.0 0.29103999999999997 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 9.0 0.46058678884703974 0.21785105508432337 0.0 0.0 0.13327999999999998 0.0 0.0 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 27.0 0.2994870582568327 0.827781144791601 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.10943999999999998 0.0 0.0 0.0 0.0 0.0 0.37452 0.0 0.13862000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 -27.0 -0.88663808001218 -0.88663808001218 0.18439999999999998 0.09792000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 -9.0 -0.23986881576685568 -0.5361584076686575 0.18439999999999998 0.09792000000000001 0.26655999999999996 0.1087 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 9.0 -0.1756819285587999 -0.3249155707811814 0.0 0.0 0.26655999999999996 0.1087 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 27.0 -0.09053463721258063 0.753993098286669 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 -45.0 -0.4891475452794201 -0.8810777780236165 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 -27.0 -0.022346286957864475 -0.7736942367140389 0.18439999999999998 0.09792000000000001 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 -9.0 -0.04374214702977321 -0.20840116631280467 0.18439999999999998 0.09792000000000001 0.26655999999999996 0.1087 0.14552 0.0969 0.10046 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 9.0 0.02289863820692324 -0.07634967725342158 0.0 0.0 0.26655999999999996 0.1087 0.0 0.0969 0.10046 0.14726 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 27.0 -0.022092932542467743 0.7891610861007349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 -45.0 -0.3423140007335359 -0.8810777780236165 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 -27.0 0.1357123820038505 -0.7581039602607186 0.18439999999999998 0.09792000000000001 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 -9.0 0.0780971698807371 -0.14281732245674755 0.18439999999999998 0.09792000000000001 0.26655999999999996 0.1087 0.29103999999999997 0.19379999999999994 0.10046 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 9.0 0.16065984154107885 0.050815013408997814 0.0 0.0 0.26655999999999996 0.1087 0.0 0.19379999999999994 0.10046 0.14726 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 27.0 0.11494689743114485 0.8054556163906265 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 -45.0 -0.2655846504239983 -0.8820212954747122 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 -27.0 0.1357123820038505 -0.7581039602607186 0.18439999999999998 0.09792000000000001 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 -9.0 0.10161900144510738 -0.1358503647478441 0.18439999999999998 0.09792000000000001 0.26655999999999996 0.1087 0.29103999999999997 0.19379999999999994 0.10046 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 9.0 0.16065984154107885 0.05066356873352379 0.0 0.0 0.26655999999999996 0.1087 0.0 0.19379999999999994 0.10046 0.14726 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 27.0 0.19788812115003307 0.8277811447916009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.37451999999999996 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 -45.0 -0.26558465042399826 -0.8820212954747124 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10620000000000002 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 -27.0 0.24906921772428134 -0.7525050443305067 0.09219999999999999 0.09791999999999998 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 -9.0 0.18219053363193702 -0.09896141319421323 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29103999999999997 0.19379999999999994 0.10046 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 9.0 0.1909545702045729 0.1599252943817413 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.19379999999999994 0.10046 0.14726 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 27.0 0.19788812115003312 0.827781144791601 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.37452 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 -27.0 -0.887303785780239 -0.887303785780239 0.18439999999999998 0.19583999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 -9.0 -0.2601220427628563 -0.4974141091724742 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 9.0 -0.24545060088884077 -0.2515144381238112 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 27.0 -0.07495769438988528 0.7828106410511184 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 -45.0 -0.4891475452794201 -0.8810777780236165 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 -27.0 -0.037636695619324236 -0.777313856086623 0.18439999999999998 0.19583999999999996 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 -9.0 -0.11211484838549997 -0.20988613135474987 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.14552 0.0969 0.10046 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 9.0 -0.058827242437506 -0.11267706742412172 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.0969 0.10046 0.14726 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 27.0 -0.02092095328642569 0.7891610861007349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 -45.0 -0.4854829056749392 -0.8864461025817673 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 -27.0 0.1243805738112196 -0.759044865561665 0.18439999999999998 0.19583999999999996 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 -9.0 0.010265745293149808 -0.10942201041264783 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 9.0 0.027608028344356245 0.03910145967791576 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 27.0 0.0551753572989448 0.8147605151254018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 -45.0 -0.39999881597180476 -0.8864461025817673 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 -27.0 0.1243805738112196 -0.759044865561665 0.18439999999999998 0.19583999999999996 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 -9.0 0.033408552460282716 -0.10425724822116228 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 9.0 0.027608028344356245 0.04067079463696839 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 27.0 0.13526632271944788 0.8277811447916009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.37451999999999996 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 -45.0 -0.39999881597180476 -0.8864461025817673 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 -27.0 0.24172356577449253 -0.7526998198216518 0.09219999999999999 0.09791999999999998 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 -9.0 0.06607942991432125 -0.0612982771481553 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 9.0 0.041310622896660876 0.20257459689582075 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 27.0 0.14013002540233568 0.8277811447916009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.37451999999999996 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 -27.0 -0.887303785780239 -0.887303785780239 0.18439999999999998 0.19583999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 -9.0 -0.22257003432271957 -0.5059654790650988 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 9.0 -0.20813433928204803 -0.28958531838863083 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 27.0 -0.06105352975965205 0.8065777952417565 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 -45.0 -0.4891475452794201 -0.8810777780236165 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 -27.0 -0.037636695619324236 -0.777313856086623 0.18439999999999998 0.19583999999999996 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 -9.0 -0.09074147533178266 -0.2215446459716708 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.14552 0.0969 0.10046 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 9.0 -0.03848337906921747 -0.1509335587944587 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.0969 0.10046 0.14726 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 27.0 -0.01843788704825584 0.8065777952417565 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 -45.0 -0.4854829056749392 -0.8864461025817673 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 -27.0 0.1243805738112196 -0.759044865561665 0.18439999999999998 0.19583999999999996 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 -9.0 0.013987626819311122 -0.10942201041264783 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 9.0 0.031546929617495695 0.0024042858828936114 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 27.0 0.050093482972437556 0.8147605151254018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 -45.0 -0.5645524416508146 -0.8915890215367238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 -27.0 0.1262968355540332 -0.759044865561665 0.18439999999999998 0.19583999999999996 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 -9.0 0.010265745293149808 -0.10942201041264783 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 9.0 0.027608028344356245 0.03910145967791576 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 27.0 0.07128015370579512 0.8147605151254018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.22674 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 -45.0 -0.5645524416508146 -0.8915890215367238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 -27.0 0.2361714897544044 -0.755742252739385 0.09219999999999999 0.09791999999999998 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 -9.0 0.039035474103281675 -0.06554930347872553 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 9.0 0.041310622896660876 0.2098470474030891 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 27.0 0.07479607363182685 0.8147605151254018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.24968 0.22674 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 -27.0 -0.887303785780239 -0.887303785780239 0.09219999999999999 0.19583999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 -9.0 -0.25690528605618523 -0.5055932604775646 0.09219999999999999 0.19583999999999996 0.13327999999999998 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 9.0 -0.2344788158870968 -0.26317942122186505 0.0 0.0 0.13327999999999998 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 27.0 -0.06105352975965205 0.8065777952417565 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464000000000003 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 -45.0 -0.4891475452794202 -0.8810777780236165 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 -27.0 -0.03763669561932425 -0.777313856086623 0.09219999999999999 0.19583999999999996 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 -9.0 -0.09917077483421546 -0.19294512316243811 0.09219999999999999 0.19583999999999996 0.13327999999999998 0.21739999999999995 0.14551999999999998 0.09689999999999997 0.10046 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04167999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 9.0 -0.040441886431651454 -0.11673843168616134 0.0 0.0 0.13327999999999998 0.21739999999999995 0.0 0.09689999999999997 0.10046 0.14726 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 27.0 -0.018437887048255865 0.8065777952417565 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18881999999999996 0.0 0.25464000000000003 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000001 0.13861999999999997 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 -45.0 -0.6240552159692058 -0.8864461025817673 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 -27.0 -0.02179461003932863 -0.777313856086623 0.09219999999999999 0.19583999999999996 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 -9.0 -0.09917077483421546 -0.1014094276423711 0.09219999999999999 0.19583999999999996 0.13327999999999998 0.21739999999999995 0.14551999999999998 0.09689999999999997 0.20091999999999993 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 9.0 -0.09026685230426858 0.024409017110545696 0.0 0.0 0.13327999999999998 0.21739999999999995 0.0 0.09689999999999997 0.20091999999999993 0.2945199999999999 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 27.0 -0.06361273721981112 0.8147605151254018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18881999999999996 0.0 0.25464 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.15116000000000002 0.13861999999999997 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 -45.0 -0.6885344119370239 -0.8915890215367238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 -27.0 -0.0043876257108654585 -0.777313856086623 0.09219999999999999 0.19583999999999996 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 -9.0 -0.1358123383836465 -0.07121529522271468 0.09219999999999999 0.19583999999999996 0.13327999999999998 0.21739999999999995 0.14551999999999998 0.09689999999999997 0.20091999999999993 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 9.0 -0.11317432867110208 0.09058178426216444 0.0 0.0 0.13327999999999998 0.21739999999999995 0.0 0.09689999999999997 0.20091999999999993 0.2945199999999999 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 27.0 -0.041123525760234245 0.8147605151254018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18881999999999996 0.0 0.16976000000000002 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.22674 0.13861999999999997 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 -45.0 -0.6885344119370232 -0.8915890215367225 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.27156 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 -27.0 0.12966297230927284 -0.7624338610195981 0.09219999999999999 0.09791999999999998 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 -9.0 -0.10931897194165466 -0.005784886992101075 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.14551999999999998 0.09689999999999997 0.20091999999999993 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 9.0 -0.10836140597660163 0.19970986326832718 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.09689999999999997 0.20091999999999993 0.2945199999999999 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 27.0 -0.0399411966859987 0.8147605151254018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18881999999999996 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.12483999999999996 0.22674000000000005 0.13861999999999997 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 -9.0 0.7500000000000027 -0.8825595107012115 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 9.0 0.7500000000000027 -0.8825595107012115 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 27.0 0.49997844068326297 0.756281337481618 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 -45.0 -0.6410028578386697 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 -27.0 0.1642157563404672 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 -9.0 0.7499999999999992 -0.6024448885847846 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 9.0 0.7500000000000017 -0.14114963490568197 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0 0.07224000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 27.0 0.3911200993085819 0.3580261223227188 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.12484 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 -45.0 -0.5055807884875363 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 -27.0 0.16421575634046753 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 -9.0 0.7499999999999996 -0.4608841771214047 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 9.0 0.7500000000000011 0.04417023507991463 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0 0.07224000000000007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 27.0 0.4565773638276091 0.4382276473044027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.24968 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 -45.0 -0.42015121317865467 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 -27.0 0.16421575634046753 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 -9.0 0.7499999999999996 -0.3763713609932446 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 9.0 0.7500000000000011 0.03945944046196478 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0 0.07224000000000007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 27.0 0.5082022871342987 0.5058589405440042 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.37451999999999996 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 -45.0 -0.3614451113516382 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14159999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 -27.0 0.16421575634046753 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 -9.0 0.7499999999999996 -0.3763713609932446 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 9.0 0.7500000000000011 0.03945944046196487 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0 0.07224000000000007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 27.0 0.5386390905971615 0.5499505517957709 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10943999999999998 0.0 0.0 0.0 0.0 0.0 0.49935999999999986 0.0 0.13862000000000002 0.0 0.0 0.0 0.10941999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 -9.0 0.5614159699979392 -0.78684450662878 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 9.0 0.41936286389547317 -0.2831035923770021 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 27.0 0.17114825780939932 0.36519604856502474 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 -45.0 -0.6410028578386697 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 -27.0 0.17916107417553592 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 -9.0 0.6117983811487543 -0.6090049847717867 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 9.0 0.43029713860132096 -0.1474204309474489 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.1151600000000001 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 27.0 0.05170949391577876 0.3606107306724051 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 -45.0 -0.5055807884875363 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 -27.0 0.1791610741755362 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 -9.0 0.6117983811487547 -0.4902081802619632 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 9.0 0.5263930424956771 0.038315630500292984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.07558000000000001 0.0 0.0 0.1151600000000001 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0442 0.07224000000000007 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 27.0 0.1436210913150429 0.4382276473044027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 -45.0 -0.42015121317865467 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 -27.0 0.1791610741755362 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 -9.0 0.6117983811487547 -0.41318685317039733 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.12503999999999998 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 9.0 0.5263930424956771 0.034256167789295605 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.07558000000000001 0.0 0.0 0.1151600000000001 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0442 0.07224000000000007 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 27.0 0.22457590480808487 0.5058589405440042 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.37451999999999996 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 -45.0 -0.3614451113516382 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14159999999999995 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 -27.0 0.1791610741755362 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 -9.0 0.6117983811487547 -0.41318685317039733 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.12503999999999998 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 9.0 0.5263930424956771 0.03425616778929568 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.07558000000000001 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0442 0.07224000000000007 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 27.0 0.2763341163169609 0.5499505517957709 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.49935999999999986 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 -9.0 0.48056090568356213 -0.7565630357811287 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 9.0 0.31860963827426847 -0.17090631142800877 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 27.0 0.14057512014100593 0.43714123998209864 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 -45.0 -0.6410028578386697 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 -27.0 0.17916107417553592 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 -9.0 0.5378273280692827 -0.6162328045536581 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 9.0 0.32940424607913465 -0.15487341471160976 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 27.0 0.04904068871572728 0.3738686576515767 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 -45.0 -0.5055807884875363 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 -27.0 0.1880082799314857 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 -9.0 0.5378273280692832 -0.5134785263422424 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 9.0 0.4245211800763095 -0.044446615397020675 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 27.0 0.1438086566465582 0.4382276473044027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 -45.0 -0.42015121317865467 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 -27.0 0.1880082799314857 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 -9.0 0.5378273280692832 -0.4429043755337655 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.12503999999999998 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 9.0 0.4245211800763095 -0.04021810168924702 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.15116000000000002 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 27.0 0.21934055528362456 0.5058589405440042 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.37451999999999996 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 -45.0 -0.42015121317865467 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 -27.0 0.1880082799314857 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 -9.0 0.5700634733911242 -0.41318685317039733 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.12503999999999998 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 9.0 0.48407525104513366 0.03425616778929568 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 27.0 0.22736786740275228 0.5058589405440042 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.37451999999999996 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 -9.0 0.4359511360072216 -0.7545797229040075 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 9.0 0.3143317888963591 -0.2839231293587387 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 27.0 0.12036626179207295 0.5087192402139106 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 -45.0 -0.6410028578386697 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 -27.0 0.17916107417553592 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 -9.0 0.4920930079666601 -0.628406396570661 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 9.0 0.3239662703489374 -0.25338187505218446 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 27.0 0.043359474160247206 0.44155996389916324 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 -45.0 -0.5055807884875363 -0.8875387092120627 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 -27.0 0.1880082799314857 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 -9.0 0.49209300796666045 -0.5383294214327855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 9.0 0.4127902083440865 -0.1412313388333093 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 27.0 0.12946044518407815 0.44155996389916313 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 -45.0 -0.5645524416508146 -0.8915890215367238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 -27.0 0.1945515005930844 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 -9.0 0.5378273280692832 -0.5134785263422424 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 9.0 0.4245211800763095 -0.044446615397020675 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 27.0 0.15387616765360784 0.4382276473044027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.22674 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 -45.0 -0.5645524416508146 -0.8915890215367238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 -27.0 0.1945515005930844 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 -9.0 0.5700634733911242 -0.4902081802619632 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 9.0 0.48407525104513366 0.038315630500293074 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 27.0 0.15969812128592886 0.4382276473044027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.24968 0.22674 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 -9.0 0.43595113600722135 -0.7545797229040073 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 9.0 0.3143317888963591 -0.2839231293587386 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 27.0 0.1066830570464175 0.5574453616131644 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.33951999999999993 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05026000000000005 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 -45.0 -0.6410028578386696 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 -27.0 0.1791610741755358 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 -9.0 0.4920930079666601 -0.6284063965706609 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 9.0 0.32396627034893727 -0.2533818750521843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000001 0.0 0.0 0.11515999999999997 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0442 0.07223999999999998 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 27.0 0.039297741976733566 0.4898492065911525 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.33951999999999993 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000001 0.13861999999999997 0.1516 0.0 0.05026000000000005 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.042440000000000005 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 -45.0 -0.6410028578386696 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 -27.0 0.1880082799314853 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 -9.0 0.4920930079666601 -0.6284063965706609 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 9.0 0.32396627034893727 -0.2533818750521843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.04420000000000004 0.07223999999999998 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 27.0 0.053184843203403435 0.44155996389916313 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.15116000000000002 0.13861999999999997 0.1516 0.0 0.05026000000000005 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.04244000000000004 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 -45.0 -0.6885344119370239 -0.8915890215367238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 -27.0 0.19455150059308401 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 -9.0 0.5378273280692826 -0.6162328045536579 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 9.0 0.32961326698491844 -0.15487341471160976 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.04420000000000004 0.07223999999999998 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 27.0 0.07911264541045868 0.42192344441532675 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.22674 0.13861999999999997 0.1516 0.0 0.05026000000000005 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.04244000000000004 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 -45.0 -0.7268605462168305 -0.8964725288886981 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.3620799999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 -27.0 0.19956327209136857 -0.8877647058823539 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.20383999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 -9.0 0.5700634733911235 -0.6090049847717866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 9.0 0.3938984297964348 -0.09786402528505027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.04420000000000004 0.07223999999999998 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 27.0 0.09843708006892846 0.4705352368623429 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.12483999999999996 0.3023199999999999 0.13861999999999997 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.04244000000000004 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 -9.0 0.7499999999999983 -0.895598613379927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 9.0 0.7499999999999983 -0.895598613379927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 27.0 0.49997844068326297 0.756281337481618 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 -45.0 -0.6410028578386697 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 -27.0 0.1642157563404672 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 -9.0 0.7499999999999983 -0.6974057903359064 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 9.0 0.7499999999999983 -0.3586702420835191 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0 0.07224000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 27.0 0.3911200993085819 0.3580261223227188 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.12484 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 -45.0 -0.7387032005164313 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 -27.0 0.34802552916852714 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 -9.0 0.7499999999999992 -0.7101372254125261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 9.0 0.7499999999999983 -0.3828355112964221 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0 0.14448000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 27.0 0.3911200993085819 0.16322809149680853 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.1248400000000001 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 -45.0 -0.7793720402925083 -0.9076717893120315 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.59994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 -27.0 0.423280213251022 -0.9064344615067589 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.57036 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 -9.0 0.7499999999999992 -0.7101372254125261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 9.0 0.7499999999999978 -0.34404674537470104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.0 0.27174 0.0 0.14448000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 27.0 0.4369065266549051 0.04874072517004847 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.1248400000000001 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.21672 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 -45.0 -0.7994227183014714 -0.9144614913891065 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7999199999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 -27.0 0.4581257489888866 -0.9133729728271126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.7604799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 -9.0 0.7499999999999992 -0.7101372254125261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 9.0 0.7499999999999978 -0.34404674537470104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.27174 0.0 0.14448000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 27.0 0.4761212929493781 -0.0258860870460888 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10943999999999998 0.0 0.0 0.0 0.0 0.0 0.1248400000000001 0.0 0.13862000000000002 0.0 0.0 0.0 0.10941999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.28895999999999994 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 -9.0 0.65652259208617 -0.845401817380871 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 9.0 0.5655003961234961 -0.5104134926328687 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 27.0 0.17114825780939932 0.36519604856502474 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 -45.0 -0.6410028578386697 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 -27.0 0.17916107417553592 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 -9.0 0.65652259208617 -0.6874572986388479 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 9.0 0.5635593245457728 -0.3615592972613362 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.34547999999999995 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 27.0 0.05170949391577876 0.3606107306724051 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 -45.0 -0.7387032005164313 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 -27.0 0.3457465231997112 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 -9.0 0.6620622789690506 -0.6987847993805062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.041680000000000036 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 9.0 0.5635593245457728 -0.3850855220111611 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000001 0.0 0.0 0.34547999999999995 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 27.0 0.05170949391577876 0.1658526846571368 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 -45.0 -0.7793720402925083 -0.9076717893120315 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.59994 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 -27.0 0.4170660907794814 -0.9064344615067589 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.57036 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 -9.0 0.6620622789690506 -0.6987847993805062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 9.0 0.5367008652931485 -0.34671492940196924 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000001 0.0 0.0 0.23032 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.27174 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 27.0 0.11482262846733693 0.05121749263213754 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.21672 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 -45.0 -0.7994227183014714 -0.9144614913891065 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7999199999999999 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 -27.0 0.45073486873923746 -0.9133729728271126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.7604799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 -9.0 0.6620622789690506 -0.6987847993805062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.041680000000000036 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 9.0 0.5367008652931485 -0.34671492940196924 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000001 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.27174 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 27.0 0.17331827463210558 -0.0235740892616298 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.28895999999999994 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 -9.0 0.65652259208617 -0.845401817380871 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 9.0 0.5507685492952337 -0.5055103060828209 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 27.0 0.1711482578093984 0.1679922635570243 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 -45.0 -0.6410028578386697 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 -27.0 0.17916107417553592 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 -9.0 0.65652259208617 -0.6874572986388479 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 9.0 0.5507685492952337 -0.3720629616557477 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.34547999999999995 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 27.0 0.05170949391577876 0.2702618655277085 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 -45.0 -0.7387032005164313 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 -27.0 0.3457465231997112 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 -9.0 0.6423492477677656 -0.6987847993805062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 9.0 0.5507685492952337 -0.3850855220111611 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.34547999999999995 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 27.0 0.05170949391577876 0.1658526846571368 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.08488000000000001 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 -45.0 -0.7793720402925083 -0.9076717893120315 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.59994 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 -27.0 0.4170660907794814 -0.9064344615067589 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.57036 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 -9.0 0.6423492477677656 -0.6987847993805062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 9.0 0.5235182296691718 -0.34671492940196924 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.27174 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 27.0 0.11482262846733693 0.05121749263213754 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.21672 0.08488000000000001 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 -45.0 -0.7793720402925083 -0.9076717893120315 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.59994 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 -27.0 0.4170660907794814 -0.9064344615067589 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.57036 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 -9.0 0.6423492477677656 -0.6987847993805062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 9.0 0.5318117363625305 -0.34671492940196924 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.27174 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 27.0 0.11482262846733693 0.05121749263213754 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.21672 0.08488000000000001 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 -9.0 0.628079311243529 -0.8254795899811221 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 9.0 0.5029529600776167 -0.43596970160449094 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 27.0 0.17836775267268434 0.04953256666392433 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15078 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 -45.0 -0.6410028578386697 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 -27.0 0.17916107417553592 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 -9.0 0.628079311243529 -0.6353669342931902 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 9.0 0.5029529600776167 -0.29775446915797904 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 27.0 0.06345256121556532 0.15352811728859314 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.15078 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 -45.0 -0.7387032005164313 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 -27.0 0.3457465231997112 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 -9.0 0.6423492477677656 -0.6987847993805062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 9.0 0.5029529600776167 -0.32085368596255937 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 27.0 0.06345256121556532 0.15352811728859314 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.15078 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.08488000000000001 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 -45.0 -0.7755257449996186 -0.906580122304894 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.57378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 -27.0 0.3457465231997112 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 -9.0 0.606626278310915 -0.6987847993805062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.1326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 9.0 0.4835792509098653 -0.32085368596255937 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.1326 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 27.0 0.05630915895039329 0.1658526846571368 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.12732 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 -45.0 -0.7755257449996186 -0.906580122304894 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.57378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 -27.0 0.3457465231997112 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 -9.0 0.606626278310915 -0.6987847993805062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.1326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 9.0 0.4521482609431267 -0.2850641515809921 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.1326 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 27.0 0.05630915895039329 0.1658526846571368 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.12732 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 -9.0 0.5614159699979392 -0.7868445066287799 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 9.0 0.40744149535039914 -0.3214959086648969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 27.0 0.18559974080483038 -0.029159490822433704 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20103999999999997 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 -45.0 -0.6410028578386696 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 -27.0 0.1791610741755358 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 -9.0 0.6117983811487543 -0.6090049847717866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 9.0 0.4188875304856251 -0.18365361968454424 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000001 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0442 0.07223999999999998 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 27.0 0.0775216178082777 0.07185126124704001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000001 0.13861999999999997 0.1516 0.0 0.20103999999999997 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.042440000000000005 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 -45.0 -0.7334853259465962 -0.8975337689420841 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 -27.0 0.1791610741755358 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 -9.0 0.5853207607421803 -0.6090049847717866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 9.0 0.4188875304856251 -0.18365361968454424 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000006 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0884 0.07223999999999998 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 27.0 0.06345256121556525 0.15352811728859309 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000006 0.13861999999999997 0.1516 0.0 0.15078 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.08488000000000001 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 -45.0 -0.7755257449996186 -0.906580122304894 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.57378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 -27.0 0.1791610741755358 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 -9.0 0.5407655106992176 -0.6090049847717866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.1326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 9.0 0.4019911844311003 -0.20461081077074186 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000006 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.1326 0.07223999999999998 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 27.0 0.056309158950393234 0.20244953523430737 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000006 0.13861999999999997 0.1516 0.0 0.10052000000000001 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.12732 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 -45.0 -0.7969562993778874 -0.9135056199437325 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.7650399999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 -27.0 0.1791610741755358 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 -9.0 0.5407655106992176 -0.6090049847717866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.1326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 9.0 0.40199118443110043 -0.187490898349711 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000006 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.1326 0.07223999999999998 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 27.0 0.06912924946650112 0.11948397458862543 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000006 0.13861999999999997 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.16975999999999997 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 -9.0 0.7499999999999983 -0.895598613379927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 9.0 0.7499999999999983 -0.895598613379927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 27.0 0.749999999999998 -0.3598276440641602 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2212000000000002 0.08446000000000001 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.4 -45.0 -0.8875387092120626 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.4 -27.0 0.18597007636529103 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.0 0.4 -9.0 0.7499999999999983 -0.895598613379927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.0 0.4 9.0 0.7499999999999983 -0.7664102639912337 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0 0.07224000000000001 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.14650000000000002 0.0 0.0
2.4000000000000004 0.0 0.4 27.0 0.749999999999998 -0.06851593958185608 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.0 0.15756 0.0 0.2212000000000002 0.08446000000000001 0.0 0.0 0.14650000000000002 0.0 0.10292
2.4000000000000004 0.0 0.8 -45.0 -0.8984258511091379 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.8 -27.0 0.37840042866676843 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.0 0.8 -9.0 0.7499999999999992 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.0 0.8 9.0 0.7499999999999983 -0.7046021738253421 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0 0.14448000000000003 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.0 0.0
2.4000000000000004 0.0 0.8 27.0 0.7500000000000017 -0.17326966380306769 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.0 0.15756 0.0 0.2212000000000002 0.08446000000000001 0.0 0.0 0.29300000000000004 0.0 0.10292
2.4000000000000004 0.0 1.2 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 1.2 -27.0 0.45282425264510556 -0.9064344615067588 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.0 1.2 -9.0 0.7499999999999992 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.0 1.2 9.0 0.7500000000000017 -0.6900173210481826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0 0.14448000000000003 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.0 0.0
2.4000000000000004 0.0 1.2 27.0 0.7500000000000014 -0.21423804974867175 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.0 0.15756 0.0 0.22120000000000004 0.08446000000000001 0.0 0.0 0.29300000000000026 0.0 0.10292
2.4000000000000004 0.0 1.6 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 1.6 -27.0 0.45282425264510556 -0.9064344615067588 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.0 1.6 -9.0 0.7499999999999992 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.0 1.6 9.0 0.7500000000000017 -0.6900173210481826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0 0.14448000000000003 0.0 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.29300000000000004 0.0 0.0
2.4000000000000004 0.0 1.6 27.0 0.7500000000000014 -0.21423804974867175 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10941999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.0 0.15756 0.0 0.11059999999999999 0.08445999999999998 0.0 0.0 0.29300000000000026 0.0 0.10292
2.4000000000000004 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.0 -9.0 0.7499999999999983 -0.895598613379927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.0 9.0 0.6768334558787511 -0.7949621298004435 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.0 27.0 0.5753134934126356 -0.15390001130441125 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.4 -45.0 -0.8875387092120626 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.4 -27.0 0.18597007636529103 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.2 0.4 -9.0 0.6843258316045213 -0.895598613379927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.2 0.4 9.0 0.6144690285259101 -0.7664102639912337 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.14650000000000002 0.11262000000000001 0.0
2.4000000000000004 0.2 0.4 27.0 0.5746292921204216 -0.06851593958185608 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.14650000000000002 0.11262000000000001 0.10292
2.4000000000000004 0.2 0.8 -45.0 -0.8984258511091379 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.8 -27.0 0.37840042866676843 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.2 0.8 -9.0 0.6884672339359138 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.2 0.8 9.0 0.6144690285259101 -0.7046021738253421 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.11262000000000001 0.0
2.4000000000000004 0.2 0.8 27.0 0.6008799697191529 -0.17326966380306769 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.042440000000000005 0.15756 0.07718000000000001 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000004 0.11262000000000001 0.10292
2.4000000000000004 0.2 1.2 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 1.2 -27.0 0.45282425264510556 -0.9064344615067588 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.2 1.2 -9.0 0.6884672339359138 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.2 1.2 9.0 0.6008799697191529 -0.6900173210481826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.11262000000000001 0.0
2.4000000000000004 0.2 1.2 27.0 0.6008799697191529 -0.21423804974867175 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.042440000000000005 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000026 0.11262000000000001 0.10292
2.4000000000000004 0.2 1.6 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 1.6 -27.0 0.45282425264510556 -0.9064344615067588 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.2 1.6 -9.0 0.6884672339359138 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.2 1.6 9.0 0.6008799697191529 -0.6900173210481826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.29300000000000004 0.11262000000000001 0.0
2.4000000000000004 0.2 1.6 27.0 0.6008799697191529 -0.21423804974867175 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.042440000000000005 0.15756 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07707999999999998 0.0 0.29300000000000026 0.11262000000000001 0.10292
2.4000000000000004 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.0 -9.0 0.7499999999999983 -0.895598613379927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.0 9.0 0.6248088428339781 -0.7376235784530518 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.0 27.0 0.5753134934126356 -0.1836567591055971 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.4 -45.0 -0.8875387092120626 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.4 -27.0 0.18597007636529103 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.4 0.4 -9.0 0.6843258316045213 -0.895598613379927 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.4 0.4 9.0 0.6144690285259101 -0.7376235784530518 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.14650000000000002 0.11262000000000001 0.0
2.4000000000000004 0.4 0.4 27.0 0.5746292921204216 -0.08183197572023294 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.14650000000000002 0.11262000000000001 0.10292
2.4000000000000004 0.4 0.8 -45.0 -0.8984258511091379 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.8 -27.0 0.37840042866676843 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.4 0.8 -9.0 0.6423492477677656 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.4 0.8 9.0 0.5442318576642292 -0.7046021738253421 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.4 0.8 27.0 0.527892065311855 -0.17326966380306769 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.08488000000000001 0.15756 0.07718000000000001 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000004 0.22524000000000002 0.10292
2.4000000000000004 0.4 1.2 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 1.2 -27.0 0.45282425264510556 -0.9064344615067588 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.4 1.2 -9.0 0.6423492477677656 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.4 1.2 9.0 0.527892065311855 -0.6900173210481826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.4 1.2 27.0 0.5278920653118551 -0.21423804974867175 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.08488000000000001 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000026 0.22524000000000002 0.10292
2.4000000000000004 0.4 1.6 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 1.6 -27.0 0.45282425264510556 -0.9064344615067588 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.4 1.6 -9.0 0.6423492477677656 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.4 1.6 9.0 0.527892065311855 -0.6900173210481826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.4 1.6 27.0 0.5278920653118551 -0.21423804974867175 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.08488000000000001 0.15756 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07707999999999998 0.0 0.29300000000000026 0.22524000000000002 0.10292
2.4000000000000004 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.0 -9.0 0.7500000000000032 -0.889276196371573 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.0 9.0 0.5905018074456816 -0.7014234663133634 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.0 27.0 0.5426310663737375 -0.2233557373506506 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.4 -45.0 -0.8875387092120626 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.4 -27.0 0.18597007636529103 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.6 0.4 -9.0 0.6625220480259955 -0.889276196371573 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.6 0.4 9.0 0.5786240733941725 -0.7014234663133634 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.14650000000000002 0.11262000000000001 0.0
2.4000000000000004 0.6 0.4 27.0 0.5426310663737375 -0.1274500537307169 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.14650000000000002 0.11262000000000001 0.10292
2.4000000000000004 0.6 0.8 -45.0 -0.8984258511091379 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.8 -27.0 0.37840042866676843 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 0.8 -9.0 0.6423492477677656 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 0.8 9.0 0.527892065311855 -0.6900173210481826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.6 0.8 27.0 0.527892065311855 -0.1774627783618012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.08488000000000001 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000004 0.22524000000000002 0.10292
2.4000000000000004 0.6 1.2 -45.0 -0.9065801223048938 -0.9065801223048938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.5737799999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 1.2 -27.0 0.37840042866676843 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 1.2 -9.0 0.6066262783109148 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.1325999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 1.2 9.0 0.527892065311855 -0.6900173210481826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.1325999999999999 0.14448000000000003 0.08488000000000001 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.6 1.2 27.0 0.5278920653118551 -0.17326966380306769 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.12731999999999993 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000004 0.22524000000000022 0.10292
2.4000000000000004 0.6 1.6 -45.0 -0.9065801223048938 -0.9065801223048938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.5737799999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 1.6 -27.0 0.37840042866676843 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 1.6 -9.0 0.6066262783109148 -0.8974166904498947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.1325999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 1.6 9.0 0.527892065311855 -0.6900173210481826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.1325999999999999 0.14448000000000003 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.6 1.6 27.0 0.5278920653118551 -0.17326966380306769 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.12731999999999993 0.15756 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07707999999999998 0.0 0.29300000000000004 0.22524000000000022 0.10292
2.4000000000000004 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.0 -9.0 0.7500000000000027 -0.8825595107012113 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.0 9.0 0.5160081230919774 -0.6390191465160894 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.0 27.0 0.46419525112699656 -0.12074897545137622 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11059999999999999 0.08445999999999998 0.07708000000000001 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.4 -45.0 -0.8875387092120623 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.4 -27.0 0.1859700763652909 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 0.4 -9.0 0.6496193566897628 -0.8869719854964562 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 0.4 9.0 0.5304558687624641 -0.6601596489727047 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0442 0.07223999999999998 0.042440000000000005 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.14649999999999996 0.11262000000000001 0.0
2.4000000000000004 0.8 0.4 27.0 0.5050361062340039 -0.0619947374874516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.042440000000000005 0.15755999999999995 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07708000000000001 0.0 0.14649999999999996 0.11262000000000001 0.10291999999999997
2.4000000000000004 0.8 0.8 -45.0 -0.8975337689420841 -0.8975337689420841 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.8 -27.0 0.1859700763652909 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 0.8 -9.0 0.5853207607421803 -0.8869719854964562 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 0.8 9.0 0.4522487296178078 -0.6993846794854975 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0884 0.07223999999999998 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.14649999999999996 0.22524000000000002 0.0
2.4000000000000004 0.8 0.8 27.0 0.46034270550829315 -0.1305666426199114 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.08488000000000001 0.15755999999999995 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07708000000000001 0.0 0.14649999999999996 0.22524000000000002 0.10291999999999997
2.4000000000000004 0.8 1.2 -45.0 -0.9065801223048938 -0.9065801223048938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.5737799999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 1.2 -27.0 0.1859700763652909 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 1.2 -9.0 0.5407655106992174 -0.8869719854964562 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.1325999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 1.2 9.0 0.4522487296178078 -0.6993846794854975 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.1325999999999999 0.07223999999999998 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.14649999999999996 0.22524000000000002 0.0
2.4000000000000004 0.8 1.2 27.0 0.4603427055082932 -0.11055364331008116 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.12731999999999993 0.15755999999999995 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07708000000000001 0.0 0.14649999999999996 0.22524000000000022 0.10291999999999997
2.4000000000000004 0.8 1.6 -45.0 -0.9065801223048938 -0.9065801223048938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.5737799999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 1.6 -27.0 0.1859700763652909 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 1.6 -9.0 0.5407655106992174 -0.8869719854964562 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.1325999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 1.6 9.0 0.4522487296178078 -0.7149595303630241 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.1325999999999999 0.07223999999999998 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.14649999999999996 0.22524000000000002 0.0
2.4000000000000004 0.8 1.6 27.0 0.4603427055082932 -0.11055364331008116 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.12731999999999993 0.15755999999999995 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07707999999999998 0.0 0.14649999999999996 0.22524000000000022 0.10291999999999997

View File

@ -1,121 +0,0 @@
FUNCTION_BLOCK robot
VAR_INPUT
dq : REAL;
o : REAL;
rd : REAL;
v : REAL;
END_VAR
VAR_OUTPUT
av : REAL;
la : REAL;
END_VAR
FUZZIFY dq
TERM H := TRIAN 0.0 2.0 2.0;
TERM L := TRIAN 0.0 0.0 2.0;
RANGE := (0.0 .. 2.0) WITH 0.1; // Added range for dq
END_FUZZIFY
FUZZIFY o
TERM HL := TRIAN -45.0 -45.0 -22.5;
TERM HR := TRIAN 22.5 45.0 45.0;
TERM LL := TRIAN -45.0 -22.5 0.0;
TERM LR := TRIAN 0.0 22.5 45.0;
TERM Z := TRIAN -22.5 0.0 22.5;
RANGE := (-45.0 .. 45.0) WITH 0.1; // Added range for o
END_FUZZIFY
FUZZIFY rd
TERM H := TRIAN 1.0 2.0 3.0;
TERM L := TRIAN 0.0 0.0 1.0;
TERM M := TRIAN 0.0 1.0 2.0;
TERM VH := TRIAN 2.0 3.0 3.0;
RANGE := (0.0 .. 3.0) WITH 0.1; // Added range for rd
END_FUZZIFY
FUZZIFY v
TERM H := TRIAN 0.0 1.0 1.0;
TERM L := TRIAN 0.0 0.0 1.0;
RANGE := (0.0 .. 1.0) WITH 0.1; // Added range for v
END_FUZZIFY
DEFUZZIFY av
TERM HL := TRIAN 0.5 0.75 1.0;
TERM HR := TRIAN -1.0 -0.75 -0.5;
TERM ML := TRIAN 0.25 0.5 0.75;
TERM MR := TRIAN -0.75 -0.5 -0.25;
TERM SL := TRIAN 0.0 0.25 0.5;
TERM SR := TRIAN -0.5 -0.25 0.0;
TERM VHL := TRIAN 0.75 1.0 1.0;
TERM VHR := TRIAN -1.0 -1.0 -0.75;
TERM Z := TRIAN -0.25 0.0 0.25;
METHOD : COG;
DEFAULT := 0.0;
RANGE := (-1.0 .. 1.0) WITH 0.01;
END_DEFUZZIFY
DEFUZZIFY la
TERM HA := TRIAN 0.5 0.75 1.0;
TERM HB := TRIAN -1.0 -0.75 -0.5;
TERM MA := TRIAN 0.25 0.5 0.75;
TERM MB := TRIAN -0.75 -0.5 -0.25;
TERM SA := TRIAN 0.0 0.25 0.5;
TERM SB := TRIAN -0.5 -0.25 0.0;
TERM VHA := TRIAN 0.75 1.0 1.0;
TERM VHB := TRIAN -1.0 -1.0 -0.75;
TERM Z := TRIAN -0.25 0.0 0.25;
METHOD : COG;
DEFAULT := 0.0;
RANGE := (-1.0 .. 1.0) WITH 0.01;
END_DEFUZZIFY
RULEBLOCK rules
ACT : MIN;
ACCU : MAX;
AND : MIN;
RULE 1 : IF (((rd IS L) AND (dq IS L)) AND (o IS LL)) AND (v IS L) THEN la IS VHB , av IS VHR WITH 0.461;
RULE 2 : IF (((rd IS L) AND (dq IS L)) AND (o IS LL)) AND (v IS H) THEN la IS VHB , av IS VHR WITH 0.4896;
RULE 3 : IF (((rd IS L) AND (dq IS L)) AND (o IS Z)) AND (v IS L) THEN la IS Z , av IS MR WITH 0.6664;
RULE 4 : IF (((rd IS L) AND (dq IS L)) AND (o IS Z)) AND (v IS H) THEN la IS HB , av IS SR WITH 0.5435;
RULE 5 : IF (((rd IS L) AND (dq IS H)) AND (o IS LL)) AND (v IS L) THEN la IS MA , av IS HR WITH 0.7276;
RULE 6 : IF (((rd IS L) AND (dq IS H)) AND (o IS Z)) AND (v IS L) THEN la IS MA , av IS HL WITH 0.4845;
RULE 7 : IF (((rd IS L) AND (dq IS H)) AND (o IS Z)) AND (v IS H) THEN la IS HB , av IS ML WITH 0.5023;
RULE 8 : IF (((rd IS L) AND (dq IS H)) AND (o IS LR)) AND (v IS H) THEN la IS VHB , av IS VHL WITH 0.7363;
RULE 9 : IF (((rd IS L) AND (dq IS H)) AND (o IS HR)) AND (v IS L) THEN la IS VHB , av IS VHL WITH 0.9441;
RULE 10 : IF (((rd IS M) AND (dq IS L)) AND (o IS Z)) AND (v IS H) THEN la IS SA , av IS HR WITH 0.3402;
RULE 11 : IF (((rd IS M) AND (dq IS L)) AND (o IS LR)) AND (v IS H) THEN la IS Z , av IS VHL WITH 0.4244;
RULE 12 : IF (((rd IS M) AND (dq IS L)) AND (o IS HR)) AND (v IS L) THEN la IS SA , av IS HL WITH 0.5472;
RULE 13 : IF (((rd IS M) AND (dq IS L)) AND (o IS HR)) AND (v IS H) THEN la IS MB , av IS VHL WITH 0.4369;
RULE 14 : IF (((rd IS M) AND (dq IS H)) AND (o IS HL)) AND (v IS L) THEN la IS Z , av IS VHR WITH 0.177;
RULE 15 : IF (((rd IS M) AND (dq IS H)) AND (o IS HL)) AND (v IS H) THEN la IS VHB , av IS VHR WITH 0.4526;
RULE 16 : IF (((rd IS M) AND (dq IS H)) AND (o IS LL)) AND (v IS H) THEN la IS SA , av IS VHR WITH 0.2548;
RULE 17 : IF (((rd IS M) AND (dq IS H)) AND (o IS Z)) AND (v IS L) THEN la IS HA , av IS Z WITH 0.2084;
RULE 18 : IF (((rd IS M) AND (dq IS H)) AND (o IS LR)) AND (v IS L) THEN la IS HA , av IS VHL WITH 0.6242;
RULE 19 : IF (((rd IS M) AND (dq IS H)) AND (o IS LR)) AND (v IS H) THEN la IS SA , av IS VHL WITH 0.3779;
RULE 20 : IF (((rd IS M) AND (dq IS H)) AND (o IS HR)) AND (v IS L) THEN la IS Z , av IS VHL WITH 0.6931;
RULE 21 : IF (((rd IS M) AND (dq IS H)) AND (o IS HR)) AND (v IS H) THEN la IS VHB , av IS VHL WITH 0.758;
RULE 22 : IF (((rd IS H) AND (dq IS L)) AND (o IS Z)) AND (v IS L) THEN la IS HA , av IS VHR WITH 0.5758;
RULE 23 : IF (((rd IS H) AND (dq IS L)) AND (o IS LR)) AND (v IS H) THEN la IS SA , av IS MR WITH 0.2513;
RULE 24 : IF (((rd IS H) AND (dq IS L)) AND (o IS HR)) AND (v IS L) THEN la IS HA , av IS VHL WITH 0.5471;
RULE 25 : IF (((rd IS H) AND (dq IS L)) AND (o IS HR)) AND (v IS H) THEN la IS SA , av IS HL WITH 0.5595;
RULE 26 : IF (((rd IS H) AND (dq IS H)) AND (o IS HL)) AND (v IS L) THEN la IS VHB , av IS VHR WITH 0.9999;
RULE 27 : IF (((rd IS H) AND (dq IS H)) AND (o IS HL)) AND (v IS H) THEN la IS VHB , av IS VHR WITH 0.9563;
RULE 28 : IF (((rd IS H) AND (dq IS H)) AND (o IS LL)) AND (v IS L) THEN la IS HA , av IS VHR WITH 0.9506;
RULE 29 : IF (((rd IS H) AND (dq IS H)) AND (o IS Z)) AND (v IS L) THEN la IS HA , av IS VHR WITH 0.4529;
RULE 30 : IF (((rd IS H) AND (dq IS H)) AND (o IS Z)) AND (v IS H) THEN la IS SA , av IS VHR WITH 0.221;
RULE 31 : IF (((rd IS H) AND (dq IS H)) AND (o IS LR)) AND (v IS L) THEN la IS HA , av IS MR WITH 0.3612;
RULE 32 : IF (((rd IS H) AND (dq IS H)) AND (o IS LR)) AND (v IS H) THEN la IS SA , av IS MR WITH 0.2122;
RULE 33 : IF (((rd IS H) AND (dq IS H)) AND (o IS HR)) AND (v IS L) THEN la IS HA , av IS HL WITH 0.7878;
RULE 34 : IF (((rd IS H) AND (dq IS H)) AND (o IS HR)) AND (v IS H) THEN la IS SA , av IS VHL WITH 0.3859;
RULE 35 : IF (((rd IS VH) AND (dq IS L)) AND (o IS LR)) AND (v IS L) THEN la IS HA , av IS VHR WITH 0.553;
RULE 36 : IF (((rd IS VH) AND (dq IS L)) AND (o IS HR)) AND (v IS L) THEN la IS HA , av IS HR WITH 0.4223;
RULE 37 : IF (((rd IS VH) AND (dq IS L)) AND (o IS HR)) AND (v IS H) THEN la IS SA , av IS HR WITH 0.3854;
RULE 38 : IF (((rd IS VH) AND (dq IS H)) AND (o IS LL)) AND (v IS L) THEN la IS HA , av IS VHR WITH 0.0936;
RULE 39 : IF (((rd IS VH) AND (dq IS H)) AND (o IS LR)) AND (v IS L) THEN la IS HA , av IS VHR WITH 0.7325;
RULE 40 : IF (((rd IS VH) AND (dq IS H)) AND (o IS LR)) AND (v IS H) THEN la IS SA , av IS VHR WITH 0.5631;
RULE 41 : IF (((rd IS VH) AND (dq IS H)) AND (o IS HR)) AND (v IS L) THEN la IS HA , av IS HR WITH 0.5146;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,626 +0,0 @@
rd v dq o av la rules.1 rules.2 rules.3 rules.4 rules.5 rules.6 rules.7 rules.8 rules.9 rules.10 rules.11 rules.12 rules.13 rules.14 rules.15 rules.16 rules.17 rules.18 rules.19 rules.20 rules.21 rules.22 rules.23 rules.24 rules.25 rules.26 rules.27 rules.28 rules.29 rules.30 rules.31 rules.32 rules.33 rules.34 rules.35 rules.36 rules.37 rules.38 rules.39 rules.40 rules.41
0.0 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 -27.0 -0.8968226725105329 -0.8968226725105329 0.3688 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 -9.0 -0.5804602711643171 -0.18451141786173775 0.1844 0.0 0.39984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 9.0 -0.5000000000000017 -1.1512282770330305E-17 0.0 0.0 0.39984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 -27.0 -0.8144006488819687 -0.23797748610920041 0.3688 0.0 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 -9.0 -0.3419373930570476 -0.01312616868213907 0.1844 0.0 0.39984 0.0 0.14552 0.0969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 9.0 -0.22033244119901596 0.11186702352039189 0.0 0.0 0.39984 0.0 0.0 0.0969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.4 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 -27.0 -0.7666945590978691 0.047674284272385445 0.2766 0.0 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 -9.0 -0.24559233065257405 0.07630875974609881 0.1844 0.0 0.39984 0.0 0.29104 0.1938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 9.0 -0.05796969909554479 0.17681212036178373 0.0 0.0 0.39984 0.0 0.0 0.1938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.8 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 -27.0 -0.7559611554831708 0.2259267108905184 0.1844 0.0 0.0 0.0 0.43656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 -9.0 -0.09908528335868977 0.08833864042974462 0.1844 0.0 0.26656 0.0 0.29104 0.29069999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 9.0 0.14769933821310044 0.25907973528524014 0.0 0.0 0.26656 0.0 0.0 0.29069999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.2 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 -27.0 -0.7513545315042293 0.3664984116309937 0.09219999999999999 0.0 0.0 0.0 0.58208 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 -9.0 -0.05048630856288615 0.20476035274456297 0.09219999999999999 0.0 0.13327999999999998 0.0 0.29104 0.29069999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 9.0 0.3329505858209505 0.3331802343283801 0.0 0.0 0.13327999999999998 0.0 0.0 0.29069999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.6 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 -27.0 -0.8968226725105329 -0.8968226725105329 0.3688 0.09792000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 -9.0 -0.5280628492861009 -0.23836020099120225 0.1844 0.09792000000000001 0.39984 0.1087 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 9.0 -0.44751737165432764 -0.1823764662596338 0.0 0.0 0.39984 0.1087 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 -27.0 -0.8144006488819687 -0.23797748610920041 0.3688 0.09792000000000001 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 -9.0 -0.26185584557143216 -0.07042904311791527 0.1844 0.09792000000000001 0.39984 0.1087 0.14552 0.0969 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 9.0 -0.10375330497341205 -0.09195651489255174 0.0 0.0 0.39984 0.1087 0.0 0.0969 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.4 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 -27.0 -0.7666945590978691 0.047674284272385445 0.2766 0.09792000000000001 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 -9.0 -0.1956926134055589 0.021350439054616234 0.1844 0.09792000000000001 0.39984 0.1087 0.29104 0.1938 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 9.0 -0.01933620495520787 -0.012603382396856124 0.0 0.0 0.39984 0.1087 0.0 0.1938 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 0.8 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 -27.0 -0.7559611554831708 0.2259267108905184 0.1844 0.09792000000000001 0.0 0.0 0.43656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 -9.0 -0.06910998008309042 0.024420331317641052 0.1844 0.09792000000000001 0.26656 0.1087 0.29104 0.29069999999999996 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 9.0 0.14904841430808746 0.04802511191821985 0.0 0.0 0.26656 0.1087 0.0 0.29069999999999996 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.2 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 -27.0 -0.7515158111477913 0.35940086313777564 0.09219999999999999 0.09791999999999998 0.0 0.0 0.58208 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 -9.0 -0.02522327610023263 0.09337521722155485 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29104 0.29069999999999996 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 9.0 0.29247902049266966 0.05835668243329308 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.29069999999999996 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.2 1.6 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 -27.0 -0.8918700594040894 -0.8918700594040894 0.2766 0.19584000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 -9.0 -0.49333751280052324 -0.29628603275278514 0.1844 0.19584000000000001 0.39984 0.2174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 9.0 -0.41178790572243984 -0.28291266161042516 0.0 0.0 0.39984 0.2174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 -27.0 -0.7978700598080697 -0.15438205558198095 0.2766 0.19584000000000001 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 -9.0 -0.25849545190711315 -0.13314597624215985 0.1844 0.19584000000000001 0.39984 0.2174 0.14552 0.0969 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 9.0 -0.10940149214505325 -0.17147997060510087 0.0 0.0 0.39984 0.2174 0.0 0.0969 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.4 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 -27.0 -0.7666945590978691 0.047674284272385445 0.2766 0.19584000000000001 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 -9.0 -0.15729894670743266 -0.03989273623995292 0.1844 0.19584000000000001 0.39984 0.2174 0.29104 0.1938 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 9.0 0.05235214069906453 -0.13158489345715846 0.0 0.0 0.39984 0.2174 0.0 0.1938 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 0.8 27.0 0.8918450170519161 -0.892854957533669 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 -27.0 -0.7566608541803894 0.21375195823425866 0.1844 0.19584000000000001 0.0 0.0 0.43656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 -9.0 -0.04799742902050382 -0.04508044898514305 0.1844 0.19584000000000001 0.26656 0.2174 0.29104 0.29069999999999996 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 9.0 0.16288488830755737 -0.08303733630877981 0.0 0.0 0.26656 0.2174 0.0 0.29069999999999996 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.2 27.0 0.8918450170519161 -0.892854957533669 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 -27.0 -0.75183058753021 0.3335266813959684 0.09219999999999999 0.09791999999999998 0.0 0.0 0.43656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 -9.0 0.005275849591085308 -0.02477611396932928 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29104 0.29069999999999996 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 9.0 0.32401819636008894 -0.08963980928173518 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.29069999999999996 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.4 1.6 27.0 0.8918450170519161 -0.892854957533669 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 -27.0 -0.8928138116154225 -0.8928138116154225 0.1844 0.29375999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 -9.0 -0.4562531590775282 -0.41740862514669386 0.1844 0.19584000000000001 0.26656 0.3261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 9.0 -0.3621069335673068 -0.406176991695519 0.0 0.0 0.26656 0.3261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 -27.0 -0.8013868710966677 -0.17227867567219524 0.1844 0.29375999999999997 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 -9.0 -0.22213061507186846 -0.22663846913426125 0.1844 0.19584000000000001 0.26656 0.3261 0.14552 0.0969 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 9.0 -0.062461165748524845 -0.2728905494875901 0.0 0.0 0.26656 0.3261 0.0 0.0969 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.4 27.0 0.8858940655543883 -0.8868976915953508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 -27.0 -0.7687312929902189 0.031885365141038235 0.1844 0.29375999999999997 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 -9.0 -0.12965924104418874 -0.11825136034772105 0.1844 0.19584000000000001 0.26656 0.3261 0.29104 0.1938 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 9.0 0.09419839503768405 -0.1981200567541831 0.0 0.0 0.26656 0.3261 0.0 0.1938 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 0.8 27.0 0.8918450170519161 -0.892854957533669 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 -27.0 -0.7590448655616651 0.13520800019727328 0.1844 0.19584000000000001 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 -9.0 -0.06664678310423362 -0.1038772974237815 0.1844 0.19584000000000001 0.26656 0.2174 0.29104 0.1938 0.30138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 9.0 0.16428136088282644 -0.18443702056631647 0.0 0.0 0.26656 0.2174 0.0 0.1938 0.30138 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.2 27.0 0.8994898607147835 -0.9005166564149035 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.44177999999999995 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 -27.0 -0.7525050443305067 0.28135967540330825 0.09219999999999999 0.09791999999999998 0.0 0.0 0.29104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 -9.0 -0.016966057123236872 -0.11114926687535542 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29104 0.1938 0.30138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 9.0 0.3177440019383676 -0.21848483356104068 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.1938 0.30138 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.6 1.6 27.0 0.8994898607147835 -0.9005166564149035 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.44177999999999995 0.18882000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 -27.0 -0.898003623188404 -0.898003623188404 0.09219999999999999 0.39168000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 -9.0 -0.43777320489239435 -0.5266904009303862 0.09219999999999999 0.19584000000000001 0.13327999999999998 0.3261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 9.0 -0.3203222606898989 -0.5151904294289307 0.0 0.0 0.13327999999999998 0.3261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.0 27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 -27.0 -0.817755739528264 -0.25465179718392256 0.09219999999999999 0.39168000000000003 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 -9.0 -0.18510842037897404 -0.2712095155655473 0.09219999999999999 0.19584000000000001 0.13327999999999998 0.3261 0.14551999999999998 0.09689999999999997 0.10046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 9.0 0.004832843608776533 -0.3316496612930696 0.0 0.0 0.13327999999999998 0.3261 0.0 0.09689999999999997 0.10046 0.14726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.4 27.0 0.8858940655543885 -0.8868976915953506 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18881999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 -27.0 -0.8013868710966676 -0.1722786756721953 0.09219999999999999 0.29375999999999997 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 -9.0 -0.09817902318459112 -0.2712095155655473 0.09219999999999999 0.19584000000000001 0.13327999999999998 0.3261 0.14551999999999998 0.09689999999999997 0.20092 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 9.0 0.14859816175638174 -0.35236204876340604 0.0 0.0 0.13327999999999998 0.3261 0.0 0.09689999999999997 0.20092 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 0.8 27.0 0.8918450170519161 -0.892854957533669 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.29452 0.18881999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 -27.0 -0.7773138560866227 -0.05033617353107441 0.09219999999999999 0.19584000000000001 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 -9.0 -0.012893947817537749 -0.2557448569097408 0.09219999999999999 0.19584000000000001 0.13327999999999998 0.2174 0.14551999999999998 0.09689999999999997 0.30138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 9.0 0.23835582446643383 -0.33872869247495774 0.0 0.0 0.13327999999999998 0.2174 0.0 0.09689999999999997 0.30138 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.2 27.0 0.8994898607147835 -0.9005166564149035 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.44177999999999995 0.18881999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 -27.0 -0.7545771141500212 0.14446700800867973 0.09219999999999999 0.09791999999999998 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 -9.0 0.05752062719720071 -0.24539140473188623 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.14551999999999998 0.09689999999999997 0.30138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 9.0 0.3069549893398098 -0.33872869247495774 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.09689999999999997 0.30138 0.29452 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.8 1.6 27.0 0.9061637916212987 -0.9072218948322746 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.58904 0.18881999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 -27.0 -0.88663808001218 -0.88663808001218 0.18439999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 -9.0 -0.6031554760700601 -0.23655604032230312 0.18439999999999998 0.0 0.26655999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 9.0 -0.5000000000000016 -8.252152399603125E-18 0.0 0.0 0.26655999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.0 27.0 0.7500000000000031 0.2500000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 -45.0 -0.8777265435211057 5.3340641203350615E-17 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 -27.0 -0.7736942367140389 -0.027875414801648842 0.18439999999999998 0.0 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 -9.0 -0.28089165294800983 0.023472147654199298 0.18439999999999998 0.0 0.26655999999999996 0.0 0.14552 0.0969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 9.0 -0.08781399999112188 0.26868006457044374 0.0 0.0 0.26655999999999996 0.0 0.0 0.0969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.4 27.0 0.7891610861007349 0.08119283004461932 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.12484 0.0 0.13862000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 -45.0 -0.8798784824303494 7.125388565923568E-17 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 -27.0 -0.7581039602607186 0.13551347282513387 0.18439999999999998 0.0 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 -9.0 -0.1833765501677111 0.14177423651272086 0.18439999999999998 0.0 0.26655999999999996 0.0 0.29103999999999997 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 9.0 0.08540866643394822 0.3707041568099725 0.0 0.0 0.26655999999999996 0.0 0.0 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 0.8 27.0 0.8054556163906265 0.22022239391731677 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.24968 0.0 0.13862000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 -45.0 -0.8820212954747122 6.936865116695767E-17 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 -27.0 -0.7581039602607186 0.13551347282513387 0.18439999999999998 0.0 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 -9.0 -0.1733528743905941 0.16530567396650261 0.18439999999999998 0.0 0.26655999999999996 0.0 0.29103999999999997 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 9.0 0.07965137757785999 0.3707041568099725 0.0 0.0 0.26655999999999996 0.0 0.0 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.2 27.0 0.8277811447916009 0.2994870582568326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.37451999999999996 0.0 0.13862000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 -45.0 -0.8820212954747124 6.053583609670591E-17 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10620000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 -27.0 -0.7522395060406223 0.2607788935520128 0.09219999999999999 0.0 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 -9.0 -0.13715720300730372 0.290066358370555 0.09219999999999999 0.0 0.13327999999999998 0.0 0.29103999999999997 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 9.0 0.21785105508432337 0.46058678884703974 0.0 0.0 0.13327999999999998 0.0 0.0 0.19379999999999994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.0 1.6 27.0 0.827781144791601 0.2994870582568327 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.18882000000000002 0.0 0.0 0.10943999999999998 0.0 0.0 0.0 0.0 0.0 0.37452 0.0 0.13862000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 -27.0 -0.88663808001218 -0.88663808001218 0.18439999999999998 0.09792000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 -9.0 -0.5361584076686575 -0.23986881576685568 0.18439999999999998 0.09792000000000001 0.26655999999999996 0.1087 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 9.0 -0.3249155707811814 -0.1756819285587999 0.0 0.0 0.26655999999999996 0.1087 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.0 27.0 0.753993098286669 -0.09053463721258063 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 -45.0 -0.8810777780236165 -0.4891475452794201 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 -27.0 -0.7736942367140389 -0.022346286957864475 0.18439999999999998 0.09792000000000001 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 -9.0 -0.20840116631280467 -0.04374214702977321 0.18439999999999998 0.09792000000000001 0.26655999999999996 0.1087 0.14552 0.0969 0.10046 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 9.0 -0.07634967725342158 0.02289863820692324 0.0 0.0 0.26655999999999996 0.1087 0.0 0.0969 0.10046 0.14726 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.4 27.0 0.7891610861007349 -0.022092932542467743 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 -45.0 -0.8810777780236165 -0.3423140007335359 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 -27.0 -0.7581039602607186 0.1357123820038505 0.18439999999999998 0.09792000000000001 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 -9.0 -0.14281732245674755 0.0780971698807371 0.18439999999999998 0.09792000000000001 0.26655999999999996 0.1087 0.29103999999999997 0.19379999999999994 0.10046 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 9.0 0.050815013408997814 0.16065984154107885 0.0 0.0 0.26655999999999996 0.1087 0.0 0.19379999999999994 0.10046 0.14726 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 0.8 27.0 0.8054556163906265 0.11494689743114485 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 -45.0 -0.8820212954747122 -0.2655846504239983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 -27.0 -0.7581039602607186 0.1357123820038505 0.18439999999999998 0.09792000000000001 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 -9.0 -0.1358503647478441 0.10161900144510738 0.18439999999999998 0.09792000000000001 0.26655999999999996 0.1087 0.29103999999999997 0.19379999999999994 0.10046 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 9.0 0.05066356873352379 0.16065984154107885 0.0 0.0 0.26655999999999996 0.1087 0.0 0.19379999999999994 0.10046 0.14726 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.2 27.0 0.8277811447916009 0.19788812115003307 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.37451999999999996 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 -45.0 -0.8820212954747124 -0.26558465042399826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10620000000000002 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 -27.0 -0.7525050443305067 0.24906921772428134 0.09219999999999999 0.09791999999999998 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 -9.0 -0.09896141319421323 0.18219053363193702 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29103999999999997 0.19379999999999994 0.10046 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 9.0 0.1599252943817413 0.1909545702045729 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.19379999999999994 0.10046 0.14726 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.2 1.6 27.0 0.827781144791601 0.19788812115003312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.37452 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 -27.0 -0.887303785780239 -0.887303785780239 0.18439999999999998 0.19583999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 -9.0 -0.4974141091724742 -0.2601220427628563 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 9.0 -0.2515144381238112 -0.24545060088884077 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.0 27.0 0.7828106410511184 -0.07495769438988528 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 -45.0 -0.8810777780236165 -0.4891475452794201 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 -27.0 -0.777313856086623 -0.037636695619324236 0.18439999999999998 0.19583999999999996 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 -9.0 -0.20988613135474987 -0.11211484838549997 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.14552 0.0969 0.10046 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 9.0 -0.11267706742412172 -0.058827242437506 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.0969 0.10046 0.14726 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.4 27.0 0.7891610861007349 -0.02092095328642569 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 -45.0 -0.8864461025817673 -0.4854829056749392 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 -27.0 -0.759044865561665 0.1243805738112196 0.18439999999999998 0.19583999999999996 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 -9.0 -0.10942201041264783 0.010265745293149808 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 9.0 0.03910145967791576 0.027608028344356245 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 0.8 27.0 0.8147605151254018 0.0551753572989448 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 -45.0 -0.8864461025817673 -0.39999881597180476 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 -27.0 -0.759044865561665 0.1243805738112196 0.18439999999999998 0.19583999999999996 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 -9.0 -0.10425724822116228 0.033408552460282716 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 9.0 0.04067079463696839 0.027608028344356245 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.2 27.0 0.8277811447916009 0.13526632271944788 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.37451999999999996 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 -45.0 -0.8864461025817673 -0.39999881597180476 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 -27.0 -0.7526998198216518 0.24172356577449253 0.09219999999999999 0.09791999999999998 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 -9.0 -0.0612982771481553 0.06607942991432125 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.12503999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 9.0 0.20257459689582075 0.041310622896660876 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.4 1.6 27.0 0.8277811447916009 0.14013002540233568 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.37451999999999996 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 -27.0 -0.887303785780239 -0.887303785780239 0.18439999999999998 0.19583999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 -9.0 -0.5059654790650988 -0.22257003432271957 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 9.0 -0.28958531838863083 -0.20813433928204803 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.0 27.0 0.8065777952417565 -0.06105352975965205 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 -45.0 -0.8810777780236165 -0.4891475452794201 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 -27.0 -0.777313856086623 -0.037636695619324236 0.18439999999999998 0.19583999999999996 0.0 0.0 0.14552 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 -9.0 -0.2215446459716708 -0.09074147533178266 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.14552 0.0969 0.10046 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 9.0 -0.1509335587944587 -0.03848337906921747 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.0969 0.10046 0.14726 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.4 27.0 0.8065777952417565 -0.01843788704825584 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18882000000000002 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 -45.0 -0.8864461025817673 -0.4854829056749392 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 -27.0 -0.759044865561665 0.1243805738112196 0.18439999999999998 0.19583999999999996 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 -9.0 -0.10942201041264783 0.013987626819311122 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 9.0 0.0024042858828936114 0.031546929617495695 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 0.8 27.0 0.8147605151254018 0.050093482972437556 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 -45.0 -0.8915890215367238 -0.5645524416508146 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 -27.0 -0.759044865561665 0.1262968355540332 0.18439999999999998 0.19583999999999996 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 -9.0 -0.10942201041264783 0.010265745293149808 0.18439999999999998 0.19583999999999996 0.26655999999999996 0.21739999999999995 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 9.0 0.03910145967791576 0.027608028344356245 0.0 0.0 0.26655999999999996 0.21739999999999995 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.2 27.0 0.8147605151254018 0.07128015370579512 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.22674 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 -45.0 -0.8915890215367238 -0.5645524416508146 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 -27.0 -0.755742252739385 0.2361714897544044 0.09219999999999999 0.09791999999999998 0.0 0.0 0.29103999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 -9.0 -0.06554930347872553 0.039035474103281675 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.29103999999999997 0.19379999999999994 0.20091999999999993 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 9.0 0.2098470474030891 0.041310622896660876 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.19379999999999994 0.20091999999999993 0.2945199999999999 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.6 1.6 27.0 0.8147605151254018 0.07479607363182685 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18882000000000002 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.24968 0.22674 0.13862000000000002 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 -27.0 -0.887303785780239 -0.887303785780239 0.09219999999999999 0.19583999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 -9.0 -0.5055932604775646 -0.25690528605618523 0.09219999999999999 0.19583999999999996 0.13327999999999998 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 9.0 -0.26317942122186505 -0.2344788158870968 0.0 0.0 0.13327999999999998 0.21739999999999995 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.0 27.0 0.8065777952417565 -0.06105352975965205 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464000000000003 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 -45.0 -0.8810777780236165 -0.4891475452794202 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 -27.0 -0.777313856086623 -0.03763669561932425 0.09219999999999999 0.19583999999999996 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 -9.0 -0.19294512316243811 -0.09917077483421546 0.09219999999999999 0.19583999999999996 0.13327999999999998 0.21739999999999995 0.14551999999999998 0.09689999999999997 0.10046 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04167999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 9.0 -0.11673843168616134 -0.040441886431651454 0.0 0.0 0.13327999999999998 0.21739999999999995 0.0 0.09689999999999997 0.10046 0.14726 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.4 27.0 0.8065777952417565 -0.018437887048255865 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14726 0.18881999999999996 0.0 0.25464000000000003 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000001 0.13861999999999997 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 -45.0 -0.8864461025817673 -0.6240552159692058 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 -27.0 -0.777313856086623 -0.02179461003932863 0.09219999999999999 0.19583999999999996 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 -9.0 -0.1014094276423711 -0.09917077483421546 0.09219999999999999 0.19583999999999996 0.13327999999999998 0.21739999999999995 0.14551999999999998 0.09689999999999997 0.20091999999999993 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 9.0 0.024409017110545696 -0.09026685230426858 0.0 0.0 0.13327999999999998 0.21739999999999995 0.0 0.09689999999999997 0.20091999999999993 0.2945199999999999 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 0.8 27.0 0.8147605151254018 -0.06361273721981112 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18881999999999996 0.0 0.25464 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.15116000000000002 0.13861999999999997 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 -45.0 -0.8915890215367238 -0.6885344119370239 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 -27.0 -0.777313856086623 -0.0043876257108654585 0.09219999999999999 0.19583999999999996 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 -9.0 -0.07121529522271468 -0.1358123383836465 0.09219999999999999 0.19583999999999996 0.13327999999999998 0.21739999999999995 0.14551999999999998 0.09689999999999997 0.20091999999999993 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 9.0 0.09058178426216444 -0.11317432867110208 0.0 0.0 0.13327999999999998 0.21739999999999995 0.0 0.09689999999999997 0.20091999999999993 0.2945199999999999 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.2 27.0 0.8147605151254018 -0.041123525760234245 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18881999999999996 0.0 0.16976000000000002 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.22674 0.13861999999999997 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 -45.0 -0.8915890215367225 -0.6885344119370232 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.27156 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 -27.0 -0.7624338610195981 0.12966297230927284 0.09219999999999999 0.09791999999999998 0.0 0.0 0.14551999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 -9.0 -0.005784886992101075 -0.10931897194165466 0.09219999999999999 0.09791999999999998 0.13327999999999998 0.10869999999999998 0.14551999999999998 0.09689999999999997 0.20091999999999993 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 9.0 0.19970986326832718 -0.10836140597660163 0.0 0.0 0.13327999999999998 0.10869999999999998 0.0 0.09689999999999997 0.20091999999999993 0.2945199999999999 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.6000000000000001 0.8 1.6 27.0 0.8147605151254018 -0.0399411966859987 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2945199999999999 0.18881999999999996 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.12483999999999996 0.22674000000000005 0.13861999999999997 0.1516 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 -9.0 -0.8825595107012115 0.7500000000000027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 9.0 -0.8825595107012115 0.7500000000000027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.0 27.0 0.756281337481618 0.49997844068326297 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 -45.0 -0.8875387092120626 -0.6410028578386697 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 -27.0 -0.8875387092120623 0.1642157563404672 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 -9.0 -0.6024448885847846 0.7499999999999992 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 9.0 -0.14114963490568197 0.7500000000000017 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0 0.07224000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.4 27.0 0.3580261223227188 0.3911200993085819 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.12484 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 -45.0 -0.8875387092120627 -0.5055807884875363 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 -27.0 -0.8875387092120623 0.16421575634046753 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 -9.0 -0.4608841771214047 0.7499999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 9.0 0.04417023507991463 0.7500000000000011 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0 0.07224000000000007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 0.8 27.0 0.4382276473044027 0.4565773638276091 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.24968 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 -45.0 -0.8875387092120627 -0.42015121317865467 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 -27.0 -0.8875387092120623 0.16421575634046753 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 -9.0 -0.3763713609932446 0.7499999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 9.0 0.03945944046196478 0.7500000000000011 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0 0.07224000000000007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.2 27.0 0.5058589405440042 0.5082022871342987 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.37451999999999996 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 -45.0 -0.8875387092120627 -0.3614451113516382 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14159999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 -27.0 -0.8875387092120623 0.16421575634046753 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 -9.0 -0.3763713609932446 0.7499999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 9.0 0.03945944046196487 0.7500000000000011 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0 0.07224000000000007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.0 1.6 27.0 0.5499505517957709 0.5386390905971615 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10943999999999998 0.0 0.0 0.0 0.0 0.0 0.49935999999999986 0.0 0.13862000000000002 0.0 0.0 0.0 0.10941999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 -9.0 -0.78684450662878 0.5614159699979392 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 9.0 -0.2831035923770021 0.41936286389547317 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.0 27.0 0.36519604856502474 0.17114825780939932 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 -45.0 -0.8875387092120626 -0.6410028578386697 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 -27.0 -0.8875387092120623 0.17916107417553592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 -9.0 -0.6090049847717867 0.6117983811487543 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 9.0 -0.1474204309474489 0.43029713860132096 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.1151600000000001 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.4 27.0 0.3606107306724051 0.05170949391577876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 -45.0 -0.8875387092120627 -0.5055807884875363 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 -27.0 -0.8875387092120623 0.1791610741755362 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 -9.0 -0.4902081802619632 0.6117983811487547 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 9.0 0.038315630500292984 0.5263930424956771 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.07558000000000001 0.0 0.0 0.1151600000000001 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0442 0.07224000000000007 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 0.8 27.0 0.4382276473044027 0.1436210913150429 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 -45.0 -0.8875387092120627 -0.42015121317865467 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 -27.0 -0.8875387092120623 0.1791610741755362 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 -9.0 -0.41318685317039733 0.6117983811487547 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.12503999999999998 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 9.0 0.034256167789295605 0.5263930424956771 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.07558000000000001 0.0 0.0 0.1151600000000001 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0442 0.07224000000000007 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.2 27.0 0.5058589405440042 0.22457590480808487 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.37451999999999996 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 -45.0 -0.8875387092120627 -0.3614451113516382 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14159999999999995 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 -27.0 -0.8875387092120623 0.1791610741755362 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 -9.0 -0.41318685317039733 0.6117983811487547 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.12503999999999998 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 9.0 0.03425616778929568 0.5263930424956771 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.07558000000000001 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.0442 0.07224000000000007 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.2 1.6 27.0 0.5499505517957709 0.2763341163169609 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.49935999999999986 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 -9.0 -0.7565630357811287 0.48056090568356213 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 9.0 -0.17090631142800877 0.31860963827426847 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.0 27.0 0.43714123998209864 0.14057512014100593 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 -45.0 -0.8875387092120626 -0.6410028578386697 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 -27.0 -0.8875387092120623 0.17916107417553592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 -9.0 -0.6162328045536581 0.5378273280692827 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 9.0 -0.15487341471160976 0.32940424607913465 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.4 27.0 0.3738686576515767 0.04904068871572728 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 -45.0 -0.8875387092120627 -0.5055807884875363 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 -27.0 -0.8875387092120623 0.1880082799314857 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 -9.0 -0.5134785263422424 0.5378273280692832 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 9.0 -0.044446615397020675 0.4245211800763095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 0.8 27.0 0.4382276473044027 0.1438086566465582 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 -45.0 -0.8875387092120627 -0.42015121317865467 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 -27.0 -0.8875387092120623 0.1880082799314857 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 -9.0 -0.4429043755337655 0.5378273280692832 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.12503999999999998 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 9.0 -0.04021810168924702 0.4245211800763095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.15116000000000002 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.2 27.0 0.5058589405440042 0.21934055528362456 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.37451999999999996 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 -45.0 -0.8875387092120627 -0.42015121317865467 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10619999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 -27.0 -0.8875387092120623 0.1880082799314857 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 -9.0 -0.41318685317039733 0.5700634733911242 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.12503999999999998 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 9.0 0.03425616778929568 0.48407525104513366 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.12503999999999998 0.24968 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.4 1.6 27.0 0.5058589405440042 0.22736786740275228 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.37451999999999996 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 -9.0 -0.7545797229040075 0.4359511360072216 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 9.0 -0.2839231293587387 0.3143317888963591 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.0 27.0 0.5087192402139106 0.12036626179207295 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 -45.0 -0.8875387092120626 -0.6410028578386697 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 -27.0 -0.8875387092120623 0.17916107417553592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 -9.0 -0.628406396570661 0.4920930079666601 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 9.0 -0.25338187505218446 0.3239662703489374 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.4 27.0 0.44155996389916324 0.043359474160247206 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 -45.0 -0.8875387092120627 -0.5055807884875363 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 -27.0 -0.8875387092120623 0.1880082799314857 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 -9.0 -0.5383294214327855 0.49209300796666045 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 9.0 -0.1412313388333093 0.4127902083440865 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 0.8 27.0 0.44155996389916313 0.12946044518407815 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.15116000000000002 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 -45.0 -0.8915890215367238 -0.5645524416508146 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 -27.0 -0.8875387092120623 0.1945515005930844 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 -9.0 -0.5134785263422424 0.5378273280692832 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.1151600000000001 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 9.0 -0.044446615397020675 0.4245211800763095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.1151600000000001 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.2 27.0 0.4382276473044027 0.15387616765360784 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.24968 0.22674 0.13862000000000002 0.1516 0.0 0.05026000000000005 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 -45.0 -0.8915890215367238 -0.5645524416508146 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0708 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000019 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 -27.0 -0.8875387092120623 0.1945515005930844 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 -9.0 -0.4902081802619632 0.5700634733911242 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.08336 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19012000000000018 0.09058000000000009 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 9.0 0.038315630500293074 0.48407525104513366 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.08336 0.24968 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09058000000000009 0.04420000000000004 0.07224000000000007 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.6 1.6 27.0 0.4382276473044027 0.15969812128592886 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.24968 0.22674 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07224000000000007 0.04244000000000004 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 -9.0 -0.7545797229040073 0.43595113600722135 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 9.0 -0.2839231293587386 0.3143317888963591 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.0 27.0 0.5574453616131644 0.1066830570464175 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.33951999999999993 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05026000000000005 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 -45.0 -0.8875387092120623 -0.6410028578386696 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 -27.0 -0.8875387092120623 0.1791610741755358 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 -9.0 -0.6284063965706609 0.4920930079666601 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 9.0 -0.2533818750521843 0.32396627034893727 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000001 0.0 0.0 0.11515999999999997 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0442 0.07223999999999998 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.4 27.0 0.4898492065911525 0.039297741976733566 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.33951999999999993 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000001 0.13861999999999997 0.1516 0.0 0.05026000000000005 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.042440000000000005 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 -45.0 -0.8875387092120623 -0.6410028578386696 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.18104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 -27.0 -0.8875387092120623 0.1880082799314853 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.10192000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 -9.0 -0.6284063965706609 0.4920930079666601 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 9.0 -0.2533818750521843 0.32396627034893727 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20412 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.04420000000000004 0.07223999999999998 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 0.8 27.0 0.44155996389916313 0.053184843203403435 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25464 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.15116000000000002 0.13861999999999997 0.1516 0.0 0.05026000000000005 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.04244000000000004 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 -45.0 -0.8915890215367238 -0.6885344119370239 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.27155999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 -27.0 -0.8875387092120623 0.19455150059308401 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.15288000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 -9.0 -0.6162328045536579 0.5378273280692826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 9.0 -0.15487341471160976 0.32961326698491844 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.13608 0.16976000000000002 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05026000000000005 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.04420000000000004 0.07223999999999998 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.2 27.0 0.42192344441532675 0.07911264541045868 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16976000000000002 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.22674 0.13861999999999997 0.1516 0.0 0.05026000000000005 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.04244000000000004 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 -45.0 -0.8964725288886981 -0.7268605462168305 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.3620799999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126000000000018 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 -27.0 -0.8877647058823539 0.19956327209136857 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.20383999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 -9.0 -0.6090049847717866 0.5700634733911235 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.10192000000000001 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.04420000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 9.0 -0.09786402528505027 0.3938984297964348 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.15116000000000002 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.04420000000000004 0.07223999999999998 0.04244000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.2000000000000002 0.8 1.6 27.0 0.4705352368623429 0.09843708006892846 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.12483999999999996 0.3023199999999999 0.13861999999999997 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.04244000000000004 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 -9.0 -0.895598613379927 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 9.0 -0.895598613379927 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.0 27.0 0.756281337481618 0.49997844068326297 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 -45.0 -0.8875387092120626 -0.6410028578386697 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 -27.0 -0.8875387092120623 0.1642157563404672 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 -9.0 -0.6974057903359064 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 9.0 -0.3586702420835191 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0 0.07224000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.4 27.0 0.3580261223227188 0.3911200993085819 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.12484 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 -45.0 -0.8984258511091379 -0.7387032005164313 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 -27.0 -0.8974166904498947 0.34802552916852714 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 -9.0 -0.7101372254125261 0.7499999999999992 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 9.0 -0.3828355112964221 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0 0.14448000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 0.8 27.0 0.16322809149680853 0.3911200993085819 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.1248400000000001 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 -45.0 -0.9076717893120315 -0.7793720402925083 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.59994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 -27.0 -0.9064344615067589 0.423280213251022 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.57036 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 -9.0 -0.7101372254125261 0.7499999999999992 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 9.0 -0.34404674537470104 0.7499999999999978 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.0 0.27174 0.0 0.14448000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.2 27.0 0.04874072517004847 0.4369065266549051 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10944000000000001 0.0 0.0 0.0 0.0 0.0 0.1248400000000001 0.0 0.13862000000000002 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.21672 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 -45.0 -0.9144614913891065 -0.7994227183014714 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7999199999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 -27.0 -0.9133729728271126 0.4581257489888866 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.7604799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 -9.0 -0.7101372254125261 0.7499999999999992 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 9.0 -0.34404674537470104 0.7499999999999978 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.27174 0.0 0.14448000000000003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.0 1.6 27.0 -0.0258860870460888 0.4761212929493781 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10943999999999998 0.0 0.0 0.0 0.0 0.0 0.1248400000000001 0.0 0.13862000000000002 0.0 0.0 0.0 0.10941999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.28895999999999994 0.0 0.15756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 -9.0 -0.845401817380871 0.65652259208617 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 9.0 -0.5104134926328687 0.5655003961234961 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.0 27.0 0.36519604856502474 0.17114825780939932 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 -45.0 -0.8875387092120626 -0.6410028578386697 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 -27.0 -0.8875387092120623 0.17916107417553592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 -9.0 -0.6874572986388479 0.65652259208617 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 9.0 -0.3615592972613362 0.5635593245457728 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.34547999999999995 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.4 27.0 0.3606107306724051 0.05170949391577876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 -45.0 -0.8984258511091379 -0.7387032005164313 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 -27.0 -0.8974166904498947 0.3457465231997112 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 -9.0 -0.6987847993805062 0.6620622789690506 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.041680000000000036 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 9.0 -0.3850855220111611 0.5635593245457728 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000001 0.0 0.0 0.34547999999999995 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 0.8 27.0 0.1658526846571368 0.05170949391577876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 -45.0 -0.9076717893120315 -0.7793720402925083 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.59994 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 -27.0 -0.9064344615067589 0.4170660907794814 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.57036 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 -9.0 -0.6987847993805062 0.6620622789690506 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 9.0 -0.34671492940196924 0.5367008652931485 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000001 0.0 0.0 0.23032 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.27174 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.2 27.0 0.05121749263213754 0.11482262846733693 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000001 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.21672 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 -45.0 -0.9144614913891065 -0.7994227183014714 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7999199999999999 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 -27.0 -0.9133729728271126 0.45073486873923746 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.7604799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 -9.0 -0.6987847993805062 0.6620622789690506 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.041680000000000036 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 9.0 -0.34671492940196924 0.5367008652931485 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000001 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.27174 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.2 1.6 27.0 -0.0235740892616298 0.17331827463210558 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.28895999999999994 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 -9.0 -0.845401817380871 0.65652259208617 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 9.0 -0.5055103060828209 0.5507685492952337 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34547999999999995 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.0 27.0 0.1679922635570243 0.1711482578093984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 -45.0 -0.8875387092120626 -0.6410028578386697 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 -27.0 -0.8875387092120623 0.17916107417553592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 -9.0 -0.6874572986388479 0.65652259208617 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 9.0 -0.3720629616557477 0.5507685492952337 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.34547999999999995 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.4 27.0 0.2702618655277085 0.05170949391577876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 -45.0 -0.8984258511091379 -0.7387032005164313 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 -27.0 -0.8974166904498947 0.3457465231997112 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 -9.0 -0.6987847993805062 0.6423492477677656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.34547999999999995 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 9.0 -0.3850855220111611 0.5507685492952337 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.34547999999999995 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 0.8 27.0 0.1658526846571368 0.05170949391577876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.08488000000000001 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 -45.0 -0.9076717893120315 -0.7793720402925083 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.59994 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 -27.0 -0.9064344615067589 0.4170660907794814 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.57036 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 -9.0 -0.6987847993805062 0.6423492477677656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 9.0 -0.34671492940196924 0.5235182296691718 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.27174 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.2 27.0 0.05121749263213754 0.11482262846733693 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.21672 0.08488000000000001 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 -45.0 -0.9076717893120315 -0.7793720402925083 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.59994 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 -27.0 -0.9064344615067589 0.4170660907794814 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.57036 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 -9.0 -0.6987847993805062 0.6423492477677656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27174 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 9.0 -0.34671492940196924 0.5318117363625305 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.27174 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.4 1.6 27.0 0.05121749263213754 0.11482262846733693 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.21672 0.08488000000000001 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 -9.0 -0.8254795899811221 0.628079311243529 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 9.0 -0.43596970160449094 0.5029529600776167 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.0 27.0 0.04953256666392433 0.17836775267268434 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15078 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 -45.0 -0.8875387092120626 -0.6410028578386697 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0354 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 -27.0 -0.8875387092120623 0.17916107417553592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 -9.0 -0.6353669342931902 0.628079311243529 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04168 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 9.0 -0.29775446915797904 0.5029529600776167 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04168 0.12484 0.07558000000000001 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.4 27.0 0.15352811728859314 0.06345256121556532 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.12484 0.07558000000000001 0.13862000000000002 0.1516 0.0 0.15078 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 -45.0 -0.8984258511091379 -0.7387032005164313 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 -27.0 -0.8974166904498947 0.3457465231997112 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 -9.0 -0.6987847993805062 0.6423492477677656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 9.0 -0.32085368596255937 0.5029529600776167 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 0.8 27.0 0.15352811728859314 0.06345256121556532 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.15078 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.08488000000000001 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 -45.0 -0.906580122304894 -0.7755257449996186 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.57378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 -27.0 -0.8974166904498947 0.3457465231997112 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 -9.0 -0.6987847993805062 0.606626278310915 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.1326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 9.0 -0.32085368596255937 0.4835792509098653 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.1326 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.2 27.0 0.1658526846571368 0.05630915895039329 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10944000000000001 0.08738000000000001 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.12732 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 -45.0 -0.906580122304894 -0.7755257449996186 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03540000000000003 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.57378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 -27.0 -0.8974166904498947 0.3457465231997112 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 -9.0 -0.6987847993805062 0.606626278310915 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.041680000000000036 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.1326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 9.0 -0.2850641515809921 0.4521482609431267 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.041680000000000036 0.1248400000000001 0.07558000000000006 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.1326 0.14448000000000003 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.6 1.6 27.0 0.1658526846571368 0.05630915895039329 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.1248400000000001 0.07558000000000006 0.13862000000000002 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.12732 0.15756 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 -9.0 -0.7868445066287799 0.5614159699979392 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 9.0 -0.3214959086648969 0.40744149535039914 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.0 27.0 -0.029159490822433704 0.18559974080483038 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.20103999999999997 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 -45.0 -0.8875387092120623 -0.6410028578386696 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 -27.0 -0.8875387092120623 0.1791610741755358 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 -9.0 -0.6090049847717866 0.6117983811487543 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000005 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 9.0 -0.18365361968454424 0.4188875304856251 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000001 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0442 0.07223999999999998 0.042440000000000005 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.4 27.0 0.07185126124704001 0.0775216178082777 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000001 0.13861999999999997 0.1516 0.0 0.20103999999999997 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.042440000000000005 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 -45.0 -0.8975337689420841 -0.7334853259465962 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 -27.0 -0.8875387092120623 0.1791610741755358 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 -9.0 -0.6090049847717866 0.5853207607421803 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 9.0 -0.18365361968454424 0.4188875304856251 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000006 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0884 0.07223999999999998 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 0.8 27.0 0.15352811728859309 0.06345256121556525 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000006 0.13861999999999997 0.1516 0.0 0.15078 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.08488000000000001 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 -45.0 -0.906580122304894 -0.7755257449996186 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.57378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 -27.0 -0.8875387092120623 0.1791610741755358 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 -9.0 -0.6090049847717866 0.5407655106992176 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.1326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 9.0 -0.20461081077074186 0.4019911844311003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06804000000000006 0.08488000000000008 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000006 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.1326 0.07223999999999998 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.2 27.0 0.20244953523430737 0.056309158950393234 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08488000000000008 0.10943999999999998 0.08738000000000001 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000006 0.13861999999999997 0.1516 0.0 0.10052000000000001 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.12732 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 -45.0 -0.9135056199437325 -0.7969562993778874 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09052000000000009 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.7650399999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 -27.0 -0.8875387092120623 0.1791610741755358 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03539999999999999 0.09051999999999998 0.050960000000000054 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 -9.0 -0.6090049847717866 0.5407655106992176 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.0 0.0 0.0 0.0 0.0 0.050960000000000054 0.04167999999999999 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.1326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 9.0 -0.187490898349711 0.40199118443110043 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.06803999999999999 0.08487999999999998 0.0 0.0 0.0 0.0 0.0 0.04167999999999999 0.12483999999999996 0.07558000000000006 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.1326 0.07223999999999998 0.08488000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1.7999999999999998 0.8 1.6 27.0 0.11948397458862543 0.06912924946650112 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.08487999999999998 0.10943999999999998 0.08737999999999999 0.0 0.0 0.0 0.0 0.12483999999999996 0.07558000000000006 0.13861999999999997 0.1516 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.16975999999999997 0.15755999999999995 0.07718000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 -9.0 -0.895598613379927 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 9.0 -0.895598613379927 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.0 27.0 -0.3598276440641602 0.749999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2212000000000002 0.08446000000000001 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.4 -45.0 -0.8875387092120626 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.4 -27.0 -0.8875387092120623 0.18597007636529103 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.0 0.4 -9.0 -0.895598613379927 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.0 0.4 9.0 -0.7664102639912337 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0 0.07224000000000001 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.14650000000000002 0.0 0.0
2.4000000000000004 0.0 0.4 27.0 -0.06851593958185608 0.749999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.0 0.15756 0.0 0.2212000000000002 0.08446000000000001 0.0 0.0 0.14650000000000002 0.0 0.10292
2.4000000000000004 0.0 0.8 -45.0 -0.8984258511091379 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 0.8 -27.0 -0.8974166904498947 0.37840042866676843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.0 0.8 -9.0 -0.8974166904498947 0.7499999999999992 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.0 0.8 9.0 -0.7046021738253421 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0 0.14448000000000003 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.0 0.0
2.4000000000000004 0.0 0.8 27.0 -0.17326966380306769 0.7500000000000017 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.0 0.15756 0.0 0.2212000000000002 0.08446000000000001 0.0 0.0 0.29300000000000004 0.0 0.10292
2.4000000000000004 0.0 1.2 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 1.2 -27.0 -0.9064344615067588 0.45282425264510556 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.0 1.2 -9.0 -0.8974166904498947 0.7499999999999992 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.0 1.2 9.0 -0.6900173210481826 0.7500000000000017 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0 0.14448000000000003 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.0 0.0
2.4000000000000004 0.0 1.2 27.0 -0.21423804974867175 0.7500000000000014 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10942000000000002 0.0 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.0 0.15756 0.0 0.22120000000000004 0.08446000000000001 0.0 0.0 0.29300000000000026 0.0 0.10292
2.4000000000000004 0.0 1.6 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.0 1.6 -27.0 -0.9064344615067588 0.45282425264510556 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.0 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.0 1.6 -9.0 -0.8974166904498947 0.7499999999999992 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.0 1.6 9.0 -0.6900173210481826 0.7500000000000017 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0 0.14448000000000003 0.0 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.29300000000000004 0.0 0.0
2.4000000000000004 0.0 1.6 27.0 -0.21423804974867175 0.7500000000000014 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10941999999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.0 0.15756 0.0 0.11059999999999999 0.08445999999999998 0.0 0.0 0.29300000000000026 0.0 0.10292
2.4000000000000004 0.2 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.0 -9.0 -0.895598613379927 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.0 9.0 -0.7949621298004435 0.6768334558787511 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.0 27.0 -0.15390001130441125 0.5753134934126356 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.4 -45.0 -0.8875387092120626 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.4 -27.0 -0.8875387092120623 0.18597007636529103 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.2 0.4 -9.0 -0.895598613379927 0.6843258316045213 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.2 0.4 9.0 -0.7664102639912337 0.6144690285259101 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.14650000000000002 0.11262000000000001 0.0
2.4000000000000004 0.2 0.4 27.0 -0.06851593958185608 0.5746292921204216 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.14650000000000002 0.11262000000000001 0.10292
2.4000000000000004 0.2 0.8 -45.0 -0.8984258511091379 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 0.8 -27.0 -0.8974166904498947 0.37840042866676843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.2 0.8 -9.0 -0.8974166904498947 0.6884672339359138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.2 0.8 9.0 -0.7046021738253421 0.6144690285259101 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.11262000000000001 0.0
2.4000000000000004 0.2 0.8 27.0 -0.17326966380306769 0.6008799697191529 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.042440000000000005 0.15756 0.07718000000000001 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000004 0.11262000000000001 0.10292
2.4000000000000004 0.2 1.2 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 1.2 -27.0 -0.9064344615067588 0.45282425264510556 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.2 1.2 -9.0 -0.8974166904498947 0.6884672339359138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.2 1.2 9.0 -0.6900173210481826 0.6008799697191529 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.050260000000000006 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.11262000000000001 0.0
2.4000000000000004 0.2 1.2 27.0 -0.21423804974867175 0.6008799697191529 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.050260000000000006 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.042440000000000005 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000026 0.11262000000000001 0.10292
2.4000000000000004 0.2 1.6 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.2 1.6 -27.0 -0.9064344615067588 0.45282425264510556 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.2 1.6 -9.0 -0.8974166904498947 0.6884672339359138 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.2 1.6 9.0 -0.6900173210481826 0.6008799697191529 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0442 0.14448000000000003 0.042440000000000005 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.29300000000000004 0.11262000000000001 0.0
2.4000000000000004 0.2 1.6 27.0 -0.21423804974867175 0.6008799697191529 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.042440000000000005 0.15756 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07707999999999998 0.0 0.29300000000000026 0.11262000000000001 0.10292
2.4000000000000004 0.4 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.0 -9.0 -0.895598613379927 0.7499999999999983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.0 9.0 -0.7376235784530518 0.6248088428339781 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.0 27.0 -0.1836567591055971 0.5753134934126356 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.4 -45.0 -0.8875387092120626 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.4 -27.0 -0.8875387092120623 0.18597007636529103 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.4 0.4 -9.0 -0.895598613379927 0.6843258316045213 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.4 0.4 9.0 -0.7376235784530518 0.6144690285259101 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.14650000000000002 0.11262000000000001 0.0
2.4000000000000004 0.4 0.4 27.0 -0.08183197572023294 0.5746292921204216 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.14650000000000002 0.11262000000000001 0.10292
2.4000000000000004 0.4 0.8 -45.0 -0.8984258511091379 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 0.8 -27.0 -0.8974166904498947 0.37840042866676843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.4 0.8 -9.0 -0.8974166904498947 0.6423492477677656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.4 0.8 9.0 -0.7046021738253421 0.5442318576642292 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3454799999999998 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.4 0.8 27.0 -0.17326966380306769 0.527892065311855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.08488000000000001 0.15756 0.07718000000000001 0.2212000000000002 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000004 0.22524000000000002 0.10292
2.4000000000000004 0.4 1.2 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 1.2 -27.0 -0.9064344615067588 0.45282425264510556 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.4 1.2 -9.0 -0.8974166904498947 0.6423492477677656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.4 1.2 9.0 -0.6900173210481826 0.527892065311855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.4 1.2 27.0 -0.21423804974867175 0.5278920653118551 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.08488000000000001 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000026 0.22524000000000002 0.10292
2.4000000000000004 0.4 1.6 -45.0 -0.9076717893120312 -0.9076717893120312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5999399999999997 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.4 1.6 -27.0 -0.9064344615067588 0.45282425264510556 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.5703599999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.037440000000000036 0.0 0.0 0.0
2.4000000000000004 0.4 1.6 -9.0 -0.8974166904498947 0.6423492477677656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.27173999999999987 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.4 1.6 9.0 -0.6900173210481826 0.527892065311855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.27173999999999987 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.4 1.6 27.0 -0.21423804974867175 0.5278920653118551 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.21671999999999988 0.08488000000000001 0.15756 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07707999999999998 0.0 0.29300000000000026 0.22524000000000002 0.10292
2.4000000000000004 0.6 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.0 -9.0 -0.889276196371573 0.7500000000000032 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.0 9.0 -0.7014234663133634 0.5905018074456816 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.0 27.0 -0.2233557373506506 0.5426310663737375 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.4 -45.0 -0.8875387092120626 -0.8875387092120626 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19998000000000002 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.4 -27.0 -0.8875387092120623 0.18597007636529103 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19012 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.6 0.4 -9.0 -0.889276196371573 0.6625220480259955 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.19012 0.09058000000000001 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.01872 0.0 0.0 0.0
2.4000000000000004 0.6 0.4 9.0 -0.7014234663133634 0.5786240733941725 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09058000000000001 0.0442 0.07224000000000001 0.042440000000000005 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.14650000000000002 0.11262000000000001 0.0
2.4000000000000004 0.6 0.4 27.0 -0.1274500537307169 0.5426310663737375 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.07224000000000001 0.042440000000000005 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.14650000000000002 0.11262000000000001 0.10292
2.4000000000000004 0.6 0.8 -45.0 -0.8984258511091379 -0.8984258511091379 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 0.8 -27.0 -0.8974166904498947 0.37840042866676843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 0.8 -9.0 -0.8974166904498947 0.6423492477677656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 0.8 9.0 -0.6900173210481826 0.527892065311855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.0884 0.14448000000000003 0.08488000000000001 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.6 0.8 27.0 -0.1774627783618012 0.527892065311855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.08488000000000001 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000004 0.22524000000000002 0.10292
2.4000000000000004 0.6 1.2 -45.0 -0.9065801223048938 -0.9065801223048938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.5737799999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 1.2 -27.0 -0.8974166904498947 0.37840042866676843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 1.2 -9.0 -0.8974166904498947 0.6066262783109148 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.1325999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 1.2 9.0 -0.6900173210481826 0.527892065311855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23032 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.1325999999999999 0.14448000000000003 0.08488000000000001 0.0 0.0 0.22120000000000004 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.6 1.2 27.0 -0.17326966380306769 0.5278920653118551 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10942000000000002 0.1119 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.12731999999999993 0.15756 0.07718000000000001 0.22120000000000004 0.08446000000000001 0.07708000000000001 0.0 0.29300000000000004 0.22524000000000022 0.10292
2.4000000000000004 0.6 1.6 -45.0 -0.9065801223048938 -0.9065801223048938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.39996000000000004 0.5737799999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.6 1.6 -27.0 -0.8974166904498947 0.37840042866676843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.38024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 1.6 -9.0 -0.8974166904498947 0.6066262783109148 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.38024 0.18116000000000002 0.1325999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.03744 0.0 0.0 0.0
2.4000000000000004 0.6 1.6 9.0 -0.6900173210481826 0.527892065311855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.18116000000000002 0.1325999999999999 0.14448000000000003 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.29300000000000004 0.22524000000000002 0.0
2.4000000000000004 0.6 1.6 27.0 -0.17326966380306769 0.5278920653118551 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.14448000000000003 0.12731999999999993 0.15756 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07707999999999998 0.0 0.29300000000000004 0.22524000000000022 0.10292
2.4000000000000004 0.8 0.0 -45.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.0 -27.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.0 -9.0 -0.8825595107012113 0.7500000000000027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.0 9.0 -0.6390191465160894 0.5160081230919774 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.0 27.0 -0.12074897545137622 0.46419525112699656 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11059999999999999 0.08445999999999998 0.07708000000000001 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.4 -45.0 -0.8875387092120623 -0.8875387092120623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.4 -27.0 -0.8875387092120623 0.1859700763652909 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 0.4 -9.0 -0.8869719854964562 0.6496193566897628 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0442 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 0.4 9.0 -0.6601596489727047 0.5304558687624641 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0442 0.07223999999999998 0.042440000000000005 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.14649999999999996 0.11262000000000001 0.0
2.4000000000000004 0.8 0.4 27.0 -0.0619947374874516 0.5050361062340039 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.042440000000000005 0.15755999999999995 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07708000000000001 0.0 0.14649999999999996 0.11262000000000001 0.10291999999999997
2.4000000000000004 0.8 0.8 -45.0 -0.8975337689420841 -0.8975337689420841 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.38252 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 0.8 -27.0 -0.8875387092120623 0.1859700763652909 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 0.8 -9.0 -0.8869719854964562 0.5853207607421803 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.0884 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 0.8 9.0 -0.6993846794854975 0.4522487296178078 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.0884 0.07223999999999998 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.14649999999999996 0.22524000000000002 0.0
2.4000000000000004 0.8 0.8 27.0 -0.1305666426199114 0.46034270550829315 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.15077999999999991 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.08488000000000001 0.15755999999999995 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07708000000000001 0.0 0.14649999999999996 0.22524000000000002 0.10291999999999997
2.4000000000000004 0.8 1.2 -45.0 -0.9065801223048938 -0.9065801223048938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.5737799999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 1.2 -27.0 -0.8875387092120623 0.1859700763652909 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 1.2 -9.0 -0.8869719854964562 0.5407655106992174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.1325999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 1.2 9.0 -0.6993846794854975 0.4522487296178078 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.10052000000000001 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.1325999999999999 0.07223999999999998 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.14649999999999996 0.22524000000000002 0.0
2.4000000000000004 0.8 1.2 27.0 -0.11055364331008116 0.4603427055082932 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.10052000000000001 0.10941999999999998 0.1119 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.12731999999999993 0.15755999999999995 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07708000000000001 0.0 0.14649999999999996 0.22524000000000022 0.10291999999999997
2.4000000000000004 0.8 1.6 -45.0 -0.9065801223048938 -0.9065801223048938 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.5737799999999997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
2.4000000000000004 0.8 1.6 -27.0 -0.8875387092120623 0.1859700763652909 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19997999999999996 0.19125999999999996 0.19011999999999996 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 1.6 -9.0 -0.8869719854964562 0.5407655106992174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.0 0.0 0.0 0.0 0.0 0.19011999999999996 0.09057999999999998 0.1325999999999999 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.018719999999999997 0.0 0.0 0.0
2.4000000000000004 0.8 1.6 9.0 -0.7149595303630241 0.4522487296178078 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11515999999999997 0.05025999999999999 0.0 0.0 0.0 0.0 0.0 0.09057999999999998 0.1325999999999999 0.07223999999999998 0.08488000000000001 0.0 0.0 0.11059999999999999 0.0 0.0 0.0 0.14649999999999996 0.22524000000000002 0.0
2.4000000000000004 0.8 1.6 27.0 -0.11055364331008116 0.4603427055082932 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.05025999999999999 0.10941999999999998 0.11189999999999997 0.0 0.0 0.0 0.0 0.0 0.07223999999999998 0.12731999999999993 0.15755999999999995 0.07718000000000001 0.11059999999999999 0.08445999999999998 0.07707999999999998 0.0 0.14649999999999996 0.22524000000000022 0.10291999999999997

View File

@ -1,65 +0,0 @@
// Block definition (there may be more than one block per file)
FUNCTION_BLOCK tipper
// Define input variables
VAR_INPUT
service : REAL;
food : REAL;
END_VAR
// Define output variable
VAR_OUTPUT
tip : REAL;
END_VAR
// Fuzzify input variable 'service'
FUZZIFY service
TERM poor := (0, 1) (4, 0) ;
TERM good := (1, 0) (4,1) (6,1) (9,0);
TERM excellent := (6, 0) (9, 1);
RANGE := (0.0 .. 9.0); // Added range for service
END_FUZZIFY
// Fuzzify input variable 'food'
FUZZIFY food
TERM rancid := (0, 1) (1, 1) (3,0) ;
TERM delicious := (7,0) (9,1);
RANGE := (0.0 .. 9.0); // Added range for food
END_FUZZIFY
// Defzzzify output variable 'tip'
DEFUZZIFY tip
TERM cheap := (0,0) (5,1) (10,0);
TERM average := (10,0) (15,1) (20,0);
TERM generous := (20,0) (25,1) (30,0);
// Use 'Center Of Gravity' defuzzification method
METHOD : COG;
// Default value is 0 (if no rule activates defuzzifier)
DEFAULT := 0;
RANGE := (0.0 .. 30.0); // Added range for tip
END_DEFUZZIFY
RULEBLOCK No1
// Use 'min' for 'and' (also implicit use 'max'
// for 'or' to fulfill DeMorgan's Law)
AND : MIN;
// Use 'min' activation method
ACT : MIN;
// Use 'max' accumulation method
ACCU : MAX;
RULE 1 : IF service IS poor OR food IS rancid
THEN tip IS cheap;
RULE 2 : IF service IS good
THEN tip IS average;
RULE 3 : IF service IS excellent AND food IS delicious
THEN tip is generous;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
service food tip No1.1 No1.2 No1.3
0.0 0.0 5.000020040080156 1.0 0.0 0.0
0.0 1.8 5.000020040080156 1.0 0.0 0.0
0.0 3.6 5.000020040080156 1.0 0.0 0.0
0.0 5.3999999999999995 5.000020040080156 1.0 0.0 0.0
0.0 7.2 5.000020040080156 1.0 0.0 0.0
1.8 0.0 8.161124892286946 1.0 0.26666666666666666 0.0
1.8 1.8 8.54950607575949 0.6 0.26666666666666666 0.0
1.8 3.6 8.66927574381595 0.55 0.26666666666666666 0.0
1.8 5.3999999999999995 8.66927574381595 0.55 0.26666666666666666 0.0
1.8 7.2 8.66927574381595 0.55 0.26666666666666666 0.0
3.6 0.0 9.955181584284231 1.0 0.8666666666666667 0.0
3.6 1.8 10.390254985117041 0.6 0.8666666666666667 0.0
3.6 3.6 13.37919506577268 0.09999999999999998 0.8666666666666667 0.0
3.6 5.3999999999999995 13.37919506577268 0.09999999999999998 0.8666666666666667 0.0
3.6 7.2 13.37919506577268 0.09999999999999998 0.8666666666666667 0.0
5.3999999999999995 0.0 10.000040019919915 1.0 1.0 0.0
5.3999999999999995 1.8 10.434808979091365 0.6 1.0 0.0
5.3999999999999995 3.6 15.000000000000037 0.0 1.0 0.0
5.3999999999999995 5.3999999999999995 15.000000000000037 0.0 1.0 0.0
5.3999999999999995 7.2 15.000000000000037 0.0 1.0 0.0
7.2 0.0 9.565238207039531 1.0 0.5999999999999999 0.0
7.2 1.8 10.000007142857134 0.6 0.5999999999999999 0.0
7.2 3.6 15.000000000000021 0.0 0.5999999999999999 0.0
7.2 5.3999999999999995 15.000000000000021 0.0 0.5999999999999999 0.0
7.2 7.2 16.84460906644311 0.0 0.5999999999999999 0.10000000000000009

View File

@ -1,42 +0,0 @@
FUNCTION_BLOCK testDeMorgan1
VAR_INPUT
x1 : REAL;
x2 : REAL;
END_VAR
VAR_OUTPUT
y : REAL;
END_VAR
FUZZIFY x1
TERM value := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x1
END_FUZZIFY
FUZZIFY x2
TERM value2 := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x2
END_FUZZIFY
DEFUZZIFY y
TERM value := (0, 1) (1, 0) ;
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (0.0 .. 1.0); // Added range for y
END_DEFUZZIFY
RULEBLOCK No1
AND : MIN; // Use 'min' for 'and' (also implicit use 'max' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1 : IF NOT(x1 IS value OR x2 IS value2) THEN y IS value;
RULE 2 : IF NOT(x1 IS value) AND NOT(x2 IS value2) THEN y IS value;
RULE 3 : IF NOT(x1 IS value AND x2 IS value2) THEN y IS value;
RULE 4 : IF NOT(x1 IS value) OR NOT(x2 IS value2) THEN y IS value;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
x1 x2 y No1.1 No1.2 No1.3 No1.4
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0

View File

@ -1,42 +0,0 @@
FUNCTION_BLOCK testDeMorgan2
VAR_INPUT
x1 : REAL;
x2 : REAL;
END_VAR
VAR_OUTPUT
y : REAL;
END_VAR
FUZZIFY x1
TERM value := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x1
END_FUZZIFY
FUZZIFY x2
TERM value2 := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x2
END_FUZZIFY
DEFUZZIFY y
TERM value := (0, 1) (1, 0) ;
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (0.0 .. 1.0); // Added range for y
END_DEFUZZIFY
RULEBLOCK No1
AND : PROD; // Use 'PROD' for 'and' (also implicit use 'ASUM' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1 : IF NOT(x1 IS value OR x2 IS value2) THEN y IS value;
RULE 2 : IF NOT(x1 IS value) AND NOT(x2 IS value2) THEN y IS value;
RULE 3 : IF NOT(x1 IS value AND x2 IS value2) THEN y IS value;
RULE 4 : IF NOT(x1 IS value) OR NOT(x2 IS value2) THEN y IS value;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
x1 x2 y No1.1 No1.2 No1.3 No1.4
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0

View File

@ -1,42 +0,0 @@
FUNCTION_BLOCK testDeMorgan2
VAR_INPUT
x1 : REAL;
x2 : REAL;
END_VAR
VAR_OUTPUT
y : REAL;
END_VAR
FUZZIFY x1
TERM value := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x1
END_FUZZIFY
FUZZIFY x2
TERM value2 := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x2
END_FUZZIFY
DEFUZZIFY y
TERM value := (0, 1) (1, 0) ;
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (0.0 .. 1.0); // Added range for y
END_DEFUZZIFY
RULEBLOCK No1
AND : BDIF; // Use 'BDIF' for 'and' (also implicit use 'BSUM' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1 : IF NOT(x1 IS value OR x2 IS value2) THEN y IS value;
RULE 2 : IF NOT(x1 IS value) AND NOT(x2 IS value2) THEN y IS value;
RULE 3 : IF NOT(x1 IS value AND x2 IS value2) THEN y IS value;
RULE 4 : IF NOT(x1 IS value) OR NOT(x2 IS value2) THEN y IS value;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
x1 x2 y No1.1 No1.2 No1.3 No1.4
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0

View File

@ -1,42 +0,0 @@
FUNCTION_BLOCK testDeMorgan1
VAR_INPUT
x1 : REAL;
x2 : REAL;
END_VAR
VAR_OUTPUT
y : REAL;
END_VAR
FUZZIFY x1
TERM value := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x1
END_FUZZIFY
FUZZIFY x2
TERM value2 := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x2
END_FUZZIFY
DEFUZZIFY y
TERM value := (0, 1) (1, 0) ;
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (0.0 .. 1.0); // Added range for y
END_DEFUZZIFY
RULEBLOCK No1
AND : DMIN; // Use 'DMIN' for 'and' (also implicit use 'DMAX' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1 : IF NOT(x1 IS value OR x2 IS value2) THEN y IS value;
RULE 2 : IF NOT(x1 IS value) AND NOT(x2 IS value2) THEN y IS value;
RULE 3 : IF NOT(x1 IS value AND x2 IS value2) THEN y IS value;
RULE 4 : IF NOT(x1 IS value) OR NOT(x2 IS value2) THEN y IS value;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
x1 x2 y No1.1 No1.2 No1.3 No1.4
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0

View File

@ -1,42 +0,0 @@
FUNCTION_BLOCK testDeMorgan1
VAR_INPUT
x1 : REAL;
x2 : REAL;
END_VAR
VAR_OUTPUT
y : REAL;
END_VAR
FUZZIFY x1
TERM value := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x1
END_FUZZIFY
FUZZIFY x2
TERM value2 := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x2
END_FUZZIFY
DEFUZZIFY y
TERM value := (0, 1) (1, 0) ;
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (0.0 .. 1.0); // Added range for y
END_DEFUZZIFY
RULEBLOCK No1
AND : NIPMIN; // Use 'NIPMIN' for 'and' (also implicit use 'NIPMAX' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1 : IF NOT(x1 IS value OR x2 IS value2) THEN y IS value;
RULE 2 : IF NOT(x1 IS value) AND NOT(x2 IS value2) THEN y IS value;
RULE 3 : IF NOT(x1 IS value AND x2 IS value2) THEN y IS value;
RULE 4 : IF NOT(x1 IS value) OR NOT(x2 IS value2) THEN y IS value;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
x1 x2 y No1.1 No1.2 No1.3 No1.4
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0

View File

@ -1,42 +0,0 @@
FUNCTION_BLOCK testDeMorgan1
VAR_INPUT
x1 : REAL;
x2 : REAL;
END_VAR
VAR_OUTPUT
y : REAL;
END_VAR
FUZZIFY x1
TERM value := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x1
END_FUZZIFY
FUZZIFY x2
TERM value2 := (0, 1) (1, 0) ;
RANGE := (0.0 .. 1.0); // Added range for x2
END_FUZZIFY
DEFUZZIFY y
TERM value := (0, 1) (1, 0) ;
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (0.0 .. 1.0); // Added range for y
END_DEFUZZIFY
RULEBLOCK No1
AND : HAMACHER; // Use 'HAMACHER' for 'and' (also implicit use 'EINSTEIN' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1 : IF NOT(x1 IS value OR x2 IS value2) THEN y IS value;
RULE 2 : IF NOT(x1 IS value) AND NOT(x2 IS value2) THEN y IS value;
RULE 3 : IF NOT(x1 IS value AND x2 IS value2) THEN y IS value;
RULE 4 : IF NOT(x1 IS value) OR NOT(x2 IS value2) THEN y IS value;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
x1 x2 y No1.1 No1.2 No1.3 No1.4
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0

View File

@ -1,56 +0,0 @@
/*
Example: A tip calculation FIS (fuzzy inference system)
Calculates tip based on 'servie' and 'food'
If you want to about this example (and fuzzy logic), please
read Matlab's tutorial on fuzzy logic toolbox
http://www.mathworks.com/access/helpdesk/help/pdf_doc/fuzzy/fuzzy.pdf
Pablo Cingolani
pcingola@users.sourceforge.net
*/
FUNCTION_BLOCK tipper // Block definition (there may be more than one block per file)
VAR_INPUT // Define input variables
service : REAL;
food : REAL;
END_VAR
VAR_OUTPUT // Define output variable
tip : REAL;
END_VAR
FUZZIFY service // Fuzzify input variable 'service': {'poor', 'good' , 'excellent'}
TERM poor := (0, 1) (4, 0) ;
TERM good := (1, 0) (4,1) (6,1) (9,0);
TERM excellent := (6, 0) (9, 1);
RANGE := (0.0 .. 9.0); // Added range for service
END_FUZZIFY
FUZZIFY food // Fuzzify input variable 'food': { 'rancid', 'delicious' }
TERM rancid := (0, 1) (1, 1) (3,0) ;
TERM delicious := (7,0) (9,1);
RANGE := (0.0 .. 9.0); // Added range for food
END_FUZZIFY
DEFUZZIFY tip // Defzzzify output variable 'tip' : {'cheap', 'average', 'generous' }
TERM cheap := (0,0) (5,1) (10,0);
TERM average := (10,0) (15,1) (20,0);
TERM generous := (20,0) (25,1) (30,0);
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (0.0 .. 30.0); // Added range for tip
END_DEFUZZIFY
RULEBLOCK No1
AND : MIN; // Use 'min' for 'and' (also implicit use 'max' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1 : IF service IS poor OR food IS rancid THEN tip IS cheap;
RULE 2 : IF service IS good THEN tip IS average;
RULE 3 : IF service IS excellent AND food IS delicious THEN tip IS generous;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
service food tip No1.1 No1.2 No1.3
0.0 0.0 5.000020040080156 1.0 0.0 0.0
0.0 1.8 5.000020040080156 1.0 0.0 0.0
0.0 3.6 5.000020040080156 1.0 0.0 0.0
0.0 5.3999999999999995 5.000020040080156 1.0 0.0 0.0
0.0 7.2 5.000020040080156 1.0 0.0 0.0
1.8 0.0 8.161124892286946 1.0 0.26666666666666666 0.0
1.8 1.8 8.54950607575949 0.6 0.26666666666666666 0.0
1.8 3.6 8.66927574381595 0.55 0.26666666666666666 0.0
1.8 5.3999999999999995 8.66927574381595 0.55 0.26666666666666666 0.0
1.8 7.2 8.66927574381595 0.55 0.26666666666666666 0.0
3.6 0.0 9.955181584284231 1.0 0.8666666666666667 0.0
3.6 1.8 10.390254985117041 0.6 0.8666666666666667 0.0
3.6 3.6 13.37919506577268 0.09999999999999998 0.8666666666666667 0.0
3.6 5.3999999999999995 13.37919506577268 0.09999999999999998 0.8666666666666667 0.0
3.6 7.2 13.37919506577268 0.09999999999999998 0.8666666666666667 0.0
5.3999999999999995 0.0 10.000040019919915 1.0 1.0 0.0
5.3999999999999995 1.8 10.434808979091365 0.6 1.0 0.0
5.3999999999999995 3.6 15.000000000000037 0.0 1.0 0.0
5.3999999999999995 5.3999999999999995 15.000000000000037 0.0 1.0 0.0
5.3999999999999995 7.2 15.000000000000037 0.0 1.0 0.0
7.2 0.0 9.565238207039531 1.0 0.5999999999999999 0.0
7.2 1.8 10.000007142857134 0.6 0.5999999999999999 0.0
7.2 3.6 15.000000000000021 0.0 0.5999999999999999 0.0
7.2 5.3999999999999995 15.000000000000021 0.0 0.5999999999999999 0.0
7.2 7.2 16.84460906644311 0.0 0.5999999999999999 0.10000000000000009

View File

@ -1,56 +0,0 @@
/*
Example: A tip calculation FIS (fuzzy inference system)
Calculates tip based on 'servie' and 'food'
If you want to about this example (and fuzzy logic), please
read Matlab's tutorial on fuzzy logic toolbox
http://www.mathworks.com/access/helpdesk/help/pdf_doc/fuzzy/fuzzy.pdf
Pablo Cingolani
pcingola@users.sourceforge.net
*/
FUNCTION_BLOCK tipper // Block definition (there may be more than one block per file)
VAR_INPUT // Define input variables
service : REAL;
food : REAL;
END_VAR
VAR_OUTPUT // Define output variable
tip : REAL;
END_VAR
FUZZIFY service // Fuzzify input variable 'service': {'poor', 'good' , 'excellent'}
TERM poor := (0, 1) (4, 0) ;
TERM good := (1, 0) (4,1) (6,1) (9,0);
TERM excellent := (6, 0) (9, 1);
RANGE := (0.0 .. 9.0); // Added range for service
END_FUZZIFY
FUZZIFY food // Fuzzify input variable 'food': { 'rancid', 'delicious' }
TERM rancid := (0, 1) (1, 1) (3,0) ;
TERM delicious := (7,0) (9,1);
RANGE := (0.0 .. 9.0); // Added range for food
END_FUZZIFY
DEFUZZIFY tip // Defzzzify output variable 'tip' : {'cheap', 'average', 'generous' }
TERM cheap := (0,0) (5,1) (10,0);
TERM average := (10,0) (15,1) (20,0);
TERM generous := (20,0) (25,1) (30,0);
METHOD : COG; // Use 'Center Of Gravity' defuzzification method
DEFAULT := 0; // Default value is 0 (if no rule activates defuzzifier)
RANGE := (0.0 .. 30.0); // Added range for tip
END_DEFUZZIFY
RULEBLOCK No1
AND : MIN; // Use 'min' for 'and' (also implicit use 'max' for 'or' to fulfill DeMorgan's Law)
ACT : MIN; // Use 'min' activation method
ACCU : MAX; // Use 'max' accumulation method
RULE 1 : IF service IS poor OR food IS rancid THEN tip IS cheap WITH 0.8;
RULE 2 : IF service IS good THEN tip IS average WITH 0.5;
RULE 3 : IF service IS excellent AND food IS delicious THEN tip IS generous WITH 0.9;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,26 +0,0 @@
service food tip No1.1 No1.2 No1.3
0.0 0.0 5.0000250000000035 0.8 0.0 0.0
0.0 1.8 5.0000250000000035 0.8 0.0 0.0
0.0 3.6 5.0000250000000035 0.8 0.0 0.0
0.0 5.3999999999999995 5.0000250000000035 0.8 0.0 0.0
0.0 7.2 5.0000250000000035 0.8 0.0 0.0
1.8 0.0 7.058837543262971 0.8 0.13333333333333333 0.0
1.8 1.8 7.543607688597161 0.48 0.13333333333333333 0.0
1.8 3.6 7.661117431208402 0.44000000000000006 0.13333333333333333 0.0
1.8 5.3999999999999995 7.661117431208402 0.44000000000000006 0.13333333333333333 0.0
1.8 7.2 7.661117431208402 0.44000000000000006 0.13333333333333333 0.0
3.6 0.0 9.142384348411793 0.8 0.43333333333333335 0.0
3.6 1.8 9.819983982824105 0.48 0.43333333333333335 0.0
3.6 3.6 13.154974486118704 0.07999999999999999 0.43333333333333335 0.0
3.6 5.3999999999999995 13.154974486118704 0.07999999999999999 0.43333333333333335 0.0
3.6 7.2 13.154974486118704 0.07999999999999999 0.43333333333333335 0.0
5.3999999999999995 0.0 9.385978947368391 0.8 0.5 0.0
5.3999999999999995 1.8 10.068944038929448 0.48 0.5 0.0
5.3999999999999995 3.6 14.999999999999893 0.0 0.5 0.0
5.3999999999999995 5.3999999999999995 14.999999999999893 0.0 0.5 0.0
5.3999999999999995 7.2 14.999999999999893 0.0 0.5 0.0
7.2 0.0 8.469404081632552 0.8 0.29999999999999993 0.0
7.2 1.8 9.114238141335782 0.48 0.29999999999999993 0.0
7.2 3.6 14.999999999999948 0.0 0.29999999999999993 0.0
7.2 5.3999999999999995 14.999999999999948 0.0 0.29999999999999993 0.0
7.2 7.2 17.52089485261743 0.0 0.29999999999999993 0.09000000000000008

View File

@ -1,61 +0,0 @@
FUNCTION_BLOCK LarsenTrustFewRules
VAR_INPUT
WTV : REAL;
OW : REAL;
AC : REAL;
END_VAR
VAR_OUTPUT
trustworthiness : REAL;
END_VAR
FUZZIFY WTV
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for WTV
END_FUZZIFY
FUZZIFY OW
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for OW
END_FUZZIFY
FUZZIFY AC
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for AC
END_FUZZIFY
DEFUZZIFY trustworthiness
METHOD : COG;
DEFAULT := 0;
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for trustworthiness
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : PROD;
RULE 1 : IF WTV IS fully AND OW IS high AND AC IS high THEN trustworthiness IS fully;
RULE 2 : IF WTV IS satISfactory AND OW IS high THEN trustworthiness IS satISfactory;
RULE 3 : IF WTV IS nothing AND AC IS NOT low THEN trustworthiness IS nothing;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
AC WTV OW trustworthiness No1.1 No1.2 No1.3
-4.0 -4.0 -4.0 0.11818521788846277 1.7108835426513894E-53 5.900090541597062E-29 3.353500927277926E-4
-4.0 -4.0 -1.4 0.11818521788846277 8.468294957935359E-45 2.920345291727967E-20 3.353500927277926E-4
-4.0 -4.0 1.2000000000000002 0.11818521793462167 4.8589318352387055E-39 1.6756334986383216E-14 3.353500927277926E-4
-4.0 -4.0 3.8 0.11818527438861667 3.231877855741909E-36 1.1145336016681301E-11 3.353500927277926E-4
-4.0 -4.0 6.4 0.11818526065974372 2.491944545793228E-36 8.593629009975718E-12 3.353500927277926E-4
-4.0 -1.4 -4.0 2.1506070932800485E-4 8.468294957935359E-45 1.6110272932682781E-22 0.3751851960038979
-4.0 -1.4 -1.4 2.150607098365393E-4 4.1915196275405104E-36 7.974040292384671E-14 0.3751851960038979
-4.0 -1.4 1.2000000000000002 2.1575008953929393E-4 2.4050069414740774E-30 4.5753387694457995E-8 0.3751851960038979
-4.0 -1.4 3.8 6.083944903499572E-4 1.5996702445350932E-27 3.0432483008403587E-5 0.3751851960038979
-4.0 -1.4 6.4 5.209621778103196E-4 1.2334282788115618E-27 2.3465014283569664E-5 0.3751851960038979
-4.0 1.2000000000000002 -4.0 1.9445568147248457E-4 4.8589318352387055E-39 5.099368797562266E-19 0.4865889687690498
-4.0 1.2000000000000002 -1.4 1.9445819024731551E-4 2.4050069414740774E-30 2.524015106845201E-10 0.4865889687690498
-4.0 1.2000000000000002 1.2000000000000002 0.0016710434696031785 1.3799430522844653E-24 1.4482274668268805E-4 0.4865889687690498
-4.0 1.2000000000000002 3.8 0.577164026339291 9.178575753047099E-22 0.09632763823049303 0.4865889687690498
-4.0 1.2000000000000002 6.4 0.4714804883570884 7.077155389805126E-22 0.07427357821433386 0.4865889687690498
-4.0 3.8 -4.0 0.055944801306810045 3.231877855741909E-36 1.8711096935856773E-18 7.315569265179297E-4
-4.0 3.8 -1.4 0.05594773365732699 1.5996702445350932E-27 9.261360220567725E-10 7.315569265179297E-4
-4.0 3.8 1.2000000000000002 1.249613600101666 9.178575753047099E-22 5.313976217982533E-4 7.315569265179297E-4
-4.0 3.8 3.8 2.99167697165677 6.105052865403128E-19 0.35345468195878016 7.315569265179297E-4
-4.0 3.8 6.4 2.9898878656220282 4.707310693283687E-19 0.27253179303401254 7.315569265179297E-4
-4.0 6.4 -4.0 1.2742182863113973 2.491944545793228E-36 7.958869386330616E-21 1.2749797779309919E-9
-4.0 6.4 -1.4 1.2774731103630723 1.2334282788115618E-27 3.939371197099807E-12 1.2749797779309919E-9
-4.0 6.4 1.2000000000000002 2.9991668530542963 7.077155389805126E-22 2.2603294069810525E-6 1.2749797779309919E-9
-4.0 6.4 3.8 2.9999906324435406 4.707310693283687E-19 0.0015034391929775704 1.2749797779309919E-9
-4.0 6.4 6.4 3.000001373992968 3.629579374926471E-19 0.0011592291739045892 1.2749797779309919E-9
-1.4 -4.0 -4.0 0.1729219238763693 8.468294957935358E-45 5.900090541597062E-29 2.0955978040084196E-4
-1.4 -4.0 -1.4 0.1729219238763693 4.1915196275405104E-36 2.920345291727967E-20 2.0955978040084196E-4
-1.4 -4.0 1.2000000000000002 0.17292192394878977 2.4050069414740774E-30 1.6756334986383216E-14 2.0955978040084196E-4
-1.4 -4.0 3.8 0.17292201249142544 1.599670244535093E-27 1.1145336016681301E-11 2.0955978040084196E-4
-1.4 -4.0 6.4 0.17292199096003727 1.2334282788115618E-27 8.593629009975718E-12 2.0955978040084196E-4
-1.4 -1.4 -4.0 3.210329871719679E-4 4.1915196275405104E-36 1.6110272932682781E-22 0.23445267793035454
-1.4 -1.4 -1.4 3.210329878971802E-4 2.0746604688815383E-27 7.974040292384671E-14 0.23445267793035454
-1.4 -1.4 1.2000000000000002 3.2201609985845305E-4 1.1903971046867634E-21 4.5753387694457995E-8 0.23445267793035454
-1.4 -1.4 3.8 8.81942728137606E-4 7.917826741826336E-19 3.0432483008403587E-5 0.23445267793035454
-1.4 -1.4 6.4 7.572634780808301E-4 6.105052865403078E-19 2.3465014283569664E-5 0.23445267793035454
-1.4 1.2000000000000002 -4.0 2.5077535291380453E-4 2.4050069414740774E-30 5.099368797562266E-19 0.30406873190723693
-1.4 1.2000000000000002 -1.4 2.507788651150245E-4 1.1903971046867634E-21 2.524015106845201E-10 0.30406873190723693
-1.4 1.2000000000000002 1.2000000000000002 0.002317738374462926 6.830251446447845E-16 1.4482274668268805E-4 0.30406873190723693
-1.4 1.2000000000000002 3.8 0.7645424405498797 4.543084601193931E-13 0.09632763823049303 0.30406873190723693
-1.4 1.2000000000000002 6.4 0.6314390511205998 3.5029525861903424E-13 0.07427357821433386 0.30406873190723693
-1.4 3.8 -4.0 0.08760995430479933 1.599670244535093E-27 1.8711096935856773E-18 4.5714884890833034E-4
-1.4 3.8 -1.4 0.08761453230590201 7.917826741826336E-19 9.261360220567725E-10 4.5714884890833034E-4
-1.4 3.8 1.2000000000000002 1.7309481614646514 4.543084601193931E-13 5.313976217982533E-4 4.5714884890833034E-4
-1.4 3.8 3.8 2.9948330988875123 3.0217947106968236E-10 0.35345468195878016 4.5714884890833034E-4
-1.4 3.8 6.4 2.9937213386441157 2.3299596036556137E-10 0.27253179303401254 4.5714884890833034E-4
-1.4 6.4 -4.0 1.3098271374500312 1.2334282788115618E-27 7.958869386330616E-21 7.967329906051629E-10
-1.4 6.4 -1.4 1.3149726846911323 6.105052865403078E-19 3.939371197099807E-12 7.967329906051629E-10
-1.4 6.4 1.2000000000000002 2.9992438212950003 3.5029525861903424E-13 2.2603294069810525E-6 7.967329906051629E-10
-1.4 6.4 3.8 2.9999907907692545 2.3299596036556137E-10 0.0015034391929775704 7.967329906051629E-10
-1.4 6.4 6.4 3.0000015758372998 1.7965190472569094E-10 0.0011592291739045892 7.967329906051629E-10
1.2000000000000002 -4.0 -4.0 0.19541886391891883 4.8589318352387055E-39 5.900090541597062E-29 1.7217543698070374E-4
1.2000000000000002 -4.0 -1.4 0.19541886391891883 2.4050069414740774E-30 2.920345291727967E-20 1.7217543698070374E-4
1.2000000000000002 -4.0 1.2000000000000002 0.1954188640063562 1.3799430522844651E-24 1.6756334986383216E-14 1.7217543698070374E-4
1.2000000000000002 -4.0 3.8 0.1954189708912178 9.178575753047099E-22 1.1145336016681301E-11 1.7217543698070374E-4
1.2000000000000002 -4.0 6.4 0.19541894489996384 7.077155389805127E-22 8.593629009975718E-12 1.7217543698070374E-4
1.2000000000000002 -1.4 -4.0 3.658255907130346E-4 2.4050069414740774E-30 1.6110272932682781E-22 0.19262757479866496
1.2000000000000002 -1.4 -1.4 3.658255915603294E-4 1.1903971046867632E-21 7.974040292384671E-14 0.19262757479866496
1.2000000000000002 -1.4 1.2000000000000002 3.669742005721377E-4 6.830251446447845E-16 4.5753387694457995E-8 0.19262757479866496
1.2000000000000002 -1.4 3.8 0.0010211482726604514 4.5430846011939316E-13 3.0432483008403587E-5 0.19262757479866496
1.2000000000000002 -1.4 6.4 8.754846634126227E-4 3.5029525861903424E-13 2.3465014283569664E-5 0.19262757479866496
1.2000000000000002 1.2000000000000002 -4.0 3.0973878205314495E-4 1.3799430522844651E-24 5.099368797562266E-19 0.24982449727784992
1.2000000000000002 1.2000000000000002 -1.4 3.097428639046232E-4 6.830251446447845E-16 2.524015106845201E-10 0.24982449727784992
1.2000000000000002 1.2000000000000002 1.2000000000000002 0.0027118045499758743 3.919056476030223E-10 1.4482274668268805E-4 0.24982449727784992
1.2000000000000002 1.2000000000000002 3.8 0.8622400664125656 2.6067276244598225E-7 0.09632763823049303 0.24982449727784992
1.2000000000000002 1.2000000000000002 6.4 0.7162527173769472 2.009921468597709E-7 0.07427357821433386 0.24982449727784992
1.2000000000000002 3.8 -4.0 0.10592800851539386 9.178575753047099E-22 1.8711096935856773E-18 3.755959405734386E-4
1.2000000000000002 3.8 -1.4 0.1059335284221209 4.5430846011939316E-13 9.261360220567725E-10 3.755959405734386E-4
1.2000000000000002 3.8 1.2000000000000002 1.9191107387019437 2.6067276244598225E-7 5.313976217982533E-4 3.755959405734386E-4
1.2000000000000002 3.8 3.8 2.9968203623618237 1.7338430690350557E-4 0.35345468195878016 3.755959405734386E-4
1.2000000000000002 3.8 6.4 2.9958183639500877 1.3368824479140015E-4 0.27253179303401254 3.755959405734386E-4
1.2000000000000002 6.4 -4.0 1.3246718366863455 7.077155389805127E-22 7.958869386330616E-21 6.546000885856803E-10
1.2000000000000002 6.4 -1.4 1.3309026891174796 3.5029525861903424E-13 3.939371197099807E-12 6.546000885856803E-10
1.2000000000000002 6.4 1.2000000000000002 3.012855370211627 2.009921468597709E-7 2.2603294069810525E-6 6.546000885856803E-10
1.2000000000000002 6.4 3.8 3.090872642180729 1.3368824479140015E-4 0.0015034391929775704 6.546000885856803E-10
1.2000000000000002 6.4 6.4 3.0865277521955643 1.0308053314970442E-4 0.0011592291739045892 6.546000885856803E-10
3.8 -4.0 -4.0 0.11823171892053663 3.231877855741909E-36 5.900090541597062E-29 3.352171355399688E-4
3.8 -4.0 -1.4 0.11823171892053663 1.5996702445350932E-27 2.920345291727967E-20 3.352171355399688E-4
3.8 -4.0 1.2000000000000002 0.11823171896671306 9.178575753047099E-22 1.6756334986383216E-14 3.352171355399688E-4
3.8 -4.0 3.8 0.1182317754421317 6.105052865403128E-19 1.1145336016681301E-11 3.352171355399688E-4
3.8 -4.0 6.4 0.11823176170804936 4.707310693283687E-19 8.593629009975718E-12 3.352171355399688E-4
3.8 -1.4 -4.0 2.158401953449656E-4 1.5996702445350932E-27 1.6110272932682781E-22 0.37503644528142743
3.8 -1.4 -1.4 2.15840195853646E-4 7.917826741826335E-19 7.974040292384671E-14 0.37503644528142743
3.8 -1.4 1.2000000000000002 2.16529773403126E-4 4.5430846011939316E-13 4.5753387694457995E-8 0.37503644528142743
3.8 -1.4 3.8 6.09286845352862E-4 3.0217947106968236E-10 3.0432483008403587E-5 0.37503644528142743
3.8 -1.4 6.4 5.218294452864596E-4 2.3299596036556137E-10 2.3465014283569664E-5 0.37503644528142743
3.8 1.2000000000000002 -4.0 1.9344334783557006E-4 9.178575753047099E-22 5.099368797562266E-19 0.48639604948166454
3.8 1.2000000000000002 -1.4 1.9344585727809589E-4 4.5430846011939316E-13 2.524015106845201E-10 0.48639604948166454
3.8 1.2000000000000002 1.2000000000000002 0.001670845937881152 2.606727624459823E-7 1.4482274668268805E-4 0.48639604948166454
3.8 1.2000000000000002 3.8 0.5783338998811626 1.7338430690350557E-4 0.09632763823049303 0.48639604948166454
3.8 1.2000000000000002 6.4 0.4724026329155365 1.3368824479140015E-4 0.07427357821433386 0.48639604948166454
3.8 3.8 -4.0 0.05596441041914192 6.105052865403128E-19 1.8711096935856773E-18 7.312668841001935E-4
3.8 3.8 -1.4 0.0559673438691831 3.0217947106968236E-10 9.261360220567725E-10 7.312668841001935E-4
3.8 3.8 1.2000000000000002 1.4995949560697341 1.7338430690350557E-4 5.313976217982533E-4 7.312668841001935E-4
3.8 3.8 3.8 3.4872129273604524 0.11532512103806247 0.35345468195878016 7.312668841001935E-4
3.8 3.8 6.4 3.472382363106076 0.08892161745938626 0.27253179303401254 7.312668841001935E-4
3.8 6.4 -4.0 1.274247315431523 4.707310693283687E-19 7.958869386330616E-21 1.2744742831376938E-9
3.8 6.4 -1.4 1.5157226202419296 2.3299596036556137E-10 3.939371197099807E-12 1.2744742831376938E-9
3.8 6.4 1.2000000000000002 4.745343081506798 1.3368824479140015E-4 2.2603294069810525E-6 1.2744742831376938E-9
3.8 6.4 3.8 4.967707742115026 0.08892161745938626 0.0015034391929775704 1.2744742831376938E-9
3.8 6.4 6.4 4.968274483980691 0.06856315415427784 0.0011592291739045892 1.2744742831376938E-9
6.4 -4.0 -4.0 0.11814588747172593 2.4919445457932275E-36 5.900090541597062E-29 3.3546262747466025E-4
6.4 -4.0 -1.4 0.11814588747172593 1.2334282788115618E-27 2.920345291727967E-20 3.3546262747466025E-4
6.4 -4.0 1.2000000000000002 0.11814588751787 7.077155389805126E-22 1.6756334986383216E-14 3.3546262747466025E-4
6.4 -4.0 3.8 0.11814594395374475 4.707310693283687E-19 1.1145336016681301E-11 3.3546262747466025E-4
6.4 -4.0 6.4 0.11814593022927795 3.629579374926471E-19 8.593629009975718E-12 3.3546262747466025E-4
6.4 -1.4 -4.0 2.144013031828958E-4 1.2334282788115618E-27 1.6110272932682781E-22 0.3753110983727249
6.4 -1.4 -1.4 2.144013036913068E-4 6.105052865403078E-19 7.974040292384671E-14 0.3753110983727249
6.4 -1.4 1.2000000000000002 2.1509051602560476E-4 3.5029525861903424E-13 4.5753387694457995E-8 0.3753110983727249
6.4 -1.4 3.8 6.076396026685148E-4 2.3299596036556137E-10 3.0432483008403587E-5 0.3753110983727249
6.4 -1.4 6.4 5.202285129267842E-4 1.796519047256909E-10 2.3465014283569664E-5 0.3753110983727249
6.4 1.2000000000000002 -4.0 1.9531209836435727E-4 7.077155389805126E-22 5.099368797562266E-19 0.486752255339164
6.4 1.2000000000000002 -1.4 1.953146065743299E-4 3.5029525861903424E-13 2.524015106845201E-10 0.486752255339164
6.4 1.2000000000000002 1.2000000000000002 0.0016718500626351936 2.0099214685977092E-7 1.4482274668268805E-4 0.486752255339164
6.4 1.2000000000000002 3.8 0.577827786469533 1.3368824479140015E-4 0.09632763823049303 0.486752255339164
6.4 1.2000000000000002 6.4 0.47199161125427697 1.0308053314970442E-4 0.07427357821433386 0.486752255339164
6.4 3.8 -4.0 0.05592821574648544 4.707310693283687E-19 1.8711096935856773E-18 7.318024179471264E-4
6.4 3.8 -1.4 0.0559311471670107 2.3299596036556137E-10 9.261360220567725E-10 7.318024179471264E-4
6.4 3.8 1.2000000000000002 1.437132610774914 1.3368824479140015E-4 5.313976217982533E-4 7.318024179471264E-4
6.4 3.8 3.8 3.398268456240319 0.08892161745938626 0.35345468195878016 7.318024179471264E-4
6.4 3.8 6.4 3.3842499889485675 0.06856315415427784 0.27253179303401254 7.318024179471264E-4
6.4 6.4 -4.0 1.2741937338428944 3.629579374926471E-19 7.958869386330616E-21 1.2754076278993749E-9
6.4 6.4 -1.4 1.4591715092476663 1.796519047256909E-10 3.939371197099807E-12 1.2754076278993749E-9
6.4 6.4 1.2000000000000002 4.709551732065541 1.0308053314970442E-4 2.2603294069810525E-6 1.2754076278993749E-9
6.4 6.4 3.8 4.959747714315154 0.06856315415427784 0.0015034391929775704 1.2754076278993749E-9
6.4 6.4 6.4 4.9603435569236325 0.052865728738350284 0.0011592291739045892 1.2754076278993749E-9

View File

@ -1,86 +0,0 @@
FUNCTION_BLOCK LarsenTrustManyRules
VAR_INPUT
WTV : REAL;
OW : REAL;
AC : REAL;
END_VAR
VAR_OUTPUT
trustworthiness : REAL;
END_VAR
FUZZIFY WTV
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for WTV
END_FUZZIFY
FUZZIFY OW
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for OW
END_FUZZIFY
FUZZIFY AC
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for AC
END_FUZZIFY
DEFUZZIFY trustworthiness
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
METHOD : COG;
DEFAULT := 0;
RANGE := (-4.0 .. 9.0); // Added range for trustworthiness
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : PROD;
RULE 1 : IF WTV IS fully AND AC IS high THEN trustworthiness IS fully;
RULE 2 : IF WTV IS fully AND AC IS medium THEN trustworthiness IS fully WITH 0.8;
RULE 3 : IF WTV IS fully AND AC IS low THEN trustworthiness IS fully WITH 0.6;
RULE 4 : IF WTV IS largely AND AC IS high AND OW IS NOT high THEN trustworthiness IS fully;
RULE 5 : IF WTV IS largely AND AC IS medium AND OW IS NOT high THEN trustworthiness IS fully WITH 0.66;
RULE 6 : IF WTV IS largely AND AC IS low AND OW IS NOT high THEN trustworthiness IS largely WITH 0.33;
RULE 7 : IF WTV IS largely AND AC IS high AND OW IS high THEN trustworthiness IS largely WITH 0.66;
RULE 8 : IF WTV IS largely AND AC IS medium AND OW IS high THEN trustworthiness IS largely WITH 0.33;
RULE 9 : IF WTV IS largely AND AC IS low AND OW IS high THEN trustworthiness IS largely WITH 0.1;
RULE 10 : IF WTV IS satISfactory AND AC IS high THEN trustworthiness IS largely;
RULE 11 : IF WTV IS satISfactory AND AC IS medium THEN trustworthiness IS largely WITH 0.66;
RULE 12 : IF WTV IS satISfactory AND AC IS low THEN trustworthiness IS satISfactory WITH 0.33;
RULE 13 : IF WTV IS satISfactory AND AC IS high AND OW IS high THEN trustworthiness IS satISfactory;
RULE 14 : IF WTV IS satISfactory AND AC IS medium AND OW IS high THEN trustworthiness IS satISfactory WITH 0.66;
RULE 15 : IF WTV IS satISfactory AND AC IS low AND OW IS high THEN trustworthiness IS satISfactory WITH 0.33;
RULE 16 : IF WTV IS satISfactory AND AC IS high AND OW IS NOT high THEN trustworthiness IS satISfactory WITH 0.5;
RULE 17 : IF WTV IS satISfactory AND AC IS medium AND OW IS NOT high THEN trustworthiness IS satISfactory WITH 0.7;
RULE 18 : IF WTV IS satISfactory AND AC IS low AND OW IS NOT high THEN trustworthiness IS satISfactory WITH 0.9;
RULE 19 : IF WTV IS partially AND AC IS high AND OW IS high THEN trustworthiness IS satISfactory;
RULE 20 : IF WTV IS partially AND AC IS medium AND OW IS high THEN trustworthiness IS satISfactory WITH 0.33;
RULE 21 : IF WTV IS partially AND AC IS low AND OW IS high THEN trustworthiness IS partially WITH 0.66;
RULE 22 : IF WTV IS partially AND AC IS high AND OW IS NOT high THEN trustworthiness IS partially WITH 0.6;
RULE 23 : IF WTV IS partially AND AC IS medium AND OW IS NOT high THEN trustworthiness IS partially WITH 0.75;
RULE 24 : IF WTV IS partially AND AC IS low AND OW IS NOT high THEN trustworthiness IS partially WITH 0.9;
RULE 25 : IF WTV IS minimal AND AC IS high AND OW IS high THEN trustworthiness IS minimal WITH 0.5;
RULE 26 : IF WTV IS minimal AND AC IS medium AND OW IS high THEN trustworthiness IS minimal WITH 0.3;
RULE 27 : IF WTV IS minimal AND AC IS low AND OW IS high THEN trustworthiness IS minimal WITH 0.1;
RULE 28 : IF WTV IS minimal AND AC IS high AND OW IS NOT high THEN trustworthiness IS minimal WITH 0.4;
RULE 29 : IF WTV IS minimal AND AC IS medium AND OW IS NOT high THEN trustworthiness IS nothing WITH 0.8;
RULE 30 : IF WTV IS minimal AND AC IS low AND OW IS NOT high THEN trustworthiness IS nothing WITH 0.95;
RULE 31 : IF WTV IS nothing THEN trustworthiness IS nothing;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
AC WTV OW trustworthiness No1.1 No1.2 No1.3 No1.4 No1.5 No1.6 No1.7 No1.8 No1.9 No1.10 No1.11 No1.12 No1.13 No1.14 No1.15 No1.16 No1.17 No1.18 No1.19 No1.20 No1.21 No1.22 No1.23 No1.24 No1.25 No1.26 No1.27 No1.28 No1.29 No1.30 No1.31
-4.0 -4.0 -4.0 0.11814590917809341 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 3.263247861014401E-32 5.593061367045755E-24 1.4019569042462244E-18 5.549674102370404E-50 7.205980319737613E-42 1.0946977029531417E-36 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 1.5203100247718292E-46 2.6057436111642533E-38 6.531557597224785E-33 2.950045270798531E-29 1.0725370492109144E-20 6.913084216681886E-15 1.0112214926104486E-43 8.665942804123523E-36 8.688821773082804E-30 2.3546375147684775E-26 7.643454047279237E-18 4.5981801252569924E-12 1.2371887048697986E-41 1.927714808756546E-33 3.221340285992516E-28 3.8410720218034705E-24 1.9949776426683007E-15 1.1876452230674055E-9 3.3546262790251185E-4
-4.0 -4.0 -1.4 0.11814590917809335 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 3.2632478568524295E-32 5.593061359912321E-24 1.4019569024581579E-18 2.7469010045217157E-41 3.5667165699687486E-33 5.418383430128308E-28 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 7.525020491647316E-38 1.2897549677693489E-29 3.2329001296211116E-24 2.9500452670360205E-29 1.0725370478429922E-20 6.913084207864885E-15 5.005204418506582E-35 4.289348627445915E-27 4.3006729433710306E-21 2.354637511765355E-26 7.643454037530716E-18 4.598180119392439E-12 6.1236657027089455E-33 9.54153639822384E-25 1.5944545038634991E-19 3.8410720169045376E-24 1.9949776401238914E-15 1.1876452215526736E-9 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 0.11814590916090019 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 3.260859808336304E-32 5.5889683512084044E-24 1.4009309487925308E-18 1.5761147675439324E-35 2.0465079186755038E-27 3.1089559202835345E-22 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 4.317700529954529E-32 7.40034623697102E-24 1.8549709756204818E-18 2.947886420533554E-29 1.0717521640039629E-20 6.908025204930193E-15 2.8718823814904615E-29 2.4611391905763012E-21 2.4676368479482006E-15 2.352914385339583E-26 7.637860549118834E-18 4.594815165918881E-12 3.51363224581236E-27 5.474735491939222E-19 9.148648915921748E-14 3.838261116006821E-24 1.9935177132037836E-15 1.1867761014203929E-9 3.3546262790251185E-4
-4.0 -4.0 3.8 0.1181460537799926 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 1.6748546029090895E-32 2.8706261289136714E-24 7.19551218345717E-19 1.0483395503495055E-32 1.3612176190660418E-24 2.067896017880326E-19 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 2.8718823814904604E-29 4.9222783811525995E-21 1.2338184239740997E-15 1.5141040800533008E-29 5.5047722090685074E-21 3.5481248785707056E-15 1.9102085371358956E-26 1.6370061403693991E-18 1.6413280028047068E-12 1.2085123924869405E-26 3.922985546439693E-18 2.360005575977847E-12 2.3370630898969603E-24 3.64147450559438E-16 6.085147280085719E-11 1.9714215498859025E-24 1.0239177745097996E-15 6.095562314592623E-10 3.3546262790251185E-4
-4.0 -4.0 6.4 0.11814601829996314 6.639677199580735E-36 1.3794073625809013E-27 5.186434267821657E-22 2.0385147204726077E-32 3.493923359436503E-24 8.757869179712679E-19 8.083238727575837E-33 1.049569003804626E-24 1.5944545038635047E-19 5.900090541597062E-29 1.0112492178274336E-20 2.5347975461166915E-15 2.2143694644895412E-29 3.795330551554322E-21 9.513376523988862E-16 1.8428605385537604E-29 6.700019907127286E-21 4.318526982866742E-15 1.4728693217741423E-26 1.2622161805020003E-18 1.2655485593863692E-12 1.4709159217039924E-26 4.7747809097746906E-18 2.8724320897301255E-12 1.801996201588033E-24 2.807764692201803E-16 4.69196246015835E-11 2.399475060533044E-24 1.2462403914144866E-15 7.419087893523622E-10 3.3546262790251185E-4
-4.0 -1.4 -4.0 2.2276513238180657E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 1.1996648568848618E-24 2.0561720868973193E-16 5.154001474985931E-11 2.040221666063764E-42 2.6491280212793504E-34 4.024427254928865E-29 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 4.1512260309717424E-40 7.115016366695864E-32 1.7834501830940759E-26 8.055136466341391E-23 2.9285761754640694E-14 1.8876265161046184E-8 2.0508073272063395E-38 1.757496169703537E-30 1.7621361380510746E-24 4.775321631798379E-21 1.5501303799289166E-12 9.325337289210785E-7 1.8635835244683486E-37 2.90372644313013E-29 4.852320959649879E-24 5.785825968143316E-20 3.0050447857512655E-11 1.7889559304171615E-5 0.37531109885139957
-4.0 -1.4 -1.4 2.2276513237147659E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 1.1996648553548E-24 2.0561720842748616E-16 5.1540014684124785E-11 1.0098407294878434E-33 1.31122878362366E-25 1.9919553950865206E-20 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 2.0547165012090466E-31 3.5216924893873464E-23 8.82747528789679E-18 8.055136456067808E-23 2.928576171728941E-14 1.887626513697125E-8 1.0150802737727316E-29 8.69901169861433E-22 8.721977972812949E-16 4.775321625707896E-21 1.5501303779518685E-12 9.325337277317178E-7 9.224108228599837E-29 1.4372463925554774E-20 2.4017347816209506E-15 5.785825960764029E-20 3.005044781918608E-11 1.7889559281355136E-5 0.37531109885139957
-4.0 -1.4 1.2000000000000002 2.227592055727637E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 1.1987869392407475E-24 2.0546673751904932E-16 5.150229764239622E-11 5.794256451153972E-28 7.523558534129839E-20 1.142942650396433E-14 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 1.1789536700961867E-25 2.0206740359900258E-17 5.0650220515703585E-12 8.04924169799091E-23 2.926433036334989E-14 1.88624514645419E-8 5.8243198684705E-24 4.991312311093186E-16 5.004489882421863E-10 4.771827039877296E-21 1.5489959907673045E-12 9.318512984825663E-7 5.2926017983859147E-23 8.24662141146348E-15 1.3780655548945743E-9 5.781591886704606E-20 3.0028456867082085E-11 1.7876467681400117E-5 0.37531109885139957
-4.0 -1.4 3.8 2.205213367339609E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 6.157252814002589E-25 1.0553256849581265E-16 2.6452796298155085E-11 3.854001198198379E-25 5.004232009695965E-17 7.602187409607342E-12 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 7.841711694114211E-23 1.3440344281487465E-14 3.368957038787211E-9 4.1342806192842857E-23 1.5030851153063084E-14 9.688200509808339E-9 3.873997628687189E-21 3.3199296216349473E-13 3.328694572948063E-7 2.4509230545860653E-21 7.956009204664287E-13 4.786208326099791E-7 3.520329803231932E-20 5.485171232719416E-12 9.166087736247614E-7 2.969562125557771E-20 1.5423324570260876E-11 9.181775954736382E-6 0.37531109885139957
-4.0 -1.4 6.4 2.201881403936228E-4 3.286415676451725E-27 6.827599963572116E-19 2.567109570286311E-13 7.494173211939976E-25 1.2844678815363115E-16 3.219647517927228E-11 2.971633735559704E-25 3.8585210268050395E-17 5.8616786577536455E-12 1.6110272932682781E-22 2.7612289654375516E-14 6.9212972257169344E-9 6.04636423716113E-23 1.0363198771986802E-14 2.5976396672609644E-9 5.0319543477608255E-23 1.829449032980621E-14 1.1791793341243555E-8 2.9870520149985116E-21 2.5598369995178593E-13 2.5665952291273283E-7 2.9830904227992715E-21 9.683492436748578E-13 5.825434704037155E-7 2.714355877333537E-20 4.2293499773924074E-12 7.067526484648342E-7 3.614341266276486E-20 1.8772181251132902E-11 1.1175409143755692E-5 0.37531109885139957
-4.0 1.2000000000000002 -4.0 0.00178723841007199 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 5.1125681935973695E-20 8.76271397941174E-12 2.1964621085250285E-6 8.694738649668496E-38 1.1289692770970466E-29 1.7150755615549714E-24 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 1.3139834801321656E-36 2.2521091111292437E-28 5.645137269665221E-23 2.549684398781133E-19 9.269793275909962E-11 5.974885588777003E-5 4.821395204955692E-36 4.131828228290736E-28 4.1427366743671593E-22 1.1226658161514062E-18 3.6443165975159684E-10 2.1923627780305702E-4 3.254101391107074E-36 5.070349750317637E-28 8.472893314185803E-23 1.010293559930985E-18 5.247267047202497E-10 3.123790216733378E-4 0.48675225595997157
-4.0 1.2000000000000002 -1.4 0.0017872384081209817 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 5.1125681870767605E-20 8.762713968235707E-12 2.1964621057236437E-6 4.303601597186924E-29 5.588016132348108E-21 8.489044033871738E-16 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 6.503773870177941E-28 1.1147178492897619E-19 2.79415204400617E-14 2.549684395529246E-19 9.269793264087197E-11 5.974885581156589E-5 2.3864275788793028E-27 2.0451152448673072E-19 2.0505145567786678E-13 1.1226658147195497E-18 3.644316592867979E-10 2.192362775234414E-4 1.6106701429962517E-27 2.5096516598109887E-19 4.1937956583795287E-14 1.0102935586424489E-18 5.247267040510092E-10 3.1237902127492724E-4 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.0017861189694441 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 5.1088268038266034E-20 8.756301404125649E-12 2.1948547322410305E-6 2.46931724870551E-23 3.2062876430456223E-15 4.870837224236119E-10 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 3.731730420819674E-22 6.396019590870976E-14 1.6032264330137327E-8 2.547818533570723E-19 9.26300961876813E-11 5.9705131530506015E-5 1.3692825997566989E-21 1.1734446685405136E-13 1.1765426816192751E-7 1.1218442465915522E-18 3.641649677814739E-10 2.1907584016465437E-4 9.241690886710733E-22 1.4399860191204686E-13 2.4063128807164664E-8 1.009554224660048E-18 5.243427084484843E-10 3.121504219496698E-4 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.001033838093041385 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 2.6240140916146534E-20 4.4974431816010965E-12 1.127329222069875E-6 1.642445707308593E-20 2.132635398905322E-12 3.2397966256216773E-7 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 2.4821292661853207E-19 4.25425891565565E-11 1.0663726477946408E-5 1.308619765688473E-19 4.757700486578214E-11 3.0665965493370744E-5 9.107668645013996E-19 7.805069031202367E-11 7.82567520598637E-5 5.762056974505667E-19 1.8704372722427032E-10 1.1252252499415198E-4 6.14703336847797E-19 9.577946523188376E-11 1.6005388790954323E-5 5.185308904527474E-19 2.693147974352263E-10 1.603278281592718E-4 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.0012083363255090491 1.8856770853470695E-21 3.917535110203989E-13 1.4729541752583488E-7 3.193764606905627E-20 5.473970166878201E-12 1.3721055009890384E-6 1.2664103672165502E-20 1.644371906266769E-12 2.498050325866636E-7 5.099368797562266E-19 8.740090803000822E-11 2.190791382551568E-5 1.913849706861633E-19 3.2802530833352484E-11 8.222283211396053E-6 1.5927595453503165E-19 5.7907369754028814E-11 3.732444712941716E-5 7.022482351711457E-19 6.018110853814888E-11 6.0339992775594385E-5 7.013168750487189E-19 2.2765641307398573E-10 1.3695446947270103E-4 4.739679826752375E-19 7.38509085544615E-11 1.2340980408667952E-5 6.311191737907949E-19 3.27790948575019E-10 1.951397077909923E-4 0.48675225595997157
-4.0 3.8 -4.0 0.8165873579996601 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 2.5257338998274624E-18 4.32899531394206E-10 1.0851060752863316E-4 4.295413836261338E-36 5.5773847253494E-28 8.472893314185803E-23 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 4.821395204955692E-36 8.263656456581472E-28 2.0713683371835797E-22 9.355548467928386E-19 3.40136215768157E-10 2.1923627780305702E-4 1.3139834801321656E-36 1.1260545555646218E-28 1.1290274539330443E-22 3.0596212785373596E-19 9.931921367046388E-11 5.974885588777003E-5 6.586923219445831E-38 1.0263357064518605E-29 1.7150755615549714E-24 2.045027277438948E-20 1.0621471490196048E-11 6.323148494238718E-6 7.318024188804728E-4
-4.0 3.8 -1.4 0.8165873572508733 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 2.525733896606122E-18 4.328995308420826E-10 1.0851060739023788E-4 2.126084588755052E-27 2.760616825792088E-19 4.1937956583795287E-14 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 2.3864275788793028E-27 4.0902304897346143E-19 1.0252572783893339E-13 9.355548455996249E-19 3.4013621533434467E-10 2.192362775234414E-4 6.503773870177941E-28 5.573589246448809E-20 5.58830408801234E-14 3.059621274635095E-19 9.93192135437914E-11 5.974885581156589E-5 3.260304240293124E-29 5.080014665771007E-21 8.489044033871738E-16 2.0450272748307044E-20 1.0621471476649342E-11 6.323148486174125E-6 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 0.8161576884528161 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 2.52388556165012E-18 4.325827344699995E-10 1.084311992035695E-4 1.2199031970458169E-21 1.5839846210325154E-13 2.4063128807164664E-8 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 1.3692825997566989E-21 2.346889337081027E-13 5.8827134080963754E-8 9.348702054929602E-19 3.39887303262709E-10 2.1907584016465437E-4 3.731730420819674E-22 3.198009795435488E-14 3.2064528660274654E-8 3.057382240284868E-19 9.924653162965853E-11 5.9705131530506015E-5 1.870694885382962E-23 2.9148069482232926E-15 4.870837224236119E-10 2.0435307215306415E-20 1.0613698671667452E-11 6.318521198875693E-6 7.318024188804728E-4
-4.0 3.8 3.8 0.559162238902074 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 1.2963272261318683E-18 2.2218470788406172E-10 5.569282451848389E-5 8.114084046390922E-19 1.0535741175507215E-10 1.6005388790954323E-5 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 9.107668645013996E-19 1.5610138062404734E-10 3.912837602993185E-5 4.801714145421389E-19 1.7457414540931893E-10 1.1252252499415198E-4 2.4821292661853207E-19 2.127129457827825E-11 2.1327452955892816E-5 1.5703437188261674E-19 5.097536235619515E-11 3.0665965493370744E-5 1.2442770509913582E-20 1.9387594535502925E-12 3.2397966256216773E-7 1.0496056366458614E-20 5.451446280728601E-12 3.245341699898125E-6 7.318024188804728E-4
-4.0 3.8 6.4 0.6184838713554237 1.2542423359420818E-18 2.605715700709704E-10 9.797231455308489E-5 1.5777979344769873E-18 2.7042753257439066E-10 6.778537218002892E-5 6.256377371313136E-19 8.123599940990764E-11 1.2340980408667952E-5 1.8711096935856773E-18 3.2069986058140523E-10 8.038663519445424E-5 7.022482351711457E-19 1.2036221707629776E-10 3.0169996387797192E-5 5.844307292072658E-19 2.1247931886905333E-10 1.3695446947270103E-4 1.913849706861633E-19 1.6401265416676242E-11 1.6444566422792107E-5 1.9113114544203797E-19 6.204361045074517E-11 3.732444712941716E-5 9.594017933458713E-21 1.494883551151608E-12 2.498050325866636E-7 1.2775058427622509E-20 6.635115353791759E-12 3.950000684665413E-6 7.318024188804728E-4
-4.0 6.4 -4.0 4.646278997356486 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 1.4464564920358277E-19 2.479161948244792E-11 6.2142679688175035E-6 2.459930252298218E-37 3.1940990874431406E-29 4.852320959649875E-24 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 2.0508073272063356E-38 3.514992339407067E-30 8.810680690255358E-25 3.979434693165308E-21 1.4467883546003193E-12 9.325337289210768E-7 4.1512260309717424E-40 3.557508183347932E-32 3.5669003661881517E-26 9.666163759609668E-23 3.137760187997218E-14 1.8876265161046184E-8 1.5456224742907302E-42 2.4082982011630456E-34 4.024427254928865E-29 4.798659427539447E-25 2.492329802299781E-16 1.4837276973444345E-10 1.2754076295260396E-9
-4.0 6.4 -1.4 4.646278997429602 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 1.4464564901910059E-19 2.4791619450828498E-11 6.214267960891779E-6 1.2175822861751776E-28 1.580971031811024E-20 2.4017347816209482E-15 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 1.0150802737727296E-29 1.739802339722863E-21 4.360988986406466E-16 3.979434688089906E-21 1.4467883527550745E-12 9.325337277317161E-7 2.0547165012090466E-31 1.7608462446936732E-23 1.765495057579358E-17 9.666163747281368E-23 3.137760183995294E-14 1.887626513697125E-8 7.650308556726086E-34 1.1920261669305998E-25 1.9919553950865206E-20 4.7986594214192E-25 2.4923297991210444E-16 1.4837276954520768E-10 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 4.646320950372566 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 1.4453979716761504E-19 2.47734769153427E-11 6.209720352486351E-6 6.986234373869401E-23 9.07128355260982E-15 1.3780655548945733E-9 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 5.824319868470489E-24 9.982624622186351E-16 2.5022449412109274E-10 3.9765225332310725E-21 1.4457295913828148E-12 9.318512984825646E-7 1.1789536700961867E-25 1.0103370179950129E-17 1.0130044103140717E-11 9.659090037589091E-23 3.135463967501774E-14 1.88624514645419E-8 4.389588220571191E-28 6.839598667390763E-20 1.142942650396433E-14 4.79514775696299E-25 2.4905059093218097E-16 1.482641901826558E-10 1.2754076295260396E-9
-4.0 6.4 3.8 4.674615354560445 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 7.42390531389442E-20 1.2724242770465213E-11 3.1894590158557936E-6 4.646835340266146E-20 6.033688355991353E-12 9.166087736247606E-7 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 3.8739976286871815E-21 6.639859243269883E-13 1.6643472864740286E-7 2.0424358788217172E-21 7.425608591019987E-13 4.786208326099781E-7 7.841711694114211E-23 6.720172140743733E-15 6.737914077574422E-9 4.961136743141143E-23 1.6104483378281876E-14 9.688200509808339E-9 2.9196978774230145E-25 4.549301826996331E-17 7.602187409607342E-12 2.462901125601036E-25 1.2791826484340927E-16 7.615198934317372E-11 1.2754076295260396E-9
-4.0 6.4 6.4 4.668036613375079 9.670855421101112E-19 2.0091412231854673E-10 7.554170850100189E-5 9.035853165691208E-20 1.548704953218463E-11 3.881984228883553E-6 3.582949758080266E-20 4.652284975131645E-12 7.067526484648335E-7 7.958869386330616E-21 1.3641147343374442E-12 3.4192903393772813E-7 2.987052014998506E-21 5.119673999035709E-13 1.2832976145636618E-7 2.4859086856660552E-21 9.037926274298654E-13 5.825434704037144E-7 6.04636423716113E-23 5.181599385993401E-15 5.195279334521929E-9 6.03834521731299E-23 1.9601239639078084E-14 1.1791793341243555E-8 2.251237678454321E-25 3.507746388004581E-17 5.8616786577536455E-12 2.9976692847759905E-25 1.5569307654985593E-16 9.268682248578383E-11 1.2754076295260396E-9
-1.4 -4.0 -4.0 0.11817273181581425 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 1.615197336289554E-23 4.1620853300310446E-18 1.5684906231279692E-15 2.7469010045217157E-41 5.362341481533575E-36 1.2247331405417942E-33 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 7.525020491647316E-38 1.9390681678819735E-32 7.30741923281549E-30 1.4601726458639834E-20 7.981301161359156E-15 7.734266108978151E-12 5.005204418506583E-35 6.448774838846774E-30 9.720937523709348E-27 1.165465941836012E-17 5.6878882374485255E-12 5.14438239012539E-9 6.123665702708946E-33 1.4345119782311848E-27 3.6039924031760686E-25 1.9012007553066216E-15 1.484565720879158E-9 1.3287215821983548E-6 3.3546262790251185E-4
-1.4 -4.0 -1.4 0.1181727318157802 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 1.6151973342295188E-23 4.1620853247226886E-18 1.5684906211275042E-15 1.35962310388993E-32 2.6541776923299992E-27 6.062014871446861E-25 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 3.724630665920297E-29 9.597731686471509E-24 3.616925401530983E-21 1.460172644001668E-20 7.981301151179743E-15 7.734266099113808E-12 2.4774069236173352E-26 3.1919254637306383E-21 4.811535336347905E-18 1.1654659403495679E-17 5.687888230194149E-12 5.144382383564206E-9 3.031007435723418E-24 7.100349176032886E-19 1.7838543615280973E-16 1.901200752881816E-15 1.4845657189857315E-9 1.3287215805036932E-6 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 0.1181727125862054 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 1.614015330971888E-23 4.1590395059189404E-18 1.567342797895973E-15 7.801235096595546E-27 1.5229120560518244E-21 3.478258278776933E-19 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 2.137115748452726E-23 5.506979181656377E-18 2.07531670383234E-15 1.459104087989757E-20 7.97546042586346E-15 7.728606154331335E-12 1.42148465893067E-20 1.831460563014113E-15 2.76075908294257E-12 1.1646130510406536E-17 5.683725827078039E-12 5.14061771864865E-9 1.7391291393884594E-18 4.074032945724002E-13 1.0235385977594158E-10 1.899809451995111E-15 1.4834793120936317E-9 1.3277492205304832E-6 3.3546262790251185E-4
-1.4 -4.0 3.8 0.11830834715452056 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 8.289963890300767E-24 2.136180906140531E-18 8.050242738683686E-16 5.18892625191255E-24 1.0129522119452568E-18 2.313534391695759E-16 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 1.421484658930669E-20 3.662921126028225E-15 1.3803795414712844E-12 7.494303163986489E-21 4.096384815571646E-15 3.969594632238285E-12 9.454886273886531E-18 1.2181806697395527E-12 1.836295804870475E-9 5.9817276540282025E-18 2.9192958062222698E-12 2.640342656211106E-9 1.156767195847875E-15 2.7098089265953933E-10 6.807981343976337E-8 9.75786998628322E-16 7.619500071203864E-10 6.819633545206029E-7 3.3546262790251185E-4
-1.4 -4.0 6.4 0.1182752847199373 3.286415676451725E-27 1.026488137920661E-21 5.802513252660671E-19 1.0089958491448682E-23 2.6000085113038037E-18 9.798186838236948E-16 4.000929815154926E-24 7.810384093636201E-19 1.7838543615281037E-16 2.920345291727967E-20 7.525226809281491E-15 2.8358975732919886E-12 1.0960380004639336E-20 2.8243011428974462E-15 1.0643438344622332E-12 9.121536456320166E-21 4.985830252225502E-15 4.831510196808424E-12 7.290205055072579E-18 9.392801371979324E-13 1.4158787923498155E-9 7.280536385316572E-18 3.5531606529077706E-12 3.2136385823756416E-9 8.919271807640483E-16 2.089402470076037E-10 5.249304811394048E-8 1.187659010695383E-15 9.273917288588813E-10 8.300376251159203E-7 3.3546262790251185E-4
-1.4 -1.4 -4.0 0.007418611877106355 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 5.937935344814024E-16 1.5301036618904385E-10 5.766227878059916E-8 1.0098407294878434E-33 1.9713527442601284E-28 4.5024753569086456E-26 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 2.054716501209046E-31 5.294650514159714E-26 1.9953001982631742E-23 3.9870201461923353E-14 2.1793045235646366E-8 2.111851285521271E-5 1.0150802737727316E-29 1.3078435127867248E-24 1.971454329899019E-21 2.3636227182598888E-12 1.1535319372591488E-6 0.0010433062565141328 9.224108228599837E-29 2.1608125565335446E-23 5.4287117546670765E-21 2.863788192011557E-11 2.23620875904459E-5 0.02001459954688936 0.37531109885139957
-1.4 -1.4 -1.4 0.0074186118683926515 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 5.937935337240736E-16 1.5301036599389325E-10 5.7662278707056246E-8 4.998370107989373E-25 9.757529421703984E-20 2.2285730391707162E-17 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 1.017015182705546E-22 2.620672952619809E-17 9.876061220586747E-15 3.987020141107259E-14 2.1793045207851353E-8 2.1118512828278E-5 5.024304080316231E-21 6.473383108201995E-16 9.758032236262761E-13 2.363622715245306E-12 1.1535319357879253E-6 0.0010433062551834919 4.5656216367976534E-20 1.0695291421869102E-14 2.687028733053801E-12 2.8637881883590597E-11 2.236208756192512E-5 0.02001459952136259 0.37531109885139957
-1.4 -1.4 1.2000000000000002 0.007413612096729652 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 5.933589949365533E-16 1.5289839283295292E-10 5.762008138550935E-8 2.8679609960038995E-19 5.59866780454646E-14 1.2787089421152309E-11 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 5.835421974217454E-17 1.5036877320033714E-11 5.666678889887775E-9 3.9841024352052266E-14 2.177709703242815E-8 2.1103058276422107E-5 2.882841370905708E-15 3.714292832545341E-10 5.598956309101272E-7 2.361893013437345E-12 1.1526877797972067E-6 0.0010425427624719827 2.6196589075942415E-14 6.136736171214492E-9 1.5417613011934368E-6 2.8616924648854818E-11 2.2345722960655995E-5 0.019999952814528023 0.37531109885139957
-1.4 -1.4 3.8 0.0054776871495215654 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 3.0476319199813464E-16 7.853222526126541E-11 2.9595034500349723E-8 1.9076002603895674E-16 3.7239070463889225E-11 8.505225539469527E-9 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 3.88138210143395E-14 1.0001653136534946E-8 3.769144050757964E-6 2.0463290954753607E-14 1.118523130295779E-8 1.0839029080418265E-5 1.9174978172520684E-12 2.470530800244175E-7 3.724098942779651E-4 1.2131240279086476E-12 5.920476644763818E-7 5.354745824987259E-4 1.7424442038164422E-11 4.081798718484009E-6 0.0010254896296404022 1.4698328289584038E-11 1.1477291007821875E-5 0.01027244806530554 0.37531109885139957
-1.4 -1.4 6.4 0.005233305264013937 1.6266646214532314E-18 5.080769149993044E-13 2.87204783352526E-10 3.70936230564331E-16 9.55838775189788E-11 3.602098556917676E-8 1.4708582058526717E-16 2.8713244335032526E-11 6.557967639824969E-9 7.974040292384671E-14 2.0547728365038006E-8 7.743454713577994E-6 2.9927458244202245E-14 7.711790511582482E-9 2.906204497459005E-6 2.490647233982223E-14 1.3613873480937675E-8 1.3192500589415425E-5 1.478489732767084E-12 1.9049066913048246E-7 2.8714723955196336E-4 1.4765288785996385E-12 7.205985983262342E-7 6.517418389432737E-4 1.3435143665268997E-11 3.147277374818059E-6 7.907054051593438E-4 1.7889766987900377E-11 1.3969347924264409E-5 0.012502898197875595 0.37531109885139957
-1.4 1.2000000000000002 -4.0 0.8305314661887924 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 2.5305483615118886E-11 6.520787259702742E-6 0.002457372413405034 4.303601597186924E-29 8.401242464363133E-24 1.9188035866917437E-21 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 6.503773870177941E-28 1.6759105037339026E-22 6.315704032643393E-20 1.2620075534226006E-10 6.898131108199166E-5 0.06684622039290052 2.3864275788793028E-27 3.0747064132894483E-22 4.6348383521295645E-19 5.556816132340635E-10 2.711923873726697E-4 0.24527861373061138 1.6106701429962517E-27 3.7731086660810757E-22 9.479359653504757E-20 5.00061146554695E-10 3.9047619481873217E-4 0.3494854691128702 0.48675225595997157
-1.4 1.2000000000000002 -1.4 0.8305314655311689 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 2.530548358284408E-11 6.52078725138608E-6 0.0024573724102708826 2.1301372535235416E-20 4.158330910770536E-15 9.497428862556356E-13 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 3.219148124309352E-19 8.295190242304239E-14 3.1260599147830967E-11 1.2620075518130265E-10 6.898131099401237E-5 0.06684622030764434 1.1812009485101043E-18 1.5218756956677304E-13 2.2940882456183429E-10 5.556816125253429E-10 2.711923870267889E-4 0.24527861341778118 7.972272519317463E-19 1.8675611925754022E-13 4.691962460158335E-11 5.000611459169132E-10 3.9047619432071583E-4 0.34948546866713376 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 0.8301540655279064 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 2.52869650009984E-11 6.516015331813086E-6 0.002455574102328814 1.2222285319519553E-14 2.3859639448277177E-9 5.449427503696815E-7 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 1.8470803604801732E-13 4.759607943264227E-8 1.7936682784731988E-5 1.2610840132423605E-10 6.893083039168432E-5 0.06679730216712397 6.77748581153485E-13 8.732206782696757E-8 1.316300207403211E-4 5.552749640853714E-10 2.709939281276085E-4 0.2450991182477837 4.574324457960856E-13 1.0715678395634659E-7 2.6921506490565812E-5 4.996952005980582E-10 3.9019044339484856E-4 0.3492297148012098 0.48675225595997157
-1.4 1.2000000000000002 3.8 0.5246097735119669 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 1.2987982377301673E-11 3.3467793504073916E-6 0.0012612408474463339 8.129550816959362E-12 1.5870039546476752E-6 3.6246411089657584E-4 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 1.2285700473339503E-10 3.165813400033683E-5 0.01193043447883532 6.477225297556255E-11 3.5404502293755636E-5 0.034308671814258736 4.50798798061928E-10 5.8081542795239706E-5 0.08755260695288034 2.852023343969067E-10 1.3918888101985226E-4 0.12588869515850185 3.0425736400428474E-10 7.127443827250621E-5 0.01790661479114932 2.566552553512673E-10 2.0041102609204896E-4 0.17937262859695166 0.48675225595997157
-1.4 1.2000000000000002 6.4 0.6058000358988845 9.333463883457657E-13 2.9152398556059304E-7 1.6479214198328546E-4 1.5808054752562536E-11 4.0734634278875E-6 0.0015350932726428755 6.2683030492871925E-12 1.2236619159076206E-6 2.794785275036844E-4 2.524015106845201E-10 6.503952187730642E-5 0.02451028081073019 9.472908832676046E-11 2.44100544245415E-5 0.009198980424231515 7.883621117887982E-11 4.309185941959916E-5 0.0417580919631782 3.475891281239911E-10 4.4783865678187264E-5 0.0675075764322547 3.471281363596688E-10 1.6941087446769868E-4 0.1532228276866277 2.3459812300791656E-10 5.49562686572743E-5 0.013806923731089275 3.123826481483618E-10 2.439261450660007E-4 0.2183196936675221 0.48675225595997157
-1.4 3.8 -4.0 3.3715433443672422 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 1.2501528663867376E-9 3.2214286072545405E-4 0.12140021558657597 2.126084588755052E-27 4.1504195326891836E-22 9.479359653504757E-20 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 2.3864275788793028E-27 6.149412826578897E-22 2.3174191760647823E-19 4.6306801102838626E-10 2.5311289488115843E-4 0.24527861373061138 6.503773870177941E-28 8.379552518669513E-23 1.2631408065286786E-19 1.5144090641071207E-10 7.390854758784822E-5 0.06684622039290052 3.260304240293124E-29 7.637493149421029E-24 1.9188035866917437E-21 1.0122193446047554E-11 7.903984557215444E-6 0.007074253917378127 7.318024188804728E-4
-1.4 3.8 -1.4 3.3715433446766427 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 1.250152864792283E-9 3.221428603145906E-4 0.12140021543174122 1.0523399725499051E-18 2.0543173118329425E-13 4.691962460158335E-11 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 1.1812009485101043E-18 3.043751391335461E-13 1.1470441228091714E-10 4.6306801043778576E-10 2.531128945583363E-4 0.24527861341778118 3.219148124309352E-19 4.1475951211521194E-14 6.252119829566193E-11 1.5144090621756317E-10 7.390854749358469E-5 0.06684622030764434 1.6137403435784405E-20 3.7803008279732145E-15 9.497428862556356E-13 1.0122193433137632E-11 7.903984547134643E-6 0.00707425390835557 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 3.3717209664952366 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 1.2492380014951454E-9 3.219071158007501E-4 0.1213113746151571 6.038108284508329E-13 1.1787246235198127E-7 2.6921506490565812E-5 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 6.77748581153485E-13 1.7464413565393514E-7 6.581501037016055E-5 4.627291367378095E-10 2.5292766625243453E-4 0.2450991182477837 1.8470803604801732E-13 2.3798039716321134E-8 3.5873365569463976E-5 1.5133008158908326E-10 7.385446113394749E-5 0.06679730216712397 9.259307060242086E-15 2.1690581316615615E-9 5.449427503696815E-7 1.0114786000399361E-11 7.898200402197681E-6 0.007069076961249615 7.318024188804728E-4
-1.4 3.8 3.8 3.695158096533915 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 6.416381383781682E-10 1.653390965259404E-4 0.062308386775783216 4.016197204856559E-10 7.840188209975684E-5 0.01790661479114932 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 4.50798798061928E-10 1.1616308559047941E-4 0.04377630347644017 2.3766861199742226E-10 1.2990962228519542E-4 0.12588869515850185 1.2285700473339503E-10 1.5829067000168414E-5 0.02386086895767064 7.772670357067506E-11 3.793339531473818E-5 0.034308671814258736 6.158750618908607E-12 1.4427308678615227E-6 3.6246411089657584E-4 5.195192950920669E-12 4.056702242918051E-6 0.003630844863860658 7.318024188804728E-4
-1.4 3.8 6.4 3.5817607575739743 6.208075409403594E-10 1.9390473982737369E-4 0.10961011443164077 7.809566203709045E-10 2.0123906967945058E-4 0.07583736727398137 3.096695223704499E-10 6.0451895523001736E-5 0.013806923731089275 9.261360220567725E-10 2.386493008879494E-4 0.08993549170122418 3.475891281239911E-10 8.956773135637453E-5 0.03375378821612735 2.892734469663907E-10 1.581168161698521E-4 0.1532228276866277 9.472908832676046E-11 1.220502721227075E-5 0.01839796084846303 9.460345341465579E-11 4.6169849378141956E-5 0.0417580919631782 4.748714431278176E-12 1.1124199235523823E-6 2.794785275036844E-4 6.323221901025015E-12 4.937531427742425E-6 0.0044192079060931255 7.318024188804728E-4
-1.4 6.4 -4.0 4.925193537093825 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 7.159470480028886E-11 1.844872226211785E-5 0.006952439842603668 1.2175822861751776E-28 2.376893812186897E-23 5.428711754667073E-21 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 1.0150802737727296E-29 2.6156870255734456E-24 9.857271649495077E-22 1.9696855985499037E-12 1.076629808108537E-6 0.0010433062565141308 2.054716501209046E-31 2.647325257079857E-26 3.9906003965263484E-23 4.784424175430802E-14 2.3349691323906823E-8 2.111851285521271E-5 7.650308556726086E-34 1.7921388584182984E-28 4.5024753569086456E-26 2.37517413792561E-16 1.8546711053217436E-10 1.6599746921687634E-7 1.2754076295260396E-9
-1.4 6.4 -1.4 4.925193537180204 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 7.159470470897642E-11 1.844872223858821E-5 0.006952439833736473 6.026620560572897E-20 1.1764820564056003E-14 2.6870287330537986E-12 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 5.024304080316222E-21 1.2946766216403966E-15 4.879016118131372E-13 1.9696855960377517E-12 1.076629806735395E-6 0.00104330625518349 1.017015182705546E-22 1.3103364763099045E-17 1.9752122441173494E-14 4.784424169328711E-14 2.3349691294126452E-8 2.1118512828278E-5 3.7866440212040705E-25 8.870481292458167E-20 2.2285730391707162E-17 2.3751741348962944E-16 1.8546711029562818E-10 1.659974690051619E-7 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 4.9252431004421915 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 7.154231162213698E-11 1.843522144254118E-5 0.00694735203030973 3.457949758024396E-14 6.750409788335935E-9 1.5417613011934356E-6 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 2.8828413709057025E-15 7.428585665090668E-10 2.799478154550631E-7 1.9682441778644506E-12 1.0758419278107243E-6 0.0010425427624719808 5.835421974217454E-17 7.518438660016857E-12 1.133335777977555E-8 4.780922922246272E-14 2.3332603963315874E-8 2.1103058276422107E-5 2.1726977242453784E-19 5.089698004133145E-14 1.2787089421152309E-11 2.3734359797462134E-16 1.8533138525206415E-10 1.6587599186737539E-7 1.2754076295260396E-9
-1.4 6.4 3.8 4.959174675209296 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 3.674582072396006E-11 9.468765081453039E-6 0.003568324064790343 2.3000263490377015E-11 4.489978590332408E-6 0.0010254896296404013 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 1.917497817252065E-12 4.941061600488342E-7 1.8620494713898221E-4 1.0109366899238713E-12 5.525778201779553E-7 5.354745824987249E-4 3.88138210143395E-14 5.000826568267473E-9 7.538288101515928E-6 2.4555949145704328E-14 1.1984176396026203E-8 1.0839029080418265E-5 1.445151712416339E-16 3.3853700421717474E-11 8.505225539469527E-9 1.2190527679925385E-16 9.51905760742611E-11 8.519782659191586E-8 1.2754076295260396E-9
-1.4 6.4 6.4 4.951180653640331 4.786746389208764E-10 1.495105571387244E-4 0.08451505255262697 4.472441746975089E-11 1.1524712037518126E-5 0.004343112005577836 1.773438963815506E-11 3.4620051122998623E-6 7.907054051593432E-4 3.939371197099807E-12 1.0151081047880492E-6 3.8254562738851465E-4 1.478489732767081E-12 3.809813382609642E-7 1.435736197759814E-4 1.230440732166363E-12 6.725586917711508E-7 6.517418389432724E-4 2.9927458244202245E-14 3.855895255791241E-9 5.81240899491801E-6 2.988776680778667E-14 1.4586293015290367E-8 1.3192500589415425E-5 1.1142865195853572E-16 2.6102949395484113E-11 6.557967639824969E-9 1.483744922257324E-16 1.1585924547755007E-10 1.0369677663853915E-7 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 0.11818050759125757 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 9.267666981929868E-18 3.590390428160152E-15 2.0342226797878067E-15 1.5761147675439327E-35 4.625782030201833E-33 1.5883932581053113E-33 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 4.3177005299545283E-32 1.6727220221267184E-29 9.47721185891852E-30 8.378167493191608E-15 6.88500715909005E-12 1.003080241501317E-11 2.871882381490462E-29 5.562985287133164E-27 1.2607376345096912E-26 6.6872016100087846E-12 4.90661239855637E-9 6.6719042990671895E-9 3.51363224581236E-27 1.2374705627873112E-24 4.674126179793921E-25 1.0908695222623033E-9 1.2806490332526284E-6 1.7232589967551932E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 0.11818050759121598 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 9.267666970109815E-18 3.5903904235809405E-15 2.0342226771933438E-15 7.801235096595546E-27 2.2896056725263606E-24 7.862009472594772E-25 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 2.1371157484527262E-23 8.279408336613719E-21 4.6908993744712085E-21 8.37816748250603E-15 6.885007150308858E-12 1.003080240221981E-11 1.42148465893067E-20 2.7534895908281764E-18 6.24022494076511E-18 6.687201601479876E-12 4.906612392298438E-9 6.671904290557792E-9 1.7391291393884594E-18 6.125060804083309E-16 2.3135343916957497E-16 1.090869520871E-9 1.2806490316192789E-6 1.7232589945573354E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 0.11818048278971129 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 9.260884880815113E-18 3.5877629717600986E-15 2.0327340307101963E-15 4.4761867357382794E-21 1.3137282000264475E-18 4.511057810940104E-19 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 1.2262326474606731E-17 4.750552613429672E-15 2.6915406725602E-15 8.372036329954304E-15 6.879968694197018E-12 1.0023461849542553E-11 8.156183856243035E-15 1.5798951615798868E-12 3.580511516704023E-12 6.6823078996950386E-12 4.903021727734598E-9 6.667021783362593E-9 9.978761938431742E-13 3.514432726017046E-10 1.3274580022978815E-10 1.0900712213072289E-9 1.2797118511923573E-6 1.7219979116530102E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 0.11867108511327071 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 4.756609170989764E-18 1.8427597874761098E-15 1.0440602012761531E-15 2.977298155220469E-18 8.738153203420209E-16 3.000492359126224E-16 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 8.15618385624303E-15 3.159790323159772E-12 1.7902557583520104E-12 4.300075565070094E-15 3.533714392102414E-12 5.148286710416779E-12 5.42501744955155E-12 1.0508540478121313E-9 2.3815472773546576E-9 3.432191140277855E-12 2.5183077444378898E-9 3.4243398299472028E-9 6.637290011489407E-10 2.3375955226075254E-7 8.829475834462187E-8 5.598863213431508E-10 6.572902272239549E-7 8.844587924812857E-7 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 0.1185579769112599 1.8856770853470695E-21 8.85491981247484E-19 7.5254540156524905E-19 5.7894087031529375E-18 2.242877051261819E-15 1.2707563305282067E-15 2.295650463992774E-18 6.737566884491663E-16 2.313534391695758E-16 1.6756334986383216E-14 6.4915781785706195E-12 3.67796088550483E-12 6.288838496461632E-15 2.4363613394791046E-12 1.3803795414712834E-12 5.233748244960792E-15 4.3009875566122125E-12 6.266130938273308E-12 4.18296830748874E-12 8.102626800136402E-10 1.8362958048704736E-9 4.1774206255155405E-12 3.0651063076162783E-9 4.167864565152907E-9 5.117692988797076E-10 1.802406734673848E-7 6.807981343976333E-8 6.814540831585373E-10 8.000072373396021E-7 1.0765007690774416E-6 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 0.009526712319998756 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 3.4070640224298884E-10 1.3199319826783202E-7 7.478394421626833E-8 5.794256451153972E-28 1.7005720599836953E-25 5.83939575484603E-26 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 1.1789536700961867E-25 4.5673889454713485E-23 2.5877648590576898E-23 2.2876693847228997E-8 1.8799600395012153E-5 2.7389234707563228E-5 5.824319868470499E-24 1.1282009996190496E-21 2.556838434933545E-21 1.3561976441886338E-6 9.950853232702445E-4 0.001353095273679816 5.2926017983859147E-23 1.8640080884570515E-20 7.040659606463864E-21 1.643182209012029E-5 0.0192904803414535 0.025957536324927928 0.37531109885139957
1.2000000000000002 -1.4 -1.4 0.009526712308863065 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 3.407064018084493E-10 1.3199319809948686E-7 7.478394412088832E-8 2.8679609960039004E-19 8.417256605816809E-17 2.890303424832678E-17 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 5.835421974217454E-17 2.2607030702934155E-14 1.2808560934732036E-14 2.2876693818051885E-8 1.8799600371035E-5 2.738923467263079E-5 2.882841370905708E-15 5.584213418644324E-13 1.2655485593863655E-12 1.356197642458929E-6 9.950853220011052E-4 0.001353095271954068 2.6196589075942415E-14 9.226209676766952E-12 3.484888407632884E-12 1.6431822069163016E-5 0.01929048031685027 0.02595753629182149 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 0.00952032284755054 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 3.4045707247369935E-10 1.3189660532606383E-7 7.472921714499744E-8 1.6455764773105851E-13 4.8296470884084643E-11 1.6583960991178033E-11 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 3.3482439786780416E-11 1.2971444869167263E-8 7.3492863437692484E-9 2.285995262733561E-8 1.8785842801969098E-5 2.736919119935295E-5 1.6541145274954016E-9 3.204105724871138E-7 7.261454891200581E-7 1.3552051754721366E-6 9.94357117423683E-4 0.0013521050752855611 1.5031058940204516E-8 5.293807565715704E-6 1.9995566179747367E-6 1.6419797242968125E-5 0.019276363521278258 0.02593854053705717 0.37531109885139957
1.2000000000000002 -1.4 3.8 0.013932276471463806 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 1.7486679233120852E-10 6.774521123959297E-8 3.838269065941506E-8 1.0945414254177502E-10 3.212399351411952E-8 1.1030682896016145E-8 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 2.227056467808863E-8 8.627848023222818E-6 4.888316320405303E-6 1.1741411508184684E-8 9.648852491594016E-6 1.4057462924639676E-5 1.1002204380606938E-6 2.1311841142875764E-4 4.829895964611121E-4 6.960653813522175E-7 5.107252972957955E-4 6.944730966873904E-4 9.997783089873683E-6 0.0035211318092827396 0.001329988354244377 8.433595618221345E-6 0.009900795516699527 0.013322646959606351 0.37531109885139957
1.2000000000000002 -1.4 6.4 0.012110060243285276 9.333463883457657E-13 4.3828858558482145E-10 3.7248452456421565E-10 2.1283550803146582E-10 8.245468598502135E-8 4.6716699936018914E-8 8.439479017960519E-11 2.4769256141405325E-8 8.505225539469522E-9 4.5753387694457995E-8 1.7725337515297175E-5 1.0042719392773184E-5 1.7171754211781124E-8 6.652515900378115E-6 3.769144050757962E-6 1.4290816741338435E-8 1.174390171279294E-5 1.7109750932768785E-5 8.483267135001921E-7 1.643252890960804E-4 3.7240989427796486E-4 8.472016160885186E-7 6.216187571427892E-4 8.452635996644093E-4 7.708806505967179E-6 0.002714974265370836 0.0010254896296404018 1.0264776885346548E-5 0.012050548967131269 0.016215384843344116 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 1.0926330931063244 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 1.451976112716682E-5 0.005625106239984455 0.003187040217087467 2.46931724870551E-23 7.247266246815995E-21 2.4885541019827166E-21 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 3.7317304208196737E-22 1.4457111168872598E-19 8.191026578411558E-20 7.241137334134403E-5 0.05950618966018971 0.08669487440744374 1.369282599756699E-21 2.652371491767259E-19 6.011061305709238E-19 3.1883857307895197E-4 0.23394199652448516 0.31810921376290213 9.241690886710733E-22 3.254842744659578E-19 1.229406673695594E-19 2.8692470404372553E-4 0.336841242101857 0.45325821974498254 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 1.092633092476132 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 1.4519761108648204E-5 0.005625106232810152 0.003187040213022692 1.2222285319519553E-14 3.587151707685354E-12 1.2317501237817214E-12 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 1.847080360480173E-13 7.15578112511078E-11 4.054281156202036E-11 7.241137324899E-5 0.05950618958429506 0.08669487429687243 6.777485811534851E-13 1.3128341918290835E-10 2.975272067208725E-10 3.1883857267230275E-4 0.23394199622611378 0.31810921335718323 4.574324457960856E-13 1.6110370879340108E-10 6.085147280085695E-11 2.8692470367777954E-4 0.3368412416722471 0.4532582191668935 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 1.0922714722638802 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 1.4509135530852391E-5 0.0056209897736315744 0.003184707933347533 7.012893567522043E-9 2.058233176440133E-6 7.06752648464835E-7 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 1.0598163633130508E-7 4.1058386472733474E-5 2.3262623558498908E-5 7.235838252317838E-5 0.05946264288665802 0.08663143088864783 3.888780650192924E-7 7.532770033111198E-5 1.7071493420656191E-4 3.186052462399404E-4 0.23377079720555083 0.3178764206708023 2.6246524056970265E-7 9.24379634058157E-5 3.4915311745982646E-5 2.867147318512698E-4 0.3365947408661082 0.4529265242833957 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 0.8054731264826924 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 7.452234642518471E-6 0.002887073087657509 0.001635741201584985 4.66456747986791E-6 0.0013690165761634735 4.7009061075832786E-4 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 7.04927986621179E-5 0.027309642228640463 0.015472939422596201 3.7164974010285084E-5 0.03054141759951044 0.04449594870945409 2.5865899122206357E-4 0.050103589611712115 0.11354961012321334 1.6364317834571384E-4 0.12007020195241219 0.16326883632215672 1.745765587299132E-4 0.06148433793503919 0.023223627472975874 1.4726345705979498E-4 0.17288300760841918 0.2326337587517118 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 0.8716149285347994 5.35534780279311E-7 2.5148089102921975E-4 2.137238869842205E-4 9.070333623470007E-6 0.003513941435900026 0.0019909086511287677 3.596622152439896E-6 0.0010555824020422146 3.624641108965756E-4 1.4482274668268805E-4 0.05610583596532173 0.031788120616062704 5.4353584196157506E-5 0.02105714294812126 0.011930434478835314 4.523458124326528E-5 0.037172856230364135 0.05415732582880197 1.9943942536412276E-4 0.0386324522245617 0.0875526069528803 1.9917491786047828E-4 0.14614096874139038 0.19871929519079265 1.3460753245282897E-4 0.04740759626689432 0.01790661479114931 1.7923867808146237E-4 0.21042098539013884 0.2831453792290641 0.48675225595997157
1.2000000000000002 3.8 -4.0 3.693647578791539 3.562064783070342E-4 0.16727041053862637 0.142156655209273 7.173117601093138E-4 0.277894024734032 0.15744759212194132 1.2199031970458169E-21 3.580327019125536E-19 1.229406673695594E-19 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 1.369282599756699E-21 5.304742983534518E-19 3.005530652854619E-19 2.6569881089912663E-4 0.2183458634228528 0.31810921376290213 3.7317304208196737E-22 7.228555584436299E-20 1.6382053156823117E-19 8.689364800961283E-5 0.06375663177877469 0.08669487440744374 1.870694885382962E-23 6.5884238607418124E-21 2.4885541019827166E-21 5.807904450866728E-6 0.006818310593920552 0.00917481274616089 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 3.6936475787945096 3.562064783070342E-4 0.16727041053862637 0.142156655209273 7.173117591944488E-4 0.27789402437960387 0.15744759192113145 6.038108284508329E-13 1.772140796727412E-10 6.085147280085695E-11 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 6.777485811534851E-13 2.625668383658167E-10 1.4876360336043625E-10 2.656988105602523E-4 0.21834586314437285 0.31810921335718323 1.847080360480173E-13 3.57789056255539E-11 8.108562312404072E-11 8.6893647898788E-5 0.063756631697459 0.08669487429687243 9.259307060242086E-15 3.261047006986685E-12 1.2317501237817214E-12 5.807904443459282E-6 0.0068183105852244255 0.009174812734459263 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 3.6936492978253965 3.562064783070342E-4 0.16727041053862637 0.142156655209273 7.167868296281744E-4 0.2776906612145392 0.1573323715931796 3.464541175520075E-7 1.016817597463973E-4 3.4915311745982646E-5 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 3.888780650192924E-7 1.5065540066222397E-4 8.535746710328096E-5 2.65504371866617E-4 0.21818607739184742 0.3178764206708023 1.0598163633130508E-7 2.0529193236366737E-5 4.6525247116997817E-5 8.683005902781404E-5 0.06370997452141931 0.08663143088864783 5.312798157213669E-9 1.8711210694910295E-6 7.06752648464835E-7 5.8036542123409565E-6 0.006813320937735241 0.009168098596000472 7.318024188804728E-4
1.2000000000000002 3.8 3.8 3.81193579765399 3.562064783070342E-4 0.16727041053862637 0.142156655209273 3.681586426494874E-4 0.14262848127694583 0.08080962146112095 2.3044105752348544E-4 0.06763277172854311 0.023223627472975874 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 2.5865899122206357E-4 0.10020717922342423 0.05677480506160667 1.3636931528809488E-4 0.11206552182225137 0.16326883632215672 7.04927986621179E-5 0.013654821114320231 0.030945878845192402 4.45979688123421E-5 0.0327229474280469 0.04449594870945409 3.5337632423241746E-6 0.0012445605237849757 4.7009061075832786E-4 2.9808938570073884E-6 0.00349948253049395 0.004708951943956775 7.318024188804728E-4
1.2000000000000002 3.8 6.4 3.731632026441113 3.562064783070342E-4 0.16727041053862637 0.142156655209273 4.4809669520365586E-4 0.17359731294686453 0.09835576331114859 1.7768194283773425E-4 0.052148355893583756 0.01790661479114931 5.313976217982533E-4 0.20586895694154697 0.11664004504639745 1.9943942536412276E-4 0.0772649044491234 0.04377630347644015 1.6597909821706525E-4 0.13639823749196436 0.19871929519079265 5.4353584196157506E-5 0.01052857147406063 0.023860868957670627 5.428149749191833E-5 0.03982806024681872 0.05415732582880197 2.724713751848406E-6 9.596203654929223E-4 3.624641108965756E-4 3.628133449388003E-6 0.004259322952606092 0.005731403692643421 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 4.933287816296249 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 4.107955522530069E-5 0.015914646281699123 0.009016828407606536 6.986234373869401E-23 2.050408897302755E-20 7.040659606463858E-21 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 5.82431986847049E-24 2.2564019992380948E-21 1.2784192174667702E-21 1.1301647034905263E-6 9.287463017188931E-4 0.0013530952736798133 1.1789536700961867E-25 2.2836944727356742E-23 5.1755297181153795E-23 2.7452032616674797E-8 2.014242899465588E-5 2.7389234707563228E-5 4.389588220571191E-28 1.5459745999851774E-25 5.83939575484603E-26 1.3628256089719553E-10 1.5999175547616E-7 2.1528711213774217E-7 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 4.9332878163732525 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 4.107955517290751E-5 0.01591464626140146 0.009016828396106406 3.457949758024396E-14 1.014883064444364E-11 3.4848884076328814E-12 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 2.882841370905703E-15 1.1168426837288626E-12 6.327742796931816E-13 1.1301647020491055E-6 9.28746300534363E-4 0.0013530952719540653 5.835421974217454E-17 1.1303515351467077E-14 2.561712186946407E-14 2.745203258166226E-8 2.0142428968966073E-5 2.738923467263079E-5 2.172697724245379E-19 7.652051459833462E-17 2.890303424832678E-17 1.3628256072337973E-10 1.5999175527210532E-7 2.1528711186316333E-7 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 4.933332000115617 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 4.104949310742028E-5 0.01590299990505455 0.00901022987076722 1.984099780106995E-8 5.82318832228727E-6 1.9995566179747345E-6 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 1.6541145274953988E-9 6.408211449742263E-7 3.6307274456002836E-7 1.1293376462267786E-6 9.280666429287689E-4 0.0013521050752855588 3.3482439786780416E-11 6.485722434583632E-9 1.4698572687538497E-8 2.7431943152802727E-8 2.0127688716395463E-5 2.736919119935295E-5 1.246648846447413E-13 4.390588262189513E-11 1.6583960991178033E-11 1.3618282898947975E-10 1.598746731225016E-7 2.1512956450832594E-7 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 4.963633788809422 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 2.1083989045553344E-5 0.008168156301277103 0.004627866838600098 1.3197073678633252E-5 0.0038732449902110105 0.0013299883542443759 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 1.1002204380606921E-6 4.262368228575144E-4 2.414947982305556E-4 5.800544844601803E-7 4.7667694414274146E-4 6.944730966873891E-4 2.227056467808863E-8 4.313924011611409E-6 9.776632640810606E-6 1.4089693809821619E-8 1.033805624099359E-5 1.4057462924639676E-5 8.291980495589016E-11 2.920363046738138E-8 1.1030682896016145E-8 6.994671693248341E-11 8.2115407563143E-8 1.104956246255888E-7 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 4.956492273962312 2.7465356997214227E-4 0.12897411530382139 0.10961011443164072 2.5661942213366343E-5 0.009941702897883289 0.005632712629793214 1.017562458787667E-5 0.002986471691907917 0.0010254896296404009 2.2603294069810525E-6 8.756750844778135E-4 4.961349336825982E-4 8.483267135001907E-7 3.2865057819216016E-4 1.862049471389821E-4 7.060013467404309E-7 5.801775066666021E-4 8.452635996644076E-4 1.7171754211781124E-8 3.3262579501890577E-6 7.538288101515924E-6 1.714898008960612E-8 1.2582751835135294E-5 1.7109750932768785E-5 6.393544710576151E-11 2.251750558309575E-8 8.505225539469522E-9 8.513420321258633E-11 9.994507392123801E-8 1.3448746951278171E-7 1.2754076295260396E-9
3.8 -4.0 -4.0 0.11970229632077738 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 6.164311150872142E-15 3.590390428160152E-15 3.0583301040368564E-18 1.0483395503495055E-32 4.625782030201833E-33 2.3880526780968675E-36 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 2.8718823814904604E-29 1.6727220221267184E-29 1.4248411748849945E-32 5.572668008340651E-12 6.88500715909005E-12 1.5080701487744895E-14 1.9102085371358956E-26 5.562985287133164E-27 1.895442371783705E-29 4.447936199378126E-9 4.90661239855637E-9 1.0030802415013177E-11 2.3370630898969603E-24 1.2374705627873112E-24 7.02726449162472E-28 7.255827354758709E-7 1.2806490332526284E-6 2.59081511537297E-9 3.3546262790251185E-4
3.8 -4.0 -1.4 0.11970229631885221 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 6.164311143010132E-15 3.5903904235809405E-15 3.058330100136239E-18 5.18892625191255E-24 2.2896056725263606E-24 1.182005317665992E-27 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 1.421484658930669E-20 8.279408336613719E-21 7.052481969893997E-24 5.572668001233227E-12 6.885007150308858E-12 1.5080701468510853E-14 9.45488627388653E-18 2.7534895908281764E-18 9.381798748942423E-21 4.447936193705194E-9 4.906612392298438E-9 1.0030802402219815E-11 1.1567671958478748E-15 6.125060804083309E-16 3.478258278776919E-19 7.255827345504571E-7 1.2806490316192789E-6 2.5908151120686247E-9 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 0.11970119207651843 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 6.159800093061201E-15 3.5877629717600986E-15 3.0560920106689874E-18 2.977298155220469E-18 1.3137282000264475E-18 6.782101114754968E-22 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 8.15618385624303E-15 4.750552613429672E-15 4.0465677366202215E-18 5.568589916412529E-12 6.879968694197018E-12 1.5069665393917746E-14 5.42501744955155E-12 1.5798951615798868E-12 5.3830813451204035E-15 4.444681188908395E-9 4.903021727734598E-9 1.0023461849542559E-11 6.637290011489407E-10 3.514432726017046E-10 1.9957523876863485E-13 7.250517522749517E-7 1.2797118511923573E-6 2.588919150604668E-9 3.3546262790251185E-4
3.8 -4.0 3.8 0.11911580560142496 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 3.1638187917459184E-15 1.8427597874761098E-15 1.5696810264266224E-18 1.9803249570233076E-15 8.738153203420209E-16 4.511057810940104E-19 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 5.4250174495515465E-12 3.159790323159772E-12 2.6915406725602E-15 2.8601592835648775E-12 3.533714392102414E-12 7.740136017126168E-15 3.608404965688875E-9 1.0508540478121313E-9 3.580511516704023E-12 2.282893219964802E-9 2.5183077444378898E-9 5.148286710416783E-12 4.414737917231093E-7 2.3375955226075254E-7 1.3274580022978815E-10 3.724037020973835E-7 6.572902272239549E-7 1.3297300131899831E-9 3.3546262790251185E-4
3.8 -4.0 6.4 0.11913712480814402 1.2542423359420818E-18 8.85491981247484E-19 1.1314062512082418E-21 3.850776759176384E-15 2.242877051261819E-15 1.9105048720404694E-18 1.5269326985192003E-15 6.737566884491663E-16 3.4782582787769304E-19 1.1145336016681301E-11 6.4915781785706195E-12 5.529590545506461E-15 4.182968307488737E-12 2.4363613394791046E-12 2.075316703832339E-15 3.481183854596282E-12 4.3009875566122125E-12 9.420746840929425E-15 2.782266371015869E-9 8.102626800136402E-10 2.7607590829425684E-12 2.7785763767686046E-9 3.0651063076162783E-9 6.2661309382733115E-12 3.4039906719881664E-7 1.802406734673848E-7 1.0235385977594153E-10 4.532634817168175E-7 8.000072373396021E-7 1.6184534475015258E-9 3.3546262790251185E-4
3.8 -1.4 -4.0 0.0326090422973306 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 2.266180127765707E-7 1.3199319826783202E-7 1.1243311274018632E-10 3.854001198198379E-25 1.7005720599836953E-25 8.779176441142381E-29 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 7.841711694114211E-23 4.5673889454713485E-23 3.8905471113174165E-26 1.5216241504201794E-5 1.8799600395012153E-5 4.11780489250122E-8 3.873997628687189E-21 1.1282009996190496E-21 3.8440511131905296E-24 9.020635157865439E-4 9.950853232702445E-4 2.0342964662829508E-6 3.520329803231932E-20 1.8640080884570515E-20 1.058520359677183E-23 0.010929488978917025 0.0192904803414535 3.902557746403569E-5 0.37531109885139957
3.8 -1.4 -1.4 0.032609042259867264 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 2.2661801248754035E-7 1.3199319809948686E-7 1.1243311259678828E-10 1.9076002603895674E-16 8.417256605816809E-17 4.345395448490758E-20 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 3.88138210143395E-14 2.2607030702934155E-14 1.92568925149176E-17 1.5216241484794883E-5 1.8799600371035E-5 4.1178048872493396E-8 1.917497817252069E-12 5.584213418644324E-13 1.9026753047977673E-15 9.020635146360452E-4 9.950853220011052E-4 2.0342964636883936E-6 1.742444203816442E-11 9.226209676766952E-12 5.239317815188483E-15 0.01092948896497747 0.01929048031685027 3.902557741426216E-5 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.03258754652279105 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 2.264521731666589E-7 1.3189660532606383E-7 1.1235083391632079E-10 1.0945414254177502E-10 4.8296470884084643E-11 2.493297692894826E-14 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 2.227056467808863E-8 1.2971444869167263E-8 1.1049205129637537E-11 1.520510622186275E-5 1.8785842801969098E-5 4.11479147292041E-8 1.100220438060694E-6 3.204105724871138E-7 1.0917155881469651E-9 9.014033835237074E-4 9.94357117423683E-4 2.032807763208205E-6 9.997783089873683E-6 5.293807565715704E-6 3.0062117880409034E-9 0.010921490752445126 0.019276363521278258 3.8997018452049296E-5 0.37531109885139957
3.8 -1.4 3.8 0.024405332772771893 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 1.1631118381640927E-7 6.774521123959297E-8 5.770604146929881E-11 7.280250711370656E-8 3.212399351411952E-8 1.6583960991178033E-11 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 1.4813079758803949E-5 8.627848023222818E-6 7.3492863437692484E-9 7.80970162479982E-6 9.648852491594016E-6 2.1134540714732432E-8 7.318024188804728E-4 2.1311841142875764E-4 7.26145489120058E-7 4.6298206445826026E-4 5.107252972957955E-4 1.0440980720283263E-6 0.0066499417712218845 0.0035211318092827396 1.9995566179747367E-6 0.005609535561939517 0.009900795516699527 2.0029789593275692E-5 0.37531109885139957
3.8 -1.4 6.4 0.023725780630822733 6.208075409403594E-10 4.3828858558482145E-10 5.600078330074594E-13 1.415657573818755E-7 8.245468598502135E-8 7.023571765038373E-11 5.613448856049884E-8 2.4769256141405325E-8 1.2787089421152303E-11 3.0432483008403587E-5 1.7725337515297175E-5 1.509861793917114E-8 1.142164863866049E-5 6.652515900378115E-6 5.666678889887771E-9 9.505417184871548E-6 1.174390171279294E-5 2.5723470134409186E-8 5.64257415572674E-4 1.643252890960804E-4 5.598956309101268E-7 5.635090664429395E-4 6.216187571427892E-4 1.270802424132778E-6 0.0051274481482020086 0.002714974265370836 1.5417613011934358E-6 0.006827530460355418 0.012050548967131269 2.4378845102698046E-5 0.37531109885139957
3.8 1.2000000000000002 -4.0 1.090334644033002 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.009657697627537778 0.005625106239984455 4.7915211719650505E-6 1.642445707308593E-20 7.247266246815995E-21 3.741389770765924E-24 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 2.4821292661853207E-19 1.4457111168872598E-19 1.2314710388704924E-22 0.04816381911524652 0.05950618966018971 1.3034047201441925E-4 9.107668645013996E-19 2.652371491767259E-19 9.037265158394215E-22 0.21207280917526808 0.23394199652448516 4.782578596184279E-4 6.14703336847797E-19 3.254842744659578E-19 1.8483381773421468E-22 0.19084556620841372 0.336841242101857 6.81446172103848E-4 0.48675225595997157
3.8 1.2000000000000002 -1.4 1.0903346436015653 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.009657697615220277 0.005625106232810152 4.791521165853908E-6 8.129550816959362E-12 3.587151707685354E-12 1.851861412048417E-15 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 1.2285700473339503E-10 7.15578112511078E-11 6.095365189584572E-14 0.048163819053818016 0.05950618958429506 1.30340471848182E-4 4.5079879806192804E-10 1.3128341918290835E-10 4.473140635613002E-13 0.21207280890478883 0.23394199622611378 4.7825785900845416E-4 3.0425736400428474E-10 1.6110370879340108E-10 9.148648915921711E-14 0.19084556596500782 0.3368412416722471 6.814461712347263E-4 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 1.0900870551993387 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.00965063010105313 0.0056209897736315744 4.788014725181289E-6 4.66456747986791E-6 2.058233176440133E-6 1.0625596314427338E-9 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 7.04927986621179E-5 4.1058386472733474E-5 3.497393998933068E-8 0.04812857271591546 0.05946264288665802 1.3024508854172107E-4 2.586589912220635E-4 7.532770033111198E-5 2.56659522912733E-7 0.21191761378053484 0.23377079720555083 4.779078693599106E-4 1.745765587299132E-4 9.24379634058157E-5 5.249304811394053E-8 0.1907059049614298 0.3365947408661082 6.809474881467656E-4 0.48675225595997157
3.8 1.2000000000000002 3.8 1.0979575866323525 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.0049567915199545 0.002887073087657509 2.4592374320310954E-6 0.003102598031004964 0.0013690165761634735 7.06752648464835E-7 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 0.046887695219988486 0.027309642228640463 2.3262623558498908E-5 0.024719971505252274 0.03054141759951044 6.689695321851315E-5 0.1720448638230505 0.050103589611712115 1.7071493420656197E-4 0.1088458908814378 0.12007020195241219 2.4546476751857076E-4 0.11611813736487936 0.06148433793503919 3.4915311745982646E-5 0.09795105631651024 0.17288300760841918 3.4975071051701297E-4 0.48675225595997157
3.8 1.2000000000000002 6.4 1.0016548294649432 3.562064783070342E-4 2.5148089102921975E-4 3.213208681675866E-7 0.006033056518572022 0.003513941435900026 2.9932100957451026E-6 0.0023922631319173993 0.0010555824020422146 5.449427503696812E-7 0.09632763823049303 0.05610583596532173 4.779150640528706E-5 0.036152831754046405 0.02105714294812126 1.7936682784731978E-5 0.030087403238223315 0.037172856230364135 8.142224623787751E-5 0.13265546508012166 0.0386324522245617 1.3163002074032104E-4 0.1324795301271951 0.14614096874139038 2.9876237679071744E-4 0.08953307395574654 0.04740759626689432 2.6921506490565795E-5 0.11921910704381647 0.21042098539013884 4.2569186044347305E-4 0.48675225595997157
3.8 3.8 -4.0 4.1068411046761115 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.47711391552103427 0.277894024734032 2.3671288083607357E-4 8.114084046390922E-19 3.580327019125536E-19 1.8483381773421468E-22 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 9.107668645013996E-19 5.304742983534518E-19 4.518632579197107E-22 0.17672734097939008 0.2183458634228528 4.782578596184279E-4 2.4821292661853207E-19 7.228555584436299E-20 2.4629420777409848E-22 0.057796582938295815 0.06375663177877469 1.3034047201441925E-4 1.2442770509913582E-20 6.5884238607418124E-21 3.741389770765924E-24 0.0038630790510151116 0.006818310593920552 1.3793773070808478E-5 7.318024188804728E-4
3.8 3.8 -1.4 4.106841104577381 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.47711391491251953 0.27789402437960387 2.3671288053416813E-4 4.016197204856559E-10 1.772140796727412E-10 9.148648915921711E-14 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 4.5079879806192804E-10 2.625668383658167E-10 2.236570317806501E-13 0.17672734075399069 0.21834586314437285 4.7825785900845416E-4 1.2285700473339503E-10 3.57789056255539E-11 1.2190730379169143E-13 0.057796582864581614 0.063756631697459 1.30340471848182E-4 6.158750618908607E-12 3.261047006986685E-12 1.851861412048417E-15 0.003863079046088111 0.0068183105852244255 1.3793773053215793E-5 7.318024188804728E-4
3.8 3.8 1.2000000000000002 4.106784416185404 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.47676476240357446 0.2776906612145392 2.3653965377729756E-4 2.3044105752348544E-4 1.016817597463973E-4 5.249304811394053E-8 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 2.586589912220635E-4 1.5065540066222397E-4 1.283297614563665E-7 0.17659801148377904 0.21818607739184742 4.779078693599106E-4 7.04927986621179E-5 2.0529193236366737E-5 6.994787997866136E-8 0.05775428725909855 0.06370997452141931 1.3024508854172107E-4 3.5337632423241746E-6 1.8711210694910295E-6 1.0625596314427338E-9 0.003860252040421252 0.006813320937735241 1.3783678754309771E-5 7.318024188804728E-4
3.8 3.8 3.8 3.9856469641250407 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.24487764079127558 0.14262848127694583 1.2149235207433084E-4 0.15327594132164077 0.06763277172854311 3.4915311745982646E-5 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 0.1720448638230505 0.10020717922342423 8.535746710328098E-5 0.09070490906786484 0.11206552182225137 2.4546476751857076E-4 0.046887695219988486 0.013654821114320231 4.6525247116997817E-5 0.029663965806302726 0.0327229474280469 6.689695321851315E-5 0.0023504530537916393 0.0012445605237849757 7.06752648464835E-7 0.0019827166079818 0.00349948253049395 7.0796229103925475E-6 7.318024188804728E-4
3.8 3.8 6.4 4.071487676563545 0.23692775868212168 0.16727041053862637 2.137238869842205E-4 0.29804776760954116 0.17359731294686453 1.4787190941720644E-4 0.11818365762158545 0.052148355893583756 2.6921506490565795E-5 0.35345468195878016 0.20586895694154697 1.753612151934236E-4 0.13265546508012166 0.0772649044491234 6.581501037016052E-5 0.11039960843932925 0.13639823749196436 2.9876237679071744E-4 0.036152831754046405 0.01052857147406063 3.5873365569463956E-5 0.036104883885867974 0.03982806024681872 8.142224623787751E-5 0.001812320554482878 9.596203654929223E-4 5.449427503696812E-7 0.002413222607428809 0.004259322952606092 8.616816942296507E-6 7.318024188804728E-4
3.8 6.4 -4.0 4.985531166774085 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.027323722447292535 0.015914646281699123 1.3556253224349228E-5 4.646835340266146E-20 2.050408897302755E-20 1.058520359677182E-23 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 3.873997628687182E-21 2.2564019992380948E-21 1.922025556595262E-24 7.517195964887852E-4 9.287463017188931E-4 2.0342964662829474E-6 7.841711694114211E-23 2.2836944727356742E-23 7.781094222634833E-26 1.8259489805042153E-5 2.014242899465588E-5 4.11780489250122E-8 2.9196978774230145E-25 1.5459745999851774E-25 8.779176441142381E-29 9.064720511062828E-8 1.5999175547616E-7 3.2367108213083937E-10 1.2754076295260396E-9
3.8 6.4 -1.4 4.985531166781584 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.02732372241244365 0.01591464626140146 1.3556253207059478E-5 2.3000263490377015E-11 1.014883064444364E-11 5.239317815188479E-15 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 1.917497817252065E-12 1.1168426837288626E-12 9.51337652398882E-16 7.517195955300363E-4 9.28746300534363E-4 2.03429646368839E-6 3.88138210143395E-14 1.1303515351467077E-14 3.85137850298352E-17 1.825948978175386E-5 2.0142428968966073E-5 4.1178048872493396E-8 1.445151712416339E-16 7.652051459833462E-17 4.345395448490758E-20 9.064720499501614E-8 1.5999175527210532E-7 3.236710817180268E-10 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 4.9855354698108 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.027303726881112787 0.01590299990505455 1.3546332725448693E-5 1.3197073678633248E-5 5.82318832228727E-6 3.0062117880409013E-9 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 1.100220438060692E-6 6.408211449742263E-7 5.458577940734816E-10 7.511694862697548E-4 9.280666429287689E-4 2.0328077632082017E-6 2.227056467808863E-8 6.485722434583632E-9 2.2098410259275074E-11 1.8246127466235298E-5 2.0127688716395463E-5 4.11479147292041E-8 8.291980495589016E-11 4.390588262189513E-11 2.493297692894826E-14 9.058086926666357E-8 1.598746731225016E-7 3.2343421885001435E-10 1.2754076295260396E-9
3.8 6.4 3.8 4.954528678224563 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.01402383890484878 0.008168156301277103 6.957716385032604E-6 0.00877792313801288 0.0038732449902110105 1.999556617974735E-6 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 7.318024188804715E-4 4.262368228575144E-4 3.630727445600284E-7 3.858183870485495E-4 4.7667694414274146E-4 1.0440980720283247E-6 1.4813079758803949E-5 4.313924011611409E-6 1.4698572687538497E-8 9.371641949759784E-6 1.033805624099359E-5 2.1134540714732432E-8 5.515341448008072E-8 2.920363046738138E-8 1.6583960991178033E-11 4.652447352656371E-8 8.2115407563143E-8 1.6612345271464809E-10 1.2754076295260396E-9
3.8 6.4 6.4 4.963960087349446 0.18268352405273452 0.12897411530382139 1.6479214198328535E-4 0.017068826150888526 0.009941702897883289 8.468440930410894E-6 0.006768231555626646 0.002986471691907917 1.5417613011934347E-6 0.0015034391929775704 8.756750844778135E-4 7.459087043037473E-7 5.64257415572673E-4 3.2865057819216016E-4 2.799478154550629E-7 4.695908887024487E-4 5.801775066666021E-4 1.2708024241327757E-6 1.142164863866049E-5 3.3262579501890577E-6 1.1333357779775543E-8 1.1406500621845857E-5 1.2582751835135294E-5 2.5723470134409186E-8 4.2526127697347605E-8 2.251750558309575E-8 1.2787089421152303E-11 5.66263029527502E-8 9.994507392123801E-8 2.0219373262989252E-10 1.2754076295260396E-9
6.4 -4.0 -4.0 0.11935466136816546 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 4.75300188826657E-15 4.162085330031037E-18 5.330151209755528E-24 8.083238727575837E-33 5.362341481533565E-36 4.161971218972297E-42 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 2.2143694644895412E-29 1.9390681678819702E-32 2.4832567622436145E-38 4.296814504987859E-12 7.981301161359141E-15 2.6283107625551702E-20 1.4728693217741423E-26 6.448774838846762E-30 3.303434916214345E-35 3.4295882600835904E-9 5.687888237448516E-12 1.748198912754018E-17 1.801996201588033E-24 1.4345119782311823E-27 1.2247331405417894E-33 5.594617188203596E-7 1.4845657208791554E-9 4.515351793853226E-15 3.3546262790251185E-4
6.4 -4.0 -1.4 0.1193546613666681 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 4.753001882204555E-15 4.162085324722682E-18 5.3301512029574124E-24 4.000929815154925E-24 2.6541776923299946E-27 2.0600350058938336E-33 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 1.0960380004639338E-20 9.597731686471491E-24 1.229128119753698E-29 4.296814499507669E-12 7.981301151179729E-15 2.6283107592030028E-20 7.290205055072577E-18 3.1919254637306326E-21 1.6350885695874413E-26 3.4295882557094676E-9 5.687888230194139E-12 1.7481989105243518E-17 8.919271807640483E-16 7.100349176032873E-19 6.062014871446836E-25 5.594617181068179E-7 1.4845657189857288E-9 4.515351788094312E-15 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 0.11935380279200354 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 4.749523629987793E-15 4.1590395059189335E-18 5.32625059220723E-24 2.295650463992774E-18 1.522912056051822E-21 1.182005317665992E-27 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 6.288838496461633E-15 5.5069791816563666E-18 7.052481969893996E-24 4.293670085739628E-12 7.975460425863445E-15 2.626387358381563E-20 4.18296830748874E-12 1.83146056301411E-15 9.381798748942423E-21 3.4270784790990973E-9 5.683725827078029E-12 1.7469195765609804E-17 5.117692988797076E-10 4.074032945723995E-13 3.478258278776919E-19 5.590523033812558E-7 1.483479312093629E-9 4.512047448488388E-15 3.3546262790251185E-4
6.4 -4.0 3.8 0.11889919346002248 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 2.4394674965708124E-15 2.1361809061405274E-18 2.735688083799253E-24 1.5269326985192E-15 1.0129522119452551E-18 7.862009472594772E-25 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 4.182968307488738E-12 3.662921126028218E-15 4.6908993744712085E-21 2.2053303512434904E-12 4.096384815571639E-15 1.348974569517568E-20 2.782266371015869E-9 1.218180669739551E-12 6.2402249407651105E-18 1.7602284374740693E-9 2.919295806222265E-12 8.972591481042304E-18 3.4039906719881664E-7 2.7098089265953887E-10 2.31353439169575E-16 2.871424650613063E-7 7.61950007120385E-10 2.317494121742264E-15 3.3546262790251185E-4
6.4 -4.0 6.4 0.11891526867249601 9.670855421101112E-19 1.0264881379206591E-21 1.971849405871035E-27 2.9691475267384674E-15 2.6000085113037995E-18 3.329686302178065E-24 1.1773438786085476E-15 7.810384093636188E-19 6.062014871446857E-25 8.593629009975718E-12 7.525226809281477E-15 9.637139462702292E-21 3.22528434685525E-12 2.824301142897441E-15 3.616925401530981E-21 2.684172331560234E-12 4.9858302522254925E-15 1.6418765621376298E-20 2.1452708974997186E-9 9.392801371979307E-13 4.811535336347902E-18 2.1424257215837593E-9 3.553160652907765E-12 1.0920804577974859E-17 2.624652405697022E-7 2.0894024700760334E-10 1.7838543615280966E-16 3.4948952636459783E-7 9.273917288588796E-10 2.8206901504015346E-15 3.3546262790251185E-4
6.4 -1.4 -4.0 0.025465288479923753 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 1.7473417812302764E-7 1.5301036618904356E-10 1.9595186637886281E-16 2.971633735559704E-25 1.9713527442601248E-28 1.5300617113452173E-34 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 6.04636423716113E-23 5.294650514159705E-26 6.780564453989853E-32 1.1732507141784832E-5 2.179304523564633E-8 7.176636263146204E-14 2.9870520149985116E-21 1.3078435127867228E-24 6.699529806900028E-30 6.955375043427548E-4 1.1535319372591467E-6 3.545434077389833E-12 2.714355877333536E-20 2.1608125565335405E-23 1.8448216457199674E-29 0.008427199809216569 2.2362087590445863E-5 6.801496956027448E-11 0.37531109885139957
6.4 -1.4 -1.4 0.025465288450525914 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 1.7473417790017033E-7 1.53010365993893E-10 1.9595186612894428E-16 1.4708582058526717E-16 9.757529421703967E-20 7.573288042408141E-26 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 2.9927458244202245E-14 2.6206729526198044E-17 3.356150102928302E-23 1.1732507126821102E-5 2.1793045207851314E-8 7.176636253993066E-14 1.478489732767084E-12 6.473383108201983E-16 3.3160406930087126E-21 6.955375034556609E-4 1.1535319357879233E-6 3.54543407286796E-12 1.3435143665268995E-11 1.0695291421869083E-14 9.131243273595307E-21 0.008427199798468453 2.2362087561925084E-5 6.801496947352766E-11 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.025448420502541532 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 1.746063072288161E-7 1.5289839283295264E-10 1.9580846832906261E-16 8.439479017960519E-11 5.59866780454645E-14 4.345395448490757E-20 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 1.7171754211781124E-8 1.503687732003369E-11 1.92568925149176E-17 1.1723921264678942E-5 2.1777097032428112E-8 7.171384383369408E-14 8.483267135001922E-7 3.714292832545334E-10 1.9026753047977673E-15 6.950285083146547E-4 1.1526877797972046E-6 3.542839520156018E-12 7.708806505967179E-6 6.136736171214481E-9 5.239317815188483E-15 0.008421032764011795 2.2345722960655958E-5 6.796519604103019E-11 0.37531109885139957
6.4 -1.4 3.8 0.019202095652600698 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 8.968192272833243E-8 7.853222526126527E-11 1.0057185335938444E-16 5.613448856049884E-8 3.7239070463889154E-11 2.890303424832678E-17 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 1.142164863866049E-5 1.0001653136534931E-8 1.2808560934732036E-14 6.021682822454587E-6 1.118523130295777E-8 3.683392371855649E-14 5.64257415572674E-4 2.470530800244171E-7 1.2655485593863651E-12 3.569830549991504E-4 5.920476644763808E-7 1.8196860418629714E-12 0.005127448148202008 4.0817987184840025E-6 3.4848884076328846E-12 0.0043252412906549615 1.1477291007821856E-5 3.490852968776208E-11 0.37531109885139957
6.4 -1.4 6.4 0.018511420634402802 4.786746389208764E-10 5.080769149993035E-13 9.759987728719389E-19 1.0915450172477799E-7 9.558387751897864E-11 1.2240895608622924E-16 4.3282586422844775E-8 2.8713244335032474E-11 2.2285730391707147E-17 2.3465014283569664E-5 2.054772836503797E-8 2.6314332964869414E-14 8.806680295330312E-6 7.711790511582468E-9 9.876061220586741E-15 7.329166994119676E-6 1.3613873480937652E-8 4.4831650211680016E-14 4.350715750787321E-4 1.904906691304821E-7 9.758032236262753E-13 4.3449455929551556E-4 7.20598598326233E-7 2.2147933178994578E-12 0.003953527025796716 3.147277374818054E-6 2.6870287330537994E-12 0.005264378188579195 1.3969347924264385E-5 4.248819659626339E-11 0.37531109885139957
6.4 1.2000000000000002 -4.0 0.8940778107712544 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.007446583070924341 6.52078725970273E-6 8.350809592989233E-12 1.2664103672165502E-20 8.401242464363119E-24 6.520608480586249E-30 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 1.913849706861633E-19 1.6759105037338995E-22 2.1462453771587204E-28 0.03713678910716693 6.898131108199154E-5 2.271613596160681E-10 7.022482351711458E-19 3.074706413289443E-22 1.5750422020603399E-27 0.1635190758204075 2.711923873726693E-4 8.335224198510952E-10 4.739679826752375E-19 3.773108666081069E-22 3.2213402859925036E-28 0.14715177646857686 3.904761948187315E-4 1.1876452230674007E-9 0.48675225595997157
6.4 1.2000000000000002 -1.4 0.8940778103684599 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.007446583061426912 6.520787251386068E-6 8.350809582338546E-12 6.268303049287191E-12 4.158330910770529E-15 3.227480687156881E-21 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 9.472908832676046E-11 8.295190242304224E-14 1.0623188810220862E-19 0.03713678905980239 6.898131099401225E-5 2.2716135932634478E-10 3.4758912812399117E-10 1.5218756956677276E-13 7.795926260166689E-19 0.16351907561185405 2.711923870267884E-4 8.335224187880144E-10 2.3459812300791656E-10 1.867561192575399E-13 1.5944545038634926E-19 0.14715177628089834 3.904761943207152E-4 1.1876452215526688E-9 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 0.8938466693824656 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.007441133643420644 6.516015331813075E-6 8.344698450329473E-12 3.596622152439896E-6 2.3859639448277136E-9 1.851861412048417E-15 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 5.4353584196157506E-5 4.759607943264218E-8 6.095365189584572E-14 0.03710961231506885 6.893083039168419E-5 2.269951223836249E-10 1.9943942536412276E-4 8.732206782696741E-8 4.4731406356130015E-13 0.16339941216518905 2.7099392812760794E-4 8.329124461280571E-10 1.3460753245282897E-4 1.071567839563464E-7 9.148648915921711E-14 0.14704409044261457 3.9019044339484786E-4 1.1867761014203881E-9 0.48675225595997157
6.4 1.2000000000000002 3.8 0.9239885008569845 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.0038219419619585854 3.3467793504073853E-6 4.286034184509552E-12 0.002392263131917399 1.5870039546476725E-6 1.2317501237817214E-12 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 0.036152831754046405 3.1658134000336774E-5 4.054281156202036E-11 0.019060373230143732 3.540450229375557E-5 1.165900553560126E-10 0.13265546508012166 5.80815427952396E-5 2.975272067208725E-10 0.08392579677233453 1.39188881019852E-4 4.278035015953601E-10 0.08953307395574654 7.127443827250609E-5 6.085147280085695E-11 0.07552531730397961 2.004110260920486E-4 6.095562314592598E-10 0.48675225595997157
6.4 1.2000000000000002 6.4 0.8134855356983868 2.7465356997214227E-4 2.915239855605925E-7 5.600078330074594E-13 0.004651797795887498 4.073463427887494E-6 5.216658068345637E-12 0.0018445582815243158 1.2236619159076185E-6 9.497428862556352E-13 0.07427357821433386 6.503952187730632E-5 8.329249852589164E-11 0.027875698255246998 2.441005442454146E-5 3.1260599147830954E-11 0.023198939979543434 4.309185941959908E-5 1.419051801219837E-10 0.10228420671553738 4.478386567818718E-5 2.2940882456183416E-10 0.10214855179108508 1.694108744676984E-4 5.206922045395033E-10 0.06903461865544633 5.49562686572742E-5 4.6919624601583315E-11 0.09192408154421979 2.4392614506600028E-4 7.419087893523592E-10 0.48675225595997157
6.4 3.8 -4.0 4.202179093168432 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.3678794411714421 3.221428607254535E-4 4.125504459076234E-10 6.256377371313136E-19 4.150419532689176E-22 3.2213402859925036E-28 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 7.022482351711458E-19 6.149412826578886E-22 7.875211010301699E-28 0.13626589651700627 2.5311289488115794E-4 8.335224198510952E-10 1.913849706861633E-19 8.379552518669497E-23 4.292490754317441E-28 0.044564146928600314 7.390854758784808E-5 2.271613596160681E-10 9.594017933458713E-21 7.637493149421016E-24 6.520608480586249E-30 0.0029786332283697364 7.90398455721543E-6 2.404020943436294E-11 7.318024188804728E-4
6.4 3.8 -1.4 4.202179092993034 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.3678794407022459 3.2214286031459E-4 4.125504453814534E-10 3.096695223704499E-10 2.0543173118329388E-13 1.5944545038634926E-19 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 3.4758912812399117E-10 3.0437513913354553E-13 3.8979631300833443E-19 0.1362658963432117 2.531128945583358E-4 8.335224187880144E-10 9.472908832676046E-11 4.147595121152112E-14 2.1246377620441723E-19 0.04456414687176286 7.390854749358455E-5 2.2716135932634478E-10 4.748714431278175E-12 3.780300827973208E-15 3.227480687156881E-21 0.002978633224570765 7.903984547134629E-6 2.4040209403701872E-11 7.318024188804728E-4
6.4 3.8 1.2000000000000002 4.2020783959872565 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.36761022610653643 3.219071158007495E-4 4.12248540493398E-10 1.7768194283773425E-4 1.1787246235198105E-7 9.148648915921711E-14 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 1.9943942536412276E-4 1.7464413565393482E-7 2.2365703178065008E-13 0.13616617680432422 2.529276662524341E-4 8.329124461280571E-10 5.4353584196157506E-5 2.379803971632109E-8 1.2190730379169143E-13 0.044531534778082624 7.385446113394735E-5 2.269951223836249E-10 2.724713751848406E-6 2.169058131661558E-9 1.851861412048417E-15 0.002976453457368258 7.898200402197667E-6 2.402261675094848E-11 7.318024188804728E-4
6.4 3.8 3.8 4.009455959725444 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.18881329325994903 1.653390965259401E-4 2.1174058566479553E-10 0.11818365762158545 7.84018820997567E-5 6.085147280085695E-11 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 0.13265546508012166 1.161630855904792E-4 1.4876360336043625E-10 0.06993816397694544 1.299096222851952E-4 4.278035015953601E-10 0.036152831754046405 1.5829067000168387E-5 8.108562312404072E-11 0.02287244787617248 3.7933395314738115E-5 1.165900553560126E-10 0.0018123205544828779 1.4427308678615202E-6 1.2317501237817214E-12 0.0015287767847834343 4.056702242918043E-6 1.2338583258436589E-11 7.318024188804728E-4
6.4 3.8 6.4 4.108689179278561 0.18268352405273452 1.9390473982737336E-4 3.7248452456421565E-10 0.22981020386054946 2.0123906967945023E-4 2.5771568472239847E-10 0.09112569662518916 6.045189552300163E-5 4.6919624601583315E-11 0.27253179303401254 2.3864930088794895E-4 3.0562488727873496E-10 0.10228420671553738 8.956773135637437E-5 1.1470441228091708E-10 0.08512379315923757 1.581168161698518E-4 5.206922045395033E-10 0.027875698255246998 1.220502721227073E-5 6.252119829566191E-11 0.02783872797545212 4.6169849378141874E-5 1.419051801219837E-10 0.001397392637518421 1.1124199235523804E-6 9.497428862556352E-13 0.0018607191183549995 4.937531427742416E-6 1.501765201493441E-11 7.318024188804728E-4
6.4 6.4 -4.0 4.986972414105274 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.021067999523041402 1.844872226211782E-5 2.3626252584095325E-11 3.582949758080266E-20 2.376893812186893E-23 1.844821645719966E-29 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 2.987052014998506E-21 2.6156870255734405E-24 3.349764903450008E-30 5.796145869522946E-4 1.076629808108535E-6 3.5454340773898267E-12 6.04636423716113E-23 2.6473252570798523E-26 1.3561128907979706E-31 1.4079008570141797E-5 2.3349691323906783E-8 7.176636263146204E-14 2.251237678454321E-25 1.792138858418295E-28 1.5300617113452173E-34 6.989367124921106E-8 1.8546711053217402E-10 5.641038577573323E-16 1.2754076295260396E-9
6.4 6.4 -1.4 4.9869724141112926 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.021067999496171115 1.844872223858818E-5 2.362625255396222E-11 1.773438963815506E-11 1.1764820564055982E-14 9.1312432735953E-21 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 1.4784897327670813E-12 1.2946766216403942E-15 1.6580203465043535E-21 5.796145862130497E-4 1.076629806735393E-6 3.545434072867953E-12 2.9927458244202245E-14 1.3103364763099022E-17 6.712300205856604E-23 1.4079008552185322E-5 2.3349691294126412E-8 7.176636253993066E-14 1.1142865195853572E-16 8.870481292458152E-20 7.573288042408141E-26 6.989367116006813E-8 1.8546711029562787E-10 5.641038570378698E-16 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 4.98697586721879 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.02105258191002947 1.843522144254115E-5 2.3608962835305205E-11 1.0175624587876668E-5 6.7504097883359245E-9 5.239317815188479E-15 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 8.483267135001907E-7 7.428585665090656E-10 9.513376523988819E-16 5.791904235955445E-4 1.0758419278107222E-6 3.5428395201560114E-12 1.7171754211781124E-8 7.518438660016844E-12 3.85137850298352E-17 1.406870551761473E-5 2.3332603963315834E-8 7.171384383369408E-14 6.393544710576151E-11 5.089698004133136E-14 4.345395448490757E-20 6.984252289152645E-8 1.8533138525206381E-10 5.636910451897256E-16 1.2754076295260396E-9
6.4 6.4 3.8 4.955706309624084 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.010813103226637396 9.468765081453023E-6 1.212612083890682E-11 0.006768231555626646 4.489978590332399E-6 3.4848884076328814E-12 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 5.64257415572673E-4 4.941061600488333E-7 6.327742796931816E-13 2.9748587916595814E-4 5.525778201779543E-7 1.8196860418629682E-12 1.142164863866049E-5 5.0008265682674655E-9 2.561712186946407E-14 7.2260193869455045E-6 1.1984176396026183E-8 3.683392371855649E-14 4.2526127697347605E-8 3.3853700421717415E-11 2.890303424832678E-17 3.587276909133297E-8 9.519057607426093E-11 2.895250323982279E-16 1.2754076295260396E-9
6.4 6.4 6.4 4.964995629579528 0.14085842092104486 1.4951055713872412E-4 2.872047833525258E-10 0.013160945471447976 1.1524712037518108E-5 1.4759057765017797E-11 0.005218655674051662 3.462005112299857E-6 2.687028733053797E-12 0.0011592291739045892 1.0151081047880475E-6 1.2999924950429364E-12 4.350715750787313E-4 3.809813382609635E-7 4.879016118131368E-13 3.6207879941292897E-4 6.725586917711495E-7 2.2147933178994533E-12 8.806680295330312E-6 3.855895255791234E-9 1.9752122441173482E-14 8.79500039294361E-6 1.4586293015290342E-8 4.4831650211680016E-14 3.2789838199124826E-8 2.6102949395484064E-11 2.2285730391707147E-17 4.3661800689911194E-8 1.1585924547754986E-10 3.5238941903611443E-16 1.2754076295260396E-9

View File

@ -1,58 +0,0 @@
FUNCTION_BLOCK MamdaniTrustFewRules
VAR_INPUT
WTV : REAL;
OW : REAL;
AC : REAL;
END_VAR
VAR_OUTPUT
trustworthiness : REAL;
END_VAR
FUZZIFY WTV
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for WTV
END_FUZZIFY
FUZZIFY OW
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for OW
END_FUZZIFY
FUZZIFY AC
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for AC
END_FUZZIFY
DEFUZZIFY trustworthiness
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
METHOD : COG;
DEFAULT := 0;
RANGE := (-4.0 .. 9.0); // Added range for trustworthiness
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : MIN;
RULE 1 : IF WTV IS fully AND OW IS high AND AC IS high THEN trustworthiness IS fully;
RULE 2 : IF WTV IS satISfactory AND OW IS high THEN trustworthiness IS satISfactory;
RULE 3 : IF WTV IS nothing AND AC IS NOT low THEN trustworthiness IS nothing;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
AC WTV OW trustworthiness No1.1 No1.2 No1.3
-4.0 -4.0 -4.0 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 -1.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-4.0 -4.0 3.8 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-4.0 -4.0 6.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-4.0 -1.4 -4.0 2.1440130067640695E-4 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 -1.4 2.1441791333979342E-4 2.576757109154981E-18 1.2754076295260396E-9 0.37531109885139957
-4.0 -1.4 1.2000000000000002 0.0010024559404113941 2.576757109154981E-18 6.252150377482015E-5 0.37531109885139957
-4.0 -1.4 3.8 0.0010024559404113941 2.576757109154981E-18 6.252150377482015E-5 0.37531109885139957
-4.0 -1.4 6.4 0.0010024559404113941 2.576757109154981E-18 6.252150377482015E-5 0.37531109885139957
-4.0 1.2000000000000002 -4.0 1.9531210161944423E-4 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 -1.4 1.9532595962674313E-4 2.576757109154981E-18 1.2754076295260396E-9 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.007165935525054486 2.576757109154981E-18 7.318024188804728E-4 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.9534088270515392 2.576757109154981E-18 0.19789869908361474 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.9534088270515392 2.576757109154981E-18 0.19789869908361474 0.48675225595997157
-4.0 3.8 -4.0 0.05592821568344743 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 -1.4 0.05593232172333802 2.576757109154981E-18 1.2754076295260396E-9 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 1.5550452747415202 2.576757109154981E-18 7.318024188804728E-4 7.318024188804728E-4
-4.0 3.8 3.8 2.993347126786305 2.576757109154981E-18 0.48675225595997157 7.318024188804728E-4
-4.0 3.8 6.4 2.9920305992170753 2.576757109154981E-18 0.37531109885139935 7.318024188804728E-4
-4.0 6.4 -4.0 1.274193733749591 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 -1.4 2.4934999999999605 2.576757109154981E-18 1.2754076295260396E-9 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 2.9999895280198197 2.576757109154981E-18 7.318024188804728E-4 1.2754076295260396E-9
-4.0 6.4 3.8 3.0000085271004036 2.576757109154981E-18 0.003088715408236766 1.2754076295260396E-9
-4.0 6.4 6.4 3.0000085271004036 2.576757109154981E-18 0.003088715408236766 1.2754076295260396E-9
-1.4 -4.0 -4.0 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-1.4 -4.0 -1.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-1.4 -4.0 3.8 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-1.4 -4.0 6.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-1.4 -1.4 -4.0 2.1440130067640695E-4 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
-1.4 -1.4 -1.4 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 1.2000000000000002 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
-1.4 -1.4 3.8 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
-1.4 -1.4 6.4 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
-1.4 1.2000000000000002 -4.0 1.9531210161944423E-4 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
-1.4 1.2000000000000002 -1.4 1.9532595962674313E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 0.007165935525054486 1.2754076295260396E-9 7.318024188804728E-4 0.48675225595997157
-1.4 1.2000000000000002 3.8 0.9534088270515392 1.2754076295260396E-9 0.19789869908361474 0.48675225595997157
-1.4 1.2000000000000002 6.4 0.9534088270515392 1.2754076295260396E-9 0.19789869908361474 0.48675225595997157
-1.4 3.8 -4.0 0.05592821568344743 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
-1.4 3.8 -1.4 0.05593232172333802 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 1.5550452747415202 1.2754076295260396E-9 7.318024188804728E-4 7.318024188804728E-4
-1.4 3.8 3.8 2.993347126786305 1.2754076295260396E-9 0.48675225595997157 7.318024188804728E-4
-1.4 3.8 6.4 2.9920305992170753 1.2754076295260396E-9 0.37531109885139935 7.318024188804728E-4
-1.4 6.4 -4.0 1.274193733749591 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
-1.4 6.4 -1.4 2.4934999999999605 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 2.9999895280198197 1.2754076295260396E-9 7.318024188804728E-4 1.2754076295260396E-9
-1.4 6.4 3.8 3.0000085271004036 1.2754076295260396E-9 0.003088715408236766 1.2754076295260396E-9
-1.4 6.4 6.4 3.0000085271004036 1.2754076295260396E-9 0.003088715408236766 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 2.1440130067640695E-4 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
1.2000000000000002 -1.4 -1.4 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
1.2000000000000002 -1.4 3.8 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
1.2000000000000002 -1.4 6.4 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 1.9531210161944423E-4 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 1.9532595962674313E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 0.013466242916050405 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 0.9575577777095805 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 0.9575577777095805 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
1.2000000000000002 3.8 -4.0 0.05592821568344743 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 0.05593232172333802 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 2.4969922645135156 7.318024188804728E-4 7.318024188804728E-4 7.318024188804728E-4
1.2000000000000002 3.8 3.8 2.997287292052104 7.318024188804728E-4 0.48675225595997157 7.318024188804728E-4
1.2000000000000002 3.8 6.4 2.996753318597033 7.318024188804728E-4 0.37531109885139935 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 1.274193733749591 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 2.4934999999999605 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 3.9416994880514222 7.318024188804728E-4 7.318024188804728E-4 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 3.285807095912562 7.318024188804728E-4 0.003088715408236766 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 3.285807095912562 7.318024188804728E-4 0.003088715408236766 1.2754076295260396E-9
3.8 -4.0 -4.0 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
3.8 -4.0 -1.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
3.8 -4.0 3.8 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
3.8 -4.0 6.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
3.8 -1.4 -4.0 2.1440130067640695E-4 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
3.8 -1.4 -1.4 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
3.8 -1.4 3.8 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
3.8 -1.4 6.4 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
3.8 1.2000000000000002 -4.0 1.9531210161944423E-4 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
3.8 1.2000000000000002 -1.4 1.9532595962674313E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 0.013466242916050405 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
3.8 1.2000000000000002 3.8 0.9575577777095805 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
3.8 1.2000000000000002 6.4 0.9575577777095805 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
3.8 3.8 -4.0 0.05592821568344743 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
3.8 3.8 -1.4 0.05593232172333802 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
3.8 3.8 1.2000000000000002 2.4969922645135156 7.318024188804728E-4 7.318024188804728E-4 7.318024188804728E-4
3.8 3.8 3.8 3.994789184782769 0.48675225595997157 0.48675225595997157 7.318024188804728E-4
3.8 3.8 6.4 3.99359436150837 0.37531109885139935 0.37531109885139935 7.318024188804728E-4
3.8 6.4 -4.0 1.274193733749591 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
3.8 6.4 -1.4 2.4934999999999605 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 3.9416994880514222 7.318024188804728E-4 7.318024188804728E-4 1.2754076295260396E-9
3.8 6.4 3.8 4.980025078729596 0.37531109885139935 0.003088715408236766 1.2754076295260396E-9
3.8 6.4 6.4 4.980025078729596 0.37531109885139935 0.003088715408236766 1.2754076295260396E-9
6.4 -4.0 -4.0 0.11814588732224174 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
6.4 -4.0 -1.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
6.4 -4.0 3.8 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
6.4 -4.0 6.4 0.11814600922885106 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
6.4 -1.4 -4.0 2.1440130067640695E-4 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
6.4 -1.4 -1.4 2.1441791333979342E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
6.4 -1.4 3.8 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
6.4 -1.4 6.4 0.0010024559404113941 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
6.4 1.2000000000000002 -4.0 1.9531210161944423E-4 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
6.4 1.2000000000000002 -1.4 1.9532595962674313E-4 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 0.013466242916050405 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
6.4 1.2000000000000002 3.8 0.9575577777095805 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
6.4 1.2000000000000002 6.4 0.9575577777095805 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
6.4 3.8 -4.0 0.05592821568344743 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
6.4 3.8 -1.4 0.05593232172333802 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
6.4 3.8 1.2000000000000002 2.4969922645135156 7.318024188804728E-4 7.318024188804728E-4 7.318024188804728E-4
6.4 3.8 3.8 3.878487887632338 0.37531109885139935 0.48675225595997157 7.318024188804728E-4
6.4 3.8 6.4 3.99359436150837 0.37531109885139935 0.37531109885139935 7.318024188804728E-4
6.4 6.4 -4.0 1.274193733749591 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
6.4 6.4 -1.4 2.4934999999999605 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 3.9416994880514222 7.318024188804728E-4 7.318024188804728E-4 1.2754076295260396E-9
6.4 6.4 3.8 4.980025078729596 0.37531109885139935 0.003088715408236766 1.2754076295260396E-9
6.4 6.4 6.4 4.980025078729596 0.37531109885139935 0.003088715408236766 1.2754076295260396E-9

View File

@ -1,85 +0,0 @@
FUNCTION_BLOCK MamdaniTrustManyRules
VAR_INPUT
WTV : REAL;
OW : REAL;
AC : REAL;
END_VAR
VAR_OUTPUT
trustworthiness : REAL;
END_VAR
FUZZIFY WTV
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for WTV
END_FUZZIFY
FUZZIFY OW
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for OW
END_FUZZIFY
FUZZIFY AC
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for AC
END_FUZZIFY
DEFUZZIFY trustworthiness
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
METHOD : COG;
DEFAULT := 0;
RANGE := (-4.0 .. 9.0); // Added range for trustworthiness
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : MIN;
RULE 1 : IF WTV IS fully AND AC IS high THEN trustworthiness IS fully;
RULE 2 : IF WTV IS fully AND AC IS medium THEN trustworthiness IS fully WITH 0.8;
RULE 3 : IF WTV IS fully AND AC IS low THEN trustworthiness IS fully WITH 0.6;
RULE 4 : IF WTV IS largely AND AC IS high AND OW IS NOT high THEN trustworthiness IS fully;
RULE 5 : IF WTV IS largely AND AC IS medium AND OW IS NOT high THEN trustworthiness IS fully WITH 0.66;
RULE 6 : IF WTV IS largely AND AC IS low AND OW IS NOT high THEN trustworthiness IS largely WITH 0.33;
RULE 7 : IF WTV IS largely AND AC IS high AND OW IS high THEN trustworthiness IS largely WITH 0.66;
RULE 8 : IF WTV IS largely AND AC IS medium AND OW IS high THEN trustworthiness IS largely WITH 0.33;
RULE 9 : IF WTV IS largely AND AC IS low AND OW IS high THEN trustworthiness IS largely WITH 0.1;
RULE 10 : IF WTV IS satISfactory AND AC IS high THEN trustworthiness IS largely;
RULE 11 : IF WTV IS satISfactory AND AC IS medium THEN trustworthiness IS largely WITH 0.66;
RULE 12 : IF WTV IS satISfactory AND AC IS low THEN trustworthiness IS satISfactory WITH 0.33;
RULE 13 : IF WTV IS satISfactory AND AC IS high AND OW IS high THEN trustworthiness IS satISfactory;
RULE 14 : IF WTV IS satISfactory AND AC IS medium AND OW IS high THEN trustworthiness IS satISfactory WITH 0.66;
RULE 15 : IF WTV IS satISfactory AND AC IS low AND OW IS high THEN trustworthiness IS satISfactory WITH 0.33;
RULE 16 : IF WTV IS satISfactory AND AC IS high AND OW IS NOT high THEN trustworthiness IS satISfactory WITH 0.5;
RULE 17 : IF WTV IS satISfactory AND AC IS medium AND OW IS NOT high THEN trustworthiness IS satISfactory WITH 0.7;
RULE 18 : IF WTV IS satISfactory AND AC IS low AND OW IS NOT high THEN trustworthiness IS satISfactory WITH 0.9;
RULE 19 : IF WTV IS partially AND AC IS high AND OW IS high THEN trustworthiness IS satISfactory;
RULE 20 : IF WTV IS partially AND AC IS medium AND OW IS high THEN trustworthiness IS satISfactory WITH 0.33;
RULE 21 : IF WTV IS partially AND AC IS low AND OW IS high THEN trustworthiness IS partially WITH 0.66;
RULE 22 : IF WTV IS partially AND AC IS high AND OW IS NOT high THEN trustworthiness IS partially WITH 0.6;
RULE 23 : IF WTV IS partially AND AC IS medium AND OW IS NOT high THEN trustworthiness IS partially WITH 0.75;
RULE 24 : IF WTV IS partially AND AC IS low AND OW IS NOT high THEN trustworthiness IS partially WITH 0.9;
RULE 25 : IF WTV IS minimal AND AC IS high AND OW IS high THEN trustworthiness IS minimal WITH 0.5;
RULE 26 : IF WTV IS minimal AND AC IS medium AND OW IS high THEN trustworthiness IS minimal WITH 0.3;
RULE 27 : IF WTV IS minimal AND AC IS low AND OW IS high THEN trustworthiness IS minimal WITH 0.1;
RULE 28 : IF WTV IS minimal AND AC IS high AND OW IS NOT high THEN trustworthiness IS minimal WITH 0.4;
RULE 29 : IF WTV IS minimal AND AC IS medium AND OW IS NOT high THEN trustworthiness IS nothing WITH 0.8;
RULE 30 : IF WTV IS minimal AND AC IS low AND OW IS NOT high THEN trustworthiness IS nothing WITH 0.95;
RULE 31 : IF WTV IS nothing THEN trustworthiness IS nothing;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
AC WTV OW trustworthiness No1.1 No1.2 No1.3 No1.4 No1.5 No1.6 No1.7 No1.8 No1.9 No1.10 No1.11 No1.12 No1.13 No1.14 No1.15 No1.16 No1.17 No1.18 No1.19 No1.20 No1.21 No1.22 No1.23 No1.24 No1.25 No1.26 No1.27 No1.28 No1.29 No1.30 No1.31
-4.0 -4.0 -4.0 0.11821587903342956 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -4.0 -1.4 0.1182160143017219 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 0.11899213161348593 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 2.208223410126618E-10 1.0051786631510336E-8 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -4.0 3.8 0.11899213161348593 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 2.208223410126618E-10 1.0051786631510336E-8 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -4.0 6.4 0.11899213161348593 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 2.208223410126618E-10 1.0051786631510336E-8 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -1.4 -4.0 0.0026719733718906275 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 -1.4 -1.4 0.0026719733718906275 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 -1.4 1.2000000000000002 0.0026719733718906275 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 -1.4 3.8 0.0026719733718906275 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 -1.4 6.4 0.0026719733718906275 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 1.2000000000000002 -4.0 0.004723883399507445 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 1.2000000000000002 -1.4 0.004723883399507445 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.004723883399507445 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.004723883399507445 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.004723883399507445 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 3.8 -4.0 1.1627476298789672 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 3.8 -1.4 1.1627476298789672 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 1.1627476298789672 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 3.8 3.8 1.1627476298789672 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 3.8 6.4 1.1627476298789672 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 6.4 -4.0 3.4765921543628613 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-4.0 6.4 -1.4 3.4765921543628613 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 3.4765921543628613 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 4.1264192491381304E-5 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-4.0 6.4 3.8 3.4765921543628613 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 4.1264192491381304E-5 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-4.0 6.4 6.4 3.4765921543628613 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 4.1264192491381304E-5 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-1.4 -4.0 -4.0 0.11821587903342956 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -4.0 -1.4 0.11821764440563647 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 0.12053820123808222 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 5.025893315755168E-9 1.0051786631510336E-8 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -4.0 3.8 0.12053820123808222 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 5.025893315755168E-9 1.0051786631510336E-8 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -4.0 6.4 0.12053820123808222 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 5.025893315755168E-9 1.0051786631510336E-8 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -1.4 -4.0 0.018605152186669024 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 -1.4 -1.4 0.018605152186669024 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 -1.4 1.2000000000000002 0.019104976096516617 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 1.643252890960804E-4 4.829895964611121E-4 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 -1.4 3.8 0.02644904739941462 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 1.643252890960804E-4 0.0020385521694362696 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 6.377038147630198E-10 1.4938662645098218E-4 0.005613476283413373 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 -1.4 6.4 0.02644904739941462 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 1.643252890960804E-4 0.0020385521694362696 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 6.377038147630198E-10 1.4938662645098218E-4 0.005613476283413373 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 1.2000000000000002 -4.0 1.1236733160442645 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 1.2000000000000002 -1.4 1.1236733160442645 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 1.1236733160442645 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 1.2754076295260396E-9 1.643252890960804E-4 4.829895964611121E-4 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 1.2000000000000002 3.8 1.1236733160442645 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 0.00198410947443703 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 1.2754076295260396E-9 1.643252890960804E-4 0.24770532524192374 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 1.2000000000000002 6.4 1.1236733160442645 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 0.00198410947443703 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 1.2754076295260396E-9 1.643252890960804E-4 0.2477053252419236 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513994 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 3.8 -4.0 3.3705705964771955 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 3.8 -1.4 3.3705705964771955 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 3.3705705964771955 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 1.2754076295260396E-9 1.643252890960804E-4 4.829895964611121E-4 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 3.8 3.8 3.3705705964771955 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 1.2754076295260396E-9 1.643252890960804E-4 0.13061314139518573 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 6.377038147630198E-10 1.4938662645098218E-4 0.00198410947443703 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 3.8 6.4 3.3705705964771955 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 0.03753110988513994 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 0.1238526626209618 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 1.2754076295260396E-9 1.643252890960804E-4 0.13061314139518573 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 6.377038147630198E-10 1.4938662645098218E-4 0.00198410947443703 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 6.4 -4.0 4.918102866495854 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
-1.4 6.4 -1.4 4.918102866495854 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 4.918102866495854 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 1.2754076295260396E-9 2.0632096245690652E-5 4.1264192491381304E-5 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
-1.4 6.4 3.8 4.918102866495854 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 0.005613476283413368 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 1.2754076295260396E-9 2.0632096245690652E-5 4.1264192491381304E-5 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
-1.4 6.4 6.4 4.918102866495854 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 0.005613476283413368 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 1.2754076295260396E-9 2.0632096245690652E-5 4.1264192491381304E-5 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 0.12128052218537347 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 0.12128228598872379 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 0.12206865304093126 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 0.12206865304093126 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 0.12206865304093126 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 0.018749911007015386 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 -1.4 -1.4 0.018749911007015386 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 0.021714422696700958 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 -1.4 3.8 0.05673191034884296 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 7.318024188804728E-4 0.0010192760847181348 0.0020385521694362696 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 3.659012094402364E-4 0.016840428850240115 0.005613476283413373 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 -1.4 6.4 0.05673191034884296 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 7.318024188804728E-4 0.0010192760847181348 0.0020385521694362696 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 3.659012094402364E-4 0.016840428850240115 0.005613476283413373 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 1.4380915457271726 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 1.4380915457271726 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 1.4380915457271726 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 1.4380915457271726 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 0.006547561265642199 0.00198410947443703 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 7.318024188804728E-4 0.14175392820954397 0.3212564889335813 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 1.4380915457271726 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 0.006547561265642199 0.00198410947443703 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 7.318024188804728E-4 0.1238526626209618 0.2477053252419236 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 3.659012094402364E-4 0.1125933296554198 0.03753110988513994 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 3.8 -4.0 3.537997640665962 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 3.537997640665962 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 3.537997640665962 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 3.8 3.8 3.537997640665962 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 0.14175392820954397 0.04867522559599716 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 7.318024188804728E-4 0.06530657069759287 0.13061314139518573 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 3.659012094402364E-4 0.005952328423311089 0.00198410947443703 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 3.8 6.4 3.537997640665962 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 0.1238526626209618 0.03753110988513994 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 0.2477053252419236 0.1238526626209618 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 7.318024188804728E-4 0.06530657069759287 0.13061314139518573 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 3.659012094402364E-4 0.005952328423311089 0.00198410947443703 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 4.9341082622086905 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 4.9341082622086905 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 4.9341082622086905 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 4.9341082622086905 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 0.018524471735264114 0.005613476283413368 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 4.9341082622086905 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 0.018524471735264114 0.005613476283413368 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 -4.0 -4.0 0.12128052218537347 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -4.0 -1.4 0.12128228598872379 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 0.12206865304093126 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -4.0 3.8 0.12206865304093126 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -4.0 6.4 0.12206865304093126 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -1.4 -4.0 0.06339896610180008 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 -1.4 -1.4 0.06339896610180008 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.06630485529036885 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 -1.4 3.8 0.09016420293594168 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 0.0030887154082367718 0.0010192760847181348 4.829895964611121E-4 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 0.028067381417066863 0.016840428850240115 7.318024188804729E-5 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 -1.4 6.4 0.09016420293594168 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 0.0030887154082367718 0.0010192760847181348 4.829895964611121E-4 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 0.028067381417066863 0.016840428850240115 7.318024188804729E-5 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 1.2000000000000002 -4.0 1.4890107656972384 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 1.2000000000000002 -1.4 1.4890107656972384 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 1.4890107656972384 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 1.2000000000000002 3.8 1.7856294634227654 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 0.013095122531284397 0.006547561265642199 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 0.48675225595997157 0.14175392820954397 4.829895964611121E-4 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 1.2000000000000002 6.4 1.671673800335508 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 0.013095122531284397 0.006547561265642199 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 0.37531109885139935 0.1238526626209618 4.829895964611121E-4 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 0.18765554942569967 0.1125933296554198 7.318024188804729E-5 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 3.8 -4.0 3.843335867683807 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 3.8 -1.4 3.843335867683807 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 3.8 1.2000000000000002 3.843335867683807 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 3.8 3.8 3.733446363865519 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.3212564889335813 0.14175392820954397 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 0.19789869908361474 0.06530657069759287 4.829895964611121E-4 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 0.009920547372185149 0.005952328423311089 7.318024188804729E-5 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 3.8 6.4 3.7946881788966484 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.2477053252419236 0.1238526626209618 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.37531109885139935 0.2477053252419236 2.4149479823055604E-4 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 0.19789869908361474 0.06530657069759287 4.829895964611121E-4 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 0.009920547372185149 0.005952328423311089 7.318024188804729E-5 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 6.4 -4.0 4.982875937365356 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 6.4 -1.4 4.982875937365356 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 4.982875937365356 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 6.4 3.8 4.9042678629781244 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 0.03704894347052823 0.018524471735264114 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 6.4 6.4 4.9042678629781244 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 0.03704894347052823 0.018524471735264114 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
6.4 -4.0 -4.0 0.1212744024386403 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -4.0 -1.4 0.12127616624469809 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 0.12206865304093126 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -4.0 3.8 0.12206865304093126 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -4.0 6.4 0.12206865304093126 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -1.4 -4.0 0.06184925957820933 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 -1.4 -1.4 0.06184925957820933 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.06475675839588418 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 7.318024188804728E-4 1.643252890960801E-4 8.417690354871861E-10 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 -1.4 3.8 0.09016420293594168 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 0.0030887154082367718 1.643252890960801E-4 8.417690354871861E-10 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 0.028067381417066863 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 -1.4 6.4 0.09016420293594168 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 0.0030887154082367718 1.643252890960801E-4 8.417690354871861E-10 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 0.028067381417066863 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 1.2000000000000002 -4.0 1.405595580103225 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 1.2000000000000002 -1.4 1.405595580103225 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 1.405595580103225 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 7.318024188804728E-4 1.643252890960801E-4 8.417690354871861E-10 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 1.2000000000000002 3.8 1.671673800335508 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 0.013095122531284397 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 0.37531109885139935 1.643252890960801E-4 8.417690354871861E-10 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 1.2000000000000002 6.4 1.671673800335508 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 0.013095122531284397 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 0.37531109885139935 1.643252890960801E-4 8.417690354871861E-10 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 3.8 -4.0 3.9393014423745836 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 3.8 -1.4 3.9393014423745836 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 3.8 1.2000000000000002 3.9393014423745836 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 7.318024188804728E-4 1.643252890960801E-4 8.417690354871861E-10 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 3.8 3.8 3.770802817936482 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.2477053252419236 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 0.19789869908361474 1.643252890960801E-4 8.417690354871861E-10 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 0.009920547372185149 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 3.8 6.4 3.770802817936482 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.2477053252419236 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 0.19789869908361474 1.643252890960801E-4 8.417690354871861E-10 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 0.009920547372185149 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 6.4 -4.0 4.985049098493575 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9
6.4 6.4 -1.4 4.985049098493575 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 4.985049098493575 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 6.252150377482015E-5 2.0632096245690652E-5 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9
6.4 6.4 3.8 4.904311031631794 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 0.03704894347052823 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 6.252150377482015E-5 2.0632096245690652E-5 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9
6.4 6.4 6.4 4.904311031631794 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 0.03704894347052823 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 6.252150377482015E-5 2.0632096245690652E-5 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9

View File

@ -1,57 +0,0 @@
FUNCTION_BLOCK LarsenTrustFewRules
VAR_INPUT
WTV : REAL;
OW : REAL;
AC : REAL;
END_VAR
VAR_OUTPUT
trustworthiness : REAL;
END_VAR
FUZZIFY WTV
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for WTV
END_FUZZIFY
FUZZIFY OW
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for OW
END_FUZZIFY
FUZZIFY AC
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for AC
END_FUZZIFY
DEFUZZIFY trustworthiness
TERM nothing := 0;
TERM minimal := 1;
TERM partially := 2;
TERM satISfactory := 3;
TERM largely := 4;
TERM fully := 5;
METHOD : COGS;
DEFAULT := 0;
RANGE := (0.0 .. 5.0); // Added range for trustworthiness
END_DEFUZZIFY
RULEBLOCK No1
ACCU : MAX;
AND : MIN;
RULE 1 : IF WTV IS fully AND OW IS high AND AC IS high THEN trustworthiness IS fully;
RULE 2 : IF WTV IS satISfactory AND OW IS high THEN trustworthiness IS satISfactory;
RULE 3 : IF WTV IS nothing AND AC IS NOT low THEN trustworthiness IS nothing;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
AC WTV OW trustworthiness No1.1 No1.2 No1.3
-4.0 -4.0 -4.0 6.14496374816158E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-4.0 -4.0 -1.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-4.0 -4.0 3.8 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-4.0 -4.0 6.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-4.0 -1.4 -4.0 5.4925252507391914E-17 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
-4.0 -1.4 -1.4 1.0194803458168783E-8 2.576757109154981E-18 1.2754076295260396E-9 0.37531109885139957
-4.0 -1.4 1.2000000000000002 4.996741943320413E-4 2.576757109154981E-18 6.252150377482015E-5 0.37531109885139957
-4.0 -1.4 3.8 4.996741943320413E-4 2.576757109154981E-18 6.252150377482015E-5 0.37531109885139957
-4.0 -1.4 6.4 4.996741943320413E-4 2.576757109154981E-18 6.252150377482015E-5 0.37531109885139957
-4.0 1.2000000000000002 -4.0 4.235020304648585E-17 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
-4.0 1.2000000000000002 -1.4 7.860719379492583E-9 2.576757109154981E-18 1.2754076295260396E-9 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.004503546770211002 2.576757109154981E-18 7.318024188804728E-4 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.8671514921249884 2.576757109154981E-18 0.19789869908361474 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.8671514921249884 2.576757109154981E-18 0.19789869908361474 0.48675225595997157
-4.0 3.8 -4.0 2.8168883214099693E-14 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
-4.0 3.8 -1.4 5.2284826263196654E-6 2.576757109154981E-18 1.2754076295260396E-9 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 1.500000000000006 2.576757109154981E-18 7.318024188804728E-4 7.318024188804728E-4
-4.0 3.8 3.8 2.995496453229789 2.576757109154981E-18 0.48675225595997157 7.318024188804728E-4
-4.0 3.8 6.4 2.994161817044743 2.576757109154981E-18 0.37531109885139935 7.318024188804728E-4
-4.0 6.4 -4.0 1.616272030425718E-8 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
-4.0 6.4 -1.4 1.500000003535595 2.576757109154981E-18 1.2754076295260396E-9 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 2.999994771517398 2.576757109154981E-18 7.318024188804728E-4 1.2754076295260396E-9
-4.0 6.4 3.8 2.9999987612256884 2.576757109154981E-18 0.003088715408236766 1.2754076295260396E-9
-4.0 6.4 6.4 2.9999987612256884 2.576757109154981E-18 0.003088715408236766 1.2754076295260396E-9
-1.4 -4.0 -4.0 6.14496374816158E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
-1.4 -4.0 -1.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-1.4 -4.0 3.8 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-1.4 -4.0 6.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
-1.4 -1.4 -4.0 5.4925252507391914E-17 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
-1.4 -1.4 -1.4 2.7186142371188878E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
-1.4 -1.4 1.2000000000000002 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
-1.4 -1.4 3.8 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
-1.4 -1.4 6.4 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
-1.4 1.2000000000000002 -4.0 4.235020304648585E-17 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
-1.4 1.2000000000000002 -1.4 2.0961918219804633E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 0.004503559839959952 1.2754076295260396E-9 7.318024188804728E-4 0.48675225595997157
-1.4 1.2000000000000002 3.8 0.867151499823899 1.2754076295260396E-9 0.19789869908361474 0.48675225595997157
-1.4 1.2000000000000002 6.4 0.867151499823899 1.2754076295260396E-9 0.19789869908361474 0.48675225595997157
-1.4 3.8 -4.0 2.8168883214099693E-14 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
-1.4 3.8 -1.4 1.3942595990364214E-5 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 1.5000030499508459 1.2754076295260396E-9 7.318024188804728E-4 7.318024188804728E-4
-1.4 3.8 3.8 2.9954964584741846 1.2754076295260396E-9 0.48675225595997157 7.318024188804728E-4
-1.4 3.8 6.4 2.9941618238478536 1.2754076295260396E-9 0.37531109885139935 7.318024188804728E-4
-1.4 6.4 -4.0 1.616272030425718E-8 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
-1.4 6.4 -1.4 2.666666666666667 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 2.9999982571755006 1.2754076295260396E-9 7.318024188804728E-4 1.2754076295260396E-9
-1.4 6.4 3.8 2.9999995870753993 1.2754076295260396E-9 0.003088715408236766 1.2754076295260396E-9
-1.4 6.4 6.4 2.9999995870753993 1.2754076295260396E-9 0.003088715408236766 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 6.14496374816158E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 5.4925252507391914E-17 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
1.2000000000000002 -1.4 -1.4 2.7186142371188878E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
1.2000000000000002 -1.4 3.8 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
1.2000000000000002 -1.4 6.4 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 4.235020304648585E-17 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 2.0961918219804633E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 0.01199145669187766 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 0.8715642505464681 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 0.8715642505464681 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
1.2000000000000002 3.8 -4.0 2.8168883214099693E-14 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 1.3942595990364214E-5 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 2.666666666666667 7.318024188804728E-4 7.318024188804728E-4 7.318024188804728E-4
1.2000000000000002 3.8 3.8 2.998501067913516 7.318024188804728E-4 0.48675225595997157 7.318024188804728E-4
1.2000000000000002 3.8 6.4 2.9980577188125554 7.318024188804728E-4 0.37531109885139935 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 1.616272030425718E-8 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 2.666666666666667 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 3.99999651434189 7.318024188804728E-4 7.318024188804728E-4 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 3.3830895677424584 7.318024188804728E-4 0.003088715408236766 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 3.3830895677424584 7.318024188804728E-4 0.003088715408236766 1.2754076295260396E-9
3.8 -4.0 -4.0 6.14496374816158E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
3.8 -4.0 -1.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
3.8 -4.0 3.8 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
3.8 -4.0 6.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
3.8 -1.4 -4.0 5.4925252507391914E-17 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
3.8 -1.4 -1.4 2.7186142371188878E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
3.8 -1.4 1.2000000000000002 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
3.8 -1.4 3.8 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
3.8 -1.4 6.4 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
3.8 1.2000000000000002 -4.0 4.235020304648585E-17 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
3.8 1.2000000000000002 -1.4 2.0961918219804633E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 0.01199145669187766 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
3.8 1.2000000000000002 3.8 0.8715642505464681 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
3.8 1.2000000000000002 6.4 0.8715642505464681 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
3.8 3.8 -4.0 2.8168883214099693E-14 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
3.8 3.8 -1.4 1.3942595990364214E-5 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
3.8 3.8 1.2000000000000002 2.666666666666667 7.318024188804728E-4 7.318024188804728E-4 7.318024188804728E-4
3.8 3.8 3.8 3.9969953802455946 0.48675225595997157 0.48675225595997157 7.318024188804728E-4
3.8 3.8 6.4 3.996104087187866 0.37531109885139935 0.37531109885139935 7.318024188804728E-4
3.8 6.4 -4.0 1.616272030425718E-8 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
3.8 6.4 -1.4 2.666666666666667 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 3.99999651434189 7.318024188804728E-4 7.318024188804728E-4 1.2754076295260396E-9
3.8 6.4 3.8 4.983674840896059 0.37531109885139935 0.003088715408236766 1.2754076295260396E-9
3.8 6.4 6.4 4.983674840896059 0.37531109885139935 0.003088715408236766 1.2754076295260396E-9
6.4 -4.0 -4.0 6.14496374816158E-14 2.576757109154981E-18 2.576757109154981E-18 3.3546262790251185E-4
6.4 -4.0 -1.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
6.4 -4.0 3.8 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
6.4 -4.0 6.4 2.0476812571940782E-7 2.576757109154981E-18 2.289734845645553E-11 3.3546262790251185E-4
6.4 -1.4 -4.0 5.4925252507391914E-17 2.576757109154981E-18 2.576757109154981E-18 0.37531109885139957
6.4 -1.4 -1.4 2.7186142371188878E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.37531109885139957
6.4 -1.4 1.2000000000000002 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
6.4 -1.4 3.8 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
6.4 -1.4 6.4 4.996911811432583E-4 1.2754076295260396E-9 6.252150377482015E-5 0.37531109885139957
6.4 1.2000000000000002 -4.0 4.235020304648585E-17 2.576757109154981E-18 2.576757109154981E-18 0.48675225595997157
6.4 1.2000000000000002 -1.4 2.0961918219804633E-8 1.2754076295260396E-9 1.2754076295260396E-9 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 0.01199145669187766 7.318024188804728E-4 7.318024188804728E-4 0.48675225595997157
6.4 1.2000000000000002 3.8 0.8715642505464681 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
6.4 1.2000000000000002 6.4 0.8715642505464681 7.318024188804728E-4 0.19789869908361474 0.48675225595997157
6.4 3.8 -4.0 2.8168883214099693E-14 2.576757109154981E-18 2.576757109154981E-18 7.318024188804728E-4
6.4 3.8 -1.4 1.3942595990364214E-5 1.2754076295260396E-9 1.2754076295260396E-9 7.318024188804728E-4
6.4 3.8 1.2000000000000002 2.666666666666667 7.318024188804728E-4 7.318024188804728E-4 7.318024188804728E-4
6.4 3.8 3.8 3.8674443570693646 0.37531109885139935 0.48675225595997157 7.318024188804728E-4
6.4 3.8 6.4 3.996104087187866 0.37531109885139935 0.37531109885139935 7.318024188804728E-4
6.4 6.4 -4.0 1.616272030425718E-8 2.576757109154981E-18 2.576757109154981E-18 1.2754076295260396E-9
6.4 6.4 -1.4 2.666666666666667 1.2754076295260396E-9 1.2754076295260396E-9 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 3.99999651434189 7.318024188804728E-4 7.318024188804728E-4 1.2754076295260396E-9
6.4 6.4 3.8 4.983674840896059 0.37531109885139935 0.003088715408236766 1.2754076295260396E-9
6.4 6.4 6.4 4.983674840896059 0.37531109885139935 0.003088715408236766 1.2754076295260396E-9

View File

@ -1,86 +0,0 @@
FUNCTION_BLOCK LarsenTrustManyRules
VAR_INPUT
WTV : REAL;
OW : REAL;
AC : REAL;
END_VAR
VAR_OUTPUT
trustworthiness : REAL;
END_VAR
FUZZIFY WTV
TERM nothing := GAUSS 0 1;
TERM minimal := GAUSS 1 1;
TERM partially := GAUSS 2 1;
TERM satISfactory := GAUSS 3 1;
TERM largely := GAUSS 4 1;
TERM fully := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for WTV
END_FUZZIFY
FUZZIFY OW
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for OW
END_FUZZIFY
FUZZIFY AC
TERM low := GAUSS 0 1;
TERM medium := GAUSS 2.5 1;
TERM high := GAUSS 5 1;
RANGE := (-4.0 .. 9.0); // Added range for AC
END_FUZZIFY
DEFUZZIFY trustworthiness
TERM nothing := 0;
TERM minimal := 1;
TERM partially := 2;
TERM satISfactory := 3;
TERM largely := 4;
TERM fully := 5;
METHOD : COGS;
DEFAULT := 0;
RANGE := (0.0 .. 5.0); // Added range for trustworthiness
END_DEFUZZIFY
RULEBLOCK No1
AND : MIN;
ACCU : MAX;
RULE 1 : IF WTV IS fully AND AC IS high THEN trustworthiness IS fully;
RULE 2 : IF WTV IS fully AND AC IS medium THEN trustworthiness IS fully WITH 0.8;
RULE 3 : IF WTV IS fully AND AC IS low THEN trustworthiness IS fully WITH 0.6;
RULE 4 : IF WTV IS largely AND AC IS high AND OW IS NOT high THEN trustworthiness IS fully;
RULE 5 : IF WTV IS largely AND AC IS medium AND OW IS NOT high THEN trustworthiness IS fully WITH 0.66;
RULE 6 : IF WTV IS largely AND AC IS low AND OW IS NOT high THEN trustworthiness IS largely WITH 0.33;
RULE 7 : IF WTV IS largely AND AC IS high AND OW IS high THEN trustworthiness IS largely WITH 0.66;
RULE 8 : IF WTV IS largely AND AC IS medium AND OW IS high THEN trustworthiness IS largely WITH 0.33;
RULE 9 : IF WTV IS largely AND AC IS low AND OW IS high THEN trustworthiness IS largely WITH 0.1;
RULE 10 : IF WTV IS satISfactory AND AC IS high THEN trustworthiness IS largely;
RULE 11 : IF WTV IS satISfactory AND AC IS medium THEN trustworthiness IS largely WITH 0.66;
RULE 12 : IF WTV IS satISfactory AND AC IS low THEN trustworthiness IS satISfactory WITH 0.33;
RULE 13 : IF WTV IS satISfactory AND AC IS high AND OW IS high THEN trustworthiness IS satISfactory;
RULE 14 : IF WTV IS satISfactory AND AC IS medium AND OW IS high THEN trustworthiness IS satISfactory WITH 0.66;
RULE 15 : IF WTV IS satISfactory AND AC IS low AND OW IS high THEN trustworthiness IS satISfactory WITH 0.33;
RULE 16 : IF WTV IS satISfactory AND AC IS high AND OW IS NOT high THEN trustworthiness IS satISfactory WITH 0.5;
RULE 17 : IF WTV IS satISfactory AND AC IS medium AND OW IS NOT high THEN trustworthiness IS satISfactory WITH 0.7;
RULE 18 : IF WTV IS satISfactory AND AC IS low AND OW IS NOT high THEN trustworthiness IS satISfactory WITH 0.9;
RULE 19 : IF WTV IS partially AND AC IS high AND OW IS high THEN trustworthiness IS satISfactory;
RULE 20 : IF WTV IS partially AND AC IS medium AND OW IS high THEN trustworthiness IS satISfactory WITH 0.33;
RULE 21 : IF WTV IS partially AND AC IS low AND OW IS high THEN trustworthiness IS partially WITH 0.66;
RULE 22 : IF WTV IS partially AND AC IS high AND OW IS NOT high THEN trustworthiness IS partially WITH 0.6;
RULE 23 : IF WTV IS partially AND AC IS medium AND OW IS NOT high THEN trustworthiness IS partially WITH 0.75;
RULE 24 : IF WTV IS partially AND AC IS low AND OW IS NOT high THEN trustworthiness IS partially WITH 0.9;
RULE 25 : IF WTV IS minimal AND AC IS high AND OW IS high THEN trustworthiness IS minimal WITH 0.5;
RULE 26 : IF WTV IS minimal AND AC IS medium AND OW IS high THEN trustworthiness IS minimal WITH 0.3;
RULE 27 : IF WTV IS minimal AND AC IS low AND OW IS high THEN trustworthiness IS minimal WITH 0.1;
RULE 28 : IF WTV IS minimal AND AC IS high AND OW IS NOT high THEN trustworthiness IS minimal WITH 0.4;
RULE 29 : IF WTV IS minimal AND AC IS medium AND OW IS NOT high THEN trustworthiness IS nothing WITH 0.8;
RULE 30 : IF WTV IS minimal AND AC IS low AND OW IS NOT high THEN trustworthiness IS nothing WITH 0.95;
RULE 31 : IF WTV IS nothing THEN trustworthiness IS nothing;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,126 +0,0 @@
AC WTV OW trustworthiness No1.1 No1.2 No1.3 No1.4 No1.5 No1.6 No1.7 No1.8 No1.9 No1.10 No1.11 No1.12 No1.13 No1.14 No1.15 No1.16 No1.17 No1.18 No1.19 No1.20 No1.21 No1.22 No1.23 No1.24 No1.25 No1.26 No1.27 No1.28 No1.29 No1.30 No1.31
-4.0 -4.0 -4.0 8.208112280456528E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -4.0 -1.4 8.446983916324984E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -4.0 1.2000000000000002 0.001193399285835164 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 2.208223410126618E-10 1.0051786631510336E-8 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -4.0 3.8 0.001193399285835164 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 2.208223410126618E-10 1.0051786631510336E-8 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -4.0 6.4 0.001193399285835164 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 2.576757109154981E-18 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 4.179174631201078E-15 1.2664165549094177E-15 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.511224998126065E-11 7.556124990630325E-12 1.2883785545774905E-18 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 2.208223410126618E-10 1.0051786631510336E-8 1.5460542654929886E-18 5.018689568469586E-10 1.3706981770241366E-8 1.2883785545774905E-18 2.0074758273878343E-10 3.726653172078671E-7 1.0307028436619925E-18 5.353268873034226E-10 3.5403205134747374E-6 3.3546262790251185E-4
-4.0 -1.4 -4.0 0.0020583499504943613 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 -1.4 -1.4 0.0020583504837673717 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 -1.4 1.2000000000000002 0.0021474554784177485 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 -1.4 3.8 0.0021474554784177485 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 -1.4 6.4 0.0021474554784177485 2.576757109154981E-18 5.353268873034226E-10 7.652445777156238E-10 2.576757109154981E-18 4.416446820253236E-10 1.536386186208416E-7 1.7006596920422875E-18 2.208223410126618E-10 4.6557157157830784E-8 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 2.576757109154981E-18 4.416446820253236E-10 2.0632096245690652E-5 1.2883785545774905E-18 4.684110263904947E-10 5.626935339733814E-5 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.37531109885139957
-4.0 1.2000000000000002 -4.0 0.006067201374424432 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 1.2000000000000002 -1.4 0.006067201783574873 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 1.2000000000000002 1.2000000000000002 0.006135568445230786 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 1.2000000000000002 3.8 0.006135568445230786 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 1.2000000000000002 6.4 0.006135568445230786 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 0.48675225595997157
-4.0 3.8 -4.0 1.7957955421958038 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 3.8 -1.4 1.7957954452350622 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 3.8 1.2000000000000002 1.7799160660651172 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 3.8 3.8 1.7799160660651172 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 3.8 6.4 1.7799160660651172 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 2.2140533441565783E-4 1.5460542654929886E-18 5.018689568469586E-10 3.019163651122607E-4 1.2883785545774905E-18 2.0074758273878343E-10 3.354626279025119E-5 1.0307028436619925E-18 5.353268873034226E-10 3.1868949650738624E-4 7.318024188804728E-4
-4.0 6.4 -4.0 3.679475065524545 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-4.0 6.4 -1.4 3.6794742634199262 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 1.2754076295260396E-10 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 4.2088451774359307E-10 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 8.417690354871861E-10 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 2.0074758273878343E-10 1.2754076295260396E-10 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-4.0 6.4 1.2000000000000002 3.6792890551666413 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 4.1264192491381304E-5 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-4.0 6.4 3.8 3.6792890551666413 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 4.1264192491381304E-5 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-4.0 6.4 6.4 3.6792890551666413 2.576757109154981E-18 5.353268873034226E-10 2.012775767415071E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.7006596920422875E-18 2.208223410126618E-10 3.354626279025119E-5 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 2.576757109154981E-18 4.416446820253236E-10 1.1070266720782891E-4 1.2883785545774905E-18 4.684110263904947E-10 3.019163651122607E-4 2.576757109154981E-18 2.208223410126618E-10 4.1264192491381304E-5 1.5460542654929886E-18 5.018689568469586E-10 5.626935339733814E-5 1.2883785545774905E-18 2.0074758273878343E-10 4.6557157157830784E-8 1.0307028436619925E-18 5.353268873034226E-10 4.422929929993924E-7 1.2754076295260396E-9
-1.4 -4.0 -4.0 8.369459448573113E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -4.0 -1.4 9.529542069048065E-5 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -4.0 1.2000000000000002 0.0034479542091548337 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 5.025893315755168E-9 1.0051786631510336E-8 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -4.0 3.8 0.0034479542091548337 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 5.025893315755168E-9 1.0051786631510336E-8 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -4.0 6.4 0.0034479542091548337 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 5.025893315755168E-9 1.0051786631510336E-8 7.652445777156238E-10 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 1.1179959516236013E-6 3.726653172078671E-7 5.101630518104158E-10 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
-1.4 -1.4 -4.0 0.015587689825621174 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 -1.4 -1.4 0.015587690157605366 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 -1.4 1.2000000000000002 0.0168283971286465 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 1.643252890960804E-4 4.829895964611121E-4 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 -1.4 3.8 0.030821607432513835 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 1.643252890960804E-4 0.0020385521694362696 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 6.377038147630198E-10 1.4938662645098218E-4 0.005613476283413373 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 -1.4 6.4 0.030821607432513835 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 1.2754076295260396E-9 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 1.536386186208416E-7 4.6557157157830784E-8 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 4.1264192491381304E-5 2.0632096245690652E-5 6.377038147630198E-10 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 1.643252890960804E-4 0.0020385521694362696 7.652445777156238E-10 3.7346656612745544E-4 0.0027798438674130946 6.377038147630198E-10 1.4938662645098218E-4 0.005613476283413373 5.101630518104158E-10 3.9836433720261914E-4 0.053328024692427034 0.37531109885139957
-1.4 1.2000000000000002 -4.0 1.2264640689183994 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 1.2000000000000002 -1.4 1.226464068889791 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 1.2000000000000002 1.2000000000000002 1.2264305658932078 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 1.2754076295260396E-9 1.643252890960804E-4 4.829895964611121E-4 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 1.2000000000000002 3.8 1.218347394042216 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 0.00198410947443703 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 1.2754076295260396E-9 1.643252890960804E-4 0.24770532524192374 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513996 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 1.2000000000000002 6.4 1.218347394042216 1.2754076295260396E-9 3.9836433720261914E-4 4.3908145132828363E-4 1.2754076295260396E-9 3.286505781921608E-4 0.006547561265642199 8.417690354871861E-10 1.643252890960804E-4 0.00198410947443703 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 1.2754076295260396E-9 3.286505781921608E-4 0.06530657069759287 6.377038147630198E-10 3.4856879505229174E-4 0.17810882917525328 1.2754076295260396E-9 1.643252890960804E-4 0.2477053252419236 7.652445777156238E-10 3.7346656612745544E-4 0.3377799889662596 6.377038147630198E-10 1.4938662645098218E-4 0.03753110988513994 5.101630518104158E-10 3.9836433720261914E-4 0.3565455439088296 0.48675225595997157
-1.4 3.8 -4.0 3.3842258416297555 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 3.8 -1.4 3.38422584128568 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 3.8 1.2000000000000002 3.383822900647722 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 1.2754076295260396E-9 1.643252890960804E-4 4.829895964611121E-4 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 6.377038147630198E-10 1.4938662645098218E-4 7.318024188804729E-5 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 3.8 3.8 3.3788851658506083 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 0.03753110988513996 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 1.2754076295260396E-9 1.643252890960804E-4 0.13061314139518573 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 6.377038147630198E-10 1.4938662645098218E-4 0.00198410947443703 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 3.8 6.4 3.3788851658506083 1.2754076295260396E-9 3.9836433720261914E-4 0.22518665931083973 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 8.417690354871861E-10 1.643252890960804E-4 0.03753110988513994 1.2754076295260396E-9 3.286505781921608E-4 0.12385266262096187 1.2754076295260396E-9 3.286505781921608E-4 0.1238526626209618 6.377038147630198E-10 3.4856879505229174E-4 0.3377799889662596 1.2754076295260396E-9 1.643252890960804E-4 0.13061314139518573 7.652445777156238E-10 3.7346656612745544E-4 0.17810882917525328 6.377038147630198E-10 1.4938662645098218E-4 0.00198410947443703 5.101630518104158E-10 3.9836433720261914E-4 0.018849040007151784 7.318024188804728E-4
-1.4 6.4 -4.0 4.901620731777515 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
-1.4 6.4 -1.4 4.901620729759181 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
-1.4 6.4 1.2000000000000002 4.9016185295490295 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 7.318024188804729E-5 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 2.4149479823055604E-4 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 1.2754076295260396E-9 2.0632096245690652E-5 4.1264192491381304E-5 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
-1.4 6.4 3.8 4.9016185295490295 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 0.005613476283413368 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 1.2754076295260396E-9 2.0632096245690652E-5 4.1264192491381304E-5 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
-1.4 6.4 6.4 4.9016185295490295 1.2754076295260396E-9 3.9836433720261914E-4 0.2251866593108396 1.2754076295260396E-9 3.286505781921608E-4 0.018524471735264114 8.417690354871861E-10 1.643252890960804E-4 0.005613476283413368 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 1.2754076295260396E-9 3.286505781921608E-4 0.0010192760847181328 6.377038147630198E-10 3.4856879505229174E-4 0.0027798438674130894 1.2754076295260396E-9 2.0632096245690652E-5 4.1264192491381304E-5 7.652445777156238E-10 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 1.3967147147349234E-7 4.6557157157830784E-8 5.101630518104158E-10 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 -4.0 -4.0 0.004505570365015351 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 -1.4 0.004516724964779353 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 1.2000000000000002 0.005740311046607863 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 3.8 0.005740311046607863 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -4.0 6.4 0.005740311046607863 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
1.2000000000000002 -1.4 -4.0 0.016574853989553516 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 -1.4 -1.4 0.016574853989553516 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 -1.4 1.2000000000000002 0.022078771285177778 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 -1.4 3.8 0.0649229128935532 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 7.318024188804728E-4 0.0010192760847181348 0.0020385521694362696 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 3.659012094402364E-4 0.016840428850240115 0.005613476283413373 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 -1.4 6.4 0.0649229128935532 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 7.318024188804728E-4 0.0010192760847181348 0.0020385521694362696 4.3908145132828363E-4 0.002316536556177579 0.0027798438674130946 3.659012094402364E-4 0.016840428850240115 0.005613476283413373 2.9272096755218914E-4 0.04490781026730698 0.053328024692427034 0.37531109885139957
1.2000000000000002 1.2000000000000002 -4.0 1.6028861769016118 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 1.2000000000000002 -1.4 1.6028861769016118 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 1.2000000000000002 1.2000000000000002 1.602850796852079 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 1.2000000000000002 3.8 1.5465321129728171 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 0.006547561265642199 0.00198410947443703 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 7.318024188804728E-4 0.14175392820954397 0.3212564889335813 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 3.659012094402364E-4 0.12886720746322178 0.04867522559599716 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 1.2000000000000002 6.4 1.5530756216454504 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 7.318024188804728E-4 0.013095122531284397 0.006547561265642199 4.829895964611121E-4 0.006547561265642199 0.00198410947443703 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 7.318024188804728E-4 0.13061314139518573 0.06530657069759287 3.659012094402364E-4 0.1385290893585303 0.17810882917525328 7.318024188804728E-4 0.1238526626209618 0.2477053252419236 4.3908145132828363E-4 0.32216801865805444 0.43807703036397444 3.659012094402364E-4 0.1125933296554198 0.03753110988513994 2.9272096755218914E-4 0.3436458865685914 0.46241464316197295 0.48675225595997157
1.2000000000000002 3.8 -4.0 3.582628987396945 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 3.8 -1.4 3.582628987396945 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 3.8 1.2000000000000002 3.582479292942205 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 3.8 3.8 3.5711029294843954 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 0.14175392820954397 0.04867522559599716 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 7.318024188804728E-4 0.06530657069759287 0.13061314139518573 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 3.659012094402364E-4 0.005952328423311089 0.00198410947443703 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 3.8 6.4 3.5711029294843954 7.318024188804728E-4 0.3436458865685914 0.29205135357598294 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 4.829895964611121E-4 0.1238526626209618 0.03753110988513994 7.318024188804728E-4 0.28350785641908793 0.16062824446679064 7.318024188804728E-4 0.2477053252419236 0.1238526626209618 3.659012094402364E-4 0.3006901507475175 0.43807703036397444 7.318024188804728E-4 0.06530657069759287 0.13061314139518573 4.3908145132828363E-4 0.14842402431271107 0.17810882917525328 3.659012094402364E-4 0.005952328423311089 0.00198410947443703 2.9272096755218914E-4 0.01587287579549624 0.018849040007151784 7.318024188804728E-4
1.2000000000000002 6.4 -4.0 4.924579717891391 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 6.4 -1.4 4.924579717891391 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 6.4 1.2000000000000002 4.924579149758572 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 6.4 3.8 4.924579149758572 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 0.018524471735264114 0.005613476283413368 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
1.2000000000000002 6.4 6.4 4.924579149758572 7.318024188804728E-4 0.3002488790811195 0.2251866593108396 7.318024188804728E-4 0.03704894347052823 0.018524471735264114 4.829895964611121E-4 0.018524471735264114 0.005613476283413368 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 7.318024188804728E-4 0.0020385521694362657 0.0010192760847181328 3.659012094402364E-4 0.002162100785765736 0.0027798438674130894 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 -4.0 -4.0 0.004505570365015351 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -4.0 -1.4 0.004516724964779353 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -4.0 1.2000000000000002 0.005740311046607863 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -4.0 3.8 0.005740311046607863 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -4.0 6.4 0.005740311046607863 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 1.0051786631510336E-8 9.137987846827578E-9 1.1422484808534473E-8 1.3706981770241366E-8 1.8633265860393355E-6 1.1179959516236013E-6 3.726653172078671E-7 1.4906612688314684E-6 2.9813225376629368E-6 3.5403205134747374E-6 3.3546262790251185E-4
3.8 -1.4 -4.0 0.06873599549883373 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 -1.4 -1.4 0.06873599549883373 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 -1.4 1.2000000000000002 0.07367558811216139 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 -1.4 3.8 0.10326367470558286 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 0.0030887154082367718 0.0010192760847181348 4.829895964611121E-4 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 0.028067381417066863 0.016840428850240115 7.318024188804729E-5 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 -1.4 6.4 0.10326367470558286 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 1.536386186208416E-7 3.072772372416832E-7 1.536386186208416E-7 4.6557157157830784E-8 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 6.252150377482015E-5 4.1264192491381304E-5 2.0632096245690652E-5 3.1260751887410076E-5 4.37650526423741E-5 5.626935339733814E-5 0.0030887154082367718 0.0010192760847181348 4.829895964611121E-4 0.001853229244942063 0.002316536556177579 6.586221769924255E-4 0.028067381417066863 0.016840428850240115 7.318024188804729E-5 0.02245390513365349 0.04490781026730698 6.952122979364491E-4 0.37531109885139957
3.8 1.2000000000000002 -4.0 1.5776455322679288 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 1.2000000000000002 -1.4 1.5776455322679288 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 1.2000000000000002 1.2000000000000002 1.5776455322679288 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 1.2000000000000002 3.8 1.8435738229230794 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 0.013095122531284397 0.006547561265642199 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 0.48675225595997157 0.14175392820954397 4.829895964611121E-4 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 0.24337612797998578 0.12886720746322178 7.318024188804729E-5 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 1.2000000000000002 6.4 1.788576728144589 7.318024188804728E-4 5.854419351043783E-4 4.3908145132828363E-4 0.019841094744370298 0.013095122531284397 2.4149479823055604E-4 0.013095122531284397 0.006547561265642199 7.318024188804729E-5 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.19789869908361474 0.13061314139518573 2.4149479823055604E-4 0.09894934954180737 0.1385290893585303 6.586221769924255E-4 0.37531109885139935 0.1238526626209618 4.829895964611121E-4 0.29205135357598294 0.32216801865805444 6.586221769924255E-4 0.18765554942569967 0.1125933296554198 7.318024188804729E-5 0.19470090238398863 0.3436458865685914 6.952122979364491E-4 0.48675225595997157
3.8 3.8 -4.0 3.863051074650122 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 3.8 -1.4 3.863051074650122 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 3.8 1.2000000000000002 3.863051074650122 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 7.318024188804728E-4 2.4149479823055604E-4 4.829895964611121E-4 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 3.659012094402364E-4 2.1954072566414182E-4 7.318024188804729E-5 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 3.8 3.8 3.7613292456632803 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.3212564889335813 0.14175392820954397 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 0.19789869908361474 0.06530657069759287 4.829895964611121E-4 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 0.009920547372185149 0.005952328423311089 7.318024188804729E-5 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 3.8 6.4 3.817036120584763 0.48675225595997157 0.3436458865685914 4.3908145132828363E-4 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.2477053252419236 0.1238526626209618 7.318024188804729E-5 0.48675225595997157 0.28350785641908793 2.4149479823055604E-4 0.37531109885139935 0.2477053252419236 2.4149479823055604E-4 0.24337612797998578 0.3006901507475175 6.586221769924255E-4 0.19789869908361474 0.06530657069759287 4.829895964611121E-4 0.11873921945016884 0.14842402431271107 6.586221769924255E-4 0.009920547372185149 0.005952328423311089 7.318024188804729E-5 0.00793643789774812 0.01587287579549624 6.952122979364491E-4 7.318024188804728E-4
3.8 6.4 -4.0 4.980072762664452 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 6.4 -1.4 4.980072762664452 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 6.4 1.2000000000000002 4.980072275823434 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 4.829895964611121E-4 2.4149479823055604E-4 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 7.318024188804728E-4 4.829895964611121E-4 2.4149479823055604E-4 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 6.4 3.8 4.895552997878364 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 0.03704894347052823 0.018524471735264114 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
3.8 6.4 6.4 4.895552997878364 0.37531109885139935 0.3002488790811195 4.3908145132828363E-4 0.05613476283413368 0.03704894347052823 2.4149479823055604E-4 0.03704894347052823 0.018524471735264114 7.318024188804729E-5 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.003088715408236766 0.0020385521694362657 2.4149479823055604E-4 0.001544357704118383 0.002162100785765736 6.586221769924255E-4 6.252150377482015E-5 2.0632096245690652E-5 4.1264192491381304E-5 3.751290226489209E-5 4.6891127831115114E-5 5.626935339733814E-5 2.327857857891539E-7 1.3967147147349234E-7 4.6557157157830784E-8 1.8622862863132314E-7 3.7245725726264627E-7 4.422929929993924E-7 1.2754076295260396E-9
6.4 -4.0 -4.0 0.0044920416475705445 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -4.0 -1.4 0.0045031963733368225 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -4.0 1.2000000000000002 0.005726806245408842 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -4.0 3.8 0.005726806245408842 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -4.0 6.4 0.005726806245408842 2.576757109154981E-18 2.061405687323985E-18 1.5460542654929886E-18 1.2664165549094176E-14 8.358349262402156E-15 4.179174631201078E-15 8.358349262402156E-15 4.179174631201078E-15 1.2664165549094177E-15 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 2.289734845645553E-11 1.511224998126065E-11 7.556124990630325E-12 1.1448674228227765E-11 1.602814391951887E-11 2.0607613610809977E-11 1.522997974471263E-8 5.025893315755168E-9 8.417690354871861E-10 9.137987846827578E-9 1.1422484808534473E-8 1.1478668665734357E-9 1.8633265860393355E-6 1.1179959516236013E-6 1.2754076295260396E-10 1.4906612688314684E-6 2.9813225376629368E-6 1.2116372480497376E-9 3.3546262790251185E-4
6.4 -1.4 -4.0 0.06640583808052351 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 -1.4 -1.4 0.06640583808052351 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 -1.4 1.2000000000000002 0.07144668911740074 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 7.318024188804728E-4 1.643252890960801E-4 8.417690354871861E-10 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 -1.4 3.8 0.10111184438833831 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 0.0030887154082367718 1.643252890960801E-4 8.417690354871861E-10 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 0.028067381417066863 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 -1.4 6.4 0.10111184438833831 1.2754076295260396E-9 1.0203261036208317E-9 7.652445777156238E-10 4.655715715783078E-7 3.072772372416832E-7 4.2088451774359307E-10 3.072772372416832E-7 1.536386186208416E-7 1.2754076295260396E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 6.252150377482015E-5 4.1264192491381304E-5 4.2088451774359307E-10 3.1260751887410076E-5 4.37650526423741E-5 1.1478668665734357E-9 0.0030887154082367718 1.643252890960801E-4 8.417690354871861E-10 0.001853229244942063 3.734665661274548E-4 1.1478668665734357E-9 0.028067381417066863 1.493866264509819E-4 1.2754076295260396E-10 0.02245390513365349 3.983643372026185E-4 1.2116372480497376E-9 0.37531109885139957
6.4 1.2000000000000002 -4.0 1.5169817918546202 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 1.2000000000000002 -1.4 1.5169817918546202 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 1.2000000000000002 1.2000000000000002 1.5169817918546202 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 7.318024188804728E-4 1.643252890960801E-4 8.417690354871861E-10 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 1.2000000000000002 3.8 1.778562082104366 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 0.013095122531284397 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 0.37531109885139935 1.643252890960801E-4 8.417690354871861E-10 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 1.2000000000000002 6.4 1.778562082104366 7.318024188804728E-4 3.983643372026185E-4 7.652445777156238E-10 0.019841094744370298 3.286505781921602E-4 4.2088451774359307E-10 0.013095122531284397 1.643252890960801E-4 1.2754076295260396E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.19789869908361474 3.286505781921602E-4 4.2088451774359307E-10 0.09894934954180737 3.485687950522911E-4 1.1478668665734357E-9 0.37531109885139935 1.643252890960801E-4 8.417690354871861E-10 0.2251866593108396 3.734665661274548E-4 1.1478668665734357E-9 0.18765554942569967 1.493866264509819E-4 1.2754076295260396E-10 0.15012443954055976 3.983643372026185E-4 1.2116372480497376E-9 0.48675225595997157
6.4 3.8 -4.0 3.9281594486363876 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 3.8 -1.4 3.9281594486363876 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 3.8 1.2000000000000002 3.9281594486363876 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 7.318024188804728E-4 1.643252890960801E-4 8.417690354871861E-10 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 3.659012094402364E-4 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 3.8 3.8 3.784782968892101 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.2477053252419236 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 0.19789869908361474 1.643252890960801E-4 8.417690354871861E-10 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 0.009920547372185149 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 3.8 6.4 3.784782968892101 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.2477053252419236 1.643252890960801E-4 1.2754076295260396E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.37531109885139935 3.286505781921602E-4 4.2088451774359307E-10 0.18765554942569967 3.485687950522911E-4 1.1478668665734357E-9 0.19789869908361474 1.643252890960801E-4 8.417690354871861E-10 0.11873921945016884 3.734665661274548E-4 1.1478668665734357E-9 0.009920547372185149 1.493866264509819E-4 1.2754076295260396E-10 0.00793643789774812 3.983643372026185E-4 1.2116372480497376E-9 7.318024188804728E-4
6.4 6.4 -4.0 4.9833661822036985 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 1.7006596920422875E-18 8.503298460211438E-19 2.576757109154981E-19 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 2.576757109154981E-18 1.7006596920422875E-18 8.503298460211438E-19 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 2.576757109154981E-18 8.503298460211438E-19 1.7006596920422875E-18 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 1.2883785545774905E-18 7.730271327464943E-19 2.576757109154981E-19 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9
6.4 6.4 -1.4 4.9833661822036985 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 8.417690354871861E-10 4.2088451774359307E-10 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 1.2754076295260396E-9 8.417690354871861E-10 4.2088451774359307E-10 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 1.2754076295260396E-9 4.2088451774359307E-10 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 6.377038147630198E-10 3.826222888578119E-10 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9
6.4 6.4 1.2000000000000002 4.983365694155616 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 4.829895964611121E-4 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 7.318024188804728E-4 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 6.252150377482015E-5 2.0632096245690652E-5 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9
6.4 6.4 3.8 4.8956191766547725 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 0.03704894347052823 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 6.252150377482015E-5 2.0632096245690652E-5 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9
6.4 6.4 6.4 4.8956191766547725 0.37531109885139935 3.983643372026185E-4 7.652445777156238E-10 0.05613476283413368 3.286505781921602E-4 4.2088451774359307E-10 0.03704894347052823 1.643252890960801E-4 1.2754076295260396E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.003088715408236766 3.286505781921602E-4 4.2088451774359307E-10 0.001544357704118383 3.485687950522911E-4 1.1478668665734357E-9 6.252150377482015E-5 2.0632096245690652E-5 8.417690354871861E-10 3.751290226489209E-5 4.6891127831115114E-5 1.1478668665734357E-9 2.327857857891539E-7 1.3967147147349234E-7 1.2754076295260396E-10 1.8622862863132314E-7 3.7245725726264627E-7 1.2116372480497376E-9 1.2754076295260396E-9

View File

@ -1,35 +0,0 @@
FUNCTION_BLOCK Zzz
VAR_INPUT
temperature : REAL; // RANGE := ( 100 .. 150 );
END_VAR
VAR_OUTPUT
out : REAL;
END_VAR
FUZZIFY temperature
TERM low := SIGM -4 125;
TERM high := SIGM 4 125;
RANGE := (100.0 .. 150.0); // Added range for temperature
END_FUZZIFY
DEFUZZIFY out
TERM low := (0,0) (5,1) (10,0);
TERM mid := (10,0) (15,1) (20,0);
TERM high := (20,0) (25,1) (30,0);
METHOD : COG;
DEFAULT := 0;
RANGE := (0.0 .. 30.0); // Added range for out
END_DEFUZZIFY
RULEBLOCK No1
AND : MIN;
ACT : MIN;
ACCU : MAX;
RULE 1 : IF temperature IS low THEN out IS low;
RULE 2 : IF temperature IS high THEN out IS high;
END_RULEBLOCK
END_FUNCTION_BLOCK

View File

@ -1,6 +0,0 @@
temperature out No1.1 No1.2
100.0 5.000020040080156 1.0 3.7200759760208356E-44
110.0 5.000020040080156 1.0 8.75651076269652E-27
120.0 5.000020122403032 0.9999999979388463 2.0611536181902037E-9
130.0 24.999979877597212 2.0611536181902037E-9 0.9999999979388463
140.0 24.99997995991997 8.75651076269652E-27 1.0

242
README.md
View File

@ -1,242 +0,0 @@
An FCL parser with a scikit-fuzzy back-end
=======================================
This is a parser for the Fuzzy Control Language
[FCL](https://en.wikipedia.org/wiki/Fuzzy_Control_Language)
along with a back-end for
[scikit-fuzzy](https://github.com/scikit-fuzzy/scikit-fuzzy),
a fuzzy logic toolkit for SciPy.
The basic use-case is to parse a FCL file and then use the fuzzy rules
in your `scikit-fuzzy` code. For example:
```python
from fcl_parser import FCLParser
p = FCLParser() # Create the parser
p.read_fcl_file('tipper.fcl') # Parse a file
# ... and so on, as usual for skfuzzy:
cs = ctrl.ControlSystem(p.rules)
```
After reading a file the parser object has attributes to supply the
`rules` (as above) or the `antecedents`, the `consequents`, or all the
`fuzzy_variables` All these are represented via lists of their
corresponding `scikit-fuzzy` objects.
Other Entry Points
------------------
The parser can be used to accept program fragments, so you can
interleave its use with regular `scikit-fuzzy` code.
For example, in the following `scikit-fuzzy` code we set up the
tipping example in the usual way by specifying the variables and
defining some membership functions for the inputs:
```python
# First we set up the variables in the usual way:
food = ctrl.Antecedent(np.linspace(0, 10, 11), 'quality')
service = ctrl.Antecedent(np.linspace(0, 10, 11), 'service')
tip = ctrl.Consequent(np.linspace(0, 25, 26), 'tip')
# Auto-generate the membership functions for the inputs:
food.automf(3)
service.automf(3)
```
We can define the output variable using FCL code, in this case getting
the parser to parse a membership function `mf` definition:
```python
# Define a FCL parser-object:
p = FCLParser()
# Use FCL to define membership functions for the output:
tip['bad'] = p.mf('Triangle 0 0 13', tip.universe)
tip['middling'] = p.mf('Triangle 0 13 25', tip.universe)
tip['lots'] = p.mf('Triangle 13 25 25', tip.universe)
```
Last, we can define the rules in FCL, and get a `scikit-fuzzy` rule
object for each of them if we like:
```python
# We need to tell the parser about the variables before we parse any rules:
p.add_vars([food, service, tip])
# Now use FCL to define three rules:
rule1 = p.rule('IF quality is poor OR service is poor THEN tip is bad')
rule2 = p.rule('IF service is average THEN tip is middling')
rule3 = p.rule('IF service is good OR quality is good THEN tip is lots')
# To get the control system, just add the rules (from the parser):
tipping = ctrl.ControlSystem(p.rules)
```
There are some more examples of mixed FCL/skfuzzy use in the file
[tests/test_fcl_parser.py](./tests/test_fcl_parser.py)
Dependencies
------------
The scanner is written using
[PLY](http://www.dabeaz.com/ply/ply.html) (Python Lex-Yacc),
so you need to install PLY before the code here will work.
$ pip install ply
You don't need to import this anywhere, my scanner code just needs it.
The parser is hand-written so we don't actually use the
parser-generation features of PLY.
What's implemented
------------------
Much of FCL is implemented, concentrating on
the subset of FCL that can be translated easily into
`scikit-fuzzy`. That includes most parts of a standard
(Mamdani-style) fuzzy system.
At the moment the main options are for:
* defuzzification methods: cog, coa, lm, rm, mom
* membership functions: quite a collection; have a look in
[fcl_symbols.py](./fcl_symbols.py) for a list.
* and/or methods (norms and co-norms): again, quite a few,
including (norms) min, prod, bdif, drp, eprod, hprod, nilmin
and their co-norm duals.
I was doing this with an eye on the XML standard, hence the rather
large selection of membership functions and norms.
I've also implemented the *hedge functions* listed in the IEEE standard,
so you can write things like:
```python
rule1 = p.rule('IF quality is slightly poor OR service is very poor THEN tip is extremely bad')
```
What happens here is that when the rule is processed, the hedge
functions are applied to the corresponding membership function, and a
new membership function is generated and added to the variable. For
example, a membership function called `_slightly_poor` would be added
to the variable `quality` above.
What's not implemented
------------------
Most notably _not_ implemented (yet) are options for:
* activation method (this is hard-wired to `MIN`).
At the moment `scikit-fuzzy` doesn't have an option to change this;
its CrispValueCalculator always uses np.minimum.
* accumulation method (well, not exactly).
This is a small incompatibility: FCL sees the accumulation as a
property of the rule-base, whereas `scikit-fuzzy` sees it as a
property of the output variables. I could fix the parser to
propagate the setting from the rules to the variables used in those
rules, but this might cause unexpected behaviour if the variables
are used in more than one rule base.
You can set an 'ACCU' option as part of an (output) variable
definition, and this will be propagated through to `scikit-fuzzy`.
* default values for variables.
In FCL these values are used in defuzzification when all the
memberships have been cut to zero area. As far as I can see this
case will raise an exception in `scikit-fuzzy`.
The parser accepts these, I just haven't figured out how to get them
into the `scikit-fuzzy` code, so they are ignored for the moment.
Compliance
----------
First of all, I'm working from the draft of the FCL standard (IEC
TC65/WG 7/TF8), plus any examples I could find, so I may have missed a
few things.
Second, the parser does not enforce strict conformance to the FCL standard,
and is somewhat liberal in the kind of FCL code it will accept.
This is intended as a feature, not a bug.
In particular:
* Case is not relevant for keywords
(so `rule` and `RULE` are the same)
but note that case _is_ relevant for identifiers (e.g. variable names).
* The semi-colon at the end of lines can be left out in most cases.
* The parser doesn't impose a strict ordering on the contents of
variable definitions, so you can mix `TERM`, `RANGE`, `METHOD`
etc. in your preferred order.
I only made one real change to the FCL language
to better support `scikit-fuzzy`:
* When defining a variable range (universe) you can specify
the granularity using an optional `WITH` setting, thus:
```
RANGE := (0 .. 2.1) WITH 0.01
```
This maps directly to a NumPy `arange(1, 2.1, 0.01)` expression.
This is due to the way `scikit-fuzzy` calculates its membership
functions: these get worked out to point-lists when they are defined,
so I need to know the granularity to get this right.
This working-out is also the reason we can't really generate FCL from
a `scikit-fuzzy` program, since the information on the original
definition of the membership functions is not retained once the
point-sets have been calculated.
Reading the code
----------------
The main functionality is in [fcl_parser.py](./fcl_parser.py)
which contains the
hand-written top-down parser. This is essentially a context-free
grammar, with a Python method for each non-terminal.
This can be called from the command-line if you just want to parse a file;
for example:
```
$ python fcl_parser.py tests/tipper.fcl
```
The scanner code is in [fcl_scanner.py](./fcl_scanner.py).
This uses a few tricks related
to PLY, but us essentially a list of regular expressions plus some
extra code to check tokens etc.
The symbol table is in [fcl_symbols.py](./fcl_symbols.py)
and contains a list of the
variables and rules, added in as they are processed. The mappings
between option names (membership functions, defuzzification method
etc.) is also kept here.
The other files are simple auxiliary definitions: some extra
membership functions (that are not in `scikit-fuzzy`) are defined in
[extramf.py](./extramf.py)
and the t-norms and their duals are defined in
[norms.py](./norms.py).
The set of hedge functions as defined in the IEEE standard is implemented in
[hedges.py](./hedges.py).
[James Power](http://www.cs.nuim.ie/~jpower/),
27 August 2018.

Binary file not shown.

Binary file not shown.

Binary file not shown.

76
env/bin/activate vendored
View File

@ -1,76 +0,0 @@
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly
deactivate () {
# reset old environment variables
if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
PATH="${_OLD_VIRTUAL_PATH:-}"
export PATH
unset _OLD_VIRTUAL_PATH
fi
if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
hash -r
fi
if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
PS1="${_OLD_VIRTUAL_PS1:-}"
export PS1
unset _OLD_VIRTUAL_PS1
fi
unset VIRTUAL_ENV
if [ ! "$1" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}
# unset irrelevant variables
deactivate nondestructive
VIRTUAL_ENV="/home/ivan/Uczelnia/LSR/System/env"
export VIRTUAL_ENV
_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH
# unset PYTHONHOME if set
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
# could use `if (set -u; : $PYTHONHOME) ;` in bash
if [ -n "${PYTHONHOME:-}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
unset PYTHONHOME
fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
_OLD_VIRTUAL_PS1="${PS1:-}"
if [ "x(env) " != x ] ; then
PS1="(env) ${PS1:-}"
else
if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then
# special case for Aspen magic directories
# see http://www.zetadev.com/software/aspen/
PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1"
fi
fi
export PS1
fi
# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
hash -r
fi

37
env/bin/activate.csh vendored
View File

@ -1,37 +0,0 @@
# This file must be used with "source bin/activate.csh" *from csh*.
# You cannot run it directly.
# Created by Davide Di Blasi <davidedb@gmail.com>.
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate'
# Unset irrelevant variables.
deactivate nondestructive
setenv VIRTUAL_ENV "/home/ivan/Uczelnia/LSR/System/env"
set _OLD_VIRTUAL_PATH="$PATH"
setenv PATH "$VIRTUAL_ENV/bin:$PATH"
set _OLD_VIRTUAL_PROMPT="$prompt"
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
if ("env" != "") then
set env_name = "env"
else
if (`basename "VIRTUAL_ENV"` == "__") then
# special case for Aspen magic directories
# see http://www.zetadev.com/software/aspen/
set env_name = `basename \`dirname "$VIRTUAL_ENV"\``
else
set env_name = `basename "$VIRTUAL_ENV"`
endif
endif
set prompt = "[$env_name] $prompt"
unset env_name
endif
alias pydoc python -m pydoc
rehash

75
env/bin/activate.fish vendored
View File

@ -1,75 +0,0 @@
# This file must be used with ". bin/activate.fish" *from fish* (http://fishshell.org)
# you cannot run it directly
function deactivate -d "Exit virtualenv and return to normal shell environment"
# reset old environment variables
if test -n "$_OLD_VIRTUAL_PATH"
set -gx PATH $_OLD_VIRTUAL_PATH
set -e _OLD_VIRTUAL_PATH
end
if test -n "$_OLD_VIRTUAL_PYTHONHOME"
set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
set -e _OLD_VIRTUAL_PYTHONHOME
end
if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
functions -e fish_prompt
set -e _OLD_FISH_PROMPT_OVERRIDE
functions -c _old_fish_prompt fish_prompt
functions -e _old_fish_prompt
end
set -e VIRTUAL_ENV
if test "$argv[1]" != "nondestructive"
# Self destruct!
functions -e deactivate
end
end
# unset irrelevant variables
deactivate nondestructive
set -gx VIRTUAL_ENV "/home/ivan/Uczelnia/LSR/System/env"
set -gx _OLD_VIRTUAL_PATH $PATH
set -gx PATH "$VIRTUAL_ENV/bin" $PATH
# unset PYTHONHOME if set
if set -q PYTHONHOME
set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
set -e PYTHONHOME
end
if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
# fish uses a function instead of an env var to generate the prompt.
# save the current fish_prompt function as the function _old_fish_prompt
functions -c fish_prompt _old_fish_prompt
# with the original prompt function renamed, we can override with our own.
function fish_prompt
# Save the return status of the last command
set -l old_status $status
# Prompt override?
if test -n "(env) "
printf "%s%s" "(env) " (set_color normal)
else
# ...Otherwise, prepend env
set -l _checkbase (basename "$VIRTUAL_ENV")
if test $_checkbase = "__"
# special case for Aspen magic directories
# see http://www.zetadev.com/software/aspen/
printf "%s[%s]%s " (set_color -b blue white) (basename (dirname "$VIRTUAL_ENV")) (set_color normal)
else
printf "%s(%s)%s" (set_color -b blue white) (basename "$VIRTUAL_ENV") (set_color normal)
end
end
# Restore the return status of the previous command.
echo "exit $old_status" | .
_old_fish_prompt
end
set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
end

View File

@ -1,8 +0,0 @@
#!/home/ivan/Uczelnia/LSR/System/env/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from setuptools.command.easy_install import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

View File

@ -1,8 +0,0 @@
#!/home/ivan/Uczelnia/LSR/System/env/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from setuptools.command.easy_install import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

8
env/bin/f2py vendored
View File

@ -1,8 +0,0 @@
#!/home/ivan/Uczelnia/LSR/System/env/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from numpy.f2py.f2py2e import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

8
env/bin/f2py3 vendored
View File

@ -1,8 +0,0 @@
#!/home/ivan/Uczelnia/LSR/System/env/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from numpy.f2py.f2py2e import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

8
env/bin/f2py3.6 vendored
View File

@ -1,8 +0,0 @@
#!/home/ivan/Uczelnia/LSR/System/env/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from numpy.f2py.f2py2e import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

45
env/bin/hcltool vendored
View File

@ -1,45 +0,0 @@
#!/home/ivan/Uczelnia/LSR/System/env/bin/python
"""Command-line tool to validate HCL and pretty-print JSON from it
Usage::
$ echo '{"json":"obj"}' | hcltool
{
"json": "obj"
}
$ echo '{ 1.2:3.4}' | python -m json.tool
Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
Copy/pasted from json.tool, distributed under the python license.
"""
import sys
import json
import hcl
def main():
if len(sys.argv) == 1:
infile = sys.stdin
outfile = sys.stdout
elif len(sys.argv) == 2:
infile = open(sys.argv[1], 'rb')
outfile = sys.stdout
elif len(sys.argv) == 3:
infile = open(sys.argv[1], 'rb')
outfile = open(sys.argv[2], 'wb')
else:
raise SystemExit(sys.argv[0] + " [infile [outfile]]")
with infile:
try:
obj = hcl.load(infile)
except ValueError as e:
raise SystemExit(e)
with outfile:
json.dump(obj, outfile, sort_keys=True,
indent=4, separators=(',', ': '))
outfile.write('\n')
if __name__ == '__main__':
main()

8
env/bin/pip vendored
View File

@ -1,8 +0,0 @@
#!/home/ivan/Uczelnia/LSR/System/env/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

8
env/bin/pip3 vendored
View File

@ -1,8 +0,0 @@
#!/home/ivan/Uczelnia/LSR/System/env/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

8
env/bin/pip3.6 vendored
View File

@ -1,8 +0,0 @@
#!/home/ivan/Uczelnia/LSR/System/env/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pip._internal.cli.main import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

1
env/bin/python vendored
View File

@ -1 +0,0 @@
python3.6

1
env/bin/python3 vendored
View File

@ -1 +0,0 @@
python3.6

1
env/bin/python3.6 vendored
View File

@ -1 +0,0 @@
/usr/bin/python3.6

Some files were not shown because too many files have changed in this diff Show More