├── docs ├── Mesh.png └── README.md ├── .gitignore ├── src ├── iscomment.m ├── iskey.m ├── iskeyword.m ├── rotationFromQuaternion.m ├── randomQuaternion.m ├── findGrainAtLocation.m ├── eulerFromRotation.m ├── correctSymmetry.m ├── generateTextureEBSD.m ├── distributeOneElementOneGrains.m ├── findElementCenters.m ├── generateTextureFromMTEXODF.m ├── calcPartDomain.m ├── generateTextureOri.m ├── generateRandomTexture.m ├── distributeElementsInGrains.m ├── generateTextureXray.m ├── importEBSD.m ├── distributeElementsInGrainsFromEBSD.m ├── importORI.m ├── readinput.m ├── validateInput.m ├── writeabaqus.m └── Main.m ├── texture ├── Xray_pf200_uncorr.dat ├── Xray_pf220_uncorr.dat ├── Xray_pf311_uncorr.dat ├── Xray_pf111_uncorr.dat └── Texture.ori └── LICENSE.md /docs/Mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frodal/Texture2Abaqus/HEAD/docs/Mesh.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore Matlab temperary files 2 | *.asv 3 | 4 | # Ignore output folder 5 | input/output 6 | output 7 | 8 | # Ignore texture files other than those listed below 9 | texture/* 10 | !texture/Texture.ori 11 | !texture/Xray_pf111_uncorr.dat 12 | !texture/Xray_pf200_uncorr.dat 13 | !texture/Xray_pf220_uncorr.dat 14 | !texture/Xray_pf311_uncorr.dat 15 | 16 | # Ignore input files other than the one listed below 17 | input/* 18 | !input/Smooth.inp 19 | -------------------------------------------------------------------------------- /src/iscomment.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function bol=iscomment(line) 18 | 19 | bol=false; 20 | if length(line)>=2 21 | if strcmp(line(1:2),'**') 22 | bol=true; 23 | end 24 | end 25 | end -------------------------------------------------------------------------------- /src/iskey.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function bol=iskey(line,key) 18 | 19 | bol=false; 20 | l=length(key); 21 | 22 | if length(line)>=l 23 | if strcmp(line(1:l),key) 24 | bol=true; 25 | end 26 | end 27 | end -------------------------------------------------------------------------------- /src/iskeyword.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function bol=iskeyword(line) 18 | 19 | bol=false; 20 | if length(line)>=2 21 | if ~strcmp(line(1:2),'**') && strcmp(line(1),'*') 22 | bol=true; 23 | end 24 | end 25 | end -------------------------------------------------------------------------------- /src/rotationFromQuaternion.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function R=rotationFromQuaternion(q) 18 | 19 | R=[q.a^2+q.b^2-q.c^2-q.d^2, 2*(q.b*q.c-q.a*q.d), 2*(q.a*q.c+q.b*q.d); 20 | 2*(q.b*q.c+q.a*q.d), q.a^2-q.b^2+q.c^2-q.d^2, 2*(q.c*q.d-q.a*q.b); 21 | 2*(q.b*q.d-q.a*q.c), 2*(q.a*q.b+q.c*q.d), q.a^2-q.b^2-q.c^2+q.d^2]; 22 | end -------------------------------------------------------------------------------- /src/randomQuaternion.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function q=randomQuaternion() 18 | z=2; 19 | w=2; 20 | while (z > 1) 21 | x = 2*rand()-1; 22 | y = 2*rand()-1; 23 | z = x*x + y*y; 24 | end 25 | while (w > 1) 26 | u = 2*rand()-1; 27 | v = 2*rand()-1; 28 | w = u*u + v*v; 29 | end 30 | s = sqrt((1-z) / w); 31 | 32 | q.a = x; 33 | q.b = y; 34 | q.c = s*u; 35 | q.d = s*v; 36 | 37 | % q = quaternion(x, y, s*u, s*v); 38 | 39 | end -------------------------------------------------------------------------------- /src/findGrainAtLocation.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function grainId = findGrainAtLocation(grains,x,y) 18 | 19 | grainId = grains.findByLocation([x,y]); 20 | if isempty(grainId) 21 | [~,n] = min((grains.x-x).^2+(grains.y-y).^2); 22 | grainId = grains.findByLocation([grains.x(n),grains.y(n)]); 23 | end 24 | if length(grainId)~=1 25 | if length(grainId)>1 26 | grainId = grainId(1); 27 | elseif length(grainId)<1 28 | error('Could not find a grain to put here!'); 29 | end 30 | end 31 | end -------------------------------------------------------------------------------- /src/eulerFromRotation.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function ang=eulerFromRotation(R) 18 | 19 | if (abs(abs(R(3,3))-1)>1e-9) 20 | ang(1) = atan2(R(1,3),-R(2,3))*180/pi; 21 | ang(2) = acos(R(3,3))*180/pi; 22 | ang(3) = atan2(R(3,1),R(3,2))*180/pi; 23 | else 24 | ang(1) = atan2(R(2,1),R(1,1))*180/pi; 25 | ang(2) = acos(R(3,3))*180/pi; 26 | ang(3) = 0; 27 | end 28 | 29 | if (ang(1)<0) 30 | ang(1) = ang(1)+360; 31 | end 32 | if (ang(2)<0) 33 | ang(2) = ang(2)+360; 34 | end 35 | if (ang(3)<0) 36 | ang(3) = ang(3)+360; 37 | end 38 | end -------------------------------------------------------------------------------- /src/correctSymmetry.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [partDimension,partMinCoordinate] = correctSymmetry(pID,grainSize,partDimension,partMinCoordinate,symX,symY,symZ) 18 | 19 | sym = [symX, symY, symZ]; 20 | 21 | if symX || symY || symZ 22 | disp('Correcting for symmetry'); 23 | end 24 | 25 | % Center elements are halfed to account for symmetry 26 | for i=1:pID 27 | partMinCoordinate{i} = partMinCoordinate{i}-grainSize.*sym/2; 28 | for j=1:3 29 | if sym(j) && isfinite(partMinCoordinate{i}(j)) 30 | partDimension{i}(j) = partDimension{i}(j)+grainSize(j); 31 | end 32 | end 33 | end 34 | 35 | 36 | end -------------------------------------------------------------------------------- /src/generateTextureEBSD.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [phi1, PHI, phi2] = generateTextureEBSD(pID,grains_selected) 18 | 19 | disp('Extracting texture from EBSD scan') 20 | 21 | phi1=cell(1,pID); 22 | PHI=phi1; 23 | phi2=phi1; 24 | for id=1:pID 25 | phi1{id}=zeros(max(grains_selected.id),1); 26 | PHI{id}=zeros(max(grains_selected.id),1); 27 | phi2{id}=zeros(max(grains_selected.id),1); 28 | for grainId=grains_selected.id 29 | phi1{id}(grainId)=grains_selected(grainId).meanOrientation.phi1/degree; 30 | PHI{id}(grainId)=grains_selected(grainId).meanOrientation.Phi/degree; 31 | phi2{id}(grainId)=grains_selected(grainId).meanOrientation.phi2/degree; 32 | end 33 | end 34 | 35 | end -------------------------------------------------------------------------------- /src/distributeOneElementOneGrains.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [GrainSet,NGrainSets] = distributeOneElementOneGrains(pID,element) 18 | 19 | disp('Distributing elements in grains') 20 | 21 | % Finds the maximum number of grain sets for all parts 22 | NGrainSets=cell(pID); 23 | maxGrainSet = 1; 24 | for id=1:pID 25 | NGrainSets{id} = length(element{id}); 26 | if NGrainSets{id}>maxGrainSet 27 | maxGrainSet = NGrainSets{id}; 28 | end 29 | end 30 | 31 | % Determines which element belonging to which grain set 32 | GrainSet=cell(pID,maxGrainSet); 33 | for id=1:pID 34 | if id<=NGrainSets{id} 35 | for i=1:NGrainSets{id} 36 | GrainSet{id,i}(end+1)=element{id}(i); 37 | end 38 | end 39 | end 40 | end -------------------------------------------------------------------------------- /src/findElementCenters.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [elementCenter]=findElementCenters(pID,element,nodeElementID,nodeCoordinate) 18 | 19 | disp('Finding element centers') 20 | 21 | elementCenter=cell(pID,length(element{1})); 22 | for i=1:pID 23 | if i<=length(element) 24 | for elementID=element{i} 25 | nodeIDs=nodeElementID{i}{elementID}; 26 | N=length(nodeIDs); 27 | 28 | elementCenter{i,elementID}=nodeCoordinate{i}{nodeIDs(1)}; 29 | for n=2:N 30 | elementCenter{i,elementID}=elementCenter{i,elementID}+nodeCoordinate{i}{nodeIDs(n)}; 31 | end 32 | elementCenter{i,elementID}=elementCenter{i,elementID}./N; 33 | end 34 | end 35 | end 36 | end -------------------------------------------------------------------------------- /src/generateTextureFromMTEXODF.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [cp1,cp,cp2]=generateTextureFromMTEXODF(odf,pID,N,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint) 18 | % Requires: 19 | % MTEX (Available here: 20 | % http://mtex-toolbox.github.io/download.html) 21 | 22 | cp1=cell(1,pID); 23 | cp=cp1; 24 | cp2=cp1; 25 | 26 | NgrainsPerInt = 1; 27 | if shouldUseFCTaylorHomogenization 28 | NgrainsPerInt = nTaylorGrainsPerIntegrationPoint; 29 | end 30 | 31 | %% Extract orientations from ODF 32 | disp('Extracting orientations from ODF') 33 | 34 | progress(0,pID) 35 | for i=1:pID 36 | n=N{i}*NgrainsPerInt; 37 | [phi1_mtex,Phi_mtex,phi2_mtex] = Euler(calcOrientations(odf,n),'Bunge'); 38 | % converting from radians to degrees 39 | cp1{i} = phi1_mtex/degree; 40 | cp{i} = Phi_mtex/degree; 41 | cp2{i} = phi2_mtex/degree; 42 | progress(i,pID) 43 | end 44 | 45 | end -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # Texture2Abaqus 2 | 3 | Generates Abaqus include files from the crystallographic texture of an alloy for crystal plasticity finite element analyses. The generated texture can be random, generated from orientation data, X-ray polefigure data or an EBSD scan. The Abaqus include files generated are supposed to be used with a user-defined material subroutine, where the three first solution dependent state variables are the Bunge Euler angles. The Texture2Abaqus framework currently supports dependent meshes in Abaqus. 4 | 5 | ![Mesh](Mesh.png "Example of the grain structure generated with Texture2Abaqus") 6 | 7 | ## Getting Started 8 | 9 | To get a local copy up and running follow these simple steps. 10 | 11 | 1. Clone the project (`git clone --recursive https://github.com/frodal/Texture2Abaqus.git`) 12 | 2. Download and install the latest version of [Matlab](https://software.ntnu.no/ntnu/matlab) 13 | 3. Download and install the latest version of the [MTEX toolbox](https://mtex-toolbox.github.io/download) 14 | 4. Go into the `./src` folder and open `Main.m` in Matlab 15 | 5. Change the input fields according to your preferences and run the script 16 | 17 | ## Usage 18 | 19 | - Setup your copy of the repository by following the description above 20 | - Change the input fields in `./src/Main.m` according to your preferences and run the script 21 | 22 | ## License 23 | 24 | See `LICENSE.md` for more information. 25 | 26 | ## Contributing 27 | 28 | To contribute: 29 | 30 | 1. Fork the Project 31 | 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 32 | 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 33 | 4. Push to the Branch (`git push origin feature/AmazingFeature`) 34 | 5. Open a Pull Request 35 | 36 | ## Contact 37 | 38 | Bjørn Håkon Frodal - [@frodal](https://github.com/frodal) 39 | -------------------------------------------------------------------------------- /src/calcPartDomain.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [partDimension,partMinCoordinate]=calcPartDomain(pID,element,nodeElementID,nodeCoordinate,grainSize) 18 | 19 | disp('Calculating part domain') 20 | 21 | partDimension = cell(pID); 22 | partMinCoordinate = cell(pID); 23 | for i=1:pID 24 | minPos = [inf, inf, inf]; 25 | maxPos = [-inf,-inf,-inf]; 26 | if i<=length(element) 27 | for elementID=element{i} 28 | for nodeID=nodeElementID{i}{elementID} 29 | currentNodePos = nodeCoordinate{i}{nodeID}; 30 | for j=1:length(currentNodePos) 31 | if currentNodePos(j)maxPos(j) 35 | maxPos(j) = currentNodePos(j); 36 | end 37 | end 38 | end 39 | end 40 | partMinCoordinate{i} = minPos; 41 | partDimension{i} = maxPos-minPos; 42 | for j=1:3 43 | if ~isfinite(partDimension{i}(j)) || partDimension{i}(j)==0 44 | partDimension{i}(j) = grainSize(j); 45 | end 46 | end 47 | end 48 | end 49 | end -------------------------------------------------------------------------------- /src/generateTextureOri.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [cp1,cp,cp2]=generateTextureOri(filePath,pID,N,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint) 18 | 19 | disp('Extracting texture from Auswert file') 20 | 21 | if ~exist(filePath, 'file') 22 | error(['The given file does not exist: "',filePath,'"']) 23 | end 24 | 25 | % This should be a large number (used when texture is loaded from 26 | % a Auswert texture (.ori) file) 27 | Nori=10^7; 28 | 29 | % Load Euler angles and weights from Auswert texture file 30 | [phi1,PHI,phi2,A]=importORI(filePath); 31 | 32 | cp1=cell(1,pID); 33 | cp=cp1; 34 | cp2=cp1; 35 | 36 | NgrainsPerInt = 1; 37 | if shouldUseFCTaylorHomogenization 38 | NgrainsPerInt = nTaylorGrainsPerIntegrationPoint; 39 | end 40 | 41 | %% generate texture from Auswert texture file 42 | A=A*Nori/sum(A); 43 | A=round(A); 44 | Nori=sum(A); 45 | 46 | p1=[]; 47 | p=p1; 48 | p2=p1; 49 | 50 | for i=1:length(phi1) 51 | p1(end+1:end+A(i))=phi1(i); 52 | p(end+1:end+A(i))=PHI(i); 53 | p2(end+1:end+A(i))=phi2(i); 54 | end 55 | 56 | % 57 | 58 | for i=1:pID 59 | for j=1:N{i}*NgrainsPerInt 60 | n=ceil(Nori*rand); 61 | cp1{i}(j)=p1(n); 62 | cp{i}(j)=p(n); 63 | cp2{i}(j)=p2(n); 64 | end 65 | end 66 | 67 | end -------------------------------------------------------------------------------- /src/generateRandomTexture.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [cp1,cp,cp2]=generateRandomTexture(pID,N,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint) 18 | % Requires: 19 | % MTEX (Available here: 20 | % http://mtex-toolbox.github.io/download.html) 21 | 22 | cp1=cell(1,pID); 23 | cp=cp1; 24 | cp2=cp1; 25 | 26 | NgrainsPerInt = 1; 27 | if shouldUseFCTaylorHomogenization 28 | NgrainsPerInt = nTaylorGrainsPerIntegrationPoint; 29 | end 30 | 31 | %% generate random texture 32 | 33 | disp('Generating random texture') 34 | 35 | for i=1:pID 36 | n=N{i}*NgrainsPerInt; 37 | try 38 | [phi1_mtex,Phi_mtex,phi2_mtex] = Euler(calcOrientations(uniformODF,n),'Bunge'); 39 | % converting from radians to degrees 40 | cp1{i} = phi1_mtex/degree; 41 | cp{i} = Phi_mtex/degree; 42 | cp2{i} = phi2_mtex/degree; 43 | catch 44 | cp1{i} = zeros(n,1); 45 | cp{i} = zeros(n,1); 46 | cp2{i} = zeros(n,1); 47 | for k=1:n 48 | q = randomQuaternion(); 49 | R = rotationFromQuaternion(q); 50 | angles = eulerFromRotation(R); 51 | cp1{i}(k) = angles(1); 52 | cp{i}(k) = angles(2); 53 | cp2{i}(k) = angles(3); 54 | end 55 | end 56 | end 57 | 58 | end -------------------------------------------------------------------------------- /src/distributeElementsInGrains.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [GrainSet,NGrainSets]=distributeElementsInGrains(pID,element,elementCenter,partDimension,partMinCoordinate,grainSize) 18 | 19 | disp('Distributing elements in grains') 20 | 21 | % Finds the maximum number of grain sets for all parts 22 | NGrainSets=cell(pID); 23 | maxGrainSet = 1; 24 | for id=1:pID 25 | N=ceil(partDimension{id}./grainSize); 26 | NGrainSets{id} = N(1)*N(2)*N(3); 27 | if NGrainSets{id}>maxGrainSet 28 | maxGrainSet = NGrainSets{id}; 29 | end 30 | end 31 | 32 | % Determines which element belonging to which grain set 33 | GrainSet=cell(pID,maxGrainSet); 34 | for id=1:pID 35 | 36 | N=ceil(partDimension{id}./grainSize); 37 | 38 | if id<=length(element) 39 | for el=element{id} 40 | if N(1)>1 41 | i=ceil((elementCenter{id,el}(1)-partMinCoordinate{id}(1))/grainSize(1)); 42 | else 43 | i=1; 44 | end 45 | if N(2)>1 46 | j=ceil((elementCenter{id,el}(2)-partMinCoordinate{id}(2))/grainSize(2)); 47 | else 48 | j=1; 49 | end 50 | if N(3)>1 51 | k=ceil((elementCenter{id,el}(3)-partMinCoordinate{id}(3))/grainSize(3)); 52 | else 53 | k=1; 54 | end 55 | GrainSet{id,i+(j-1)*N(1)+(k-1)*N(1)*N(2)}(end+1)=el; 56 | end 57 | end 58 | end 59 | end -------------------------------------------------------------------------------- /src/generateTextureXray.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [cp1,cp,cp2]=generateTextureXray(fnames,pID,N,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint) 18 | 19 | %% generate texture from X-ray data 20 | disp('Loading polefigure data') 21 | 22 | for i=1:length(fnames) 23 | if ~exist(fnames{i}, 'file') 24 | error(['The given file does not exist: "',fnames{i},'"']) 25 | end 26 | end 27 | 28 | %Import pole figure data and create PoleFigure object 29 | cs = crystalSymmetry('m-3m',[4.04 4.04 4.04],'mineral','Al'); 30 | 31 | % Specimen symmetry 32 | ss = specimenSymmetry('1'); % Triclinic 33 | ssO = specimenSymmetry('orthorhombic'); 34 | 35 | h = { 36 | Miller(1,1,1,cs),... 37 | Miller(2,0,0,cs),... 38 | Miller(2,2,0,cs),... 39 | Miller(3,1,1,cs)}; 40 | 41 | % Load pole figures separately 42 | columnNames = {'Polar Angle','Azimuth Angle','Intensity'}; 43 | pf1 = loadPoleFigure_generic(fnames{1},'ColumnNames',columnNames); 44 | pf2 = loadPoleFigure_generic(fnames{2},'ColumnNames',columnNames); 45 | pf3 = loadPoleFigure_generic(fnames{3},'ColumnNames',columnNames); 46 | pf4 = loadPoleFigure_generic(fnames{4},'ColumnNames',columnNames); 47 | 48 | % Construct pole figure object of the four pole figures 49 | intensities = { 50 | pf1.intensities,... 51 | pf2.intensities,... 52 | pf3.intensities,... 53 | pf4.intensities}; 54 | pfs = PoleFigure(h,pf1.r,intensities,cs,ss); 55 | 56 | %% Calculate the ODF using default settings 57 | disp('Calculating ODF from polefigure data') 58 | odf = calcODF(pfs); 59 | 60 | % Set correct specimen symmetry for calculation of texture strength 61 | odf.SS = ssO; 62 | 63 | %% Extract orientations from ODF 64 | 65 | [cp1,cp,cp2]=generateTextureFromMTEXODF(odf,pID,N,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint); 66 | 67 | end -------------------------------------------------------------------------------- /src/importEBSD.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [grains_selected] = importEBSD(fname, EBSDscanPlane, grainMisorientationThreshold, grainSizeThreshold, confidenseIndexThreshold) 18 | 19 | disp('Importing EBSD data') 20 | 21 | if ~exist(fname, 'file') 22 | error(['The given file does not exist: "',fname,'"']) 23 | end 24 | 25 | %% Import the Data 26 | 27 | % Crystal symmetry 28 | CS = {... 29 | 'notIndexed',... 30 | crystalSymmetry('m-3m', [4.04 4.04 4.04], 'mineral', 'Aluminum')}; 31 | 32 | % create an EBSD variable containing the data 33 | ebsd = EBSD.load(fname,CS,'interface','ang',... 34 | 'convertSpatial2EulerReferenceFrame','setting 2'); 35 | 36 | % Rotate the texture so that the x-y plane is in the material plane of the 37 | % EBSD data 38 | if strcmp(EBSDscanPlane,'ED-ND') 39 | rot = rotation.byAxisAngle(xvector,90*degree); 40 | ebsd = rotate(ebsd,rot,'keepXY'); 41 | elseif strcmp(EBSDscanPlane,'TD-ND') 42 | rot = rotation.byAxisAngle(zvector,90*degree); 43 | ebsd = rotate(ebsd,rot,'keepXY'); 44 | rot = rotation.byAxisAngle(xvector,90*degree); 45 | ebsd = rotate(ebsd,rot,'keepXY'); 46 | end 47 | 48 | % Removing measuring points with a confidense index of less than 0.1 49 | ebsd = ebsd(ebsd.ci >= confidenseIndexThreshold); 50 | 51 | %% Grain calculations 52 | % compute the grains 53 | [grains,ebsd.grainId,ebsd.mis2mean] = calcGrains(ebsd,'threshold',grainMisorientationThreshold); 54 | 55 | % Smooth grain boundaries 56 | grains = smooth(grains,5); 57 | % Select grains larger than grainSizeThreshold pixels 58 | grains_selected = grains(grains.grainSize > grainSizeThreshold); 59 | 60 | % Select ebsd data with grains larger than grainSizeThreshold pixels 61 | ebsd_selected = ebsd(grains_selected); 62 | 63 | [grains_selected,ebsd_selected.grainId,ebsd_selected.mis2mean] = calcGrains(ebsd_selected,'threshold',grainMisorientationThreshold); 64 | grains_selected = smooth(grains_selected,5); 65 | 66 | end -------------------------------------------------------------------------------- /src/distributeElementsInGrainsFromEBSD.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [GrainSet,NGrainSets]=distributeElementsInGrainsFromEBSD(pID,element,elementCenter,partDimension,partMinCoordinate,grains,flipX,flipY,strechX,strechY) 18 | 19 | disp('Distributing elements in grains') 20 | 21 | % Finds the maximum number of grain sets for all parts 22 | NGrainSets =cell(pID); 23 | maxGrainSet = max(grains.id); 24 | maxGrainsX = max(grains.x); 25 | maxGrainsY = max(grains.y); 26 | minGrainsX = min(grains.x); 27 | minGrainsY = min(grains.y); 28 | grainXdim = maxGrainsX-minGrainsX; 29 | grainYdim = maxGrainsY-minGrainsY; 30 | for id=1:pID 31 | NGrainSets{id} = maxGrainSet; 32 | end 33 | 34 | factor = 1000; % um/mm assume that the EBSD data is in microns and that the Abaqus unit is mm 35 | 36 | % Determines which element belonging to which grain set 37 | GrainSet=cell(pID,maxGrainSet); 38 | % GrainSetMirror=cell(pID,maxGrainSet); 39 | for id=1:pID 40 | if id<=length(element) 41 | k=0; 42 | total = length(element{id}); 43 | if strechX && strechY 44 | factor = min(grainXdim/partDimension{id}(1),grainYdim/partDimension{id}(2)); 45 | elseif strechX 46 | factor=grainXdim/partDimension{id}(1); 47 | elseif strechY 48 | factor=grainYdim/partDimension{id}(2); 49 | end 50 | for el=element{id} 51 | % Assume that the model is 2D or semi 2D, i.e., 3D with major axes in the x-y plane 52 | x_fem=elementCenter{id,el}(1);%-partMinCoordinate{id}(1); 53 | y_fem=elementCenter{id,el}(2);%-partMinCoordinate{id}(2); 54 | 55 | if mod(floor(x_fem*factor/grainXdim),2)==flipX 56 | x=minGrainsX+mod(x_fem*factor,grainXdim); 57 | else 58 | x=maxGrainsX-mod(x_fem*factor,grainXdim); 59 | end 60 | 61 | if mod(floor(y_fem*factor/grainYdim),2)==flipY 62 | y=minGrainsY+mod(y_fem*factor,grainYdim); 63 | else 64 | y=maxGrainsY-mod(y_fem*factor,grainYdim); 65 | end 66 | 67 | grainId = findGrainAtLocation(grains,x,y); 68 | 69 | GrainSet{id,grainId}(end+1) = el; 70 | 71 | progress(k,total) 72 | k=k+1; 73 | end 74 | end 75 | end 76 | end -------------------------------------------------------------------------------- /src/importORI.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [phi1,PHI,phi2,A] = importORI(filename, startRow, endRow) 18 | %IMPORTFILE Import numeric data from a text file as column vectors. 19 | % [PHI1,PHI,PHI2,A] = IMPORTFILE(FILENAME) Reads data from text file 20 | % FILENAME for the default selection. 21 | % 22 | % [PHI1,PHI,PHI2,A] = IMPORTFILE(FILENAME, STARTROW, ENDROW) Reads data 23 | % from rows STARTROW through ENDROW of text file FILENAME. 24 | % 25 | % Example: 26 | % [phi1,PHI,phi2,A] = importfile('Deformed.ori',4, 8003); 27 | % 28 | 29 | %% Initialize variables. 30 | delimiter = ' '; 31 | if nargin<=2 32 | startRow = 4; 33 | endRow = inf; 34 | end 35 | 36 | %% Format string for each line of text: 37 | % column1: double (%f) 38 | % column2: double (%f) 39 | % column3: double (%f) 40 | % column4: double (%f) 41 | % For more information, see the TEXTSCAN documentation. 42 | formatSpec = '%f%f%f%f%*s%[^\n\r]'; 43 | 44 | %% Open the text file. 45 | fileID = fopen(filename,'r'); 46 | 47 | %% Read columns of data according to format string. 48 | % This call is based on the structure of the file used to generate this 49 | % code. If an error occurs for a different file, try regenerating the code 50 | % from the Import Tool. 51 | dataArray = textscan(fileID, formatSpec, endRow(1)-startRow(1)+1, 'Delimiter', delimiter, 'MultipleDelimsAsOne', true, 'EmptyValue' ,NaN,'HeaderLines', startRow(1)-1, 'ReturnOnError', false); 52 | for block=2:length(startRow) 53 | frewind(fileID); 54 | dataArrayBlock = textscan(fileID, formatSpec, endRow(block)-startRow(block)+1, 'Delimiter', delimiter, 'MultipleDelimsAsOne', true, 'EmptyValue' ,NaN,'HeaderLines', startRow(block)-1, 'ReturnOnError', false); 55 | for col=1:length(dataArray) 56 | dataArray{col} = [dataArray{col};dataArrayBlock{col}]; 57 | end 58 | end 59 | 60 | %% Close the text file. 61 | fclose(fileID); 62 | 63 | %% Post processing for unimportable data. 64 | % No unimportable data rules were applied during the import, so no post 65 | % processing code is included. To generate code which works for 66 | % unimportable data, select unimportable cells in a file and regenerate the 67 | % script. 68 | 69 | %% Allocate imported array to column variable names 70 | phi1 = dataArray{:, 1}; 71 | PHI = dataArray{:, 2}; 72 | phi2 = dataArray{:, 3}; 73 | A = dataArray{:, 4}; 74 | 75 | end 76 | -------------------------------------------------------------------------------- /src/readinput.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function [pID,pName,elementID,nodeElementID,nodeID,nodeCoordinate,lines]=readinput(filePath) 18 | 19 | disp('Reading the Abaqus input file') 20 | 21 | if ~exist(filePath, 'file') 22 | error(['The given file does not exist: "',filePath,'"']) 23 | end 24 | 25 | ID=fopen(filePath,'r'); 26 | 27 | pID=0; 28 | r=-1; 29 | firstElementInPart=false; 30 | firstNodeInPart=false; 31 | lines = cell(1,1); 32 | lines{1} = ''; 33 | 34 | while ~feof(ID) 35 | line = fgetl(ID); 36 | lines{end+1} = line; 37 | if iskey(line,'*Part') 38 | if firstElementInPart 39 | pID=pID-1; % delete empty part 40 | end 41 | firstElementInPart=true; 42 | firstNodeInPart=true; 43 | pID=pID+1; 44 | pName{pID}=line(13:end); 45 | elseif iskey(line,'*Element,') 46 | if firstElementInPart 47 | r=0; 48 | firstElementInPart=false; 49 | else 50 | r=1; 51 | end 52 | elseif iskey(line,'*Node') && ~iskey(line,'*Node ') 53 | if pID==0 54 | firstElementInPart=true; 55 | firstNodeInPart=true; 56 | pID=pID+1; 57 | pName{pID}=''; 58 | end 59 | if firstNodeInPart==true 60 | r=2; 61 | firstNodeInPart=false; 62 | else 63 | r=3; 64 | end 65 | elseif iskeyword(line) || iscomment(line) 66 | r=-1; 67 | end 68 | if r==0 && ~iskeyword(line) 69 | temp=strsplit(line,','); 70 | elementID{pID}(1)=str2double(temp{1}); 71 | for i=2:length(temp) 72 | nodeElementID{pID}{elementID{pID}(end)}(i-1)=str2double(temp{i}); 73 | end 74 | r=1; 75 | elseif r==1 && ~iskeyword(line) 76 | temp=strsplit(line,','); 77 | elementID{pID}(end+1)=str2double(temp{1}); 78 | for i=2:length(temp) 79 | nodeElementID{pID}{elementID{pID}(end)}(i-1)=str2double(temp{i}); 80 | end 81 | elseif r==2 && ~iskeyword(line) 82 | temp=strsplit(line,','); 83 | nodeID{pID}(1)=str2double(temp{1}); 84 | for i=2:length(temp) 85 | nodeCoordinate{pID}{nodeID{pID}(end)}(i-1)=str2double(temp{i}); 86 | end 87 | r=3; 88 | elseif r==3 && ~iskeyword(line) 89 | temp=strsplit(line,','); 90 | nodeID{pID}(end+1)=str2double(temp{1}); 91 | for i=2:length(temp) 92 | nodeCoordinate{pID}{nodeID{pID}(end)}(i-1)=str2double(temp{i}); 93 | end 94 | end 95 | end 96 | 97 | % Delete an empty part 98 | if firstElementInPart 99 | pID=pID-1; 100 | pName = pName(1:pID); 101 | elementID = elementID(1:pID); 102 | nodeElementID = nodeElementID(1:pID); 103 | nodeID = nodeID(1:pID); 104 | nodeCoordinate = nodeCoordinate(1:pID); 105 | end 106 | 107 | fclose(ID); 108 | end -------------------------------------------------------------------------------- /src/validateInput.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function bool = validateInput(nStatev,nDelete,useOneElementPerGrain,grainSize,symX,symY,symZ,shouldGenerateRandomTexture,... 18 | shouldGenerateTextureFromOri,shouldGenerateTextureFromXray,shouldGenerateTextureFromEBSD,shouldGenerateTextureFromMTEXODF,... 19 | flipX,flipY,strechX,strechY,EBSDscanPlane,grainSizeThreshold,confidenseIndexThreshold,grainMisorientationThreshold,... 20 | shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint) 21 | 22 | if nStatev<3 23 | error('nStatev must be 3 or greater'); 24 | end 25 | if nDelete<0 26 | error('nDelete must be 0 or greater'); 27 | end 28 | if useOneElementPerGrain~=true && useOneElementPerGrain~=false 29 | error('useOneElementPerGrain must be true or false') 30 | end 31 | if length(grainSize)~=3 32 | error('grainSize must contain the grain size in the x, y, and z direction') 33 | end 34 | for i=1:length(grainSize) 35 | if grainSize(i)<=0 36 | error('grainSize must be greater than 0') 37 | end 38 | end 39 | if symX~=true && symX~=false 40 | error('symX must be true or false') 41 | end 42 | if symY~=true && symY~=false 43 | error('symY must be true or false') 44 | end 45 | if symZ~=true && symZ~=false 46 | error('symZ must be true or false') 47 | end 48 | if shouldGenerateRandomTexture~=true && shouldGenerateRandomTexture~=false 49 | error('shouldGenerateRandomTexture must be true or false') 50 | end 51 | if shouldGenerateTextureFromOri~=true && shouldGenerateTextureFromOri~=false 52 | error('shouldGenerateTextureFromOri must be true or false') 53 | end 54 | if shouldGenerateTextureFromXray~=true && shouldGenerateTextureFromXray~=false 55 | error('shouldGenerateTextureFromXray must be true or false') 56 | end 57 | if shouldGenerateTextureFromEBSD~=true && shouldGenerateTextureFromEBSD~=false 58 | error('shouldGenerateTextureFromEBSD must be true or false') 59 | end 60 | if shouldGenerateTextureFromMTEXODF~=true && shouldGenerateTextureFromMTEXODF~=false 61 | error('shouldGenerateTextureFromMTEXODF must be true or false') 62 | end 63 | if shouldGenerateRandomTexture+shouldGenerateTextureFromOri+shouldGenerateTextureFromXray+shouldGenerateTextureFromEBSD+shouldGenerateTextureFromMTEXODF~=1 64 | error('One of the texture flags should be true, while the others should be false!') 65 | end 66 | if flipX~=true && flipX~=false 67 | error('flipX must be true or false') 68 | end 69 | if flipY~=true && flipY~=false 70 | error('flipY must be true or false') 71 | end 72 | if strechX~=true && strechX~=false 73 | error('strechX must be true or false') 74 | end 75 | if strechY~=true && strechY~=false 76 | error('strechY must be true or false') 77 | end 78 | if ~strcmp(EBSDscanPlane,'ED-TD') && ~strcmp(EBSDscanPlane,'ED-ND') && ~strcmp(EBSDscanPlane,'TD-ND') 79 | error('EBSDscanPlane must be one of: "ED-TD", "ED-ND" or "TD-ND"') 80 | end 81 | if grainSizeThreshold<0 82 | error('grainSizeThreshold must be 0 or greater'); 83 | end 84 | if confidenseIndexThreshold<0 85 | error('confidenseIndexThreshold must be 0 or greater'); 86 | end 87 | if grainMisorientationThreshold<=0 88 | error('grainMisorientationThreshold must be greater than 0'); 89 | end 90 | if nTaylorGrainsPerIntegrationPoint<1 91 | error('nTaylorGrainsPerIntegrationPoint must be 1 or greater'); 92 | end 93 | if shouldUseFCTaylorHomogenization~=true && shouldUseFCTaylorHomogenization~=false 94 | error('shouldUseFCTaylorHomogenization must be true or false') 95 | end 96 | if shouldUseFCTaylorHomogenization==true && shouldGenerateTextureFromEBSD==true 97 | error('Can not use the Taylor homogenization approach with an EBSD map!') 98 | end 99 | bool = true; 100 | 101 | end -------------------------------------------------------------------------------- /src/writeabaqus.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | %% 17 | function []=writeabaqus(OutPath,Abapath,Abainput,pID,pName,GrainSet,phi1,PHI,phi2,nStatev,nDelete,inputLines,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint) 18 | 19 | disp('Writing new Abaqus files') 20 | 21 | if strcmp(OutPath,Abapath) 22 | path = [Abapath,'output']; 23 | else 24 | path = OutPath(1:end-1); 25 | end 26 | 27 | if ~exist(path,'dir') 28 | mkdir(path) 29 | end 30 | 31 | initFileName = cell(1,pID); 32 | elSetFileName = cell(1,pID); 33 | 34 | for k=1:pID 35 | if strcmp(pName{k},'') 36 | initFileName{k} = ['Init_',Abainput]; 37 | elSetFileName{k} = ['Elset_',Abainput]; 38 | else 39 | initFileName{k} = ['Init_',pName{k},'_',Abainput]; 40 | elSetFileName{k} = ['Elset_',pName{k},'_',Abainput]; 41 | end 42 | end 43 | 44 | NgrainsPerInt = 1; 45 | if shouldUseFCTaylorHomogenization 46 | NgrainsPerInt = nTaylorGrainsPerIntegrationPoint; 47 | nStatev = nStatev+6; 48 | end 49 | 50 | %% 51 | for k=1:pID 52 | Nelements = length(phi1{k})/NgrainsPerInt; 53 | %% Writing Abaqus input 54 | % Writing initial conditions 55 | ID=fopen([path,'/',initFileName{k}],'w'); 56 | 57 | 58 | fprintf(ID,'%s \n','**------------------------------------------------------------------------------'); 59 | fprintf(ID,'%s \n','** History card: define Euler angles'); 60 | fprintf(ID,'%s \n','**------------------------------------------------------------------------------'); 61 | fprintf(ID,'%s \n','*Initial conditions, type=SOLUTION'); 62 | fprintf(ID,'%s ','** elset, phi1, PHI, phi2'); 63 | for i=1:Nelements 64 | if ~isempty(GrainSet{k,i}) 65 | fprintf(ID,'\n'); 66 | fprintf(ID,'%s%d%s%d,','Grain-Set-',k,'-',i); 67 | for j=1:nStatev*NgrainsPerInt 68 | if mod(j-1,nStatev)==0 % phi1 69 | grainIndex = ceil(j/nStatev); 70 | index = i+(grainIndex-1)*Nelements; 71 | fprintf(ID,' %6.2f',phi1{k}(index)); 72 | elseif mod(j-2,nStatev)==0 % Phi 73 | grainIndex = ceil(j/nStatev); 74 | index = i+(grainIndex-1)*Nelements; 75 | fprintf(ID,' %6.2f',PHI{k}(index)); 76 | elseif mod(j-3,nStatev)==0 % phi2 77 | grainIndex = ceil(j/nStatev); 78 | index = i+(grainIndex-1)*Nelements; 79 | fprintf(ID,' %6.2f',phi2{k}(index)); 80 | elseif mod(j-nDelete,nStatev)==0 && nDelete>0 81 | fprintf(ID,' %d',1); 82 | else 83 | fprintf(ID,' %d',0); 84 | end 85 | if j~=nStatev*NgrainsPerInt 86 | if mod(j+1,8)==0 87 | fprintf(ID,'\n'); 88 | else 89 | fprintf(ID,','); 90 | end 91 | end 92 | end 93 | end 94 | end 95 | fclose(ID); 96 | 97 | % Writing Element sets , i.e., each element is a seperate grain 98 | ID=fopen([path,'/',elSetFileName{k}],'w'); 99 | 100 | fprintf(ID,'%s \n','**------------------------------------------------------------------------------'); 101 | fprintf(ID,'%s \n','** Element sets'); 102 | fprintf(ID,'%s ','**------------------------------------------------------------------------------'); 103 | 104 | if strcmp(pName{k},'') 105 | for i=1:Nelements 106 | if ~isempty(GrainSet{k,i}) 107 | fprintf(ID,'\n'); 108 | fprintf(ID,'%s%d%s%d\n','*Elset, elset=Grain-Set-',k,'-',i); 109 | for j=1:length(GrainSet{k,i}) 110 | if j==length(GrainSet{k,i}) 111 | fprintf(ID,' %d',GrainSet{k,i}(j)); 112 | elseif mod(j,16)==0 113 | fprintf(ID,' %d\n',GrainSet{k,i}(j)); 114 | else 115 | fprintf(ID,' %d,',GrainSet{k,i}(j)); 116 | end 117 | end 118 | end 119 | end 120 | else 121 | for i=1:Nelements 122 | if ~isempty(GrainSet{k,i}) 123 | fprintf(ID,'\n'); 124 | fprintf(ID,'%s%d%s%d%s%s%s\n','*Elset, elset=Grain-Set-',k,'-',i,', instance=',pName{k},'-1'); 125 | for j=1:length(GrainSet{k,i}) 126 | if j==length(GrainSet{k,i}) 127 | fprintf(ID,' %d',GrainSet{k,i}(j)); 128 | elseif mod(j,16)==0 129 | fprintf(ID,' %d\n',GrainSet{k,i}(j)); 130 | else 131 | fprintf(ID,' %d,',GrainSet{k,i}(j)); 132 | end 133 | end 134 | end 135 | end 136 | end 137 | fclose(ID); 138 | end 139 | 140 | % Creates a new Abaqus input file with the necessary includes 141 | ID=fopen([path,'/',Abainput],'w'); 142 | initFlag = true; 143 | elsetFlag = true; 144 | for i=2:length(inputLines)-1 145 | line = inputLines{i}; 146 | if iskey(line,'*End Assembly') && elsetFlag 147 | elsetFlag = false; 148 | for k=1:pID 149 | fprintf(ID,'%s%s\n','*include, input=',elSetFileName{k}); 150 | end 151 | elseif iskey(line,'*Material') && initFlag 152 | initFlag = false; 153 | for k=1:pID 154 | fprintf(ID,'%s%s\n','*include, input=',initFileName{k}); 155 | end 156 | end 157 | fprintf(ID,'%s\n',line); 158 | end 159 | fprintf(ID,'%s',inputLines{end}); 160 | fclose(ID); 161 | 162 | end -------------------------------------------------------------------------------- /src/Main.m: -------------------------------------------------------------------------------- 1 | % Texture2Abaqus 2 | % Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | % 4 | % This program is free software: you can redistribute it and/or modify 5 | % it under the terms of the GNU General Public License as published by 6 | % the Free Software Foundation, either version 3 of the License, or 7 | % any later version. 8 | % 9 | % This program is distributed in the hope that it will be useful, 10 | % but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | % GNU General Public License for more details. 13 | % 14 | % You should have received a copy of the GNU General Public License 15 | % along with this program. If not, see . 16 | % 17 | %% Main script for extracting or generating texture to FEM and writing appropriate initial conditions for CP-FEM 18 | % Requires: 19 | % MTEX (Available here: http://mtex-toolbox.github.io/download.html) 20 | % The Abaqus mesh should be dependent, i.e., meshed on the part (dependent instance) 21 | 22 | clf 23 | close all 24 | clear 25 | clc 26 | 27 | %% Input 28 | 29 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 30 | % Subroutine settings 31 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 32 | % Number of solution-dependent state variables (SDVs) and SDV number controlling element deletion 33 | nStatev = 30; 34 | nDelete = 30; 35 | % Should the FC-Taylor homogenization approach in the SCMM-hypo subroutine 36 | % be used with nTaylorGrainsPerIntegrationPoint number of grains in each 37 | % integration point (Note that the total number of SDV's in the subroutine 38 | % will be equal to (nStatev+6)*nTaylorGrainsPerIntegrationPoint if 39 | % shouldUseFCTaylorHomogenization is true and otherwise equal to nStatev) 40 | % This option can't be used together with shouldGenerateTextureFromEBSD = true 41 | shouldUseFCTaylorHomogenization = false; 42 | nTaylorGrainsPerIntegrationPoint = 8; 43 | 44 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 45 | % Texture generation settings (only one of the parameters below should be true) 46 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 47 | % Should the texture used be random or generated from orientations data, X-ray polefigure data or EBSD data? 48 | shouldGenerateRandomTexture = true; % true or false 49 | shouldGenerateTextureFromOri = false; % true or false 50 | shouldGenerateTextureFromXray = false; % true or false 51 | shouldGenerateTextureFromEBSD = false; % true or false 52 | shouldGenerateTextureFromMTEXODF = false; % true or false 53 | 54 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 55 | % Abaqus files 56 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 57 | % Folder where the Abaqus input file is located and its name 58 | Abapath = '../input/'; 59 | Abainput = 'Smooth.inp'; 60 | % Output folder where the new Abaqus input files are written 61 | OutPath = '../output/'; 62 | 63 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 64 | % Texture files (only used if shouldGenerateRandomTexture == false) 65 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 66 | % Folder where the texture file(s) are located 67 | Texpath='../texture/'; 68 | % The name of the Auswert texture (orientation) file (only used if shouldGenerateTextureFromOri == true) 69 | ORIinput='Texture.ori'; 70 | % The polefigure data prefix (X-ray data) (only used if shouldGenerateTextureFromXray == true) 71 | fnamesPrefix = 'Xray'; 72 | % The name of the EBSD data file (only used if shouldGenerateTextureFromEBSD == true) 73 | EBSDinput = 'EBSD.ang'; 74 | 75 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 76 | % Grain structure settings (only used if shouldGenerateTextureFromEBSD == false) 77 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 78 | % Should one grain be represented by one element or should the elements be 79 | % distributed by the grain size defined below or the EBSD data 80 | useOneElementPerGrain = true; % true or false 81 | % Approximate grain size in the x, y and z direction, not used for EBSD 82 | % (only used if useOneElementPerGrain == false and shouldGenerateTextureFromEBSD == false) 83 | grainSize = [0.3, 0.3, 0.3]; 84 | % Symmetry axes used with above grain size 85 | % (only used if useOneElementPerGrain == false and shouldGenerateTextureFromEBSD == false) 86 | symX = false; % true or false 87 | symY = false; % true or false 88 | symZ = false; % true or false 89 | 90 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 91 | % MTEX ODF (only used if shouldGenerateTextureFromMTEXODF == true) 92 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 93 | cs = crystalSymmetry('cubic'); 94 | ss = specimenSymmetry('orthorhombic'); 95 | components = [... 96 | orientation.byEuler(35*degree,90*degree,45*degree,cs,ss),... 97 | orientation.goss(cs,ss),... 98 | orientation.brass(cs,ss),... 99 | orientation.cube(cs,ss),... 100 | orientation.cubeND22(cs,ss),... 101 | orientation.cubeND45(cs,ss),... 102 | orientation.cubeRD(cs,ss),... 103 | orientation.copper(cs,ss),... 104 | orientation.PLage(cs,ss),... 105 | orientation.QLage(cs,ss),... 106 | ]; 107 | odf = unimodalODF(components(4),'halfwidth',10.0*degree); 108 | 109 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 110 | % EBSD settings (only used if shouldGenerateTextureFromEBSD == true) 111 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 112 | % Should the x or y-axis of the EBSD data be flipped, and/or streched to 113 | % fit the geometry for the Abaqus files generated 114 | flipX = false; % true or false 115 | flipY = false; % true or false 116 | strechX = false; % true or false 117 | strechY = false; % true or false 118 | % This script assumes that your model is modelled in the x-y plane in 119 | % Abaqus when generating texture from EBSD data. To model the correct 120 | % material plane, the texture is rotated so that the x-y plane in Abaqus is 121 | % the x-y plane of the EBSD data, i.e., if the EBSD scan is performed in 122 | % another plane than ED-TD, the texture is rotated in the generated files. 123 | % F.ex. if your EBSD scan is in the ED-ND plane the texture is rotated such 124 | % that the x-y plane in Abaqus corresponds to the ED-ND plane (x=ED, y=ND) 125 | % The CP subroutines assumes by default that the coordinate system of 126 | % Abaqus coincides with the material axes (x=ED, y=TD, z=ND) 127 | EBSDscanPlane = 'ED-ND'; % possible values 'ED-TD', 'ED-ND', 'TD-ND' 128 | % Grain cutoff size in pixels for the EBSD data, i.e., grains smaller than 129 | % or equal to this value will be removed 130 | grainSizeThreshold = 1; 131 | % Removing EBSD measuring points with a confidense index of less than confidenseIndexThreshold 132 | confidenseIndexThreshold = 0.1; 133 | % EBSD misorientation thresold between different grains 134 | grainMisorientationThreshold = 5*degree; 135 | 136 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 137 | %% Checking for valid input 138 | 139 | validateInput(nStatev,nDelete,useOneElementPerGrain,grainSize,symX,symY,symZ,shouldGenerateRandomTexture,... 140 | shouldGenerateTextureFromOri,shouldGenerateTextureFromXray,shouldGenerateTextureFromEBSD,shouldGenerateTextureFromMTEXODF,... 141 | flipX,flipY,strechX,strechY,EBSDscanPlane,grainSizeThreshold,confidenseIndexThreshold,grainMisorientationThreshold,... 142 | shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint); 143 | 144 | %% Reading Abaqus input file, extracting information and distributing elements in grains 145 | % Read Abaqus file to find number of parts, parts name, lists of 146 | % element numbers, list of nodes and their coordinates 147 | [pID,pName,element,nodeElementID,nodeID,nodeCoordinate,inputLines] = readinput([Abapath,Abainput]); 148 | 149 | if ~useOneElementPerGrain 150 | % Finds the element coordinate centers 151 | [elementCenter] = findElementCenters(pID,element,nodeElementID,nodeCoordinate); 152 | 153 | % Finds the dimensions of the Abaqus part domain 154 | [partDimension,partMinCoordinate] = calcPartDomain(pID,element,nodeElementID,nodeCoordinate,grainSize); 155 | 156 | % Grains along symmetry boundaries are "halfed" 157 | if ~shouldGenerateTextureFromEBSD 158 | [partDimension,partMinCoordinate] = correctSymmetry(pID,grainSize,partDimension,partMinCoordinate,symX,symY,symZ); 159 | end 160 | end 161 | 162 | % Determines which element belonging to which grain set 163 | if shouldGenerateTextureFromEBSD 164 | grainsEBSD = importEBSD([Texpath,EBSDinput], EBSDscanPlane, grainMisorientationThreshold, grainSizeThreshold, confidenseIndexThreshold); 165 | [GrainSet,NGrainSets] = distributeElementsInGrainsFromEBSD(pID,element,elementCenter,partDimension,partMinCoordinate,grainsEBSD,flipX,flipY,strechX,strechY); 166 | elseif useOneElementPerGrain 167 | [GrainSet,NGrainSets] = distributeOneElementOneGrains(pID,element); 168 | else 169 | [GrainSet,NGrainSets] = distributeElementsInGrains(pID,element,elementCenter,partDimension,partMinCoordinate,grainSize); 170 | end 171 | 172 | %% Extracting or generating texture for the model 173 | % Generating Euler angles 174 | if shouldGenerateRandomTexture+shouldGenerateTextureFromOri+shouldGenerateTextureFromXray+shouldGenerateTextureFromEBSD+shouldGenerateTextureFromMTEXODF~=1 175 | error('One of the texture flags should be true, while the others should be false!'); 176 | elseif shouldGenerateRandomTexture 177 | [phi1, PHI, phi2] = generateRandomTexture(pID,NGrainSets,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint); 178 | elseif shouldGenerateTextureFromOri 179 | [phi1, PHI, phi2] = generateTextureOri([Texpath,ORIinput],pID,NGrainSets,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint); 180 | elseif shouldGenerateTextureFromXray 181 | fnames = { fullfile(Texpath, [fnamesPrefix '_pf111_uncorr.dat']),... 182 | fullfile(Texpath, [fnamesPrefix '_pf200_uncorr.dat']),... 183 | fullfile(Texpath, [fnamesPrefix '_pf220_uncorr.dat']),... 184 | fullfile(Texpath, [fnamesPrefix '_pf311_uncorr.dat']) }; 185 | [phi1, PHI, phi2] = generateTextureXray(fnames,pID,NGrainSets,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint); 186 | elseif shouldGenerateTextureFromEBSD 187 | [phi1, PHI, phi2] = generateTextureEBSD(pID,grainsEBSD); 188 | elseif shouldGenerateTextureFromMTEXODF 189 | [phi1, PHI, phi2] = generateTextureFromMTEXODF(odf,pID,NGrainSets,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint); 190 | end 191 | 192 | %% Write additional Abaqus files 193 | % Write initial conditions and element sets to be used in the simulation 194 | writeabaqus(OutPath,Abapath,Abainput,pID,pName,GrainSet,phi1,PHI,phi2,nStatev,nDelete,inputLines,shouldUseFCTaylorHomogenization,nTaylorGrainsPerIntegrationPoint) 195 | 196 | disp('Done!') 197 | 198 | -------------------------------------------------------------------------------- /texture/Xray_pf200_uncorr.dat: -------------------------------------------------------------------------------- 1 | 0 0 9.659 2 | 0 5 9.659 3 | 0 10 9.659 4 | 0 15 9.659 5 | 0 20 9.659 6 | 0 25 9.659 7 | 0 30 9.659 8 | 0 35 9.659 9 | 0 40 9.659 10 | 0 45 9.659 11 | 0 50 9.659 12 | 0 55 9.659 13 | 0 60 9.659 14 | 0 65 9.659 15 | 0 70 9.659 16 | 0 75 9.659 17 | 0 80 9.659 18 | 0 85 9.659 19 | 0 90 9.659 20 | 0 95 9.659 21 | 0 100 9.659 22 | 0 105 9.659 23 | 0 110 9.659 24 | 0 115 9.659 25 | 0 120 9.659 26 | 0 125 9.659 27 | 0 130 9.659 28 | 0 135 9.659 29 | 0 140 9.659 30 | 0 145 9.659 31 | 0 150 9.659 32 | 0 155 9.659 33 | 0 160 9.659 34 | 0 165 9.659 35 | 0 170 9.659 36 | 0 175 9.659 37 | 0 180 9.659 38 | 0 185 9.659 39 | 0 190 9.659 40 | 0 195 9.659 41 | 0 200 9.659 42 | 0 205 9.659 43 | 0 210 9.659 44 | 0 215 9.659 45 | 0 220 9.659 46 | 0 225 9.659 47 | 0 230 9.659 48 | 0 235 9.659 49 | 0 240 9.659 50 | 0 245 9.659 51 | 0 250 9.659 52 | 0 255 9.659 53 | 0 260 9.659 54 | 0 265 9.659 55 | 0 270 9.659 56 | 0 275 9.659 57 | 0 280 9.659 58 | 0 285 9.659 59 | 0 290 9.659 60 | 0 295 9.659 61 | 0 300 9.659 62 | 0 305 9.659 63 | 0 310 9.659 64 | 0 315 9.659 65 | 0 320 9.659 66 | 0 325 9.659 67 | 0 330 9.659 68 | 0 335 9.659 69 | 0 340 9.659 70 | 0 345 9.659 71 | 0 350 9.659 72 | 0 355 9.659 73 | 5 0 3.152 74 | 5 5 2.982 75 | 5 10 3.168 76 | 5 15 4.386 77 | 5 20 4.613 78 | 5 25 4.384 79 | 5 30 4.572 80 | 5 35 4.640 81 | 5 40 5.167 82 | 5 45 5.286 83 | 5 50 5.626 84 | 5 55 6.672 85 | 5 60 6.939 86 | 5 65 7.455 87 | 5 70 7.869 88 | 5 75 7.906 89 | 5 80 7.770 90 | 5 85 7.837 91 | 5 90 6.848 92 | 5 95 7.837 93 | 5 100 7.770 94 | 5 105 7.906 95 | 5 110 7.869 96 | 5 115 7.455 97 | 5 120 6.939 98 | 5 125 6.672 99 | 5 130 5.626 100 | 5 135 5.286 101 | 5 140 5.167 102 | 5 145 4.640 103 | 5 150 4.572 104 | 5 155 4.384 105 | 5 160 4.613 106 | 5 165 4.386 107 | 5 170 3.168 108 | 5 175 2.982 109 | 5 180 3.152 110 | 5 185 2.982 111 | 5 190 3.168 112 | 5 195 4.386 113 | 5 200 4.613 114 | 5 205 4.384 115 | 5 210 4.572 116 | 5 215 4.640 117 | 5 220 5.167 118 | 5 225 5.286 119 | 5 230 5.626 120 | 5 235 6.672 121 | 5 240 6.939 122 | 5 245 7.455 123 | 5 250 7.869 124 | 5 255 7.906 125 | 5 260 7.770 126 | 5 265 7.837 127 | 5 270 6.848 128 | 5 275 7.837 129 | 5 280 7.770 130 | 5 285 7.906 131 | 5 290 7.869 132 | 5 295 7.455 133 | 5 300 6.939 134 | 5 305 6.672 135 | 5 310 5.626 136 | 5 315 5.286 137 | 5 320 5.167 138 | 5 325 4.640 139 | 5 330 4.572 140 | 5 335 4.384 141 | 5 340 4.613 142 | 5 345 4.386 143 | 5 350 3.168 144 | 5 355 2.982 145 | 10 0 0.650 146 | 10 5 0.794 147 | 10 10 0.571 148 | 10 15 0.809 149 | 10 20 0.849 150 | 10 25 1.079 151 | 10 30 1.168 152 | 10 35 1.331 153 | 10 40 1.481 154 | 10 45 1.745 155 | 10 50 2.596 156 | 10 55 3.224 157 | 10 60 3.422 158 | 10 65 4.042 159 | 10 70 4.605 160 | 10 75 5.338 161 | 10 80 6.265 162 | 10 85 6.686 163 | 10 90 5.931 164 | 10 95 6.686 165 | 10 100 6.265 166 | 10 105 5.338 167 | 10 110 4.605 168 | 10 115 4.042 169 | 10 120 3.422 170 | 10 125 3.224 171 | 10 130 2.596 172 | 10 135 1.745 173 | 10 140 1.481 174 | 10 145 1.331 175 | 10 150 1.168 176 | 10 155 1.079 177 | 10 160 0.849 178 | 10 165 0.809 179 | 10 170 0.571 180 | 10 175 0.794 181 | 10 180 0.650 182 | 10 185 0.794 183 | 10 190 0.571 184 | 10 195 0.809 185 | 10 200 0.849 186 | 10 205 1.079 187 | 10 210 1.168 188 | 10 215 1.331 189 | 10 220 1.481 190 | 10 225 1.745 191 | 10 230 2.596 192 | 10 235 3.224 193 | 10 240 3.422 194 | 10 245 4.042 195 | 10 250 4.605 196 | 10 255 5.338 197 | 10 260 6.265 198 | 10 265 6.686 199 | 10 270 5.931 200 | 10 275 6.686 201 | 10 280 6.265 202 | 10 285 5.338 203 | 10 290 4.605 204 | 10 295 4.042 205 | 10 300 3.422 206 | 10 305 3.224 207 | 10 310 2.596 208 | 10 315 1.745 209 | 10 320 1.481 210 | 10 325 1.331 211 | 10 330 1.168 212 | 10 335 1.079 213 | 10 340 0.849 214 | 10 345 0.809 215 | 10 350 0.571 216 | 10 355 0.794 217 | 15 0 0.159 218 | 15 5 0.223 219 | 15 10 0.164 220 | 15 15 0.235 221 | 15 20 0.265 222 | 15 25 0.304 223 | 15 30 0.402 224 | 15 35 0.558 225 | 15 40 0.560 226 | 15 45 0.562 227 | 15 50 1.124 228 | 15 55 1.175 229 | 15 60 1.970 230 | 15 65 2.167 231 | 15 70 2.622 232 | 15 75 3.289 233 | 15 80 4.577 234 | 15 85 5.138 235 | 15 90 5.773 236 | 15 95 5.138 237 | 15 100 4.577 238 | 15 105 3.289 239 | 15 110 2.622 240 | 15 115 2.167 241 | 15 120 1.970 242 | 15 125 1.175 243 | 15 130 1.124 244 | 15 135 0.562 245 | 15 140 0.560 246 | 15 145 0.558 247 | 15 150 0.402 248 | 15 155 0.304 249 | 15 160 0.265 250 | 15 165 0.235 251 | 15 170 0.164 252 | 15 175 0.223 253 | 15 180 0.159 254 | 15 185 0.223 255 | 15 190 0.164 256 | 15 195 0.235 257 | 15 200 0.265 258 | 15 205 0.304 259 | 15 210 0.402 260 | 15 215 0.558 261 | 15 220 0.560 262 | 15 225 0.562 263 | 15 230 1.124 264 | 15 235 1.175 265 | 15 240 1.970 266 | 15 245 2.167 267 | 15 250 2.622 268 | 15 255 3.289 269 | 15 260 4.577 270 | 15 265 5.138 271 | 15 270 5.773 272 | 15 275 5.138 273 | 15 280 4.577 274 | 15 285 3.289 275 | 15 290 2.622 276 | 15 295 2.167 277 | 15 300 1.970 278 | 15 305 1.175 279 | 15 310 1.124 280 | 15 315 0.562 281 | 15 320 0.560 282 | 15 325 0.558 283 | 15 330 0.402 284 | 15 335 0.304 285 | 15 340 0.265 286 | 15 345 0.235 287 | 15 350 0.164 288 | 15 355 0.223 289 | 20 0 0.193 290 | 20 5 0.162 291 | 20 10 0.123 292 | 20 15 0.125 293 | 20 20 0.252 294 | 20 25 0.232 295 | 20 30 0.118 296 | 20 35 0.188 297 | 20 40 0.329 298 | 20 45 0.287 299 | 20 50 0.442 300 | 20 55 0.486 301 | 20 60 1.102 302 | 20 65 1.012 303 | 20 70 1.542 304 | 20 75 2.290 305 | 20 80 3.531 306 | 20 85 4.079 307 | 20 90 5.090 308 | 20 95 4.079 309 | 20 100 3.531 310 | 20 105 2.290 311 | 20 110 1.542 312 | 20 115 1.012 313 | 20 120 1.102 314 | 20 125 0.486 315 | 20 130 0.442 316 | 20 135 0.287 317 | 20 140 0.329 318 | 20 145 0.188 319 | 20 150 0.118 320 | 20 155 0.232 321 | 20 160 0.252 322 | 20 165 0.125 323 | 20 170 0.123 324 | 20 175 0.162 325 | 20 180 0.193 326 | 20 185 0.162 327 | 20 190 0.123 328 | 20 195 0.125 329 | 20 200 0.252 330 | 20 205 0.232 331 | 20 210 0.118 332 | 20 215 0.188 333 | 20 220 0.329 334 | 20 225 0.287 335 | 20 230 0.442 336 | 20 235 0.486 337 | 20 240 1.102 338 | 20 245 1.012 339 | 20 250 1.542 340 | 20 255 2.290 341 | 20 260 3.531 342 | 20 265 4.079 343 | 20 270 5.090 344 | 20 275 4.079 345 | 20 280 3.531 346 | 20 285 2.290 347 | 20 290 1.542 348 | 20 295 1.012 349 | 20 300 1.102 350 | 20 305 0.486 351 | 20 310 0.442 352 | 20 315 0.287 353 | 20 320 0.329 354 | 20 325 0.188 355 | 20 330 0.118 356 | 20 335 0.232 357 | 20 340 0.252 358 | 20 345 0.125 359 | 20 350 0.123 360 | 20 355 0.162 361 | 25 0 0.187 362 | 25 5 0.153 363 | 25 10 0.140 364 | 25 15 0.152 365 | 25 20 0.207 366 | 25 25 0.188 367 | 25 30 0.107 368 | 25 35 0.292 369 | 25 40 0.316 370 | 25 45 0.252 371 | 25 50 0.285 372 | 25 55 0.371 373 | 25 60 0.682 374 | 25 65 0.588 375 | 25 70 1.098 376 | 25 75 2.035 377 | 25 80 3.069 378 | 25 85 3.427 379 | 25 90 3.733 380 | 25 95 3.427 381 | 25 100 3.069 382 | 25 105 2.035 383 | 25 110 1.098 384 | 25 115 0.588 385 | 25 120 0.682 386 | 25 125 0.371 387 | 25 130 0.285 388 | 25 135 0.252 389 | 25 140 0.316 390 | 25 145 0.292 391 | 25 150 0.107 392 | 25 155 0.188 393 | 25 160 0.207 394 | 25 165 0.152 395 | 25 170 0.140 396 | 25 175 0.153 397 | 25 180 0.187 398 | 25 185 0.153 399 | 25 190 0.140 400 | 25 195 0.152 401 | 25 200 0.207 402 | 25 205 0.188 403 | 25 210 0.107 404 | 25 215 0.292 405 | 25 220 0.316 406 | 25 225 0.252 407 | 25 230 0.285 408 | 25 235 0.371 409 | 25 240 0.682 410 | 25 245 0.588 411 | 25 250 1.098 412 | 25 255 2.035 413 | 25 260 3.069 414 | 25 265 3.427 415 | 25 270 3.733 416 | 25 275 3.427 417 | 25 280 3.069 418 | 25 285 2.035 419 | 25 290 1.098 420 | 25 295 0.588 421 | 25 300 0.682 422 | 25 305 0.371 423 | 25 310 0.285 424 | 25 315 0.252 425 | 25 320 0.316 426 | 25 325 0.292 427 | 25 330 0.107 428 | 25 335 0.188 429 | 25 340 0.207 430 | 25 345 0.152 431 | 25 350 0.140 432 | 25 355 0.153 433 | 30 0 0.070 434 | 30 5 0.081 435 | 30 10 0.085 436 | 30 15 0.101 437 | 30 20 0.112 438 | 30 25 0.101 439 | 30 30 0.104 440 | 30 35 0.297 441 | 30 40 0.245 442 | 30 45 0.226 443 | 30 50 0.220 444 | 30 55 0.334 445 | 30 60 0.530 446 | 30 65 0.470 447 | 30 70 0.783 448 | 30 75 1.586 449 | 30 80 2.234 450 | 30 85 2.998 451 | 30 90 3.448 452 | 30 95 2.998 453 | 30 100 2.234 454 | 30 105 1.586 455 | 30 110 0.783 456 | 30 115 0.470 457 | 30 120 0.530 458 | 30 125 0.334 459 | 30 130 0.220 460 | 30 135 0.226 461 | 30 140 0.245 462 | 30 145 0.297 463 | 30 150 0.104 464 | 30 155 0.101 465 | 30 160 0.112 466 | 30 165 0.101 467 | 30 170 0.085 468 | 30 175 0.081 469 | 30 180 0.070 470 | 30 185 0.081 471 | 30 190 0.085 472 | 30 195 0.101 473 | 30 200 0.112 474 | 30 205 0.101 475 | 30 210 0.104 476 | 30 215 0.297 477 | 30 220 0.245 478 | 30 225 0.226 479 | 30 230 0.220 480 | 30 235 0.334 481 | 30 240 0.530 482 | 30 245 0.470 483 | 30 250 0.783 484 | 30 255 1.586 485 | 30 260 2.234 486 | 30 265 2.998 487 | 30 270 3.448 488 | 30 275 2.998 489 | 30 280 2.234 490 | 30 285 1.586 491 | 30 290 0.783 492 | 30 295 0.470 493 | 30 300 0.530 494 | 30 305 0.334 495 | 30 310 0.220 496 | 30 315 0.226 497 | 30 320 0.245 498 | 30 325 0.297 499 | 30 330 0.104 500 | 30 335 0.101 501 | 30 340 0.112 502 | 30 345 0.101 503 | 30 350 0.085 504 | 30 355 0.081 505 | 35 0 0.041 506 | 35 5 0.044 507 | 35 10 0.043 508 | 35 15 0.045 509 | 35 20 0.053 510 | 35 25 0.090 511 | 35 30 0.087 512 | 35 35 0.150 513 | 35 40 0.242 514 | 35 45 0.233 515 | 35 50 0.254 516 | 35 55 0.273 517 | 35 60 0.432 518 | 35 65 0.479 519 | 35 70 0.602 520 | 35 75 1.347 521 | 35 80 1.502 522 | 35 85 2.528 523 | 35 90 3.206 524 | 35 95 2.528 525 | 35 100 1.502 526 | 35 105 1.347 527 | 35 110 0.602 528 | 35 115 0.479 529 | 35 120 0.432 530 | 35 125 0.273 531 | 35 130 0.254 532 | 35 135 0.233 533 | 35 140 0.242 534 | 35 145 0.150 535 | 35 150 0.087 536 | 35 155 0.090 537 | 35 160 0.053 538 | 35 165 0.045 539 | 35 170 0.043 540 | 35 175 0.044 541 | 35 180 0.041 542 | 35 185 0.044 543 | 35 190 0.043 544 | 35 195 0.045 545 | 35 200 0.053 546 | 35 205 0.090 547 | 35 210 0.087 548 | 35 215 0.150 549 | 35 220 0.242 550 | 35 225 0.233 551 | 35 230 0.254 552 | 35 235 0.273 553 | 35 240 0.432 554 | 35 245 0.479 555 | 35 250 0.602 556 | 35 255 1.347 557 | 35 260 1.502 558 | 35 265 2.528 559 | 35 270 3.206 560 | 35 275 2.528 561 | 35 280 1.502 562 | 35 285 1.347 563 | 35 290 0.602 564 | 35 295 0.479 565 | 35 300 0.432 566 | 35 305 0.273 567 | 35 310 0.254 568 | 35 315 0.233 569 | 35 320 0.242 570 | 35 325 0.150 571 | 35 330 0.087 572 | 35 335 0.090 573 | 35 340 0.053 574 | 35 345 0.045 575 | 35 350 0.043 576 | 35 355 0.044 577 | 40 0 0.079 578 | 40 5 0.058 579 | 40 10 0.067 580 | 40 15 0.049 581 | 40 20 0.042 582 | 40 25 0.064 583 | 40 30 0.066 584 | 40 35 0.082 585 | 40 40 0.143 586 | 40 45 0.181 587 | 40 50 0.262 588 | 40 55 0.293 589 | 40 60 0.468 590 | 40 65 0.635 591 | 40 70 0.761 592 | 40 75 1.169 593 | 40 80 1.416 594 | 40 85 1.965 595 | 40 90 2.031 596 | 40 95 1.965 597 | 40 100 1.416 598 | 40 105 1.169 599 | 40 110 0.761 600 | 40 115 0.635 601 | 40 120 0.468 602 | 40 125 0.293 603 | 40 130 0.262 604 | 40 135 0.181 605 | 40 140 0.143 606 | 40 145 0.082 607 | 40 150 0.066 608 | 40 155 0.064 609 | 40 160 0.042 610 | 40 165 0.049 611 | 40 170 0.067 612 | 40 175 0.058 613 | 40 180 0.079 614 | 40 185 0.058 615 | 40 190 0.067 616 | 40 195 0.049 617 | 40 200 0.042 618 | 40 205 0.064 619 | 40 210 0.066 620 | 40 215 0.082 621 | 40 220 0.143 622 | 40 225 0.181 623 | 40 230 0.262 624 | 40 235 0.293 625 | 40 240 0.468 626 | 40 245 0.635 627 | 40 250 0.761 628 | 40 255 1.169 629 | 40 260 1.416 630 | 40 265 1.965 631 | 40 270 2.031 632 | 40 275 1.965 633 | 40 280 1.416 634 | 40 285 1.169 635 | 40 290 0.761 636 | 40 295 0.635 637 | 40 300 0.468 638 | 40 305 0.293 639 | 40 310 0.262 640 | 40 315 0.181 641 | 40 320 0.143 642 | 40 325 0.082 643 | 40 330 0.066 644 | 40 335 0.064 645 | 40 340 0.042 646 | 40 345 0.049 647 | 40 350 0.067 648 | 40 355 0.058 649 | 45 0 0.091 650 | 45 5 0.071 651 | 45 10 0.070 652 | 45 15 0.042 653 | 45 20 0.023 654 | 45 25 0.025 655 | 45 30 0.033 656 | 45 35 0.065 657 | 45 40 0.095 658 | 45 45 0.115 659 | 45 50 0.145 660 | 45 55 0.240 661 | 45 60 0.384 662 | 45 65 0.562 663 | 45 70 0.666 664 | 45 75 0.947 665 | 45 80 1.468 666 | 45 85 2.127 667 | 45 90 2.173 668 | 45 95 2.127 669 | 45 100 1.468 670 | 45 105 0.947 671 | 45 110 0.666 672 | 45 115 0.562 673 | 45 120 0.384 674 | 45 125 0.240 675 | 45 130 0.145 676 | 45 135 0.115 677 | 45 140 0.095 678 | 45 145 0.065 679 | 45 150 0.033 680 | 45 155 0.025 681 | 45 160 0.023 682 | 45 165 0.042 683 | 45 170 0.070 684 | 45 175 0.071 685 | 45 180 0.091 686 | 45 185 0.071 687 | 45 190 0.070 688 | 45 195 0.042 689 | 45 200 0.023 690 | 45 205 0.025 691 | 45 210 0.033 692 | 45 215 0.065 693 | 45 220 0.095 694 | 45 225 0.115 695 | 45 230 0.145 696 | 45 235 0.240 697 | 45 240 0.384 698 | 45 245 0.562 699 | 45 250 0.666 700 | 45 255 0.947 701 | 45 260 1.468 702 | 45 265 2.127 703 | 45 270 2.173 704 | 45 275 2.127 705 | 45 280 1.468 706 | 45 285 0.947 707 | 45 290 0.666 708 | 45 295 0.562 709 | 45 300 0.384 710 | 45 305 0.240 711 | 45 310 0.145 712 | 45 315 0.115 713 | 45 320 0.095 714 | 45 325 0.065 715 | 45 330 0.033 716 | 45 335 0.025 717 | 45 340 0.023 718 | 45 345 0.042 719 | 45 350 0.070 720 | 45 355 0.071 721 | 50 0 0.067 722 | 50 5 0.063 723 | 50 10 0.044 724 | 50 15 0.023 725 | 50 20 0.009 726 | 50 25 0.011 727 | 50 30 0.011 728 | 50 35 0.025 729 | 50 40 0.064 730 | 50 45 0.080 731 | 50 50 0.092 732 | 50 55 0.203 733 | 50 60 0.324 734 | 50 65 0.267 735 | 50 70 0.416 736 | 50 75 0.846 737 | 50 80 1.332 738 | 50 85 2.558 739 | 50 90 3.422 740 | 50 95 2.558 741 | 50 100 1.332 742 | 50 105 0.846 743 | 50 110 0.416 744 | 50 115 0.267 745 | 50 120 0.324 746 | 50 125 0.203 747 | 50 130 0.092 748 | 50 135 0.080 749 | 50 140 0.064 750 | 50 145 0.025 751 | 50 150 0.011 752 | 50 155 0.011 753 | 50 160 0.009 754 | 50 165 0.023 755 | 50 170 0.044 756 | 50 175 0.063 757 | 50 180 0.067 758 | 50 185 0.063 759 | 50 190 0.044 760 | 50 195 0.023 761 | 50 200 0.009 762 | 50 205 0.011 763 | 50 210 0.011 764 | 50 215 0.025 765 | 50 220 0.064 766 | 50 225 0.080 767 | 50 230 0.092 768 | 50 235 0.203 769 | 50 240 0.324 770 | 50 245 0.267 771 | 50 250 0.416 772 | 50 255 0.846 773 | 50 260 1.332 774 | 50 265 2.558 775 | 50 270 3.422 776 | 50 275 2.558 777 | 50 280 1.332 778 | 50 285 0.846 779 | 50 290 0.416 780 | 50 295 0.267 781 | 50 300 0.324 782 | 50 305 0.203 783 | 50 310 0.092 784 | 50 315 0.080 785 | 50 320 0.064 786 | 50 325 0.025 787 | 50 330 0.011 788 | 50 335 0.011 789 | 50 340 0.009 790 | 50 345 0.023 791 | 50 350 0.044 792 | 50 355 0.063 793 | 55 0 0.078 794 | 55 5 0.075 795 | 55 10 0.033 796 | 55 15 0.008 797 | 55 20 0.002 798 | 55 25 0.000 799 | 55 30 0.000 800 | 55 35 0.001 801 | 55 40 0.013 802 | 55 45 0.062 803 | 55 50 0.081 804 | 55 55 0.213 805 | 55 60 0.271 806 | 55 65 0.170 807 | 55 70 0.318 808 | 55 75 0.506 809 | 55 80 1.168 810 | 55 85 2.767 811 | 55 90 4.412 812 | 55 95 2.767 813 | 55 100 1.168 814 | 55 105 0.506 815 | 55 110 0.318 816 | 55 115 0.170 817 | 55 120 0.271 818 | 55 125 0.213 819 | 55 130 0.081 820 | 55 135 0.062 821 | 55 140 0.013 822 | 55 145 0.001 823 | 55 150 0.000 824 | 55 155 0.000 825 | 55 160 0.002 826 | 55 165 0.008 827 | 55 170 0.033 828 | 55 175 0.075 829 | 55 180 0.078 830 | 55 185 0.075 831 | 55 190 0.033 832 | 55 195 0.008 833 | 55 200 0.002 834 | 55 205 0.000 835 | 55 210 0.000 836 | 55 215 0.001 837 | 55 220 0.013 838 | 55 225 0.062 839 | 55 230 0.081 840 | 55 235 0.213 841 | 55 240 0.271 842 | 55 245 0.170 843 | 55 250 0.318 844 | 55 255 0.506 845 | 55 260 1.168 846 | 55 265 2.767 847 | 55 270 4.412 848 | 55 275 2.767 849 | 55 280 1.168 850 | 55 285 0.506 851 | 55 290 0.318 852 | 55 295 0.170 853 | 55 300 0.271 854 | 55 305 0.213 855 | 55 310 0.081 856 | 55 315 0.062 857 | 55 320 0.013 858 | 55 325 0.001 859 | 55 330 0.000 860 | 55 335 0.000 861 | 55 340 0.002 862 | 55 345 0.008 863 | 55 350 0.033 864 | 55 355 0.075 865 | 60 0 0.172 866 | 60 5 0.149 867 | 60 10 0.071 868 | 60 15 0.016 869 | 60 20 0.002 870 | 60 25 0.000 871 | 60 30 0.000 872 | 60 35 0.001 873 | 60 40 0.004 874 | 60 45 0.029 875 | 60 50 0.079 876 | 60 55 0.215 877 | 60 60 0.200 878 | 60 65 0.136 879 | 60 70 0.272 880 | 60 75 0.401 881 | 60 80 1.033 882 | 60 85 2.872 883 | 60 90 4.932 884 | 60 95 2.872 885 | 60 100 1.033 886 | 60 105 0.401 887 | 60 110 0.272 888 | 60 115 0.136 889 | 60 120 0.200 890 | 60 125 0.215 891 | 60 130 0.079 892 | 60 135 0.029 893 | 60 140 0.004 894 | 60 145 0.001 895 | 60 150 0.000 896 | 60 155 0.000 897 | 60 160 0.002 898 | 60 165 0.016 899 | 60 170 0.071 900 | 60 175 0.149 901 | 60 180 0.172 902 | 60 185 0.149 903 | 60 190 0.071 904 | 60 195 0.016 905 | 60 200 0.002 906 | 60 205 0.000 907 | 60 210 0.000 908 | 60 215 0.001 909 | 60 220 0.004 910 | 60 225 0.029 911 | 60 230 0.079 912 | 60 235 0.215 913 | 60 240 0.200 914 | 60 245 0.136 915 | 60 250 0.272 916 | 60 255 0.401 917 | 60 260 1.033 918 | 60 265 2.872 919 | 60 270 4.932 920 | 60 275 2.872 921 | 60 280 1.033 922 | 60 285 0.401 923 | 60 290 0.272 924 | 60 295 0.136 925 | 60 300 0.200 926 | 60 305 0.215 927 | 60 310 0.079 928 | 60 315 0.029 929 | 60 320 0.004 930 | 60 325 0.001 931 | 60 330 0.000 932 | 60 335 0.000 933 | 60 340 0.002 934 | 60 345 0.016 935 | 60 350 0.071 936 | 60 355 0.149 937 | 65 0 0.359 938 | 65 5 0.300 939 | 65 10 0.142 940 | 65 15 0.063 941 | 65 20 0.009 942 | 65 25 0.000 943 | 65 30 0.000 944 | 65 35 0.000 945 | 65 40 0.004 946 | 65 45 0.022 947 | 65 50 0.050 948 | 65 55 0.115 949 | 65 60 0.061 950 | 65 65 0.051 951 | 65 70 0.169 952 | 65 75 0.320 953 | 65 80 0.685 954 | 65 85 2.692 955 | 65 90 5.447 956 | 65 95 2.692 957 | 65 100 0.685 958 | 65 105 0.320 959 | 65 110 0.169 960 | 65 115 0.051 961 | 65 120 0.061 962 | 65 125 0.115 963 | 65 130 0.050 964 | 65 135 0.022 965 | 65 140 0.004 966 | 65 145 0.000 967 | 65 150 0.000 968 | 65 155 0.000 969 | 65 160 0.009 970 | 65 165 0.063 971 | 65 170 0.142 972 | 65 175 0.300 973 | 65 180 0.359 974 | 65 185 0.300 975 | 65 190 0.142 976 | 65 195 0.063 977 | 65 200 0.009 978 | 65 205 0.000 979 | 65 210 0.000 980 | 65 215 0.000 981 | 65 220 0.004 982 | 65 225 0.022 983 | 65 230 0.050 984 | 65 235 0.115 985 | 65 240 0.061 986 | 65 245 0.051 987 | 65 250 0.169 988 | 65 255 0.320 989 | 65 260 0.685 990 | 65 265 2.692 991 | 65 270 5.447 992 | 65 275 2.692 993 | 65 280 0.685 994 | 65 285 0.320 995 | 65 290 0.169 996 | 65 295 0.051 997 | 65 300 0.061 998 | 65 305 0.115 999 | 65 310 0.050 1000 | 65 315 0.022 1001 | 65 320 0.004 1002 | 65 325 0.000 1003 | 65 330 0.000 1004 | 65 335 0.000 1005 | 65 340 0.009 1006 | 65 345 0.063 1007 | 65 350 0.142 1008 | 65 355 0.300 1009 | 70 0 0.825 1010 | 70 5 0.642 1011 | 70 10 0.310 1012 | 70 15 0.151 1013 | 70 20 0.080 1014 | 70 25 0.028 1015 | 70 30 0.000 1016 | 70 35 0.024 1017 | 70 40 0.059 1018 | 70 45 0.028 1019 | 70 50 0.012 1020 | 70 55 0.027 1021 | 70 60 0.000 1022 | 70 65 0.011 1023 | 70 70 0.080 1024 | 70 75 0.194 1025 | 70 80 0.529 1026 | 70 85 2.398 1027 | 70 90 5.874 1028 | 70 95 2.398 1029 | 70 100 0.529 1030 | 70 105 0.194 1031 | 70 110 0.080 1032 | 70 115 0.011 1033 | 70 120 0.000 1034 | 70 125 0.027 1035 | 70 130 0.012 1036 | 70 135 0.028 1037 | 70 140 0.059 1038 | 70 145 0.024 1039 | 70 150 0.000 1040 | 70 155 0.028 1041 | 70 160 0.080 1042 | 70 165 0.151 1043 | 70 170 0.310 1044 | 70 175 0.642 1045 | 70 180 0.825 1046 | 70 185 0.642 1047 | 70 190 0.310 1048 | 70 195 0.151 1049 | 70 200 0.080 1050 | 70 205 0.028 1051 | 70 210 0.000 1052 | 70 215 0.024 1053 | 70 220 0.059 1054 | 70 225 0.028 1055 | 70 230 0.012 1056 | 70 235 0.027 1057 | 70 240 0.000 1058 | 70 245 0.011 1059 | 70 250 0.080 1060 | 70 255 0.194 1061 | 70 260 0.529 1062 | 70 265 2.398 1063 | 70 270 5.874 1064 | 70 275 2.398 1065 | 70 280 0.529 1066 | 70 285 0.194 1067 | 70 290 0.080 1068 | 70 295 0.011 1069 | 70 300 0.000 1070 | 70 305 0.027 1071 | 70 310 0.012 1072 | 70 315 0.028 1073 | 70 320 0.059 1074 | 70 325 0.024 1075 | 70 330 0.000 1076 | 70 335 0.028 1077 | 70 340 0.080 1078 | 70 345 0.151 1079 | 70 350 0.310 1080 | 70 355 0.642 1081 | 75 0 2.697 1082 | 75 5 1.976 1083 | 75 10 0.882 1084 | 75 15 0.307 1085 | 75 20 0.214 1086 | 75 25 0.080 1087 | 75 30 0.012 1088 | 75 35 0.032 1089 | 75 40 0.090 1090 | 75 45 0.009 1091 | 75 50 0.000 1092 | 75 55 0.006 1093 | 75 60 0.000 1094 | 75 65 0.000 1095 | 75 70 0.019 1096 | 75 75 0.117 1097 | 75 80 0.424 1098 | 75 85 2.038 1099 | 75 90 5.312 1100 | 75 95 2.038 1101 | 75 100 0.424 1102 | 75 105 0.117 1103 | 75 110 0.019 1104 | 75 115 0.000 1105 | 75 120 0.000 1106 | 75 125 0.006 1107 | 75 130 0.000 1108 | 75 135 0.009 1109 | 75 140 0.090 1110 | 75 145 0.032 1111 | 75 150 0.012 1112 | 75 155 0.080 1113 | 75 160 0.214 1114 | 75 165 0.307 1115 | 75 170 0.882 1116 | 75 175 1.976 1117 | 75 180 2.697 1118 | 75 185 1.976 1119 | 75 190 0.882 1120 | 75 195 0.307 1121 | 75 200 0.214 1122 | 75 205 0.080 1123 | 75 210 0.012 1124 | 75 215 0.032 1125 | 75 220 0.090 1126 | 75 225 0.009 1127 | 75 230 0.000 1128 | 75 235 0.006 1129 | 75 240 0.000 1130 | 75 245 0.000 1131 | 75 250 0.019 1132 | 75 255 0.117 1133 | 75 260 0.424 1134 | 75 265 2.038 1135 | 75 270 5.312 1136 | 75 275 2.038 1137 | 75 280 0.424 1138 | 75 285 0.117 1139 | 75 290 0.019 1140 | 75 295 0.000 1141 | 75 300 0.000 1142 | 75 305 0.006 1143 | 75 310 0.000 1144 | 75 315 0.009 1145 | 75 320 0.090 1146 | 75 325 0.032 1147 | 75 330 0.012 1148 | 75 335 0.080 1149 | 75 340 0.214 1150 | 75 345 0.307 1151 | 75 350 0.882 1152 | 75 355 1.976 1153 | -------------------------------------------------------------------------------- /texture/Xray_pf220_uncorr.dat: -------------------------------------------------------------------------------- 1 | 0 0 2.372 2 | 0 5 2.372 3 | 0 10 2.372 4 | 0 15 2.372 5 | 0 20 2.372 6 | 0 25 2.372 7 | 0 30 2.372 8 | 0 35 2.372 9 | 0 40 2.372 10 | 0 45 2.372 11 | 0 50 2.372 12 | 0 55 2.372 13 | 0 60 2.372 14 | 0 65 2.372 15 | 0 70 2.372 16 | 0 75 2.372 17 | 0 80 2.372 18 | 0 85 2.372 19 | 0 90 2.372 20 | 0 95 2.372 21 | 0 100 2.372 22 | 0 105 2.372 23 | 0 110 2.372 24 | 0 115 2.372 25 | 0 120 2.372 26 | 0 125 2.372 27 | 0 130 2.372 28 | 0 135 2.372 29 | 0 140 2.372 30 | 0 145 2.372 31 | 0 150 2.372 32 | 0 155 2.372 33 | 0 160 2.372 34 | 0 165 2.372 35 | 0 170 2.372 36 | 0 175 2.372 37 | 0 180 2.372 38 | 0 185 2.372 39 | 0 190 2.372 40 | 0 195 2.372 41 | 0 200 2.372 42 | 0 205 2.372 43 | 0 210 2.372 44 | 0 215 2.372 45 | 0 220 2.372 46 | 0 225 2.372 47 | 0 230 2.372 48 | 0 235 2.372 49 | 0 240 2.372 50 | 0 245 2.372 51 | 0 250 2.372 52 | 0 255 2.372 53 | 0 260 2.372 54 | 0 265 2.372 55 | 0 270 2.372 56 | 0 275 2.372 57 | 0 280 2.372 58 | 0 285 2.372 59 | 0 290 2.372 60 | 0 295 2.372 61 | 0 300 2.372 62 | 0 305 2.372 63 | 0 310 2.372 64 | 0 315 2.372 65 | 0 320 2.372 66 | 0 325 2.372 67 | 0 330 2.372 68 | 0 335 2.372 69 | 0 340 2.372 70 | 0 345 2.372 71 | 0 350 2.372 72 | 0 355 2.372 73 | 5 0 0.267 74 | 5 5 0.170 75 | 5 10 0.775 76 | 5 15 0.516 77 | 5 20 0.656 78 | 5 25 0.887 79 | 5 30 0.433 80 | 5 35 0.508 81 | 5 40 0.574 82 | 5 45 0.614 83 | 5 50 0.851 84 | 5 55 1.212 85 | 5 60 1.457 86 | 5 65 1.900 87 | 5 70 2.192 88 | 5 75 2.983 89 | 5 80 3.305 90 | 5 85 3.758 91 | 5 90 3.009 92 | 5 95 3.758 93 | 5 100 3.305 94 | 5 105 2.983 95 | 5 110 2.192 96 | 5 115 1.900 97 | 5 120 1.457 98 | 5 125 1.212 99 | 5 130 0.851 100 | 5 135 0.614 101 | 5 140 0.574 102 | 5 145 0.508 103 | 5 150 0.433 104 | 5 155 0.887 105 | 5 160 0.656 106 | 5 165 0.516 107 | 5 170 0.775 108 | 5 175 0.170 109 | 5 180 0.267 110 | 5 185 0.170 111 | 5 190 0.775 112 | 5 195 0.516 113 | 5 200 0.656 114 | 5 205 0.887 115 | 5 210 0.433 116 | 5 215 0.508 117 | 5 220 0.574 118 | 5 225 0.614 119 | 5 230 0.851 120 | 5 235 1.212 121 | 5 240 1.457 122 | 5 245 1.900 123 | 5 250 2.192 124 | 5 255 2.983 125 | 5 260 3.305 126 | 5 265 3.758 127 | 5 270 3.009 128 | 5 275 3.758 129 | 5 280 3.305 130 | 5 285 2.983 131 | 5 290 2.192 132 | 5 295 1.900 133 | 5 300 1.457 134 | 5 305 1.212 135 | 5 310 0.851 136 | 5 315 0.614 137 | 5 320 0.574 138 | 5 325 0.508 139 | 5 330 0.433 140 | 5 335 0.887 141 | 5 340 0.656 142 | 5 345 0.516 143 | 5 350 0.775 144 | 5 355 0.170 145 | 10 0 0.010 146 | 10 5 0.013 147 | 10 10 0.153 148 | 10 15 0.005 149 | 10 20 0.033 150 | 10 25 0.057 151 | 10 30 0.171 152 | 10 35 0.012 153 | 10 40 0.016 154 | 10 45 0.053 155 | 10 50 0.201 156 | 10 55 0.332 157 | 10 60 0.524 158 | 10 65 0.715 159 | 10 70 0.830 160 | 10 75 1.904 161 | 10 80 3.061 162 | 10 85 3.399 163 | 10 90 3.903 164 | 10 95 3.399 165 | 10 100 3.061 166 | 10 105 1.904 167 | 10 110 0.830 168 | 10 115 0.715 169 | 10 120 0.524 170 | 10 125 0.332 171 | 10 130 0.201 172 | 10 135 0.053 173 | 10 140 0.016 174 | 10 145 0.012 175 | 10 150 0.171 176 | 10 155 0.057 177 | 10 160 0.033 178 | 10 165 0.005 179 | 10 170 0.153 180 | 10 175 0.013 181 | 10 180 0.010 182 | 10 185 0.013 183 | 10 190 0.153 184 | 10 195 0.005 185 | 10 200 0.033 186 | 10 205 0.057 187 | 10 210 0.171 188 | 10 215 0.012 189 | 10 220 0.016 190 | 10 225 0.053 191 | 10 230 0.201 192 | 10 235 0.332 193 | 10 240 0.524 194 | 10 245 0.715 195 | 10 250 0.830 196 | 10 255 1.904 197 | 10 260 3.061 198 | 10 265 3.399 199 | 10 270 3.903 200 | 10 275 3.399 201 | 10 280 3.061 202 | 10 285 1.904 203 | 10 290 0.830 204 | 10 295 0.715 205 | 10 300 0.524 206 | 10 305 0.332 207 | 10 310 0.201 208 | 10 315 0.053 209 | 10 320 0.016 210 | 10 325 0.012 211 | 10 330 0.171 212 | 10 335 0.057 213 | 10 340 0.033 214 | 10 345 0.005 215 | 10 350 0.153 216 | 10 355 0.013 217 | 15 0 0.000 218 | 15 5 0.000 219 | 15 10 0.000 220 | 15 15 0.000 221 | 15 20 0.001 222 | 15 25 0.019 223 | 15 30 0.171 224 | 15 35 0.007 225 | 15 40 0.004 226 | 15 45 0.010 227 | 15 50 0.052 228 | 15 55 0.101 229 | 15 60 0.097 230 | 15 65 0.228 231 | 15 70 0.613 232 | 15 75 1.477 233 | 15 80 2.601 234 | 15 85 3.511 235 | 15 90 4.409 236 | 15 95 3.511 237 | 15 100 2.601 238 | 15 105 1.477 239 | 15 110 0.613 240 | 15 115 0.228 241 | 15 120 0.097 242 | 15 125 0.101 243 | 15 130 0.052 244 | 15 135 0.010 245 | 15 140 0.004 246 | 15 145 0.007 247 | 15 150 0.171 248 | 15 155 0.019 249 | 15 160 0.001 250 | 15 165 0.000 251 | 15 170 0.000 252 | 15 175 0.000 253 | 15 180 0.000 254 | 15 185 0.000 255 | 15 190 0.000 256 | 15 195 0.000 257 | 15 200 0.001 258 | 15 205 0.019 259 | 15 210 0.171 260 | 15 215 0.007 261 | 15 220 0.004 262 | 15 225 0.010 263 | 15 230 0.052 264 | 15 235 0.101 265 | 15 240 0.097 266 | 15 245 0.228 267 | 15 250 0.613 268 | 15 255 1.477 269 | 15 260 2.601 270 | 15 265 3.511 271 | 15 270 4.409 272 | 15 275 3.511 273 | 15 280 2.601 274 | 15 285 1.477 275 | 15 290 0.613 276 | 15 295 0.228 277 | 15 300 0.097 278 | 15 305 0.101 279 | 15 310 0.052 280 | 15 315 0.010 281 | 15 320 0.004 282 | 15 325 0.007 283 | 15 330 0.171 284 | 15 335 0.019 285 | 15 340 0.001 286 | 15 345 0.000 287 | 15 350 0.000 288 | 15 355 0.000 289 | 20 0 0.000 290 | 20 5 0.000 291 | 20 10 0.000 292 | 20 15 0.000 293 | 20 20 0.001 294 | 20 25 0.000 295 | 20 30 0.003 296 | 20 35 0.001 297 | 20 40 0.002 298 | 20 45 0.004 299 | 20 50 0.007 300 | 20 55 0.009 301 | 20 60 0.023 302 | 20 65 0.081 303 | 20 70 0.406 304 | 20 75 0.805 305 | 20 80 1.939 306 | 20 85 3.708 307 | 20 90 4.228 308 | 20 95 3.708 309 | 20 100 1.939 310 | 20 105 0.805 311 | 20 110 0.406 312 | 20 115 0.081 313 | 20 120 0.023 314 | 20 125 0.009 315 | 20 130 0.007 316 | 20 135 0.004 317 | 20 140 0.002 318 | 20 145 0.001 319 | 20 150 0.003 320 | 20 155 0.000 321 | 20 160 0.001 322 | 20 165 0.000 323 | 20 170 0.000 324 | 20 175 0.000 325 | 20 180 0.000 326 | 20 185 0.000 327 | 20 190 0.000 328 | 20 195 0.000 329 | 20 200 0.001 330 | 20 205 0.000 331 | 20 210 0.003 332 | 20 215 0.001 333 | 20 220 0.002 334 | 20 225 0.004 335 | 20 230 0.007 336 | 20 235 0.009 337 | 20 240 0.023 338 | 20 245 0.081 339 | 20 250 0.406 340 | 20 255 0.805 341 | 20 260 1.939 342 | 20 265 3.708 343 | 20 270 4.228 344 | 20 275 3.708 345 | 20 280 1.939 346 | 20 285 0.805 347 | 20 290 0.406 348 | 20 295 0.081 349 | 20 300 0.023 350 | 20 305 0.009 351 | 20 310 0.007 352 | 20 315 0.004 353 | 20 320 0.002 354 | 20 325 0.001 355 | 20 330 0.003 356 | 20 335 0.000 357 | 20 340 0.001 358 | 20 345 0.000 359 | 20 350 0.000 360 | 20 355 0.000 361 | 25 0 0.036 362 | 25 5 0.047 363 | 25 10 0.008 364 | 25 15 0.027 365 | 25 20 0.003 366 | 25 25 0.000 367 | 25 30 0.002 368 | 25 35 0.025 369 | 25 40 0.129 370 | 25 45 0.000 371 | 25 50 0.000 372 | 25 55 0.001 373 | 25 60 0.006 374 | 25 65 0.045 375 | 25 70 0.198 376 | 25 75 0.536 377 | 25 80 1.552 378 | 25 85 3.545 379 | 25 90 4.254 380 | 25 95 3.545 381 | 25 100 1.552 382 | 25 105 0.536 383 | 25 110 0.198 384 | 25 115 0.045 385 | 25 120 0.006 386 | 25 125 0.001 387 | 25 130 0.000 388 | 25 135 0.000 389 | 25 140 0.129 390 | 25 145 0.025 391 | 25 150 0.002 392 | 25 155 0.000 393 | 25 160 0.003 394 | 25 165 0.027 395 | 25 170 0.008 396 | 25 175 0.047 397 | 25 180 0.036 398 | 25 185 0.047 399 | 25 190 0.008 400 | 25 195 0.027 401 | 25 200 0.003 402 | 25 205 0.000 403 | 25 210 0.002 404 | 25 215 0.025 405 | 25 220 0.129 406 | 25 225 0.000 407 | 25 230 0.000 408 | 25 235 0.001 409 | 25 240 0.006 410 | 25 245 0.045 411 | 25 250 0.198 412 | 25 255 0.536 413 | 25 260 1.552 414 | 25 265 3.545 415 | 25 270 4.254 416 | 25 275 3.545 417 | 25 280 1.552 418 | 25 285 0.536 419 | 25 290 0.198 420 | 25 295 0.045 421 | 25 300 0.006 422 | 25 305 0.001 423 | 25 310 0.000 424 | 25 315 0.000 425 | 25 320 0.129 426 | 25 325 0.025 427 | 25 330 0.002 428 | 25 335 0.000 429 | 25 340 0.003 430 | 25 345 0.027 431 | 25 350 0.008 432 | 25 355 0.047 433 | 30 0 0.132 434 | 30 5 0.188 435 | 30 10 0.213 436 | 30 15 0.117 437 | 30 20 0.102 438 | 30 25 0.075 439 | 30 30 0.123 440 | 30 35 0.045 441 | 30 40 0.154 442 | 30 45 0.003 443 | 30 50 0.000 444 | 30 55 0.016 445 | 30 60 0.015 446 | 30 65 0.044 447 | 30 70 0.160 448 | 30 75 0.353 449 | 30 80 1.113 450 | 30 85 3.463 451 | 30 90 4.507 452 | 30 95 3.463 453 | 30 100 1.113 454 | 30 105 0.353 455 | 30 110 0.160 456 | 30 115 0.044 457 | 30 120 0.015 458 | 30 125 0.016 459 | 30 130 0.000 460 | 30 135 0.003 461 | 30 140 0.154 462 | 30 145 0.045 463 | 30 150 0.123 464 | 30 155 0.075 465 | 30 160 0.102 466 | 30 165 0.117 467 | 30 170 0.213 468 | 30 175 0.188 469 | 30 180 0.132 470 | 30 185 0.188 471 | 30 190 0.213 472 | 30 195 0.117 473 | 30 200 0.102 474 | 30 205 0.075 475 | 30 210 0.123 476 | 30 215 0.045 477 | 30 220 0.154 478 | 30 225 0.003 479 | 30 230 0.000 480 | 30 235 0.016 481 | 30 240 0.015 482 | 30 245 0.044 483 | 30 250 0.160 484 | 30 255 0.353 485 | 30 260 1.113 486 | 30 265 3.463 487 | 30 270 4.507 488 | 30 275 3.463 489 | 30 280 1.113 490 | 30 285 0.353 491 | 30 290 0.160 492 | 30 295 0.044 493 | 30 300 0.015 494 | 30 305 0.016 495 | 30 310 0.000 496 | 30 315 0.003 497 | 30 320 0.154 498 | 30 325 0.045 499 | 30 330 0.123 500 | 30 335 0.075 501 | 30 340 0.102 502 | 30 345 0.117 503 | 30 350 0.213 504 | 30 355 0.188 505 | 35 0 1.699 506 | 35 5 1.728 507 | 35 10 1.423 508 | 35 15 0.991 509 | 35 20 0.704 510 | 35 25 0.397 511 | 35 30 0.283 512 | 35 35 0.114 513 | 35 40 0.127 514 | 35 45 0.044 515 | 35 50 0.058 516 | 35 55 0.028 517 | 35 60 0.024 518 | 35 65 0.094 519 | 35 70 0.195 520 | 35 75 0.310 521 | 35 80 0.918 522 | 35 85 3.372 523 | 35 90 4.844 524 | 35 95 3.372 525 | 35 100 0.918 526 | 35 105 0.310 527 | 35 110 0.195 528 | 35 115 0.094 529 | 35 120 0.024 530 | 35 125 0.028 531 | 35 130 0.058 532 | 35 135 0.044 533 | 35 140 0.127 534 | 35 145 0.114 535 | 35 150 0.283 536 | 35 155 0.397 537 | 35 160 0.704 538 | 35 165 0.991 539 | 35 170 1.423 540 | 35 175 1.728 541 | 35 180 1.699 542 | 35 185 1.728 543 | 35 190 1.423 544 | 35 195 0.991 545 | 35 200 0.704 546 | 35 205 0.397 547 | 35 210 0.283 548 | 35 215 0.114 549 | 35 220 0.127 550 | 35 225 0.044 551 | 35 230 0.058 552 | 35 235 0.028 553 | 35 240 0.024 554 | 35 245 0.094 555 | 35 250 0.195 556 | 35 255 0.310 557 | 35 260 0.918 558 | 35 265 3.372 559 | 35 270 4.844 560 | 35 275 3.372 561 | 35 280 0.918 562 | 35 285 0.310 563 | 35 290 0.195 564 | 35 295 0.094 565 | 35 300 0.024 566 | 35 305 0.028 567 | 35 310 0.058 568 | 35 315 0.044 569 | 35 320 0.127 570 | 35 325 0.114 571 | 35 330 0.283 572 | 35 335 0.397 573 | 35 340 0.704 574 | 35 345 0.991 575 | 35 350 1.423 576 | 35 355 1.728 577 | 40 0 6.567 578 | 40 5 5.628 579 | 40 10 4.320 580 | 40 15 2.825 581 | 40 20 1.748 582 | 40 25 1.132 583 | 40 30 0.660 584 | 40 35 0.293 585 | 40 40 0.310 586 | 40 45 0.150 587 | 40 50 0.088 588 | 40 55 0.043 589 | 40 60 0.067 590 | 40 65 0.117 591 | 40 70 0.182 592 | 40 75 0.271 593 | 40 80 1.003 594 | 40 85 3.466 595 | 40 90 5.023 596 | 40 95 3.466 597 | 40 100 1.003 598 | 40 105 0.271 599 | 40 110 0.182 600 | 40 115 0.117 601 | 40 120 0.067 602 | 40 125 0.043 603 | 40 130 0.088 604 | 40 135 0.150 605 | 40 140 0.310 606 | 40 145 0.293 607 | 40 150 0.660 608 | 40 155 1.132 609 | 40 160 1.748 610 | 40 165 2.825 611 | 40 170 4.320 612 | 40 175 5.628 613 | 40 180 6.567 614 | 40 185 5.628 615 | 40 190 4.320 616 | 40 195 2.825 617 | 40 200 1.748 618 | 40 205 1.132 619 | 40 210 0.660 620 | 40 215 0.293 621 | 40 220 0.310 622 | 40 225 0.150 623 | 40 230 0.088 624 | 40 235 0.043 625 | 40 240 0.067 626 | 40 245 0.117 627 | 40 250 0.182 628 | 40 255 0.271 629 | 40 260 1.003 630 | 40 265 3.466 631 | 40 270 5.023 632 | 40 275 3.466 633 | 40 280 1.003 634 | 40 285 0.271 635 | 40 290 0.182 636 | 40 295 0.117 637 | 40 300 0.067 638 | 40 305 0.043 639 | 40 310 0.088 640 | 40 315 0.150 641 | 40 320 0.310 642 | 40 325 0.293 643 | 40 330 0.660 644 | 40 335 1.132 645 | 40 340 1.748 646 | 40 345 2.825 647 | 40 350 4.320 648 | 40 355 5.628 649 | 45 0 7.531 650 | 45 5 6.606 651 | 45 10 5.074 652 | 45 15 3.603 653 | 45 20 2.753 654 | 45 25 1.896 655 | 45 30 1.180 656 | 45 35 0.739 657 | 45 40 0.457 658 | 45 45 0.253 659 | 45 50 0.148 660 | 45 55 0.136 661 | 45 60 0.160 662 | 45 65 0.134 663 | 45 70 0.190 664 | 45 75 0.269 665 | 45 80 1.048 666 | 45 85 3.170 667 | 45 90 4.898 668 | 45 95 3.170 669 | 45 100 1.048 670 | 45 105 0.269 671 | 45 110 0.190 672 | 45 115 0.134 673 | 45 120 0.160 674 | 45 125 0.136 675 | 45 130 0.148 676 | 45 135 0.253 677 | 45 140 0.457 678 | 45 145 0.739 679 | 45 150 1.180 680 | 45 155 1.896 681 | 45 160 2.753 682 | 45 165 3.603 683 | 45 170 5.074 684 | 45 175 6.606 685 | 45 180 7.531 686 | 45 185 6.606 687 | 45 190 5.074 688 | 45 195 3.603 689 | 45 200 2.753 690 | 45 205 1.896 691 | 45 210 1.180 692 | 45 215 0.739 693 | 45 220 0.457 694 | 45 225 0.253 695 | 45 230 0.148 696 | 45 235 0.136 697 | 45 240 0.160 698 | 45 245 0.134 699 | 45 250 0.190 700 | 45 255 0.269 701 | 45 260 1.048 702 | 45 265 3.170 703 | 45 270 4.898 704 | 45 275 3.170 705 | 45 280 1.048 706 | 45 285 0.269 707 | 45 290 0.190 708 | 45 295 0.134 709 | 45 300 0.160 710 | 45 305 0.136 711 | 45 310 0.148 712 | 45 315 0.253 713 | 45 320 0.457 714 | 45 325 0.739 715 | 45 330 1.180 716 | 45 335 1.896 717 | 45 340 2.753 718 | 45 345 3.603 719 | 45 350 5.074 720 | 45 355 6.606 721 | 50 0 3.288 722 | 50 5 3.444 723 | 50 10 2.878 724 | 50 15 2.599 725 | 50 20 2.523 726 | 50 25 1.851 727 | 50 30 1.502 728 | 50 35 1.171 729 | 50 40 0.622 730 | 50 45 0.494 731 | 50 50 0.285 732 | 50 55 0.243 733 | 50 60 0.190 734 | 50 65 0.142 735 | 50 70 0.190 736 | 50 75 0.369 737 | 50 80 0.960 738 | 50 85 2.707 739 | 50 90 4.532 740 | 50 95 2.707 741 | 50 100 0.960 742 | 50 105 0.369 743 | 50 110 0.190 744 | 50 115 0.142 745 | 50 120 0.190 746 | 50 125 0.243 747 | 50 130 0.285 748 | 50 135 0.494 749 | 50 140 0.622 750 | 50 145 1.171 751 | 50 150 1.502 752 | 50 155 1.851 753 | 50 160 2.523 754 | 50 165 2.599 755 | 50 170 2.878 756 | 50 175 3.444 757 | 50 180 3.288 758 | 50 185 3.444 759 | 50 190 2.878 760 | 50 195 2.599 761 | 50 200 2.523 762 | 50 205 1.851 763 | 50 210 1.502 764 | 50 215 1.171 765 | 50 220 0.622 766 | 50 225 0.494 767 | 50 230 0.285 768 | 50 235 0.243 769 | 50 240 0.190 770 | 50 245 0.142 771 | 50 250 0.190 772 | 50 255 0.369 773 | 50 260 0.960 774 | 50 265 2.707 775 | 50 270 4.532 776 | 50 275 2.707 777 | 50 280 0.960 778 | 50 285 0.369 779 | 50 290 0.190 780 | 50 295 0.142 781 | 50 300 0.190 782 | 50 305 0.243 783 | 50 310 0.285 784 | 50 315 0.494 785 | 50 320 0.622 786 | 50 325 1.171 787 | 50 330 1.502 788 | 50 335 1.851 789 | 50 340 2.523 790 | 50 345 2.599 791 | 50 350 2.878 792 | 50 355 3.444 793 | 55 0 1.317 794 | 55 5 1.463 795 | 55 10 1.499 796 | 55 15 1.424 797 | 55 20 1.488 798 | 55 25 1.419 799 | 55 30 1.616 800 | 55 35 1.137 801 | 55 40 0.832 802 | 55 45 0.606 803 | 55 50 0.395 804 | 55 55 0.316 805 | 55 60 0.243 806 | 55 65 0.122 807 | 55 70 0.157 808 | 55 75 0.363 809 | 55 80 0.855 810 | 55 85 2.143 811 | 55 90 3.559 812 | 55 95 2.143 813 | 55 100 0.855 814 | 55 105 0.363 815 | 55 110 0.157 816 | 55 115 0.122 817 | 55 120 0.243 818 | 55 125 0.316 819 | 55 130 0.395 820 | 55 135 0.606 821 | 55 140 0.832 822 | 55 145 1.137 823 | 55 150 1.616 824 | 55 155 1.419 825 | 55 160 1.488 826 | 55 165 1.424 827 | 55 170 1.499 828 | 55 175 1.463 829 | 55 180 1.317 830 | 55 185 1.463 831 | 55 190 1.499 832 | 55 195 1.424 833 | 55 200 1.488 834 | 55 205 1.419 835 | 55 210 1.616 836 | 55 215 1.137 837 | 55 220 0.832 838 | 55 225 0.606 839 | 55 230 0.395 840 | 55 235 0.316 841 | 55 240 0.243 842 | 55 245 0.122 843 | 55 250 0.157 844 | 55 255 0.363 845 | 55 260 0.855 846 | 55 265 2.143 847 | 55 270 3.559 848 | 55 275 2.143 849 | 55 280 0.855 850 | 55 285 0.363 851 | 55 290 0.157 852 | 55 295 0.122 853 | 55 300 0.243 854 | 55 305 0.316 855 | 55 310 0.395 856 | 55 315 0.606 857 | 55 320 0.832 858 | 55 325 1.137 859 | 55 330 1.616 860 | 55 335 1.419 861 | 55 340 1.488 862 | 55 345 1.424 863 | 55 350 1.499 864 | 55 355 1.463 865 | 60 0 0.827 866 | 60 5 0.818 867 | 60 10 0.794 868 | 60 15 0.753 869 | 60 20 0.908 870 | 60 25 1.027 871 | 60 30 1.274 872 | 60 35 1.305 873 | 60 40 1.244 874 | 60 45 0.867 875 | 60 50 0.598 876 | 60 55 0.376 877 | 60 60 0.248 878 | 60 65 0.137 879 | 60 70 0.236 880 | 60 75 0.278 881 | 60 80 0.775 882 | 60 85 1.699 883 | 60 90 2.700 884 | 60 95 1.699 885 | 60 100 0.775 886 | 60 105 0.278 887 | 60 110 0.236 888 | 60 115 0.137 889 | 60 120 0.248 890 | 60 125 0.376 891 | 60 130 0.598 892 | 60 135 0.867 893 | 60 140 1.244 894 | 60 145 1.305 895 | 60 150 1.274 896 | 60 155 1.027 897 | 60 160 0.908 898 | 60 165 0.753 899 | 60 170 0.794 900 | 60 175 0.818 901 | 60 180 0.827 902 | 60 185 0.818 903 | 60 190 0.794 904 | 60 195 0.753 905 | 60 200 0.908 906 | 60 205 1.027 907 | 60 210 1.274 908 | 60 215 1.305 909 | 60 220 1.244 910 | 60 225 0.867 911 | 60 230 0.598 912 | 60 235 0.376 913 | 60 240 0.248 914 | 60 245 0.137 915 | 60 250 0.236 916 | 60 255 0.278 917 | 60 260 0.775 918 | 60 265 1.699 919 | 60 270 2.700 920 | 60 275 1.699 921 | 60 280 0.775 922 | 60 285 0.278 923 | 60 290 0.236 924 | 60 295 0.137 925 | 60 300 0.248 926 | 60 305 0.376 927 | 60 310 0.598 928 | 60 315 0.867 929 | 60 320 1.244 930 | 60 325 1.305 931 | 60 330 1.274 932 | 60 335 1.027 933 | 60 340 0.908 934 | 60 345 0.753 935 | 60 350 0.794 936 | 60 355 0.818 937 | 65 0 0.306 938 | 65 5 0.289 939 | 65 10 0.266 940 | 65 15 0.377 941 | 65 20 0.430 942 | 65 25 0.506 943 | 65 30 0.810 944 | 65 35 1.492 945 | 65 40 2.152 946 | 65 45 1.633 947 | 65 50 0.828 948 | 65 55 0.380 949 | 65 60 0.240 950 | 65 65 0.218 951 | 65 70 0.273 952 | 65 75 0.353 953 | 65 80 0.667 954 | 65 85 1.457 955 | 65 90 2.469 956 | 65 95 1.457 957 | 65 100 0.667 958 | 65 105 0.353 959 | 65 110 0.273 960 | 65 115 0.218 961 | 65 120 0.240 962 | 65 125 0.380 963 | 65 130 0.828 964 | 65 135 1.633 965 | 65 140 2.152 966 | 65 145 1.492 967 | 65 150 0.810 968 | 65 155 0.506 969 | 65 160 0.430 970 | 65 165 0.377 971 | 65 170 0.266 972 | 65 175 0.289 973 | 65 180 0.306 974 | 65 185 0.289 975 | 65 190 0.266 976 | 65 195 0.377 977 | 65 200 0.430 978 | 65 205 0.506 979 | 65 210 0.810 980 | 65 215 1.492 981 | 65 220 2.152 982 | 65 225 1.633 983 | 65 230 0.828 984 | 65 235 0.380 985 | 65 240 0.240 986 | 65 245 0.218 987 | 65 250 0.273 988 | 65 255 0.353 989 | 65 260 0.667 990 | 65 265 1.457 991 | 65 270 2.469 992 | 65 275 1.457 993 | 65 280 0.667 994 | 65 285 0.353 995 | 65 290 0.273 996 | 65 295 0.218 997 | 65 300 0.240 998 | 65 305 0.380 999 | 65 310 0.828 1000 | 65 315 1.633 1001 | 65 320 2.152 1002 | 65 325 1.492 1003 | 65 330 0.810 1004 | 65 335 0.506 1005 | 65 340 0.430 1006 | 65 345 0.377 1007 | 65 350 0.266 1008 | 65 355 0.289 1009 | 70 0 0.118 1010 | 70 5 0.105 1011 | 70 10 0.123 1012 | 70 15 0.184 1013 | 70 20 0.185 1014 | 70 25 0.236 1015 | 70 30 0.506 1016 | 70 35 1.126 1017 | 70 40 2.775 1018 | 70 45 2.598 1019 | 70 50 1.067 1020 | 70 55 0.443 1021 | 70 60 0.258 1022 | 70 65 0.269 1023 | 70 70 0.216 1024 | 70 75 0.436 1025 | 70 80 0.659 1026 | 70 85 1.376 1027 | 70 90 1.801 1028 | 70 95 1.376 1029 | 70 100 0.659 1030 | 70 105 0.436 1031 | 70 110 0.216 1032 | 70 115 0.269 1033 | 70 120 0.258 1034 | 70 125 0.443 1035 | 70 130 1.067 1036 | 70 135 2.598 1037 | 70 140 2.775 1038 | 70 145 1.126 1039 | 70 150 0.506 1040 | 70 155 0.236 1041 | 70 160 0.185 1042 | 70 165 0.184 1043 | 70 170 0.123 1044 | 70 175 0.105 1045 | 70 180 0.118 1046 | 70 185 0.105 1047 | 70 190 0.123 1048 | 70 195 0.184 1049 | 70 200 0.185 1050 | 70 205 0.236 1051 | 70 210 0.506 1052 | 70 215 1.126 1053 | 70 220 2.775 1054 | 70 225 2.598 1055 | 70 230 1.067 1056 | 70 235 0.443 1057 | 70 240 0.258 1058 | 70 245 0.269 1059 | 70 250 0.216 1060 | 70 255 0.436 1061 | 70 260 0.659 1062 | 70 265 1.376 1063 | 70 270 1.801 1064 | 70 275 1.376 1065 | 70 280 0.659 1066 | 70 285 0.436 1067 | 70 290 0.216 1068 | 70 295 0.269 1069 | 70 300 0.258 1070 | 70 305 0.443 1071 | 70 310 1.067 1072 | 70 315 2.598 1073 | 70 320 2.775 1074 | 70 325 1.126 1075 | 70 330 0.506 1076 | 70 335 0.236 1077 | 70 340 0.185 1078 | 70 345 0.184 1079 | 70 350 0.123 1080 | 70 355 0.105 1081 | 75 0 0.122 1082 | 75 5 0.112 1083 | 75 10 0.161 1084 | 75 15 0.141 1085 | 75 20 0.184 1086 | 75 25 0.209 1087 | 75 30 0.330 1088 | 75 35 0.740 1089 | 75 40 2.654 1090 | 75 45 4.211 1091 | 75 50 1.474 1092 | 75 55 0.531 1093 | 75 60 0.248 1094 | 75 65 0.218 1095 | 75 70 0.273 1096 | 75 75 0.402 1097 | 75 80 0.688 1098 | 75 85 1.177 1099 | 75 90 1.190 1100 | 75 95 1.177 1101 | 75 100 0.688 1102 | 75 105 0.402 1103 | 75 110 0.273 1104 | 75 115 0.218 1105 | 75 120 0.248 1106 | 75 125 0.531 1107 | 75 130 1.474 1108 | 75 135 4.211 1109 | 75 140 2.654 1110 | 75 145 0.740 1111 | 75 150 0.330 1112 | 75 155 0.209 1113 | 75 160 0.184 1114 | 75 165 0.141 1115 | 75 170 0.161 1116 | 75 175 0.112 1117 | 75 180 0.122 1118 | 75 185 0.112 1119 | 75 190 0.161 1120 | 75 195 0.141 1121 | 75 200 0.184 1122 | 75 205 0.209 1123 | 75 210 0.330 1124 | 75 215 0.740 1125 | 75 220 2.654 1126 | 75 225 4.211 1127 | 75 230 1.474 1128 | 75 235 0.531 1129 | 75 240 0.248 1130 | 75 245 0.218 1131 | 75 250 0.273 1132 | 75 255 0.402 1133 | 75 260 0.688 1134 | 75 265 1.177 1135 | 75 270 1.190 1136 | 75 275 1.177 1137 | 75 280 0.688 1138 | 75 285 0.402 1139 | 75 290 0.273 1140 | 75 295 0.218 1141 | 75 300 0.248 1142 | 75 305 0.531 1143 | 75 310 1.474 1144 | 75 315 4.211 1145 | 75 320 2.654 1146 | 75 325 0.740 1147 | 75 330 0.330 1148 | 75 335 0.209 1149 | 75 340 0.184 1150 | 75 345 0.141 1151 | 75 350 0.161 1152 | 75 355 0.112 1153 | -------------------------------------------------------------------------------- /texture/Xray_pf311_uncorr.dat: -------------------------------------------------------------------------------- 1 | 0 0 0.269 2 | 0 5 0.269 3 | 0 10 0.269 4 | 0 15 0.269 5 | 0 20 0.269 6 | 0 25 0.269 7 | 0 30 0.269 8 | 0 35 0.269 9 | 0 40 0.269 10 | 0 45 0.269 11 | 0 50 0.269 12 | 0 55 0.269 13 | 0 60 0.269 14 | 0 65 0.269 15 | 0 70 0.269 16 | 0 75 0.269 17 | 0 80 0.269 18 | 0 85 0.269 19 | 0 90 0.269 20 | 0 95 0.269 21 | 0 100 0.269 22 | 0 105 0.269 23 | 0 110 0.269 24 | 0 115 0.269 25 | 0 120 0.269 26 | 0 125 0.269 27 | 0 130 0.269 28 | 0 135 0.269 29 | 0 140 0.269 30 | 0 145 0.269 31 | 0 150 0.269 32 | 0 155 0.269 33 | 0 160 0.269 34 | 0 165 0.269 35 | 0 170 0.269 36 | 0 175 0.269 37 | 0 180 0.269 38 | 0 185 0.269 39 | 0 190 0.269 40 | 0 195 0.269 41 | 0 200 0.269 42 | 0 205 0.269 43 | 0 210 0.269 44 | 0 215 0.269 45 | 0 220 0.269 46 | 0 225 0.269 47 | 0 230 0.269 48 | 0 235 0.269 49 | 0 240 0.269 50 | 0 245 0.269 51 | 0 250 0.269 52 | 0 255 0.269 53 | 0 260 0.269 54 | 0 265 0.269 55 | 0 270 0.269 56 | 0 275 0.269 57 | 0 280 0.269 58 | 0 285 0.269 59 | 0 290 0.269 60 | 0 295 0.269 61 | 0 300 0.269 62 | 0 305 0.269 63 | 0 310 0.269 64 | 0 315 0.269 65 | 0 320 0.269 66 | 0 325 0.269 67 | 0 330 0.269 68 | 0 335 0.269 69 | 0 340 0.269 70 | 0 345 0.269 71 | 0 350 0.269 72 | 0 355 0.269 73 | 5 0 0.666 74 | 5 5 0.827 75 | 5 10 0.615 76 | 5 15 0.374 77 | 5 20 0.358 78 | 5 25 0.519 79 | 5 30 0.427 80 | 5 35 0.515 81 | 5 40 0.290 82 | 5 45 0.270 83 | 5 50 0.320 84 | 5 55 0.195 85 | 5 60 0.209 86 | 5 65 0.194 87 | 5 70 0.211 88 | 5 75 0.216 89 | 5 80 0.179 90 | 5 85 0.324 91 | 5 90 0.194 92 | 5 95 0.324 93 | 5 100 0.179 94 | 5 105 0.216 95 | 5 110 0.211 96 | 5 115 0.194 97 | 5 120 0.209 98 | 5 125 0.195 99 | 5 130 0.320 100 | 5 135 0.270 101 | 5 140 0.290 102 | 5 145 0.515 103 | 5 150 0.427 104 | 5 155 0.519 105 | 5 160 0.358 106 | 5 165 0.374 107 | 5 170 0.615 108 | 5 175 0.827 109 | 5 180 0.666 110 | 5 185 0.827 111 | 5 190 0.615 112 | 5 195 0.374 113 | 5 200 0.358 114 | 5 205 0.519 115 | 5 210 0.427 116 | 5 215 0.515 117 | 5 220 0.290 118 | 5 225 0.270 119 | 5 230 0.320 120 | 5 235 0.195 121 | 5 240 0.209 122 | 5 245 0.194 123 | 5 250 0.211 124 | 5 255 0.216 125 | 5 260 0.179 126 | 5 265 0.324 127 | 5 270 0.194 128 | 5 275 0.324 129 | 5 280 0.179 130 | 5 285 0.216 131 | 5 290 0.211 132 | 5 295 0.194 133 | 5 300 0.209 134 | 5 305 0.195 135 | 5 310 0.320 136 | 5 315 0.270 137 | 5 320 0.290 138 | 5 325 0.515 139 | 5 330 0.427 140 | 5 335 0.519 141 | 5 340 0.358 142 | 5 345 0.374 143 | 5 350 0.615 144 | 5 355 0.827 145 | 10 0 1.598 146 | 10 5 1.451 147 | 10 10 1.530 148 | 10 15 1.715 149 | 10 20 1.526 150 | 10 25 1.487 151 | 10 30 1.350 152 | 10 35 1.393 153 | 10 40 0.906 154 | 10 45 0.653 155 | 10 50 0.679 156 | 10 55 0.326 157 | 10 60 0.297 158 | 10 65 0.231 159 | 10 70 0.225 160 | 10 75 0.220 161 | 10 80 0.276 162 | 10 85 0.377 163 | 10 90 0.265 164 | 10 95 0.377 165 | 10 100 0.276 166 | 10 105 0.220 167 | 10 110 0.225 168 | 10 115 0.231 169 | 10 120 0.297 170 | 10 125 0.326 171 | 10 130 0.679 172 | 10 135 0.653 173 | 10 140 0.906 174 | 10 145 1.393 175 | 10 150 1.350 176 | 10 155 1.487 177 | 10 160 1.526 178 | 10 165 1.715 179 | 10 170 1.530 180 | 10 175 1.451 181 | 10 180 1.598 182 | 10 185 1.451 183 | 10 190 1.530 184 | 10 195 1.715 185 | 10 200 1.526 186 | 10 205 1.487 187 | 10 210 1.350 188 | 10 215 1.393 189 | 10 220 0.906 190 | 10 225 0.653 191 | 10 230 0.679 192 | 10 235 0.326 193 | 10 240 0.297 194 | 10 245 0.231 195 | 10 250 0.225 196 | 10 255 0.220 197 | 10 260 0.276 198 | 10 265 0.377 199 | 10 270 0.265 200 | 10 275 0.377 201 | 10 280 0.276 202 | 10 285 0.220 203 | 10 290 0.225 204 | 10 295 0.231 205 | 10 300 0.297 206 | 10 305 0.326 207 | 10 310 0.679 208 | 10 315 0.653 209 | 10 320 0.906 210 | 10 325 1.393 211 | 10 330 1.350 212 | 10 335 1.487 213 | 10 340 1.526 214 | 10 345 1.715 215 | 10 350 1.530 216 | 10 355 1.451 217 | 15 0 2.321 218 | 15 5 2.483 219 | 15 10 2.471 220 | 15 15 3.115 221 | 15 20 2.931 222 | 15 25 3.174 223 | 15 30 3.169 224 | 15 35 3.100 225 | 15 40 2.721 226 | 15 45 1.974 227 | 15 50 1.585 228 | 15 55 1.057 229 | 15 60 0.693 230 | 15 65 0.385 231 | 15 70 0.288 232 | 15 75 0.338 233 | 15 80 0.368 234 | 15 85 0.346 235 | 15 90 0.420 236 | 15 95 0.346 237 | 15 100 0.368 238 | 15 105 0.338 239 | 15 110 0.288 240 | 15 115 0.385 241 | 15 120 0.693 242 | 15 125 1.057 243 | 15 130 1.585 244 | 15 135 1.974 245 | 15 140 2.721 246 | 15 145 3.100 247 | 15 150 3.169 248 | 15 155 3.174 249 | 15 160 2.931 250 | 15 165 3.115 251 | 15 170 2.471 252 | 15 175 2.483 253 | 15 180 2.321 254 | 15 185 2.483 255 | 15 190 2.471 256 | 15 195 3.115 257 | 15 200 2.931 258 | 15 205 3.174 259 | 15 210 3.169 260 | 15 215 3.100 261 | 15 220 2.721 262 | 15 225 1.974 263 | 15 230 1.585 264 | 15 235 1.057 265 | 15 240 0.693 266 | 15 245 0.385 267 | 15 250 0.288 268 | 15 255 0.338 269 | 15 260 0.368 270 | 15 265 0.346 271 | 15 270 0.420 272 | 15 275 0.346 273 | 15 280 0.368 274 | 15 285 0.338 275 | 15 290 0.288 276 | 15 295 0.385 277 | 15 300 0.693 278 | 15 305 1.057 279 | 15 310 1.585 280 | 15 315 1.974 281 | 15 320 2.721 282 | 15 325 3.100 283 | 15 330 3.169 284 | 15 335 3.174 285 | 15 340 2.931 286 | 15 345 3.115 287 | 15 350 2.471 288 | 15 355 2.483 289 | 20 0 1.733 290 | 20 5 2.150 291 | 20 10 2.178 292 | 20 15 2.552 293 | 20 20 2.479 294 | 20 25 3.239 295 | 20 30 3.644 296 | 20 35 3.952 297 | 20 40 4.216 298 | 20 45 3.456 299 | 20 50 2.917 300 | 20 55 2.314 301 | 20 60 1.466 302 | 20 65 0.867 303 | 20 70 0.440 304 | 20 75 0.392 305 | 20 80 0.266 306 | 20 85 0.316 307 | 20 90 0.378 308 | 20 95 0.316 309 | 20 100 0.266 310 | 20 105 0.392 311 | 20 110 0.440 312 | 20 115 0.867 313 | 20 120 1.466 314 | 20 125 2.314 315 | 20 130 2.917 316 | 20 135 3.456 317 | 20 140 4.216 318 | 20 145 3.952 319 | 20 150 3.644 320 | 20 155 3.239 321 | 20 160 2.479 322 | 20 165 2.552 323 | 20 170 2.178 324 | 20 175 2.150 325 | 20 180 1.733 326 | 20 185 2.150 327 | 20 190 2.178 328 | 20 195 2.552 329 | 20 200 2.479 330 | 20 205 3.239 331 | 20 210 3.644 332 | 20 215 3.952 333 | 20 220 4.216 334 | 20 225 3.456 335 | 20 230 2.917 336 | 20 235 2.314 337 | 20 240 1.466 338 | 20 245 0.867 339 | 20 250 0.440 340 | 20 255 0.392 341 | 20 260 0.266 342 | 20 265 0.316 343 | 20 270 0.378 344 | 20 275 0.316 345 | 20 280 0.266 346 | 20 285 0.392 347 | 20 290 0.440 348 | 20 295 0.867 349 | 20 300 1.466 350 | 20 305 2.314 351 | 20 310 2.917 352 | 20 315 3.456 353 | 20 320 4.216 354 | 20 325 3.952 355 | 20 330 3.644 356 | 20 335 3.239 357 | 20 340 2.479 358 | 20 345 2.552 359 | 20 350 2.178 360 | 20 355 2.150 361 | 25 0 0.874 362 | 25 5 0.840 363 | 25 10 1.030 364 | 25 15 1.158 365 | 25 20 1.265 366 | 25 25 1.718 367 | 25 30 2.127 368 | 25 35 2.645 369 | 25 40 3.810 370 | 25 45 3.634 371 | 25 50 3.412 372 | 25 55 3.126 373 | 25 60 2.397 374 | 25 65 1.288 375 | 25 70 0.710 376 | 25 75 0.482 377 | 25 80 0.373 378 | 25 85 0.289 379 | 25 90 0.243 380 | 25 95 0.289 381 | 25 100 0.373 382 | 25 105 0.482 383 | 25 110 0.710 384 | 25 115 1.288 385 | 25 120 2.397 386 | 25 125 3.126 387 | 25 130 3.412 388 | 25 135 3.634 389 | 25 140 3.810 390 | 25 145 2.645 391 | 25 150 2.127 392 | 25 155 1.718 393 | 25 160 1.265 394 | 25 165 1.158 395 | 25 170 1.030 396 | 25 175 0.840 397 | 25 180 0.874 398 | 25 185 0.840 399 | 25 190 1.030 400 | 25 195 1.158 401 | 25 200 1.265 402 | 25 205 1.718 403 | 25 210 2.127 404 | 25 215 2.645 405 | 25 220 3.810 406 | 25 225 3.634 407 | 25 230 3.412 408 | 25 235 3.126 409 | 25 240 2.397 410 | 25 245 1.288 411 | 25 250 0.710 412 | 25 255 0.482 413 | 25 260 0.373 414 | 25 265 0.289 415 | 25 270 0.243 416 | 25 275 0.289 417 | 25 280 0.373 418 | 25 285 0.482 419 | 25 290 0.710 420 | 25 295 1.288 421 | 25 300 2.397 422 | 25 305 3.126 423 | 25 310 3.412 424 | 25 315 3.634 425 | 25 320 3.810 426 | 25 325 2.645 427 | 25 330 2.127 428 | 25 335 1.718 429 | 25 340 1.265 430 | 25 345 1.158 431 | 25 350 1.030 432 | 25 355 0.840 433 | 30 0 0.312 434 | 30 5 0.294 435 | 30 10 0.392 436 | 30 15 0.370 437 | 30 20 0.502 438 | 30 25 0.595 439 | 30 30 0.843 440 | 30 35 1.109 441 | 30 40 2.142 442 | 30 45 2.550 443 | 30 50 2.720 444 | 30 55 3.260 445 | 30 60 3.019 446 | 30 65 1.799 447 | 30 70 1.068 448 | 30 75 0.648 449 | 30 80 0.514 450 | 30 85 0.267 451 | 30 90 0.278 452 | 30 95 0.267 453 | 30 100 0.514 454 | 30 105 0.648 455 | 30 110 1.068 456 | 30 115 1.799 457 | 30 120 3.019 458 | 30 125 3.260 459 | 30 130 2.720 460 | 30 135 2.550 461 | 30 140 2.142 462 | 30 145 1.109 463 | 30 150 0.843 464 | 30 155 0.595 465 | 30 160 0.502 466 | 30 165 0.370 467 | 30 170 0.392 468 | 30 175 0.294 469 | 30 180 0.312 470 | 30 185 0.294 471 | 30 190 0.392 472 | 30 195 0.370 473 | 30 200 0.502 474 | 30 205 0.595 475 | 30 210 0.843 476 | 30 215 1.109 477 | 30 220 2.142 478 | 30 225 2.550 479 | 30 230 2.720 480 | 30 235 3.260 481 | 30 240 3.019 482 | 30 245 1.799 483 | 30 250 1.068 484 | 30 255 0.648 485 | 30 260 0.514 486 | 30 265 0.267 487 | 30 270 0.278 488 | 30 275 0.267 489 | 30 280 0.514 490 | 30 285 0.648 491 | 30 290 1.068 492 | 30 295 1.799 493 | 30 300 3.019 494 | 30 305 3.260 495 | 30 310 2.720 496 | 30 315 2.550 497 | 30 320 2.142 498 | 30 325 1.109 499 | 30 330 0.843 500 | 30 335 0.595 501 | 30 340 0.502 502 | 30 345 0.370 503 | 30 350 0.392 504 | 30 355 0.294 505 | 35 0 0.065 506 | 35 5 0.073 507 | 35 10 0.140 508 | 35 15 0.112 509 | 35 20 0.163 510 | 35 25 0.264 511 | 35 30 0.380 512 | 35 35 0.511 513 | 35 40 0.803 514 | 35 45 1.249 515 | 35 50 1.604 516 | 35 55 2.440 517 | 35 60 2.874 518 | 35 65 2.364 519 | 35 70 1.270 520 | 35 75 0.748 521 | 35 80 0.512 522 | 35 85 0.298 523 | 35 90 0.284 524 | 35 95 0.298 525 | 35 100 0.512 526 | 35 105 0.748 527 | 35 110 1.270 528 | 35 115 2.364 529 | 35 120 2.874 530 | 35 125 2.440 531 | 35 130 1.604 532 | 35 135 1.249 533 | 35 140 0.803 534 | 35 145 0.511 535 | 35 150 0.380 536 | 35 155 0.264 537 | 35 160 0.163 538 | 35 165 0.112 539 | 35 170 0.140 540 | 35 175 0.073 541 | 35 180 0.065 542 | 35 185 0.073 543 | 35 190 0.140 544 | 35 195 0.112 545 | 35 200 0.163 546 | 35 205 0.264 547 | 35 210 0.380 548 | 35 215 0.511 549 | 35 220 0.803 550 | 35 225 1.249 551 | 35 230 1.604 552 | 35 235 2.440 553 | 35 240 2.874 554 | 35 245 2.364 555 | 35 250 1.270 556 | 35 255 0.748 557 | 35 260 0.512 558 | 35 265 0.298 559 | 35 270 0.284 560 | 35 275 0.298 561 | 35 280 0.512 562 | 35 285 0.748 563 | 35 290 1.270 564 | 35 295 2.364 565 | 35 300 2.874 566 | 35 305 2.440 567 | 35 310 1.604 568 | 35 315 1.249 569 | 35 320 0.803 570 | 35 325 0.511 571 | 35 330 0.380 572 | 35 335 0.264 573 | 35 340 0.163 574 | 35 345 0.112 575 | 35 350 0.140 576 | 35 355 0.073 577 | 40 0 0.057 578 | 40 5 0.076 579 | 40 10 0.077 580 | 40 15 0.064 581 | 40 20 0.079 582 | 40 25 0.157 583 | 40 30 0.197 584 | 40 35 0.326 585 | 40 40 0.364 586 | 40 45 0.573 587 | 40 50 0.781 588 | 40 55 1.407 589 | 40 60 2.133 590 | 40 65 2.800 591 | 40 70 1.672 592 | 40 75 0.781 593 | 40 80 0.546 594 | 40 85 0.325 595 | 40 90 0.351 596 | 40 95 0.325 597 | 40 100 0.546 598 | 40 105 0.781 599 | 40 110 1.672 600 | 40 115 2.800 601 | 40 120 2.133 602 | 40 125 1.407 603 | 40 130 0.781 604 | 40 135 0.573 605 | 40 140 0.364 606 | 40 145 0.326 607 | 40 150 0.197 608 | 40 155 0.157 609 | 40 160 0.079 610 | 40 165 0.064 611 | 40 170 0.077 612 | 40 175 0.076 613 | 40 180 0.057 614 | 40 185 0.076 615 | 40 190 0.077 616 | 40 195 0.064 617 | 40 200 0.079 618 | 40 205 0.157 619 | 40 210 0.197 620 | 40 215 0.326 621 | 40 220 0.364 622 | 40 225 0.573 623 | 40 230 0.781 624 | 40 235 1.407 625 | 40 240 2.133 626 | 40 245 2.800 627 | 40 250 1.672 628 | 40 255 0.781 629 | 40 260 0.546 630 | 40 265 0.325 631 | 40 270 0.351 632 | 40 275 0.325 633 | 40 280 0.546 634 | 40 285 0.781 635 | 40 290 1.672 636 | 40 295 2.800 637 | 40 300 2.133 638 | 40 305 1.407 639 | 40 310 0.781 640 | 40 315 0.573 641 | 40 320 0.364 642 | 40 325 0.326 643 | 40 330 0.197 644 | 40 335 0.157 645 | 40 340 0.079 646 | 40 345 0.064 647 | 40 350 0.077 648 | 40 355 0.076 649 | 45 0 0.074 650 | 45 5 0.133 651 | 45 10 0.128 652 | 45 15 0.091 653 | 45 20 0.081 654 | 45 25 0.165 655 | 45 30 0.180 656 | 45 35 0.270 657 | 45 40 0.246 658 | 45 45 0.330 659 | 45 50 0.368 660 | 45 55 0.894 661 | 45 60 1.435 662 | 45 65 2.830 663 | 45 70 2.199 664 | 45 75 0.807 665 | 45 80 0.571 666 | 45 85 0.435 667 | 45 90 0.480 668 | 45 95 0.435 669 | 45 100 0.571 670 | 45 105 0.807 671 | 45 110 2.199 672 | 45 115 2.830 673 | 45 120 1.435 674 | 45 125 0.894 675 | 45 130 0.368 676 | 45 135 0.330 677 | 45 140 0.246 678 | 45 145 0.270 679 | 45 150 0.180 680 | 45 155 0.165 681 | 45 160 0.081 682 | 45 165 0.091 683 | 45 170 0.128 684 | 45 175 0.133 685 | 45 180 0.074 686 | 45 185 0.133 687 | 45 190 0.128 688 | 45 195 0.091 689 | 45 200 0.081 690 | 45 205 0.165 691 | 45 210 0.180 692 | 45 215 0.270 693 | 45 220 0.246 694 | 45 225 0.330 695 | 45 230 0.368 696 | 45 235 0.894 697 | 45 240 1.435 698 | 45 245 2.830 699 | 45 250 2.199 700 | 45 255 0.807 701 | 45 260 0.571 702 | 45 265 0.435 703 | 45 270 0.480 704 | 45 275 0.435 705 | 45 280 0.571 706 | 45 285 0.807 707 | 45 290 2.199 708 | 45 295 2.830 709 | 45 300 1.435 710 | 45 305 0.894 711 | 45 310 0.368 712 | 45 315 0.330 713 | 45 320 0.246 714 | 45 325 0.270 715 | 45 330 0.180 716 | 45 335 0.165 717 | 45 340 0.081 718 | 45 345 0.091 719 | 45 350 0.128 720 | 45 355 0.133 721 | 50 0 0.227 722 | 50 5 0.214 723 | 50 10 0.222 724 | 50 15 0.142 725 | 50 20 0.179 726 | 50 25 0.274 727 | 50 30 0.226 728 | 50 35 0.237 729 | 50 40 0.220 730 | 50 45 0.234 731 | 50 50 0.272 732 | 50 55 0.536 733 | 50 60 0.936 734 | 50 65 2.425 735 | 50 70 2.575 736 | 50 75 0.940 737 | 50 80 0.608 738 | 50 85 0.471 739 | 50 90 0.472 740 | 50 95 0.471 741 | 50 100 0.608 742 | 50 105 0.940 743 | 50 110 2.575 744 | 50 115 2.425 745 | 50 120 0.936 746 | 50 125 0.536 747 | 50 130 0.272 748 | 50 135 0.234 749 | 50 140 0.220 750 | 50 145 0.237 751 | 50 150 0.226 752 | 50 155 0.274 753 | 50 160 0.179 754 | 50 165 0.142 755 | 50 170 0.222 756 | 50 175 0.214 757 | 50 180 0.227 758 | 50 185 0.214 759 | 50 190 0.222 760 | 50 195 0.142 761 | 50 200 0.179 762 | 50 205 0.274 763 | 50 210 0.226 764 | 50 215 0.237 765 | 50 220 0.220 766 | 50 225 0.234 767 | 50 230 0.272 768 | 50 235 0.536 769 | 50 240 0.936 770 | 50 245 2.425 771 | 50 250 2.575 772 | 50 255 0.940 773 | 50 260 0.608 774 | 50 265 0.471 775 | 50 270 0.472 776 | 50 275 0.471 777 | 50 280 0.608 778 | 50 285 0.940 779 | 50 290 2.575 780 | 50 295 2.425 781 | 50 300 0.936 782 | 50 305 0.536 783 | 50 310 0.272 784 | 50 315 0.234 785 | 50 320 0.220 786 | 50 325 0.237 787 | 50 330 0.226 788 | 50 335 0.274 789 | 50 340 0.179 790 | 50 345 0.142 791 | 50 350 0.222 792 | 50 355 0.214 793 | 55 0 0.763 794 | 55 5 0.773 795 | 55 10 0.620 796 | 55 15 0.430 797 | 55 20 0.364 798 | 55 25 0.327 799 | 55 30 0.262 800 | 55 35 0.202 801 | 55 40 0.184 802 | 55 45 0.244 803 | 55 50 0.272 804 | 55 55 0.405 805 | 55 60 0.637 806 | 55 65 1.828 807 | 55 70 2.994 808 | 55 75 1.122 809 | 55 80 0.551 810 | 55 85 0.420 811 | 55 90 0.389 812 | 55 95 0.420 813 | 55 100 0.551 814 | 55 105 1.122 815 | 55 110 2.994 816 | 55 115 1.828 817 | 55 120 0.637 818 | 55 125 0.405 819 | 55 130 0.272 820 | 55 135 0.244 821 | 55 140 0.184 822 | 55 145 0.202 823 | 55 150 0.262 824 | 55 155 0.327 825 | 55 160 0.364 826 | 55 165 0.430 827 | 55 170 0.620 828 | 55 175 0.773 829 | 55 180 0.763 830 | 55 185 0.773 831 | 55 190 0.620 832 | 55 195 0.430 833 | 55 200 0.364 834 | 55 205 0.327 835 | 55 210 0.262 836 | 55 215 0.202 837 | 55 220 0.184 838 | 55 225 0.244 839 | 55 230 0.272 840 | 55 235 0.405 841 | 55 240 0.637 842 | 55 245 1.828 843 | 55 250 2.994 844 | 55 255 1.122 845 | 55 260 0.551 846 | 55 265 0.420 847 | 55 270 0.389 848 | 55 275 0.420 849 | 55 280 0.551 850 | 55 285 1.122 851 | 55 290 2.994 852 | 55 295 1.828 853 | 55 300 0.637 854 | 55 305 0.405 855 | 55 310 0.272 856 | 55 315 0.244 857 | 55 320 0.184 858 | 55 325 0.202 859 | 55 330 0.262 860 | 55 335 0.327 861 | 55 340 0.364 862 | 55 345 0.430 863 | 55 350 0.620 864 | 55 355 0.773 865 | 60 0 1.555 866 | 60 5 1.926 867 | 60 10 1.999 868 | 60 15 1.759 869 | 60 20 0.900 870 | 60 25 0.439 871 | 60 30 0.309 872 | 60 35 0.217 873 | 60 40 0.191 874 | 60 45 0.264 875 | 60 50 0.246 876 | 60 55 0.369 877 | 60 60 0.489 878 | 60 65 1.252 879 | 60 70 3.199 880 | 60 75 1.311 881 | 60 80 0.543 882 | 60 85 0.429 883 | 60 90 0.350 884 | 60 95 0.429 885 | 60 100 0.543 886 | 60 105 1.311 887 | 60 110 3.199 888 | 60 115 1.252 889 | 60 120 0.489 890 | 60 125 0.369 891 | 60 130 0.246 892 | 60 135 0.264 893 | 60 140 0.191 894 | 60 145 0.217 895 | 60 150 0.309 896 | 60 155 0.439 897 | 60 160 0.900 898 | 60 165 1.759 899 | 60 170 1.999 900 | 60 175 1.926 901 | 60 180 1.555 902 | 60 185 1.926 903 | 60 190 1.999 904 | 60 195 1.759 905 | 60 200 0.900 906 | 60 205 0.439 907 | 60 210 0.309 908 | 60 215 0.217 909 | 60 220 0.191 910 | 60 225 0.264 911 | 60 230 0.246 912 | 60 235 0.369 913 | 60 240 0.489 914 | 60 245 1.252 915 | 60 250 3.199 916 | 60 255 1.311 917 | 60 260 0.543 918 | 60 265 0.429 919 | 60 270 0.350 920 | 60 275 0.429 921 | 60 280 0.543 922 | 60 285 1.311 923 | 60 290 3.199 924 | 60 295 1.252 925 | 60 300 0.489 926 | 60 305 0.369 927 | 60 310 0.246 928 | 60 315 0.264 929 | 60 320 0.191 930 | 60 325 0.217 931 | 60 330 0.309 932 | 60 335 0.439 933 | 60 340 0.900 934 | 60 345 1.759 935 | 60 350 1.999 936 | 60 355 1.926 937 | 65 0 1.272 938 | 65 5 1.676 939 | 65 10 2.821 940 | 65 15 4.382 941 | 65 20 3.007 942 | 65 25 1.101 943 | 65 30 0.483 944 | 65 35 0.314 945 | 65 40 0.241 946 | 65 45 0.233 947 | 65 50 0.233 948 | 65 55 0.319 949 | 65 60 0.347 950 | 65 65 1.059 951 | 65 70 3.201 952 | 65 75 1.657 953 | 65 80 0.581 954 | 65 85 0.402 955 | 65 90 0.341 956 | 65 95 0.402 957 | 65 100 0.581 958 | 65 105 1.657 959 | 65 110 3.201 960 | 65 115 1.059 961 | 65 120 0.347 962 | 65 125 0.319 963 | 65 130 0.233 964 | 65 135 0.233 965 | 65 140 0.241 966 | 65 145 0.314 967 | 65 150 0.483 968 | 65 155 1.101 969 | 65 160 3.007 970 | 65 165 4.382 971 | 65 170 2.821 972 | 65 175 1.676 973 | 65 180 1.272 974 | 65 185 1.676 975 | 65 190 2.821 976 | 65 195 4.382 977 | 65 200 3.007 978 | 65 205 1.101 979 | 65 210 0.483 980 | 65 215 0.314 981 | 65 220 0.241 982 | 65 225 0.233 983 | 65 230 0.233 984 | 65 235 0.319 985 | 65 240 0.347 986 | 65 245 1.059 987 | 65 250 3.201 988 | 65 255 1.657 989 | 65 260 0.581 990 | 65 265 0.402 991 | 65 270 0.341 992 | 65 275 0.402 993 | 65 280 0.581 994 | 65 285 1.657 995 | 65 290 3.201 996 | 65 295 1.059 997 | 65 300 0.347 998 | 65 305 0.319 999 | 65 310 0.233 1000 | 65 315 0.233 1001 | 65 320 0.241 1002 | 65 325 0.314 1003 | 65 330 0.483 1004 | 65 335 1.101 1005 | 65 340 3.007 1006 | 65 345 4.382 1007 | 65 350 2.821 1008 | 65 355 1.676 1009 | 70 0 0.423 1010 | 70 5 0.537 1011 | 70 10 1.668 1012 | 70 15 4.889 1013 | 70 20 5.532 1014 | 70 25 2.057 1015 | 70 30 0.708 1016 | 70 35 0.421 1017 | 70 40 0.294 1018 | 70 45 0.219 1019 | 70 50 0.213 1020 | 70 55 0.233 1021 | 70 60 0.345 1022 | 70 65 0.948 1023 | 70 70 3.070 1024 | 70 75 2.088 1025 | 70 80 0.589 1026 | 70 85 0.344 1027 | 70 90 0.316 1028 | 70 95 0.344 1029 | 70 100 0.589 1030 | 70 105 2.088 1031 | 70 110 3.070 1032 | 70 115 0.948 1033 | 70 120 0.345 1034 | 70 125 0.233 1035 | 70 130 0.213 1036 | 70 135 0.219 1037 | 70 140 0.294 1038 | 70 145 0.421 1039 | 70 150 0.708 1040 | 70 155 2.057 1041 | 70 160 5.532 1042 | 70 165 4.889 1043 | 70 170 1.668 1044 | 70 175 0.537 1045 | 70 180 0.423 1046 | 70 185 0.537 1047 | 70 190 1.668 1048 | 70 195 4.889 1049 | 70 200 5.532 1050 | 70 205 2.057 1051 | 70 210 0.708 1052 | 70 215 0.421 1053 | 70 220 0.294 1054 | 70 225 0.219 1055 | 70 230 0.213 1056 | 70 235 0.233 1057 | 70 240 0.345 1058 | 70 245 0.948 1059 | 70 250 3.070 1060 | 70 255 2.088 1061 | 70 260 0.589 1062 | 70 265 0.344 1063 | 70 270 0.316 1064 | 70 275 0.344 1065 | 70 280 0.589 1066 | 70 285 2.088 1067 | 70 290 3.070 1068 | 70 295 0.948 1069 | 70 300 0.345 1070 | 70 305 0.233 1071 | 70 310 0.213 1072 | 70 315 0.219 1073 | 70 320 0.294 1074 | 70 325 0.421 1075 | 70 330 0.708 1076 | 70 335 2.057 1077 | 70 340 5.532 1078 | 70 345 4.889 1079 | 70 350 1.668 1080 | 70 355 0.537 1081 | 75 0 0.257 1082 | 75 5 0.304 1083 | 75 10 0.611 1084 | 75 15 2.716 1085 | 75 20 4.854 1086 | 75 25 2.218 1087 | 75 30 0.834 1088 | 75 35 0.445 1089 | 75 40 0.265 1090 | 75 45 0.242 1091 | 75 50 0.230 1092 | 75 55 0.212 1093 | 75 60 0.362 1094 | 75 65 0.865 1095 | 75 70 2.668 1096 | 75 75 2.223 1097 | 75 80 0.713 1098 | 75 85 0.315 1099 | 75 90 0.297 1100 | 75 95 0.315 1101 | 75 100 0.713 1102 | 75 105 2.223 1103 | 75 110 2.668 1104 | 75 115 0.865 1105 | 75 120 0.362 1106 | 75 125 0.212 1107 | 75 130 0.230 1108 | 75 135 0.242 1109 | 75 140 0.265 1110 | 75 145 0.445 1111 | 75 150 0.834 1112 | 75 155 2.218 1113 | 75 160 4.854 1114 | 75 165 2.716 1115 | 75 170 0.611 1116 | 75 175 0.304 1117 | 75 180 0.257 1118 | 75 185 0.304 1119 | 75 190 0.611 1120 | 75 195 2.716 1121 | 75 200 4.854 1122 | 75 205 2.218 1123 | 75 210 0.834 1124 | 75 215 0.445 1125 | 75 220 0.265 1126 | 75 225 0.242 1127 | 75 230 0.230 1128 | 75 235 0.212 1129 | 75 240 0.362 1130 | 75 245 0.865 1131 | 75 250 2.668 1132 | 75 255 2.223 1133 | 75 260 0.713 1134 | 75 265 0.315 1135 | 75 270 0.297 1136 | 75 275 0.315 1137 | 75 280 0.713 1138 | 75 285 2.223 1139 | 75 290 2.668 1140 | 75 295 0.865 1141 | 75 300 0.362 1142 | 75 305 0.212 1143 | 75 310 0.230 1144 | 75 315 0.242 1145 | 75 320 0.265 1146 | 75 325 0.445 1147 | 75 330 0.834 1148 | 75 335 2.218 1149 | 75 340 4.854 1150 | 75 345 2.716 1151 | 75 350 0.611 1152 | 75 355 0.304 1153 | -------------------------------------------------------------------------------- /texture/Xray_pf111_uncorr.dat: -------------------------------------------------------------------------------- 1 | 0 0 0.034 2 | 0 5 0.034 3 | 0 10 0.034 4 | 0 15 0.034 5 | 0 20 0.034 6 | 0 25 0.034 7 | 0 30 0.034 8 | 0 35 0.034 9 | 0 40 0.034 10 | 0 45 0.034 11 | 0 50 0.034 12 | 0 55 0.034 13 | 0 60 0.034 14 | 0 65 0.034 15 | 0 70 0.034 16 | 0 75 0.034 17 | 0 80 0.034 18 | 0 85 0.034 19 | 0 90 0.034 20 | 0 95 0.034 21 | 0 100 0.034 22 | 0 105 0.034 23 | 0 110 0.034 24 | 0 115 0.034 25 | 0 120 0.034 26 | 0 125 0.034 27 | 0 130 0.034 28 | 0 135 0.034 29 | 0 140 0.034 30 | 0 145 0.034 31 | 0 150 0.034 32 | 0 155 0.034 33 | 0 160 0.034 34 | 0 165 0.034 35 | 0 170 0.034 36 | 0 175 0.034 37 | 0 180 0.034 38 | 0 185 0.034 39 | 0 190 0.034 40 | 0 195 0.034 41 | 0 200 0.034 42 | 0 205 0.034 43 | 0 210 0.034 44 | 0 215 0.034 45 | 0 220 0.034 46 | 0 225 0.034 47 | 0 230 0.034 48 | 0 235 0.034 49 | 0 240 0.034 50 | 0 245 0.034 51 | 0 250 0.034 52 | 0 255 0.034 53 | 0 260 0.034 54 | 0 265 0.034 55 | 0 270 0.034 56 | 0 275 0.034 57 | 0 280 0.034 58 | 0 285 0.034 59 | 0 290 0.034 60 | 0 295 0.034 61 | 0 300 0.034 62 | 0 305 0.034 63 | 0 310 0.034 64 | 0 315 0.034 65 | 0 320 0.034 66 | 0 325 0.034 67 | 0 330 0.034 68 | 0 335 0.034 69 | 0 340 0.034 70 | 0 345 0.034 71 | 0 350 0.034 72 | 0 355 0.034 73 | 5 0 0.041 74 | 5 5 0.042 75 | 5 10 0.034 76 | 5 15 0.035 77 | 5 20 0.040 78 | 5 25 0.039 79 | 5 30 0.036 80 | 5 35 0.035 81 | 5 40 0.034 82 | 5 45 0.033 83 | 5 50 0.033 84 | 5 55 0.031 85 | 5 60 0.031 86 | 5 65 0.031 87 | 5 70 0.035 88 | 5 75 0.034 89 | 5 80 0.035 90 | 5 85 0.035 91 | 5 90 0.035 92 | 5 95 0.035 93 | 5 100 0.035 94 | 5 105 0.034 95 | 5 110 0.035 96 | 5 115 0.031 97 | 5 120 0.031 98 | 5 125 0.031 99 | 5 130 0.033 100 | 5 135 0.033 101 | 5 140 0.034 102 | 5 145 0.035 103 | 5 150 0.036 104 | 5 155 0.039 105 | 5 160 0.040 106 | 5 165 0.035 107 | 5 170 0.034 108 | 5 175 0.042 109 | 5 180 0.041 110 | 5 185 0.042 111 | 5 190 0.034 112 | 5 195 0.035 113 | 5 200 0.040 114 | 5 205 0.039 115 | 5 210 0.036 116 | 5 215 0.035 117 | 5 220 0.034 118 | 5 225 0.033 119 | 5 230 0.033 120 | 5 235 0.031 121 | 5 240 0.031 122 | 5 245 0.031 123 | 5 250 0.035 124 | 5 255 0.034 125 | 5 260 0.035 126 | 5 265 0.035 127 | 5 270 0.035 128 | 5 275 0.035 129 | 5 280 0.035 130 | 5 285 0.034 131 | 5 290 0.035 132 | 5 295 0.031 133 | 5 300 0.031 134 | 5 305 0.031 135 | 5 310 0.033 136 | 5 315 0.033 137 | 5 320 0.034 138 | 5 325 0.035 139 | 5 330 0.036 140 | 5 335 0.039 141 | 5 340 0.040 142 | 5 345 0.035 143 | 5 350 0.034 144 | 5 355 0.042 145 | 10 0 0.052 146 | 10 5 0.052 147 | 10 10 0.045 148 | 10 15 0.045 149 | 10 20 0.052 150 | 10 25 0.045 151 | 10 30 0.047 152 | 10 35 0.044 153 | 10 40 0.041 154 | 10 45 0.039 155 | 10 50 0.039 156 | 10 55 0.036 157 | 10 60 0.033 158 | 10 65 0.037 159 | 10 70 0.037 160 | 10 75 0.039 161 | 10 80 0.038 162 | 10 85 0.042 163 | 10 90 0.041 164 | 10 95 0.042 165 | 10 100 0.038 166 | 10 105 0.039 167 | 10 110 0.037 168 | 10 115 0.037 169 | 10 120 0.033 170 | 10 125 0.036 171 | 10 130 0.039 172 | 10 135 0.039 173 | 10 140 0.041 174 | 10 145 0.044 175 | 10 150 0.047 176 | 10 155 0.045 177 | 10 160 0.052 178 | 10 165 0.045 179 | 10 170 0.045 180 | 10 175 0.052 181 | 10 180 0.052 182 | 10 185 0.052 183 | 10 190 0.045 184 | 10 195 0.045 185 | 10 200 0.052 186 | 10 205 0.045 187 | 10 210 0.047 188 | 10 215 0.044 189 | 10 220 0.041 190 | 10 225 0.039 191 | 10 230 0.039 192 | 10 235 0.036 193 | 10 240 0.033 194 | 10 245 0.037 195 | 10 250 0.037 196 | 10 255 0.039 197 | 10 260 0.038 198 | 10 265 0.042 199 | 10 270 0.041 200 | 10 275 0.042 201 | 10 280 0.038 202 | 10 285 0.039 203 | 10 290 0.037 204 | 10 295 0.037 205 | 10 300 0.033 206 | 10 305 0.036 207 | 10 310 0.039 208 | 10 315 0.039 209 | 10 320 0.041 210 | 10 325 0.044 211 | 10 330 0.047 212 | 10 335 0.045 213 | 10 340 0.052 214 | 10 345 0.045 215 | 10 350 0.045 216 | 10 355 0.052 217 | 15 0 0.076 218 | 15 5 0.080 219 | 15 10 0.085 220 | 15 15 0.089 221 | 15 20 0.069 222 | 15 25 0.054 223 | 15 30 0.064 224 | 15 35 0.055 225 | 15 40 0.050 226 | 15 45 0.046 227 | 15 50 0.042 228 | 15 55 0.038 229 | 15 60 0.032 230 | 15 65 0.032 231 | 15 70 0.032 232 | 15 75 0.032 233 | 15 80 0.034 234 | 15 85 0.036 235 | 15 90 0.040 236 | 15 95 0.036 237 | 15 100 0.034 238 | 15 105 0.032 239 | 15 110 0.032 240 | 15 115 0.032 241 | 15 120 0.032 242 | 15 125 0.038 243 | 15 130 0.042 244 | 15 135 0.046 245 | 15 140 0.050 246 | 15 145 0.055 247 | 15 150 0.064 248 | 15 155 0.054 249 | 15 160 0.069 250 | 15 165 0.089 251 | 15 170 0.085 252 | 15 175 0.080 253 | 15 180 0.076 254 | 15 185 0.080 255 | 15 190 0.085 256 | 15 195 0.089 257 | 15 200 0.069 258 | 15 205 0.054 259 | 15 210 0.064 260 | 15 215 0.055 261 | 15 220 0.050 262 | 15 225 0.046 263 | 15 230 0.042 264 | 15 235 0.038 265 | 15 240 0.032 266 | 15 245 0.032 267 | 15 250 0.032 268 | 15 255 0.032 269 | 15 260 0.034 270 | 15 265 0.036 271 | 15 270 0.040 272 | 15 275 0.036 273 | 15 280 0.034 274 | 15 285 0.032 275 | 15 290 0.032 276 | 15 295 0.032 277 | 15 300 0.032 278 | 15 305 0.038 279 | 15 310 0.042 280 | 15 315 0.046 281 | 15 320 0.050 282 | 15 325 0.055 283 | 15 330 0.064 284 | 15 335 0.054 285 | 15 340 0.069 286 | 15 345 0.089 287 | 15 350 0.085 288 | 15 355 0.080 289 | 20 0 0.193 290 | 20 5 0.230 291 | 20 10 0.252 292 | 20 15 0.216 293 | 20 20 0.186 294 | 20 25 0.103 295 | 20 30 0.095 296 | 20 35 0.085 297 | 20 40 0.066 298 | 20 45 0.074 299 | 20 50 0.054 300 | 20 55 0.042 301 | 20 60 0.038 302 | 20 65 0.029 303 | 20 70 0.029 304 | 20 75 0.024 305 | 20 80 0.025 306 | 20 85 0.026 307 | 20 90 0.032 308 | 20 95 0.026 309 | 20 100 0.025 310 | 20 105 0.024 311 | 20 110 0.029 312 | 20 115 0.029 313 | 20 120 0.038 314 | 20 125 0.042 315 | 20 130 0.054 316 | 20 135 0.074 317 | 20 140 0.066 318 | 20 145 0.085 319 | 20 150 0.095 320 | 20 155 0.103 321 | 20 160 0.186 322 | 20 165 0.216 323 | 20 170 0.252 324 | 20 175 0.230 325 | 20 180 0.193 326 | 20 185 0.230 327 | 20 190 0.252 328 | 20 195 0.216 329 | 20 200 0.186 330 | 20 205 0.103 331 | 20 210 0.095 332 | 20 215 0.085 333 | 20 220 0.066 334 | 20 225 0.074 335 | 20 230 0.054 336 | 20 235 0.042 337 | 20 240 0.038 338 | 20 245 0.029 339 | 20 250 0.029 340 | 20 255 0.024 341 | 20 260 0.025 342 | 20 265 0.026 343 | 20 270 0.032 344 | 20 275 0.026 345 | 20 280 0.025 346 | 20 285 0.024 347 | 20 290 0.029 348 | 20 295 0.029 349 | 20 300 0.038 350 | 20 305 0.042 351 | 20 310 0.054 352 | 20 315 0.074 353 | 20 320 0.066 354 | 20 325 0.085 355 | 20 330 0.095 356 | 20 335 0.103 357 | 20 340 0.186 358 | 20 345 0.216 359 | 20 350 0.252 360 | 20 355 0.230 361 | 25 0 0.862 362 | 25 5 0.856 363 | 25 10 0.658 364 | 25 15 0.615 365 | 25 20 0.625 366 | 25 25 0.392 367 | 25 30 0.250 368 | 25 35 0.175 369 | 25 40 0.113 370 | 25 45 0.105 371 | 25 50 0.071 372 | 25 55 0.056 373 | 25 60 0.049 374 | 25 65 0.037 375 | 25 70 0.031 376 | 25 75 0.023 377 | 25 80 0.020 378 | 25 85 0.022 379 | 25 90 0.028 380 | 25 95 0.022 381 | 25 100 0.020 382 | 25 105 0.023 383 | 25 110 0.031 384 | 25 115 0.037 385 | 25 120 0.049 386 | 25 125 0.056 387 | 25 130 0.071 388 | 25 135 0.105 389 | 25 140 0.113 390 | 25 145 0.175 391 | 25 150 0.250 392 | 25 155 0.392 393 | 25 160 0.625 394 | 25 165 0.615 395 | 25 170 0.658 396 | 25 175 0.856 397 | 25 180 0.862 398 | 25 185 0.856 399 | 25 190 0.658 400 | 25 195 0.615 401 | 25 200 0.625 402 | 25 205 0.392 403 | 25 210 0.250 404 | 25 215 0.175 405 | 25 220 0.113 406 | 25 225 0.105 407 | 25 230 0.071 408 | 25 235 0.056 409 | 25 240 0.049 410 | 25 245 0.037 411 | 25 250 0.031 412 | 25 255 0.023 413 | 25 260 0.020 414 | 25 265 0.022 415 | 25 270 0.028 416 | 25 275 0.022 417 | 25 280 0.020 418 | 25 285 0.023 419 | 25 290 0.031 420 | 25 295 0.037 421 | 25 300 0.049 422 | 25 305 0.056 423 | 25 310 0.071 424 | 25 315 0.105 425 | 25 320 0.113 426 | 25 325 0.175 427 | 25 330 0.250 428 | 25 335 0.392 429 | 25 340 0.625 430 | 25 345 0.615 431 | 25 350 0.658 432 | 25 355 0.856 433 | 30 0 1.961 434 | 30 5 2.133 435 | 30 10 1.746 436 | 30 15 1.789 437 | 30 20 1.764 438 | 30 25 1.313 439 | 30 30 0.949 440 | 30 35 0.479 441 | 30 40 0.264 442 | 30 45 0.208 443 | 30 50 0.122 444 | 30 55 0.089 445 | 30 60 0.061 446 | 30 65 0.050 447 | 30 70 0.037 448 | 30 75 0.063 449 | 30 80 0.041 450 | 30 85 0.022 451 | 30 90 0.028 452 | 30 95 0.022 453 | 30 100 0.041 454 | 30 105 0.063 455 | 30 110 0.037 456 | 30 115 0.050 457 | 30 120 0.061 458 | 30 125 0.089 459 | 30 130 0.122 460 | 30 135 0.208 461 | 30 140 0.264 462 | 30 145 0.479 463 | 30 150 0.949 464 | 30 155 1.313 465 | 30 160 1.764 466 | 30 165 1.789 467 | 30 170 1.746 468 | 30 175 2.133 469 | 30 180 1.961 470 | 30 185 2.133 471 | 30 190 1.746 472 | 30 195 1.789 473 | 30 200 1.764 474 | 30 205 1.313 475 | 30 210 0.949 476 | 30 215 0.479 477 | 30 220 0.264 478 | 30 225 0.208 479 | 30 230 0.122 480 | 30 235 0.089 481 | 30 240 0.061 482 | 30 245 0.050 483 | 30 250 0.037 484 | 30 255 0.063 485 | 30 260 0.041 486 | 30 265 0.022 487 | 30 270 0.028 488 | 30 275 0.022 489 | 30 280 0.041 490 | 30 285 0.063 491 | 30 290 0.037 492 | 30 295 0.050 493 | 30 300 0.061 494 | 30 305 0.089 495 | 30 310 0.122 496 | 30 315 0.208 497 | 30 320 0.264 498 | 30 325 0.479 499 | 30 330 0.949 500 | 30 335 1.313 501 | 30 340 1.764 502 | 30 345 1.789 503 | 30 350 1.746 504 | 30 355 2.133 505 | 35 0 1.643 506 | 35 5 2.011 507 | 35 10 1.845 508 | 35 15 2.124 509 | 35 20 2.784 510 | 35 25 3.110 511 | 35 30 2.911 512 | 35 35 1.738 513 | 35 40 0.970 514 | 35 45 0.572 515 | 35 50 0.292 516 | 35 55 0.148 517 | 35 60 0.107 518 | 35 65 0.081 519 | 35 70 0.059 520 | 35 75 0.079 521 | 35 80 0.056 522 | 35 85 0.038 523 | 35 90 0.042 524 | 35 95 0.038 525 | 35 100 0.056 526 | 35 105 0.079 527 | 35 110 0.059 528 | 35 115 0.081 529 | 35 120 0.107 530 | 35 125 0.148 531 | 35 130 0.292 532 | 35 135 0.572 533 | 35 140 0.970 534 | 35 145 1.738 535 | 35 150 2.911 536 | 35 155 3.110 537 | 35 160 2.784 538 | 35 165 2.124 539 | 35 170 1.845 540 | 35 175 2.011 541 | 35 180 1.643 542 | 35 185 2.011 543 | 35 190 1.845 544 | 35 195 2.124 545 | 35 200 2.784 546 | 35 205 3.110 547 | 35 210 2.911 548 | 35 215 1.738 549 | 35 220 0.970 550 | 35 225 0.572 551 | 35 230 0.292 552 | 35 235 0.148 553 | 35 240 0.107 554 | 35 245 0.081 555 | 35 250 0.059 556 | 35 255 0.079 557 | 35 260 0.056 558 | 35 265 0.038 559 | 35 270 0.042 560 | 35 275 0.038 561 | 35 280 0.056 562 | 35 285 0.079 563 | 35 290 0.059 564 | 35 295 0.081 565 | 35 300 0.107 566 | 35 305 0.148 567 | 35 310 0.292 568 | 35 315 0.572 569 | 35 320 0.970 570 | 35 325 1.738 571 | 35 330 2.911 572 | 35 335 3.110 573 | 35 340 2.784 574 | 35 345 2.124 575 | 35 350 1.845 576 | 35 355 2.011 577 | 40 0 0.488 578 | 40 5 0.648 579 | 40 10 0.705 580 | 40 15 0.991 581 | 40 20 1.912 582 | 40 25 3.072 583 | 40 30 4.089 584 | 40 35 4.708 585 | 40 40 3.576 586 | 40 45 1.720 587 | 40 50 0.662 588 | 40 55 0.377 589 | 40 60 0.206 590 | 40 65 0.132 591 | 40 70 0.086 592 | 40 75 0.080 593 | 40 80 0.055 594 | 40 85 0.063 595 | 40 90 0.086 596 | 40 95 0.063 597 | 40 100 0.055 598 | 40 105 0.080 599 | 40 110 0.086 600 | 40 115 0.132 601 | 40 120 0.206 602 | 40 125 0.377 603 | 40 130 0.662 604 | 40 135 1.720 605 | 40 140 3.576 606 | 40 145 4.708 607 | 40 150 4.089 608 | 40 155 3.072 609 | 40 160 1.912 610 | 40 165 0.991 611 | 40 170 0.705 612 | 40 175 0.648 613 | 40 180 0.488 614 | 40 185 0.648 615 | 40 190 0.705 616 | 40 195 0.991 617 | 40 200 1.912 618 | 40 205 3.072 619 | 40 210 4.089 620 | 40 215 4.708 621 | 40 220 3.576 622 | 40 225 1.720 623 | 40 230 0.662 624 | 40 235 0.377 625 | 40 240 0.206 626 | 40 245 0.132 627 | 40 250 0.086 628 | 40 255 0.080 629 | 40 260 0.055 630 | 40 265 0.063 631 | 40 270 0.086 632 | 40 275 0.063 633 | 40 280 0.055 634 | 40 285 0.080 635 | 40 290 0.086 636 | 40 295 0.132 637 | 40 300 0.206 638 | 40 305 0.377 639 | 40 310 0.662 640 | 40 315 1.720 641 | 40 320 3.576 642 | 40 325 4.708 643 | 40 330 4.089 644 | 40 335 3.072 645 | 40 340 1.912 646 | 40 345 0.991 647 | 40 350 0.705 648 | 40 355 0.648 649 | 45 0 0.178 650 | 45 5 0.183 651 | 45 10 0.233 652 | 45 15 0.302 653 | 45 20 0.552 654 | 45 25 1.233 655 | 45 30 2.686 656 | 45 35 5.766 657 | 45 40 7.837 658 | 45 45 5.238 659 | 45 50 1.862 660 | 45 55 0.793 661 | 45 60 0.401 662 | 45 65 0.230 663 | 45 70 0.150 664 | 45 75 0.104 665 | 45 80 0.065 666 | 45 85 0.079 667 | 45 90 0.100 668 | 45 95 0.079 669 | 45 100 0.065 670 | 45 105 0.104 671 | 45 110 0.150 672 | 45 115 0.230 673 | 45 120 0.401 674 | 45 125 0.793 675 | 45 130 1.862 676 | 45 135 5.238 677 | 45 140 7.837 678 | 45 145 5.766 679 | 45 150 2.686 680 | 45 155 1.233 681 | 45 160 0.552 682 | 45 165 0.302 683 | 45 170 0.233 684 | 45 175 0.183 685 | 45 180 0.178 686 | 45 185 0.183 687 | 45 190 0.233 688 | 45 195 0.302 689 | 45 200 0.552 690 | 45 205 1.233 691 | 45 210 2.686 692 | 45 215 5.766 693 | 45 220 7.837 694 | 45 225 5.238 695 | 45 230 1.862 696 | 45 235 0.793 697 | 45 240 0.401 698 | 45 245 0.230 699 | 45 250 0.150 700 | 45 255 0.104 701 | 45 260 0.065 702 | 45 265 0.079 703 | 45 270 0.100 704 | 45 275 0.079 705 | 45 280 0.065 706 | 45 285 0.104 707 | 45 290 0.150 708 | 45 295 0.230 709 | 45 300 0.401 710 | 45 305 0.793 711 | 45 310 1.862 712 | 45 315 5.238 713 | 45 320 7.837 714 | 45 325 5.766 715 | 45 330 2.686 716 | 45 335 1.233 717 | 45 340 0.552 718 | 45 345 0.302 719 | 45 350 0.233 720 | 45 355 0.183 721 | 50 0 0.171 722 | 50 5 0.178 723 | 50 10 0.175 724 | 50 15 0.199 725 | 50 20 0.228 726 | 50 25 0.401 727 | 50 30 1.036 728 | 50 35 3.370 729 | 50 40 9.096 730 | 50 45 10.371 731 | 50 50 4.851 732 | 50 55 1.675 733 | 50 60 0.696 734 | 50 65 0.363 735 | 50 70 0.230 736 | 50 75 0.122 737 | 50 80 0.122 738 | 50 85 0.087 739 | 50 90 0.087 740 | 50 95 0.087 741 | 50 100 0.122 742 | 50 105 0.122 743 | 50 110 0.230 744 | 50 115 0.363 745 | 50 120 0.696 746 | 50 125 1.675 747 | 50 130 4.851 748 | 50 135 10.371 749 | 50 140 9.096 750 | 50 145 3.370 751 | 50 150 1.036 752 | 50 155 0.401 753 | 50 160 0.228 754 | 50 165 0.199 755 | 50 170 0.175 756 | 50 175 0.178 757 | 50 180 0.171 758 | 50 185 0.178 759 | 50 190 0.175 760 | 50 195 0.199 761 | 50 200 0.228 762 | 50 205 0.401 763 | 50 210 1.036 764 | 50 215 3.370 765 | 50 220 9.096 766 | 50 225 10.371 767 | 50 230 4.851 768 | 50 235 1.675 769 | 50 240 0.696 770 | 50 245 0.363 771 | 50 250 0.230 772 | 50 255 0.122 773 | 50 260 0.122 774 | 50 265 0.087 775 | 50 270 0.087 776 | 50 275 0.087 777 | 50 280 0.122 778 | 50 285 0.122 779 | 50 290 0.230 780 | 50 295 0.363 781 | 50 300 0.696 782 | 50 305 1.675 783 | 50 310 4.851 784 | 50 315 10.371 785 | 50 320 9.096 786 | 50 325 3.370 787 | 50 330 1.036 788 | 50 335 0.401 789 | 50 340 0.228 790 | 50 345 0.199 791 | 50 350 0.175 792 | 50 355 0.178 793 | 55 0 0.166 794 | 55 5 0.173 795 | 55 10 0.169 796 | 55 15 0.180 797 | 55 20 0.189 798 | 55 25 0.233 799 | 55 30 0.450 800 | 55 35 1.448 801 | 55 40 5.932 802 | 55 45 11.090 803 | 55 50 7.702 804 | 55 55 3.051 805 | 55 60 1.072 806 | 55 65 0.504 807 | 55 70 0.287 808 | 55 75 0.192 809 | 55 80 0.157 810 | 55 85 0.104 811 | 55 90 0.093 812 | 55 95 0.104 813 | 55 100 0.157 814 | 55 105 0.192 815 | 55 110 0.287 816 | 55 115 0.504 817 | 55 120 1.072 818 | 55 125 3.051 819 | 55 130 7.702 820 | 55 135 11.090 821 | 55 140 5.932 822 | 55 145 1.448 823 | 55 150 0.450 824 | 55 155 0.233 825 | 55 160 0.189 826 | 55 165 0.180 827 | 55 170 0.169 828 | 55 175 0.173 829 | 55 180 0.166 830 | 55 185 0.173 831 | 55 190 0.169 832 | 55 195 0.180 833 | 55 200 0.189 834 | 55 205 0.233 835 | 55 210 0.450 836 | 55 215 1.448 837 | 55 220 5.932 838 | 55 225 11.090 839 | 55 230 7.702 840 | 55 235 3.051 841 | 55 240 1.072 842 | 55 245 0.504 843 | 55 250 0.287 844 | 55 255 0.192 845 | 55 260 0.157 846 | 55 265 0.104 847 | 55 270 0.093 848 | 55 275 0.104 849 | 55 280 0.157 850 | 55 285 0.192 851 | 55 290 0.287 852 | 55 295 0.504 853 | 55 300 1.072 854 | 55 305 3.051 855 | 55 310 7.702 856 | 55 315 11.090 857 | 55 320 5.932 858 | 55 325 1.448 859 | 55 330 0.450 860 | 55 335 0.233 861 | 55 340 0.189 862 | 55 345 0.180 863 | 55 350 0.169 864 | 55 355 0.173 865 | 60 0 0.193 866 | 60 5 0.162 867 | 60 10 0.168 868 | 60 15 0.179 869 | 60 20 0.183 870 | 60 25 0.208 871 | 60 30 0.307 872 | 60 35 0.876 873 | 60 40 2.751 874 | 60 45 7.170 875 | 60 50 7.570 876 | 60 55 3.740 877 | 60 60 1.284 878 | 60 65 0.590 879 | 60 70 0.312 880 | 60 75 0.245 881 | 60 80 0.161 882 | 60 85 0.180 883 | 60 90 0.111 884 | 60 95 0.180 885 | 60 100 0.161 886 | 60 105 0.245 887 | 60 110 0.312 888 | 60 115 0.590 889 | 60 120 1.284 890 | 60 125 3.740 891 | 60 130 7.570 892 | 60 135 7.170 893 | 60 140 2.751 894 | 60 145 0.876 895 | 60 150 0.307 896 | 60 155 0.208 897 | 60 160 0.183 898 | 60 165 0.179 899 | 60 170 0.168 900 | 60 175 0.162 901 | 60 180 0.193 902 | 60 185 0.162 903 | 60 190 0.168 904 | 60 195 0.179 905 | 60 200 0.183 906 | 60 205 0.208 907 | 60 210 0.307 908 | 60 215 0.876 909 | 60 220 2.751 910 | 60 225 7.170 911 | 60 230 7.570 912 | 60 235 3.740 913 | 60 240 1.284 914 | 60 245 0.590 915 | 60 250 0.312 916 | 60 255 0.245 917 | 60 260 0.161 918 | 60 265 0.180 919 | 60 270 0.111 920 | 60 275 0.180 921 | 60 280 0.161 922 | 60 285 0.245 923 | 60 290 0.312 924 | 60 295 0.590 925 | 60 300 1.284 926 | 60 305 3.740 927 | 60 310 7.570 928 | 60 315 7.170 929 | 60 320 2.751 930 | 60 325 0.876 931 | 60 330 0.307 932 | 60 335 0.208 933 | 60 340 0.183 934 | 60 345 0.179 935 | 60 350 0.168 936 | 60 355 0.162 937 | 65 0 0.162 938 | 65 5 0.133 939 | 65 10 0.151 940 | 65 15 0.194 941 | 65 20 0.161 942 | 65 25 0.179 943 | 65 30 0.276 944 | 65 35 0.597 945 | 65 40 1.400 946 | 65 45 3.813 947 | 65 50 5.417 948 | 65 55 3.492 949 | 65 60 1.359 950 | 65 65 0.632 951 | 65 70 0.343 952 | 65 75 0.230 953 | 65 80 0.211 954 | 65 85 0.245 955 | 65 90 0.193 956 | 65 95 0.245 957 | 65 100 0.211 958 | 65 105 0.230 959 | 65 110 0.343 960 | 65 115 0.632 961 | 65 120 1.359 962 | 65 125 3.492 963 | 65 130 5.417 964 | 65 135 3.813 965 | 65 140 1.400 966 | 65 145 0.597 967 | 65 150 0.276 968 | 65 155 0.179 969 | 65 160 0.161 970 | 65 165 0.194 971 | 65 170 0.151 972 | 65 175 0.133 973 | 65 180 0.162 974 | 65 185 0.133 975 | 65 190 0.151 976 | 65 195 0.194 977 | 65 200 0.161 978 | 65 205 0.179 979 | 65 210 0.276 980 | 65 215 0.597 981 | 65 220 1.400 982 | 65 225 3.813 983 | 65 230 5.417 984 | 65 235 3.492 985 | 65 240 1.359 986 | 65 245 0.632 987 | 65 250 0.343 988 | 65 255 0.230 989 | 65 260 0.211 990 | 65 265 0.245 991 | 65 270 0.193 992 | 65 275 0.245 993 | 65 280 0.211 994 | 65 285 0.230 995 | 65 290 0.343 996 | 65 295 0.632 997 | 65 300 1.359 998 | 65 305 3.492 999 | 65 310 5.417 1000 | 65 315 3.813 1001 | 65 320 1.400 1002 | 65 325 0.597 1003 | 65 330 0.276 1004 | 65 335 0.179 1005 | 65 340 0.161 1006 | 65 345 0.194 1007 | 65 350 0.151 1008 | 65 355 0.133 1009 | 70 0 0.098 1010 | 70 5 0.109 1011 | 70 10 0.138 1012 | 70 15 0.191 1013 | 70 20 0.183 1014 | 70 25 0.183 1015 | 70 30 0.254 1016 | 70 35 0.405 1017 | 70 40 0.943 1018 | 70 45 2.105 1019 | 70 50 3.439 1020 | 70 55 2.925 1021 | 70 60 1.414 1022 | 70 65 0.663 1023 | 70 70 0.333 1024 | 70 75 0.197 1025 | 70 80 0.189 1026 | 70 85 0.250 1027 | 70 90 0.261 1028 | 70 95 0.250 1029 | 70 100 0.189 1030 | 70 105 0.197 1031 | 70 110 0.333 1032 | 70 115 0.663 1033 | 70 120 1.414 1034 | 70 125 2.925 1035 | 70 130 3.439 1036 | 70 135 2.105 1037 | 70 140 0.943 1038 | 70 145 0.405 1039 | 70 150 0.254 1040 | 70 155 0.183 1041 | 70 160 0.183 1042 | 70 165 0.191 1043 | 70 170 0.138 1044 | 70 175 0.109 1045 | 70 180 0.098 1046 | 70 185 0.109 1047 | 70 190 0.138 1048 | 70 195 0.191 1049 | 70 200 0.183 1050 | 70 205 0.183 1051 | 70 210 0.254 1052 | 70 215 0.405 1053 | 70 220 0.943 1054 | 70 225 2.105 1055 | 70 230 3.439 1056 | 70 235 2.925 1057 | 70 240 1.414 1058 | 70 245 0.663 1059 | 70 250 0.333 1060 | 70 255 0.197 1061 | 70 260 0.189 1062 | 70 265 0.250 1063 | 70 270 0.261 1064 | 70 275 0.250 1065 | 70 280 0.189 1066 | 70 285 0.197 1067 | 70 290 0.333 1068 | 70 295 0.663 1069 | 70 300 1.414 1070 | 70 305 2.925 1071 | 70 310 3.439 1072 | 70 315 2.105 1073 | 70 320 0.943 1074 | 70 325 0.405 1075 | 70 330 0.254 1076 | 70 335 0.183 1077 | 70 340 0.183 1078 | 70 345 0.191 1079 | 70 350 0.138 1080 | 70 355 0.109 1081 | 75 0 0.194 1082 | 75 5 0.219 1083 | 75 10 0.273 1084 | 75 15 0.318 1085 | 75 20 0.351 1086 | 75 25 0.358 1087 | 75 30 0.372 1088 | 75 35 0.468 1089 | 75 40 0.814 1090 | 75 45 1.514 1091 | 75 50 2.311 1092 | 75 55 2.116 1093 | 75 60 1.145 1094 | 75 65 0.574 1095 | 75 70 0.253 1096 | 75 75 0.150 1097 | 75 80 0.105 1098 | 75 85 0.165 1099 | 75 90 0.197 1100 | 75 95 0.165 1101 | 75 100 0.105 1102 | 75 105 0.150 1103 | 75 110 0.253 1104 | 75 115 0.574 1105 | 75 120 1.145 1106 | 75 125 2.116 1107 | 75 130 2.311 1108 | 75 135 1.514 1109 | 75 140 0.814 1110 | 75 145 0.468 1111 | 75 150 0.372 1112 | 75 155 0.358 1113 | 75 160 0.351 1114 | 75 165 0.318 1115 | 75 170 0.273 1116 | 75 175 0.219 1117 | 75 180 0.194 1118 | 75 185 0.219 1119 | 75 190 0.273 1120 | 75 195 0.318 1121 | 75 200 0.351 1122 | 75 205 0.358 1123 | 75 210 0.372 1124 | 75 215 0.468 1125 | 75 220 0.814 1126 | 75 225 1.514 1127 | 75 230 2.311 1128 | 75 235 2.116 1129 | 75 240 1.145 1130 | 75 245 0.574 1131 | 75 250 0.253 1132 | 75 255 0.150 1133 | 75 260 0.105 1134 | 75 265 0.165 1135 | 75 270 0.197 1136 | 75 275 0.165 1137 | 75 280 0.105 1138 | 75 285 0.150 1139 | 75 290 0.253 1140 | 75 295 0.574 1141 | 75 300 1.145 1142 | 75 305 2.116 1143 | 75 310 2.311 1144 | 75 315 1.514 1145 | 75 320 0.814 1146 | 75 325 0.468 1147 | 75 330 0.372 1148 | 75 335 0.358 1149 | 75 340 0.351 1150 | 75 345 0.318 1151 | 75 350 0.273 1152 | 75 355 0.219 1153 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Texture2Abaqus 2 | Copyright (C) 2017-2022 Bjørn Håkon Frodal 3 | 4 | This program is free software: you can redistribute it and/or modify 5 | it under the terms of the GNU General Public License as published by 6 | the Free Software Foundation, either version 3 of the License, or 7 | any later version. 8 | 9 | This program is distributed in the hope that it will be useful, 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | GNU General Public License for more details. 13 | 14 | You should have received a copy of the GNU General Public License 15 | along with this program. If not, see . 16 | 17 | GNU GENERAL PUBLIC LICENSE 18 | Version 3, 29 June 2007 19 | 20 | Copyright (C) 2007 Free Software Foundation, Inc. 21 | Everyone is permitted to copy and distribute verbatim copies 22 | of this license document, but changing it is not allowed. 23 | 24 | Preamble 25 | 26 | The GNU General Public License is a free, copyleft license for 27 | software and other kinds of works. 28 | 29 | The licenses for most software and other practical works are designed 30 | to take away your freedom to share and change the works. By contrast, 31 | the GNU General Public License is intended to guarantee your freedom to 32 | share and change all versions of a program--to make sure it remains free 33 | software for all its users. We, the Free Software Foundation, use the 34 | GNU General Public License for most of our software; it applies also to 35 | any other work released this way by its authors. You can apply it to 36 | your programs, too. 37 | 38 | When we speak of free software, we are referring to freedom, not 39 | price. Our General Public Licenses are designed to make sure that you 40 | have the freedom to distribute copies of free software (and charge for 41 | them if you wish), that you receive source code or can get it if you 42 | want it, that you can change the software or use pieces of it in new 43 | free programs, and that you know you can do these things. 44 | 45 | To protect your rights, we need to prevent others from denying you 46 | these rights or asking you to surrender the rights. Therefore, you have 47 | certain responsibilities if you distribute copies of the software, or if 48 | you modify it: responsibilities to respect the freedom of others. 49 | 50 | For example, if you distribute copies of such a program, whether 51 | gratis or for a fee, you must pass on to the recipients the same 52 | freedoms that you received. You must make sure that they, too, receive 53 | or can get the source code. And you must show them these terms so they 54 | know their rights. 55 | 56 | Developers that use the GNU GPL protect your rights with two steps: 57 | (1) assert copyright on the software, and (2) offer you this License 58 | giving you legal permission to copy, distribute and/or modify it. 59 | 60 | For the developers' and authors' protection, the GPL clearly explains 61 | that there is no warranty for this free software. For both users' and 62 | authors' sake, the GPL requires that modified versions be marked as 63 | changed, so that their problems will not be attributed erroneously to 64 | authors of previous versions. 65 | 66 | Some devices are designed to deny users access to install or run 67 | modified versions of the software inside them, although the manufacturer 68 | can do so. This is fundamentally incompatible with the aim of 69 | protecting users' freedom to change the software. The systematic 70 | pattern of such abuse occurs in the area of products for individuals to 71 | use, which is precisely where it is most unacceptable. Therefore, we 72 | have designed this version of the GPL to prohibit the practice for those 73 | products. If such problems arise substantially in other domains, we 74 | stand ready to extend this provision to those domains in future versions 75 | of the GPL, as needed to protect the freedom of users. 76 | 77 | Finally, every program is threatened constantly by software patents. 78 | States should not allow patents to restrict development and use of 79 | software on general-purpose computers, but in those that do, we wish to 80 | avoid the special danger that patents applied to a free program could 81 | make it effectively proprietary. To prevent this, the GPL assures that 82 | patents cannot be used to render the program non-free. 83 | 84 | The precise terms and conditions for copying, distribution and 85 | modification follow. 86 | 87 | TERMS AND CONDITIONS 88 | 89 | 0. Definitions. 90 | 91 | "This License" refers to version 3 of the GNU General Public License. 92 | 93 | "Copyright" also means copyright-like laws that apply to other kinds of 94 | works, such as semiconductor masks. 95 | 96 | "The Program" refers to any copyrightable work licensed under this 97 | License. Each licensee is addressed as "you". "Licensees" and 98 | "recipients" may be individuals or organizations. 99 | 100 | To "modify" a work means to copy from or adapt all or part of the work 101 | in a fashion requiring copyright permission, other than the making of an 102 | exact copy. The resulting work is called a "modified version" of the 103 | earlier work or a work "based on" the earlier work. 104 | 105 | A "covered work" means either the unmodified Program or a work based 106 | on the Program. 107 | 108 | To "propagate" a work means to do anything with it that, without 109 | permission, would make you directly or secondarily liable for 110 | infringement under applicable copyright law, except executing it on a 111 | computer or modifying a private copy. Propagation includes copying, 112 | distribution (with or without modification), making available to the 113 | public, and in some countries other activities as well. 114 | 115 | To "convey" a work means any kind of propagation that enables other 116 | parties to make or receive copies. Mere interaction with a user through 117 | a computer network, with no transfer of a copy, is not conveying. 118 | 119 | An interactive user interface displays "Appropriate Legal Notices" 120 | to the extent that it includes a convenient and prominently visible 121 | feature that (1) displays an appropriate copyright notice, and (2) 122 | tells the user that there is no warranty for the work (except to the 123 | extent that warranties are provided), that licensees may convey the 124 | work under this License, and how to view a copy of this License. If 125 | the interface presents a list of user commands or options, such as a 126 | menu, a prominent item in the list meets this criterion. 127 | 128 | 1. Source Code. 129 | 130 | The "source code" for a work means the preferred form of the work 131 | for making modifications to it. "Object code" means any non-source 132 | form of a work. 133 | 134 | A "Standard Interface" means an interface that either is an official 135 | standard defined by a recognized standards body, or, in the case of 136 | interfaces specified for a particular programming language, one that 137 | is widely used among developers working in that language. 138 | 139 | The "System Libraries" of an executable work include anything, other 140 | than the work as a whole, that (a) is included in the normal form of 141 | packaging a Major Component, but which is not part of that Major 142 | Component, and (b) serves only to enable use of the work with that 143 | Major Component, or to implement a Standard Interface for which an 144 | implementation is available to the public in source code form. A 145 | "Major Component", in this context, means a major essential component 146 | (kernel, window system, and so on) of the specific operating system 147 | (if any) on which the executable work runs, or a compiler used to 148 | produce the work, or an object code interpreter used to run it. 149 | 150 | The "Corresponding Source" for a work in object code form means all 151 | the source code needed to generate, install, and (for an executable 152 | work) run the object code and to modify the work, including scripts to 153 | control those activities. However, it does not include the work's 154 | System Libraries, or general-purpose tools or generally available free 155 | programs which are used unmodified in performing those activities but 156 | which are not part of the work. For example, Corresponding Source 157 | includes interface definition files associated with source files for 158 | the work, and the source code for shared libraries and dynamically 159 | linked subprograms that the work is specifically designed to require, 160 | such as by intimate data communication or control flow between those 161 | subprograms and other parts of the work. 162 | 163 | The Corresponding Source need not include anything that users 164 | can regenerate automatically from other parts of the Corresponding 165 | Source. 166 | 167 | The Corresponding Source for a work in source code form is that 168 | same work. 169 | 170 | 2. Basic Permissions. 171 | 172 | All rights granted under this License are granted for the term of 173 | copyright on the Program, and are irrevocable provided the stated 174 | conditions are met. This License explicitly affirms your unlimited 175 | permission to run the unmodified Program. The output from running a 176 | covered work is covered by this License only if the output, given its 177 | content, constitutes a covered work. This License acknowledges your 178 | rights of fair use or other equivalent, as provided by copyright law. 179 | 180 | You may make, run and propagate covered works that you do not 181 | convey, without conditions so long as your license otherwise remains 182 | in force. You may convey covered works to others for the sole purpose 183 | of having them make modifications exclusively for you, or provide you 184 | with facilities for running those works, provided that you comply with 185 | the terms of this License in conveying all material for which you do 186 | not control copyright. Those thus making or running the covered works 187 | for you must do so exclusively on your behalf, under your direction 188 | and control, on terms that prohibit them from making any copies of 189 | your copyrighted material outside their relationship with you. 190 | 191 | Conveying under any other circumstances is permitted solely under 192 | the conditions stated below. Sublicensing is not allowed; section 10 193 | makes it unnecessary. 194 | 195 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 196 | 197 | No covered work shall be deemed part of an effective technological 198 | measure under any applicable law fulfilling obligations under article 199 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 200 | similar laws prohibiting or restricting circumvention of such 201 | measures. 202 | 203 | When you convey a covered work, you waive any legal power to forbid 204 | circumvention of technological measures to the extent such circumvention 205 | is effected by exercising rights under this License with respect to 206 | the covered work, and you disclaim any intention to limit operation or 207 | modification of the work as a means of enforcing, against the work's 208 | users, your or third parties' legal rights to forbid circumvention of 209 | technological measures. 210 | 211 | 4. Conveying Verbatim Copies. 212 | 213 | You may convey verbatim copies of the Program's source code as you 214 | receive it, in any medium, provided that you conspicuously and 215 | appropriately publish on each copy an appropriate copyright notice; 216 | keep intact all notices stating that this License and any 217 | non-permissive terms added in accord with section 7 apply to the code; 218 | keep intact all notices of the absence of any warranty; and give all 219 | recipients a copy of this License along with the Program. 220 | 221 | You may charge any price or no price for each copy that you convey, 222 | and you may offer support or warranty protection for a fee. 223 | 224 | 5. Conveying Modified Source Versions. 225 | 226 | You may convey a work based on the Program, or the modifications to 227 | produce it from the Program, in the form of source code under the 228 | terms of section 4, provided that you also meet all of these conditions: 229 | 230 | a) The work must carry prominent notices stating that you modified 231 | it, and giving a relevant date. 232 | 233 | b) The work must carry prominent notices stating that it is 234 | released under this License and any conditions added under section 235 | 7. This requirement modifies the requirement in section 4 to 236 | "keep intact all notices". 237 | 238 | c) You must license the entire work, as a whole, under this 239 | License to anyone who comes into possession of a copy. This 240 | License will therefore apply, along with any applicable section 7 241 | additional terms, to the whole of the work, and all its parts, 242 | regardless of how they are packaged. This License gives no 243 | permission to license the work in any other way, but it does not 244 | invalidate such permission if you have separately received it. 245 | 246 | d) If the work has interactive user interfaces, each must display 247 | Appropriate Legal Notices; however, if the Program has interactive 248 | interfaces that do not display Appropriate Legal Notices, your 249 | work need not make them do so. 250 | 251 | A compilation of a covered work with other separate and independent 252 | works, which are not by their nature extensions of the covered work, 253 | and which are not combined with it such as to form a larger program, 254 | in or on a volume of a storage or distribution medium, is called an 255 | "aggregate" if the compilation and its resulting copyright are not 256 | used to limit the access or legal rights of the compilation's users 257 | beyond what the individual works permit. Inclusion of a covered work 258 | in an aggregate does not cause this License to apply to the other 259 | parts of the aggregate. 260 | 261 | 6. Conveying Non-Source Forms. 262 | 263 | You may convey a covered work in object code form under the terms 264 | of sections 4 and 5, provided that you also convey the 265 | machine-readable Corresponding Source under the terms of this License, 266 | in one of these ways: 267 | 268 | a) Convey the object code in, or embodied in, a physical product 269 | (including a physical distribution medium), accompanied by the 270 | Corresponding Source fixed on a durable physical medium 271 | customarily used for software interchange. 272 | 273 | b) Convey the object code in, or embodied in, a physical product 274 | (including a physical distribution medium), accompanied by a 275 | written offer, valid for at least three years and valid for as 276 | long as you offer spare parts or customer support for that product 277 | model, to give anyone who possesses the object code either (1) a 278 | copy of the Corresponding Source for all the software in the 279 | product that is covered by this License, on a durable physical 280 | medium customarily used for software interchange, for a price no 281 | more than your reasonable cost of physically performing this 282 | conveying of source, or (2) access to copy the 283 | Corresponding Source from a network server at no charge. 284 | 285 | c) Convey individual copies of the object code with a copy of the 286 | written offer to provide the Corresponding Source. This 287 | alternative is allowed only occasionally and noncommercially, and 288 | only if you received the object code with such an offer, in accord 289 | with subsection 6b. 290 | 291 | d) Convey the object code by offering access from a designated 292 | place (gratis or for a charge), and offer equivalent access to the 293 | Corresponding Source in the same way through the same place at no 294 | further charge. You need not require recipients to copy the 295 | Corresponding Source along with the object code. If the place to 296 | copy the object code is a network server, the Corresponding Source 297 | may be on a different server (operated by you or a third party) 298 | that supports equivalent copying facilities, provided you maintain 299 | clear directions next to the object code saying where to find the 300 | Corresponding Source. Regardless of what server hosts the 301 | Corresponding Source, you remain obligated to ensure that it is 302 | available for as long as needed to satisfy these requirements. 303 | 304 | e) Convey the object code using peer-to-peer transmission, provided 305 | you inform other peers where the object code and Corresponding 306 | Source of the work are being offered to the general public at no 307 | charge under subsection 6d. 308 | 309 | A separable portion of the object code, whose source code is excluded 310 | from the Corresponding Source as a System Library, need not be 311 | included in conveying the object code work. 312 | 313 | A "User Product" is either (1) a "consumer product", which means any 314 | tangible personal property which is normally used for personal, family, 315 | or household purposes, or (2) anything designed or sold for incorporation 316 | into a dwelling. In determining whether a product is a consumer product, 317 | doubtful cases shall be resolved in favor of coverage. For a particular 318 | product received by a particular user, "normally used" refers to a 319 | typical or common use of that class of product, regardless of the status 320 | of the particular user or of the way in which the particular user 321 | actually uses, or expects or is expected to use, the product. A product 322 | is a consumer product regardless of whether the product has substantial 323 | commercial, industrial or non-consumer uses, unless such uses represent 324 | the only significant mode of use of the product. 325 | 326 | "Installation Information" for a User Product means any methods, 327 | procedures, authorization keys, or other information required to install 328 | and execute modified versions of a covered work in that User Product from 329 | a modified version of its Corresponding Source. The information must 330 | suffice to ensure that the continued functioning of the modified object 331 | code is in no case prevented or interfered with solely because 332 | modification has been made. 333 | 334 | If you convey an object code work under this section in, or with, or 335 | specifically for use in, a User Product, and the conveying occurs as 336 | part of a transaction in which the right of possession and use of the 337 | User Product is transferred to the recipient in perpetuity or for a 338 | fixed term (regardless of how the transaction is characterized), the 339 | Corresponding Source conveyed under this section must be accompanied 340 | by the Installation Information. But this requirement does not apply 341 | if neither you nor any third party retains the ability to install 342 | modified object code on the User Product (for example, the work has 343 | been installed in ROM). 344 | 345 | The requirement to provide Installation Information does not include a 346 | requirement to continue to provide support service, warranty, or updates 347 | for a work that has been modified or installed by the recipient, or for 348 | the User Product in which it has been modified or installed. Access to a 349 | network may be denied when the modification itself materially and 350 | adversely affects the operation of the network or violates the rules and 351 | protocols for communication across the network. 352 | 353 | Corresponding Source conveyed, and Installation Information provided, 354 | in accord with this section must be in a format that is publicly 355 | documented (and with an implementation available to the public in 356 | source code form), and must require no special password or key for 357 | unpacking, reading or copying. 358 | 359 | 7. Additional Terms. 360 | 361 | "Additional permissions" are terms that supplement the terms of this 362 | License by making exceptions from one or more of its conditions. 363 | Additional permissions that are applicable to the entire Program shall 364 | be treated as though they were included in this License, to the extent 365 | that they are valid under applicable law. If additional permissions 366 | apply only to part of the Program, that part may be used separately 367 | under those permissions, but the entire Program remains governed by 368 | this License without regard to the additional permissions. 369 | 370 | When you convey a copy of a covered work, you may at your option 371 | remove any additional permissions from that copy, or from any part of 372 | it. (Additional permissions may be written to require their own 373 | removal in certain cases when you modify the work.) You may place 374 | additional permissions on material, added by you to a covered work, 375 | for which you have or can give appropriate copyright permission. 376 | 377 | Notwithstanding any other provision of this License, for material you 378 | add to a covered work, you may (if authorized by the copyright holders of 379 | that material) supplement the terms of this License with terms: 380 | 381 | a) Disclaiming warranty or limiting liability differently from the 382 | terms of sections 15 and 16 of this License; or 383 | 384 | b) Requiring preservation of specified reasonable legal notices or 385 | author attributions in that material or in the Appropriate Legal 386 | Notices displayed by works containing it; or 387 | 388 | c) Prohibiting misrepresentation of the origin of that material, or 389 | requiring that modified versions of such material be marked in 390 | reasonable ways as different from the original version; or 391 | 392 | d) Limiting the use for publicity purposes of names of licensors or 393 | authors of the material; or 394 | 395 | e) Declining to grant rights under trademark law for use of some 396 | trade names, trademarks, or service marks; or 397 | 398 | f) Requiring indemnification of licensors and authors of that 399 | material by anyone who conveys the material (or modified versions of 400 | it) with contractual assumptions of liability to the recipient, for 401 | any liability that these contractual assumptions directly impose on 402 | those licensors and authors. 403 | 404 | All other non-permissive additional terms are considered "further 405 | restrictions" within the meaning of section 10. If the Program as you 406 | received it, or any part of it, contains a notice stating that it is 407 | governed by this License along with a term that is a further 408 | restriction, you may remove that term. If a license document contains 409 | a further restriction but permits relicensing or conveying under this 410 | License, you may add to a covered work material governed by the terms 411 | of that license document, provided that the further restriction does 412 | not survive such relicensing or conveying. 413 | 414 | If you add terms to a covered work in accord with this section, you 415 | must place, in the relevant source files, a statement of the 416 | additional terms that apply to those files, or a notice indicating 417 | where to find the applicable terms. 418 | 419 | Additional terms, permissive or non-permissive, may be stated in the 420 | form of a separately written license, or stated as exceptions; 421 | the above requirements apply either way. 422 | 423 | 8. Termination. 424 | 425 | You may not propagate or modify a covered work except as expressly 426 | provided under this License. Any attempt otherwise to propagate or 427 | modify it is void, and will automatically terminate your rights under 428 | this License (including any patent licenses granted under the third 429 | paragraph of section 11). 430 | 431 | However, if you cease all violation of this License, then your 432 | license from a particular copyright holder is reinstated (a) 433 | provisionally, unless and until the copyright holder explicitly and 434 | finally terminates your license, and (b) permanently, if the copyright 435 | holder fails to notify you of the violation by some reasonable means 436 | prior to 60 days after the cessation. 437 | 438 | Moreover, your license from a particular copyright holder is 439 | reinstated permanently if the copyright holder notifies you of the 440 | violation by some reasonable means, this is the first time you have 441 | received notice of violation of this License (for any work) from that 442 | copyright holder, and you cure the violation prior to 30 days after 443 | your receipt of the notice. 444 | 445 | Termination of your rights under this section does not terminate the 446 | licenses of parties who have received copies or rights from you under 447 | this License. If your rights have been terminated and not permanently 448 | reinstated, you do not qualify to receive new licenses for the same 449 | material under section 10. 450 | 451 | 9. Acceptance Not Required for Having Copies. 452 | 453 | You are not required to accept this License in order to receive or 454 | run a copy of the Program. Ancillary propagation of a covered work 455 | occurring solely as a consequence of using peer-to-peer transmission 456 | to receive a copy likewise does not require acceptance. However, 457 | nothing other than this License grants you permission to propagate or 458 | modify any covered work. These actions infringe copyright if you do 459 | not accept this License. Therefore, by modifying or propagating a 460 | covered work, you indicate your acceptance of this License to do so. 461 | 462 | 10. Automatic Licensing of Downstream Recipients. 463 | 464 | Each time you convey a covered work, the recipient automatically 465 | receives a license from the original licensors, to run, modify and 466 | propagate that work, subject to this License. You are not responsible 467 | for enforcing compliance by third parties with this License. 468 | 469 | An "entity transaction" is a transaction transferring control of an 470 | organization, or substantially all assets of one, or subdividing an 471 | organization, or merging organizations. If propagation of a covered 472 | work results from an entity transaction, each party to that 473 | transaction who receives a copy of the work also receives whatever 474 | licenses to the work the party's predecessor in interest had or could 475 | give under the previous paragraph, plus a right to possession of the 476 | Corresponding Source of the work from the predecessor in interest, if 477 | the predecessor has it or can get it with reasonable efforts. 478 | 479 | You may not impose any further restrictions on the exercise of the 480 | rights granted or affirmed under this License. For example, you may 481 | not impose a license fee, royalty, or other charge for exercise of 482 | rights granted under this License, and you may not initiate litigation 483 | (including a cross-claim or counterclaim in a lawsuit) alleging that 484 | any patent claim is infringed by making, using, selling, offering for 485 | sale, or importing the Program or any portion of it. 486 | 487 | 11. Patents. 488 | 489 | A "contributor" is a copyright holder who authorizes use under this 490 | License of the Program or a work on which the Program is based. The 491 | work thus licensed is called the contributor's "contributor version". 492 | 493 | A contributor's "essential patent claims" are all patent claims 494 | owned or controlled by the contributor, whether already acquired or 495 | hereafter acquired, that would be infringed by some manner, permitted 496 | by this License, of making, using, or selling its contributor version, 497 | but do not include claims that would be infringed only as a 498 | consequence of further modification of the contributor version. For 499 | purposes of this definition, "control" includes the right to grant 500 | patent sublicenses in a manner consistent with the requirements of 501 | this License. 502 | 503 | Each contributor grants you a non-exclusive, worldwide, royalty-free 504 | patent license under the contributor's essential patent claims, to 505 | make, use, sell, offer for sale, import and otherwise run, modify and 506 | propagate the contents of its contributor version. 507 | 508 | In the following three paragraphs, a "patent license" is any express 509 | agreement or commitment, however denominated, not to enforce a patent 510 | (such as an express permission to practice a patent or covenant not to 511 | sue for patent infringement). To "grant" such a patent license to a 512 | party means to make such an agreement or commitment not to enforce a 513 | patent against the party. 514 | 515 | If you convey a covered work, knowingly relying on a patent license, 516 | and the Corresponding Source of the work is not available for anyone 517 | to copy, free of charge and under the terms of this License, through a 518 | publicly available network server or other readily accessible means, 519 | then you must either (1) cause the Corresponding Source to be so 520 | available, or (2) arrange to deprive yourself of the benefit of the 521 | patent license for this particular work, or (3) arrange, in a manner 522 | consistent with the requirements of this License, to extend the patent 523 | license to downstream recipients. "Knowingly relying" means you have 524 | actual knowledge that, but for the patent license, your conveying the 525 | covered work in a country, or your recipient's use of the covered work 526 | in a country, would infringe one or more identifiable patents in that 527 | country that you have reason to believe are valid. 528 | 529 | If, pursuant to or in connection with a single transaction or 530 | arrangement, you convey, or propagate by procuring conveyance of, a 531 | covered work, and grant a patent license to some of the parties 532 | receiving the covered work authorizing them to use, propagate, modify 533 | or convey a specific copy of the covered work, then the patent license 534 | you grant is automatically extended to all recipients of the covered 535 | work and works based on it. 536 | 537 | A patent license is "discriminatory" if it does not include within 538 | the scope of its coverage, prohibits the exercise of, or is 539 | conditioned on the non-exercise of one or more of the rights that are 540 | specifically granted under this License. You may not convey a covered 541 | work if you are a party to an arrangement with a third party that is 542 | in the business of distributing software, under which you make payment 543 | to the third party based on the extent of your activity of conveying 544 | the work, and under which the third party grants, to any of the 545 | parties who would receive the covered work from you, a discriminatory 546 | patent license (a) in connection with copies of the covered work 547 | conveyed by you (or copies made from those copies), or (b) primarily 548 | for and in connection with specific products or compilations that 549 | contain the covered work, unless you entered into that arrangement, 550 | or that patent license was granted, prior to 28 March 2007. 551 | 552 | Nothing in this License shall be construed as excluding or limiting 553 | any implied license or other defenses to infringement that may 554 | otherwise be available to you under applicable patent law. 555 | 556 | 12. No Surrender of Others' Freedom. 557 | 558 | If conditions are imposed on you (whether by court order, agreement or 559 | otherwise) that contradict the conditions of this License, they do not 560 | excuse you from the conditions of this License. If you cannot convey a 561 | covered work so as to satisfy simultaneously your obligations under this 562 | License and any other pertinent obligations, then as a consequence you may 563 | not convey it at all. For example, if you agree to terms that obligate you 564 | to collect a royalty for further conveying from those to whom you convey 565 | the Program, the only way you could satisfy both those terms and this 566 | License would be to refrain entirely from conveying the Program. 567 | 568 | 13. Use with the GNU Affero General Public License. 569 | 570 | Notwithstanding any other provision of this License, you have 571 | permission to link or combine any covered work with a work licensed 572 | under version 3 of the GNU Affero General Public License into a single 573 | combined work, and to convey the resulting work. The terms of this 574 | License will continue to apply to the part which is the covered work, 575 | but the special requirements of the GNU Affero General Public License, 576 | section 13, concerning interaction through a network will apply to the 577 | combination as such. 578 | 579 | 14. Revised Versions of this License. 580 | 581 | The Free Software Foundation may publish revised and/or new versions of 582 | the GNU General Public License from time to time. Such new versions will 583 | be similar in spirit to the present version, but may differ in detail to 584 | address new problems or concerns. 585 | 586 | Each version is given a distinguishing version number. If the 587 | Program specifies that a certain numbered version of the GNU General 588 | Public License "or any later version" applies to it, you have the 589 | option of following the terms and conditions either of that numbered 590 | version or of any later version published by the Free Software 591 | Foundation. If the Program does not specify a version number of the 592 | GNU General Public License, you may choose any version ever published 593 | by the Free Software Foundation. 594 | 595 | If the Program specifies that a proxy can decide which future 596 | versions of the GNU General Public License can be used, that proxy's 597 | public statement of acceptance of a version permanently authorizes you 598 | to choose that version for the Program. 599 | 600 | Later license versions may give you additional or different 601 | permissions. However, no additional obligations are imposed on any 602 | author or copyright holder as a result of your choosing to follow a 603 | later version. 604 | 605 | 15. Disclaimer of Warranty. 606 | 607 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 608 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 609 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 610 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 611 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 612 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 613 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 614 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 615 | 616 | 16. Limitation of Liability. 617 | 618 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 619 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 620 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 621 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 622 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 623 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 624 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 625 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 626 | SUCH DAMAGES. 627 | 628 | 17. Interpretation of Sections 15 and 16. 629 | 630 | If the disclaimer of warranty and limitation of liability provided 631 | above cannot be given local legal effect according to their terms, 632 | reviewing courts shall apply local law that most closely approximates 633 | an absolute waiver of all civil liability in connection with the 634 | Program, unless a warranty or assumption of liability accompanies a 635 | copy of the Program in return for a fee. 636 | 637 | END OF TERMS AND CONDITIONS 638 | 639 | How to Apply These Terms to Your New Programs 640 | 641 | If you develop a new program, and you want it to be of the greatest 642 | possible use to the public, the best way to achieve this is to make it 643 | free software which everyone can redistribute and change under these terms. 644 | 645 | To do so, attach the following notices to the program. It is safest 646 | to attach them to the start of each source file to most effectively 647 | state the exclusion of warranty; and each file should have at least 648 | the "copyright" line and a pointer to where the full notice is found. 649 | 650 | 651 | Copyright (C) 652 | 653 | This program is free software: you can redistribute it and/or modify 654 | it under the terms of the GNU General Public License as published by 655 | the Free Software Foundation, either version 3 of the License, or 656 | (at your option) any later version. 657 | 658 | This program is distributed in the hope that it will be useful, 659 | but WITHOUT ANY WARRANTY; without even the implied warranty of 660 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 661 | GNU General Public License for more details. 662 | 663 | You should have received a copy of the GNU General Public License 664 | along with this program. If not, see . 665 | 666 | Also add information on how to contact you by electronic and paper mail. 667 | 668 | If the program does terminal interaction, make it output a short 669 | notice like this when it starts in an interactive mode: 670 | 671 | Copyright (C) 672 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 673 | This is free software, and you are welcome to redistribute it 674 | under certain conditions; type `show c' for details. 675 | 676 | The hypothetical commands `show w' and `show c' should show the appropriate 677 | parts of the General Public License. Of course, your program's commands 678 | might be different; for a GUI interface, you would use an "about box". 679 | 680 | You should also get your employer (if you work as a programmer) or school, 681 | if any, to sign a "copyright disclaimer" for the program, if necessary. 682 | For more information on this, and how to apply and follow the GNU GPL, see 683 | . 684 | 685 | The GNU General Public License does not permit incorporating your program 686 | into proprietary programs. If your program is a subroutine library, you 687 | may consider it more useful to permit linking proprietary applications with 688 | the library. If this is what you want to do, use the GNU Lesser General 689 | Public License instead of this License. But first, please read 690 | . 691 | -------------------------------------------------------------------------------- /texture/Texture.ori: -------------------------------------------------------------------------------- 1 | TEX EPS 0.000 texture from mtex 2 | PHI2 23 3 | 1000 0 5.0 4 | 336.92 164.82 149.76 1.000000 0.00 5 | 99.86 94.96 49.25 1.000000 0.00 6 | 117.10 145.45 58.66 1.000000 0.00 7 | 119.94 172.01 252.93 1.000000 0.00 8 | 265.76 97.20 253.89 1.000000 0.00 9 | 357.10 125.02 277.37 1.000000 0.00 10 | 279.45 86.47 356.92 1.000000 0.00 11 | 110.21 82.72 352.35 1.000000 0.00 12 | 339.84 11.21 221.95 1.000000 0.00 13 | 280.66 171.21 231.37 1.000000 0.00 14 | 177.06 99.69 276.59 1.000000 0.00 15 | 265.05 7.12 183.15 1.000000 0.00 16 | 86.47 91.95 269.03 1.000000 0.00 17 | 152.60 105.82 94.49 1.000000 0.00 18 | 239.68 3.63 81.38 1.000000 0.00 19 | 155.66 93.62 0.73 1.000000 0.00 20 | 85.89 81.91 274.81 1.000000 0.00 21 | 165.63 17.23 108.99 1.000000 0.00 22 | 186.32 96.06 184.17 1.000000 0.00 23 | 110.99 39.12 324.09 1.000000 0.00 24 | 345.71 7.87 217.52 1.000000 0.00 25 | 12.26 83.86 95.83 1.000000 0.00 26 | 124.89 4.10 306.29 1.000000 0.00 27 | 193.26 161.03 191.21 1.000000 0.00 28 | 14.72 47.82 264.47 1.000000 0.00 29 | 149.28 68.22 60.66 1.000000 0.00 30 | 258.66 68.46 136.20 1.000000 0.00 31 | 204.24 105.61 161.78 1.000000 0.00 32 | 170.79 60.46 0.64 1.000000 0.00 33 | 184.34 134.45 95.24 1.000000 0.00 34 | 269.15 158.94 226.97 1.000000 0.00 35 | 90.87 84.91 59.91 1.000000 0.00 36 | 92.04 92.86 334.21 1.000000 0.00 37 | 132.10 82.87 269.00 1.000000 0.00 38 | 159.49 10.73 77.04 1.000000 0.00 39 | 183.16 128.75 3.76 1.000000 0.00 40 | 148.33 94.58 14.55 1.000000 0.00 41 | 1.16 103.90 183.17 1.000000 0.00 42 | 180.21 169.65 344.17 1.000000 0.00 43 | 137.64 168.60 70.93 1.000000 0.00 44 | 353.13 13.93 185.81 1.000000 0.00 45 | 35.02 74.29 349.76 1.000000 0.00 46 | 274.48 101.20 193.35 1.000000 0.00 47 | 179.97 159.49 163.25 1.000000 0.00 48 | 276.29 87.48 285.12 1.000000 0.00 49 | 178.03 94.17 267.18 1.000000 0.00 50 | 338.42 79.87 181.35 1.000000 0.00 51 | 34.51 82.63 88.98 1.000000 0.00 52 | 358.34 52.74 81.40 1.000000 0.00 53 | 351.26 167.62 352.03 1.000000 0.00 54 | 181.62 78.85 186.20 1.000000 0.00 55 | 86.94 94.91 160.55 1.000000 0.00 56 | 84.37 88.87 276.18 1.000000 0.00 57 | 91.96 91.64 74.28 1.000000 0.00 58 | 298.33 130.89 100.60 1.000000 0.00 59 | 349.17 121.72 174.38 1.000000 0.00 60 | 91.48 91.43 277.01 1.000000 0.00 61 | 9.96 7.54 268.81 1.000000 0.00 62 | 172.22 103.62 262.13 1.000000 0.00 63 | 79.63 91.53 189.04 1.000000 0.00 64 | 357.56 145.71 269.34 1.000000 0.00 65 | 170.33 171.83 161.37 1.000000 0.00 66 | 2.35 90.56 357.41 1.000000 0.00 67 | 334.34 128.59 27.30 1.000000 0.00 68 | 182.54 94.84 268.99 1.000000 0.00 69 | 85.48 80.36 32.26 1.000000 0.00 70 | 299.50 92.34 356.56 1.000000 0.00 71 | 31.32 178.92 204.06 1.000000 0.00 72 | 89.63 10.02 213.24 1.000000 0.00 73 | 148.54 105.52 241.19 1.000000 0.00 74 | 252.59 103.44 175.11 1.000000 0.00 75 | 71.09 90.68 174.62 1.000000 0.00 76 | 58.12 43.59 243.44 1.000000 0.00 77 | 19.44 119.67 327.22 1.000000 0.00 78 | 172.05 83.27 269.71 1.000000 0.00 79 | 99.08 83.28 251.78 1.000000 0.00 80 | 176.96 68.40 90.51 1.000000 0.00 81 | 355.37 97.16 84.54 1.000000 0.00 82 | 346.35 170.07 265.54 1.000000 0.00 83 | 92.23 87.94 353.14 1.000000 0.00 84 | 191.86 163.94 0.20 1.000000 0.00 85 | 354.03 101.56 177.47 1.000000 0.00 86 | 91.70 79.53 106.75 1.000000 0.00 87 | 353.67 116.07 86.50 1.000000 0.00 88 | 275.69 92.07 187.65 1.000000 0.00 89 | 182.04 172.23 271.47 1.000000 0.00 90 | 358.65 42.39 5.16 1.000000 0.00 91 | 86.00 98.35 264.51 1.000000 0.00 92 | 32.11 66.11 111.35 1.000000 0.00 93 | 171.40 95.60 187.57 1.000000 0.00 94 | 145.86 110.03 123.32 1.000000 0.00 95 | 96.31 93.70 299.92 1.000000 0.00 96 | 165.78 159.32 209.08 1.000000 0.00 97 | 180.22 158.61 27.30 1.000000 0.00 98 | 274.02 90.42 174.12 1.000000 0.00 99 | 44.46 20.54 137.87 1.000000 0.00 100 | 310.06 19.72 139.73 1.000000 0.00 101 | 102.61 96.15 52.17 1.000000 0.00 102 | 176.88 116.58 269.56 1.000000 0.00 103 | 201.93 10.61 270.97 1.000000 0.00 104 | 74.15 159.32 303.48 1.000000 0.00 105 | 194.82 103.28 255.72 1.000000 0.00 106 | 101.15 8.22 156.84 1.000000 0.00 107 | 5.26 105.48 86.34 1.000000 0.00 108 | 34.81 11.36 356.88 1.000000 0.00 109 | 280.60 171.89 282.73 1.000000 0.00 110 | 5.32 78.32 1.23 1.000000 0.00 111 | 83.16 98.61 172.67 1.000000 0.00 112 | 57.69 26.33 89.72 1.000000 0.00 113 | 270.18 81.78 176.60 1.000000 0.00 114 | 15.39 176.26 101.81 1.000000 0.00 115 | 177.31 50.71 185.51 1.000000 0.00 116 | 359.35 34.01 265.17 1.000000 0.00 117 | 1.96 54.07 178.21 1.000000 0.00 118 | 354.82 108.16 349.68 1.000000 0.00 119 | 189.55 117.10 11.35 1.000000 0.00 120 | 4.23 162.02 102.47 1.000000 0.00 121 | 181.56 102.94 99.45 1.000000 0.00 122 | 162.34 172.50 343.05 1.000000 0.00 123 | 356.05 113.02 359.17 1.000000 0.00 124 | 175.39 102.89 100.55 1.000000 0.00 125 | 262.09 83.59 164.47 1.000000 0.00 126 | 126.99 91.12 351.83 1.000000 0.00 127 | 356.83 67.47 268.38 1.000000 0.00 128 | 137.50 129.75 283.59 1.000000 0.00 129 | 81.35 122.99 226.13 1.000000 0.00 130 | 216.79 170.69 37.06 1.000000 0.00 131 | 100.19 89.83 90.43 1.000000 0.00 132 | 335.35 176.00 81.36 1.000000 0.00 133 | 335.94 6.26 107.02 1.000000 0.00 134 | 271.86 92.00 57.08 1.000000 0.00 135 | 172.69 91.10 178.47 1.000000 0.00 136 | 263.02 89.37 320.98 1.000000 0.00 137 | 359.93 62.01 78.25 1.000000 0.00 138 | 298.75 68.76 357.18 1.000000 0.00 139 | 353.62 160.02 355.31 1.000000 0.00 140 | 13.46 162.07 99.04 1.000000 0.00 141 | 358.45 128.87 266.68 1.000000 0.00 142 | 132.67 2.12 50.36 1.000000 0.00 143 | 261.96 2.55 96.29 1.000000 0.00 144 | 37.15 95.20 80.90 1.000000 0.00 145 | 309.78 91.63 178.59 1.000000 0.00 146 | 6.93 24.03 357.02 1.000000 0.00 147 | 82.19 80.79 3.49 1.000000 0.00 148 | 270.66 85.49 234.05 1.000000 0.00 149 | 275.00 77.01 343.45 1.000000 0.00 150 | 359.99 90.09 95.70 1.000000 0.00 151 | 347.95 47.92 279.04 1.000000 0.00 152 | 80.67 173.47 258.19 1.000000 0.00 153 | 134.55 108.27 190.76 1.000000 0.00 154 | 62.71 20.68 245.16 1.000000 0.00 155 | 184.43 159.46 262.54 1.000000 0.00 156 | 1.72 110.63 268.04 1.000000 0.00 157 | 178.51 100.28 263.87 1.000000 0.00 158 | 192.66 165.27 101.93 1.000000 0.00 159 | 320.89 69.36 74.62 1.000000 0.00 160 | 260.55 90.18 275.41 1.000000 0.00 161 | 87.38 91.43 293.16 1.000000 0.00 162 | 344.79 52.60 294.47 1.000000 0.00 163 | 311.33 84.62 251.68 1.000000 0.00 164 | 98.12 88.07 359.70 1.000000 0.00 165 | 170.11 43.59 86.29 1.000000 0.00 166 | 192.80 82.02 261.27 1.000000 0.00 167 | 242.17 147.80 285.29 1.000000 0.00 168 | 356.57 4.20 274.57 1.000000 0.00 169 | 282.20 86.38 240.39 1.000000 0.00 170 | 350.47 72.90 7.50 1.000000 0.00 171 | 254.51 21.24 247.62 1.000000 0.00 172 | 267.03 94.62 178.69 1.000000 0.00 173 | 8.36 98.16 357.26 1.000000 0.00 174 | 339.85 171.00 68.10 1.000000 0.00 175 | 215.60 11.96 70.33 1.000000 0.00 176 | 143.97 113.36 4.66 1.000000 0.00 177 | 228.87 2.38 267.74 1.000000 0.00 178 | 99.44 20.36 74.84 1.000000 0.00 179 | 330.10 61.88 76.28 1.000000 0.00 180 | 331.99 124.72 241.84 1.000000 0.00 181 | 352.51 84.19 176.60 1.000000 0.00 182 | 271.53 84.62 295.31 1.000000 0.00 183 | 200.38 19.79 251.60 1.000000 0.00 184 | 3.29 162.88 271.48 1.000000 0.00 185 | 148.69 10.72 177.93 1.000000 0.00 186 | 115.25 76.94 173.51 1.000000 0.00 187 | 55.46 11.37 156.37 1.000000 0.00 188 | 285.96 88.59 244.80 1.000000 0.00 189 | 168.59 91.83 359.73 1.000000 0.00 190 | 1.89 142.31 267.79 1.000000 0.00 191 | 52.35 86.93 356.56 1.000000 0.00 192 | 353.56 134.15 174.59 1.000000 0.00 193 | 170.82 95.27 2.08 1.000000 0.00 194 | 60.43 96.43 265.04 1.000000 0.00 195 | 44.00 173.14 226.63 1.000000 0.00 196 | 86.88 87.97 258.26 1.000000 0.00 197 | 82.48 153.90 319.76 1.000000 0.00 198 | 210.89 124.33 154.27 1.000000 0.00 199 | 29.60 132.41 111.98 1.000000 0.00 200 | 247.16 92.34 182.21 1.000000 0.00 201 | 351.47 102.93 7.72 1.000000 0.00 202 | 191.24 67.99 272.36 1.000000 0.00 203 | 136.89 101.93 97.77 1.000000 0.00 204 | 106.69 99.77 77.72 1.000000 0.00 205 | 97.81 96.94 173.68 1.000000 0.00 206 | 190.88 93.22 355.29 1.000000 0.00 207 | 1.29 121.64 357.66 1.000000 0.00 208 | 302.28 75.09 69.66 1.000000 0.00 209 | 303.28 111.41 214.30 1.000000 0.00 210 | 96.27 10.74 282.04 1.000000 0.00 211 | 22.79 90.51 263.92 1.000000 0.00 212 | 356.91 107.50 90.54 1.000000 0.00 213 | 15.79 50.74 257.80 1.000000 0.00 214 | 134.13 52.71 268.10 1.000000 0.00 215 | 339.40 51.37 186.86 1.000000 0.00 216 | 350.50 76.89 267.27 1.000000 0.00 217 | 183.94 79.12 181.74 1.000000 0.00 218 | 160.60 69.42 339.98 1.000000 0.00 219 | 58.25 114.25 264.89 1.000000 0.00 220 | 221.55 101.67 352.87 1.000000 0.00 221 | 143.16 94.84 187.96 1.000000 0.00 222 | 126.42 164.60 63.51 1.000000 0.00 223 | 51.66 8.61 216.61 1.000000 0.00 224 | 353.40 82.61 354.81 1.000000 0.00 225 | 187.39 104.39 179.26 1.000000 0.00 226 | 350.97 122.09 176.76 1.000000 0.00 227 | 3.52 11.97 173.88 1.000000 0.00 228 | 82.20 101.89 78.83 1.000000 0.00 229 | 97.58 87.29 137.05 1.000000 0.00 230 | 7.04 87.92 177.28 1.000000 0.00 231 | 185.31 157.87 271.21 1.000000 0.00 232 | 128.39 171.71 211.92 1.000000 0.00 233 | 227.05 80.00 220.93 1.000000 0.00 234 | 3.54 73.44 0.94 1.000000 0.00 235 | 36.55 20.24 57.10 1.000000 0.00 236 | 343.26 133.97 243.24 1.000000 0.00 237 | 172.41 27.84 10.69 1.000000 0.00 238 | 1.68 89.87 354.90 1.000000 0.00 239 | 157.79 168.54 350.07 1.000000 0.00 240 | 117.35 120.50 167.66 1.000000 0.00 241 | 126.58 85.27 9.11 1.000000 0.00 242 | 339.48 15.01 198.95 1.000000 0.00 243 | 33.72 81.18 51.45 1.000000 0.00 244 | 50.79 99.52 264.46 1.000000 0.00 245 | 349.89 162.56 86.87 1.000000 0.00 246 | 274.65 84.57 256.04 1.000000 0.00 247 | 257.98 95.84 154.69 1.000000 0.00 248 | 227.14 95.71 7.22 1.000000 0.00 249 | 260.16 97.68 253.45 1.000000 0.00 250 | 170.50 33.75 183.61 1.000000 0.00 251 | 91.95 98.10 276.32 1.000000 0.00 252 | 14.57 73.99 81.31 1.000000 0.00 253 | 96.57 82.10 116.54 1.000000 0.00 254 | 179.06 91.65 359.63 1.000000 0.00 255 | 358.65 105.13 8.24 1.000000 0.00 256 | 193.80 111.52 178.60 1.000000 0.00 257 | 238.32 97.57 180.17 1.000000 0.00 258 | 10.06 84.80 356.73 1.000000 0.00 259 | 318.91 80.26 179.86 1.000000 0.00 260 | 0.25 38.08 94.76 1.000000 0.00 261 | 107.62 76.45 82.34 1.000000 0.00 262 | 176.42 175.10 186.02 1.000000 0.00 263 | 278.37 97.00 353.17 1.000000 0.00 264 | 39.63 155.54 225.64 1.000000 0.00 265 | 72.52 4.29 56.85 1.000000 0.00 266 | 82.73 177.20 124.81 1.000000 0.00 267 | 256.31 86.47 179.34 1.000000 0.00 268 | 85.17 168.59 143.95 1.000000 0.00 269 | 351.83 129.76 346.24 1.000000 0.00 270 | 101.83 82.72 325.66 1.000000 0.00 271 | 56.50 89.47 11.27 1.000000 0.00 272 | 268.61 90.95 98.80 1.000000 0.00 273 | 272.37 82.41 31.75 1.000000 0.00 274 | 138.64 108.68 1.58 1.000000 0.00 275 | 0.92 65.54 359.71 1.000000 0.00 276 | 269.75 97.66 166.72 1.000000 0.00 277 | 213.68 97.51 178.52 1.000000 0.00 278 | 209.27 80.90 269.68 1.000000 0.00 279 | 144.13 114.15 30.57 1.000000 0.00 280 | 358.21 91.22 267.32 1.000000 0.00 281 | 42.07 12.81 134.64 1.000000 0.00 282 | 332.10 9.40 26.05 1.000000 0.00 283 | 230.01 162.80 45.18 1.000000 0.00 284 | 358.80 98.04 92.96 1.000000 0.00 285 | 347.57 45.33 293.90 1.000000 0.00 286 | 184.49 173.68 108.71 1.000000 0.00 287 | 72.21 168.78 338.55 1.000000 0.00 288 | 324.53 37.82 247.39 1.000000 0.00 289 | 113.92 148.43 159.74 1.000000 0.00 290 | 36.18 86.30 97.78 1.000000 0.00 291 | 20.62 86.83 178.87 1.000000 0.00 292 | 185.22 101.58 117.58 1.000000 0.00 293 | 8.15 93.67 267.59 1.000000 0.00 294 | 93.15 90.15 249.91 1.000000 0.00 295 | 189.86 73.75 271.60 1.000000 0.00 296 | 310.08 100.65 176.13 1.000000 0.00 297 | 11.93 26.24 345.27 1.000000 0.00 298 | 45.04 78.78 262.22 1.000000 0.00 299 | 348.96 96.50 177.66 1.000000 0.00 300 | 324.23 164.54 271.41 1.000000 0.00 301 | 57.42 111.61 81.91 1.000000 0.00 302 | 221.39 76.95 9.59 1.000000 0.00 303 | 355.46 82.81 182.40 1.000000 0.00 304 | 74.12 19.46 244.51 1.000000 0.00 305 | 325.43 98.32 278.21 1.000000 0.00 306 | 87.14 91.82 176.37 1.000000 0.00 307 | 63.55 75.37 43.22 1.000000 0.00 308 | 178.13 98.51 268.54 1.000000 0.00 309 | 17.56 123.83 149.16 1.000000 0.00 310 | 118.30 175.61 119.22 1.000000 0.00 311 | 86.28 91.73 169.91 1.000000 0.00 312 | 79.68 97.87 288.54 1.000000 0.00 313 | 355.89 123.32 180.31 1.000000 0.00 314 | 356.66 83.42 91.46 1.000000 0.00 315 | 334.30 129.49 203.14 1.000000 0.00 316 | 84.17 84.26 242.09 1.000000 0.00 317 | 271.58 86.22 265.09 1.000000 0.00 318 | 157.06 7.29 198.78 1.000000 0.00 319 | 3.73 64.94 265.36 1.000000 0.00 320 | 284.65 171.82 18.37 1.000000 0.00 321 | 199.36 156.72 194.39 1.000000 0.00 322 | 88.19 91.86 356.79 1.000000 0.00 323 | 271.90 94.99 356.35 1.000000 0.00 324 | 186.07 96.95 85.41 1.000000 0.00 325 | 269.51 86.25 108.04 1.000000 0.00 326 | 176.25 30.53 169.58 1.000000 0.00 327 | 270.46 83.07 102.30 1.000000 0.00 328 | 97.58 93.79 87.05 1.000000 0.00 329 | 183.70 117.56 182.84 1.000000 0.00 330 | 147.56 101.14 266.77 1.000000 0.00 331 | 94.39 93.25 93.56 1.000000 0.00 332 | 97.84 96.36 218.59 1.000000 0.00 333 | 258.90 40.66 131.07 1.000000 0.00 334 | 176.95 38.85 354.85 1.000000 0.00 335 | 80.27 102.66 332.18 1.000000 0.00 336 | 269.61 91.22 232.46 1.000000 0.00 337 | 3.58 86.75 355.35 1.000000 0.00 338 | 34.33 176.14 308.29 1.000000 0.00 339 | 131.71 168.47 57.59 1.000000 0.00 340 | 286.59 58.62 289.55 1.000000 0.00 341 | 178.39 88.02 187.30 1.000000 0.00 342 | 193.73 49.60 91.45 1.000000 0.00 343 | 262.53 87.30 120.92 1.000000 0.00 344 | 329.32 5.52 297.79 1.000000 0.00 345 | 95.57 87.41 54.37 1.000000 0.00 346 | 303.38 7.59 53.44 1.000000 0.00 347 | 351.55 89.38 90.34 1.000000 0.00 348 | 170.06 85.57 355.22 1.000000 0.00 349 | 164.14 162.86 354.26 1.000000 0.00 350 | 87.04 91.18 98.10 1.000000 0.00 351 | 92.06 90.61 333.08 1.000000 0.00 352 | 172.77 169.64 81.07 1.000000 0.00 353 | 87.21 86.55 284.41 1.000000 0.00 354 | 60.61 173.40 232.56 1.000000 0.00 355 | 112.95 84.36 352.76 1.000000 0.00 356 | 143.15 96.73 291.85 1.000000 0.00 357 | 189.00 116.48 357.02 1.000000 0.00 358 | 38.39 24.66 147.95 1.000000 0.00 359 | 358.74 34.05 181.89 1.000000 0.00 360 | 234.09 91.30 80.70 1.000000 0.00 361 | 266.61 85.67 283.74 1.000000 0.00 362 | 214.17 11.29 320.51 1.000000 0.00 363 | 277.43 92.95 106.49 1.000000 0.00 364 | 185.73 63.06 259.16 1.000000 0.00 365 | 219.27 173.97 134.14 1.000000 0.00 366 | 344.46 159.82 260.15 1.000000 0.00 367 | 208.93 16.92 145.53 1.000000 0.00 368 | 47.18 107.00 86.03 1.000000 0.00 369 | 25.82 47.27 178.35 1.000000 0.00 370 | 34.39 17.43 324.73 1.000000 0.00 371 | 215.97 106.49 176.27 1.000000 0.00 372 | 190.22 97.11 174.65 1.000000 0.00 373 | 101.07 6.06 40.63 1.000000 0.00 374 | 55.85 73.52 170.10 1.000000 0.00 375 | 242.57 169.00 5.11 1.000000 0.00 376 | 353.69 162.68 262.29 1.000000 0.00 377 | 92.79 88.80 23.63 1.000000 0.00 378 | 68.06 174.74 165.48 1.000000 0.00 379 | 332.21 14.22 20.57 1.000000 0.00 380 | 194.21 9.77 259.84 1.000000 0.00 381 | 231.51 156.99 127.48 1.000000 0.00 382 | 83.83 94.84 296.79 1.000000 0.00 383 | 228.62 87.58 252.07 1.000000 0.00 384 | 278.44 99.62 352.75 1.000000 0.00 385 | 84.25 93.34 88.05 1.000000 0.00 386 | 38.13 89.68 264.09 1.000000 0.00 387 | 181.73 51.63 183.22 1.000000 0.00 388 | 123.23 95.47 179.34 1.000000 0.00 389 | 208.62 168.85 201.74 1.000000 0.00 390 | 20.03 101.48 252.74 1.000000 0.00 391 | 97.80 93.83 93.86 1.000000 0.00 392 | 194.82 136.71 92.47 1.000000 0.00 393 | 1.17 104.90 192.68 1.000000 0.00 394 | 179.18 79.33 2.34 1.000000 0.00 395 | 263.37 86.86 106.86 1.000000 0.00 396 | 268.92 77.93 246.76 1.000000 0.00 397 | 182.87 159.98 358.57 1.000000 0.00 398 | 104.88 7.08 86.18 1.000000 0.00 399 | 312.31 87.83 92.61 1.000000 0.00 400 | 358.79 125.69 81.78 1.000000 0.00 401 | 2.31 91.71 264.70 1.000000 0.00 402 | 203.74 14.55 67.59 1.000000 0.00 403 | 269.97 104.78 173.96 1.000000 0.00 404 | 110.32 85.35 271.82 1.000000 0.00 405 | 175.82 105.06 279.50 1.000000 0.00 406 | 269.24 85.71 218.54 1.000000 0.00 407 | 235.84 58.63 260.47 1.000000 0.00 408 | 19.37 159.83 9.18 1.000000 0.00 409 | 177.32 55.64 263.66 1.000000 0.00 410 | 174.72 139.88 271.28 1.000000 0.00 411 | 266.11 88.83 220.07 1.000000 0.00 412 | 220.85 100.62 5.90 1.000000 0.00 413 | 0.08 86.23 354.71 1.000000 0.00 414 | 178.36 136.14 182.17 1.000000 0.00 415 | 130.15 105.95 281.10 1.000000 0.00 416 | 92.38 81.35 3.73 1.000000 0.00 417 | 264.19 165.32 241.29 1.000000 0.00 418 | 116.38 77.93 9.50 1.000000 0.00 419 | 273.55 89.37 264.70 1.000000 0.00 420 | 257.11 13.51 54.47 1.000000 0.00 421 | 272.12 91.37 294.86 1.000000 0.00 422 | 36.29 147.70 200.99 1.000000 0.00 423 | 95.10 97.93 341.62 1.000000 0.00 424 | 216.93 163.48 299.69 1.000000 0.00 425 | 73.50 143.50 124.86 1.000000 0.00 426 | 142.29 130.50 322.18 1.000000 0.00 427 | 173.04 75.82 173.91 1.000000 0.00 428 | 89.38 83.87 10.09 1.000000 0.00 429 | 107.82 169.85 93.34 1.000000 0.00 430 | 148.76 85.91 85.33 1.000000 0.00 431 | 218.62 174.30 314.29 1.000000 0.00 432 | 356.15 88.43 279.16 1.000000 0.00 433 | 10.11 160.29 188.98 1.000000 0.00 434 | 269.87 74.17 184.28 1.000000 0.00 435 | 268.76 89.22 101.76 1.000000 0.00 436 | 259.83 80.67 161.44 1.000000 0.00 437 | 140.23 89.01 275.61 1.000000 0.00 438 | 100.99 87.92 271.85 1.000000 0.00 439 | 2.30 89.56 90.93 1.000000 0.00 440 | 56.42 7.08 135.72 1.000000 0.00 441 | 87.13 90.30 354.63 1.000000 0.00 442 | 177.45 171.26 3.01 1.000000 0.00 443 | 227.98 114.58 313.06 1.000000 0.00 444 | 350.68 95.37 184.92 1.000000 0.00 445 | 47.06 158.08 99.02 1.000000 0.00 446 | 83.61 86.27 82.46 1.000000 0.00 447 | 41.86 109.57 54.20 1.000000 0.00 448 | 359.12 148.32 274.11 1.000000 0.00 449 | 217.38 108.69 92.95 1.000000 0.00 450 | 93.98 91.31 93.65 1.000000 0.00 451 | 45.11 15.66 135.86 1.000000 0.00 452 | 92.91 93.73 349.64 1.000000 0.00 453 | 356.60 15.27 187.21 1.000000 0.00 454 | 279.01 89.10 166.22 1.000000 0.00 455 | 178.17 73.95 171.40 1.000000 0.00 456 | 136.11 127.78 274.42 1.000000 0.00 457 | 110.76 81.82 49.99 1.000000 0.00 458 | 96.14 86.01 22.83 1.000000 0.00 459 | 356.61 161.83 188.19 1.000000 0.00 460 | 24.06 3.24 150.58 1.000000 0.00 461 | 221.04 87.44 0.13 1.000000 0.00 462 | 10.89 10.94 260.88 1.000000 0.00 463 | 178.41 53.20 87.59 1.000000 0.00 464 | 86.65 142.75 129.50 1.000000 0.00 465 | 306.11 31.69 111.52 1.000000 0.00 466 | 9.63 89.21 89.29 1.000000 0.00 467 | 211.86 102.01 159.11 1.000000 0.00 468 | 155.47 2.03 98.82 1.000000 0.00 469 | 97.15 94.15 3.42 1.000000 0.00 470 | 160.16 22.93 156.55 1.000000 0.00 471 | 184.63 40.00 259.26 1.000000 0.00 472 | 216.83 70.25 173.58 1.000000 0.00 473 | 355.97 16.41 6.03 1.000000 0.00 474 | 13.38 54.31 292.52 1.000000 0.00 475 | 322.71 89.91 250.44 1.000000 0.00 476 | 270.63 6.89 78.58 1.000000 0.00 477 | 151.81 20.42 22.51 1.000000 0.00 478 | 66.13 41.53 56.19 1.000000 0.00 479 | 182.85 92.18 91.06 1.000000 0.00 480 | 359.93 139.92 178.03 1.000000 0.00 481 | 28.88 90.35 278.63 1.000000 0.00 482 | 63.37 178.99 237.95 1.000000 0.00 483 | 19.67 11.84 249.61 1.000000 0.00 484 | 163.47 96.14 355.16 1.000000 0.00 485 | 359.54 68.47 182.64 1.000000 0.00 486 | 134.00 83.34 86.08 1.000000 0.00 487 | 272.34 14.10 290.01 1.000000 0.00 488 | 265.30 87.05 119.11 1.000000 0.00 489 | 270.79 89.21 16.07 1.000000 0.00 490 | 192.97 129.81 29.68 1.000000 0.00 491 | 354.97 86.87 351.93 1.000000 0.00 492 | 269.19 1.06 282.09 1.000000 0.00 493 | 152.26 94.71 268.91 1.000000 0.00 494 | 118.41 98.64 173.10 1.000000 0.00 495 | 233.98 171.58 234.84 1.000000 0.00 496 | 70.67 4.29 52.23 1.000000 0.00 497 | 32.30 7.27 62.95 1.000000 0.00 498 | 0.91 55.60 185.88 1.000000 0.00 499 | 97.62 85.77 166.58 1.000000 0.00 500 | 184.60 60.74 179.83 1.000000 0.00 501 | 337.70 11.83 105.31 1.000000 0.00 502 | 185.95 95.74 178.06 1.000000 0.00 503 | 148.41 21.88 294.22 1.000000 0.00 504 | 26.67 123.00 74.28 1.000000 0.00 505 | 26.41 13.98 154.15 1.000000 0.00 506 | 15.77 92.47 168.70 1.000000 0.00 507 | 356.10 77.33 274.78 1.000000 0.00 508 | 271.59 82.32 305.62 1.000000 0.00 509 | 0.40 127.29 171.74 1.000000 0.00 510 | 358.90 60.89 170.65 1.000000 0.00 511 | 157.27 167.16 251.94 1.000000 0.00 512 | 1.52 104.87 349.39 1.000000 0.00 513 | 88.37 95.47 128.05 1.000000 0.00 514 | 206.42 77.77 188.82 1.000000 0.00 515 | 171.64 106.47 7.58 1.000000 0.00 516 | 78.74 92.65 235.26 1.000000 0.00 517 | 140.84 144.73 17.02 1.000000 0.00 518 | 260.58 6.85 278.31 1.000000 0.00 519 | 167.00 42.01 97.93 1.000000 0.00 520 | 264.30 81.69 109.44 1.000000 0.00 521 | 319.40 77.71 71.38 1.000000 0.00 522 | 7.25 85.04 349.21 1.000000 0.00 523 | 144.48 18.00 204.32 1.000000 0.00 524 | 89.07 80.39 88.43 1.000000 0.00 525 | 167.73 152.01 260.42 1.000000 0.00 526 | 308.20 68.34 330.85 1.000000 0.00 527 | 54.74 87.20 182.34 1.000000 0.00 528 | 339.78 38.10 348.66 1.000000 0.00 529 | 171.11 109.39 1.80 1.000000 0.00 530 | 86.48 88.77 6.50 1.000000 0.00 531 | 264.61 83.89 285.93 1.000000 0.00 532 | 165.26 77.40 346.18 1.000000 0.00 533 | 267.77 89.97 71.63 1.000000 0.00 534 | 29.00 85.80 182.72 1.000000 0.00 535 | 314.71 119.29 353.51 1.000000 0.00 536 | 88.70 176.83 269.04 1.000000 0.00 537 | 180.41 73.31 182.73 1.000000 0.00 538 | 181.82 94.52 2.43 1.000000 0.00 539 | 313.50 156.35 186.64 1.000000 0.00 540 | 54.60 172.09 326.19 1.000000 0.00 541 | 352.85 47.83 266.26 1.000000 0.00 542 | 348.78 91.77 19.50 1.000000 0.00 543 | 91.46 85.51 187.95 1.000000 0.00 544 | 355.41 63.43 283.32 1.000000 0.00 545 | 63.23 91.31 179.60 1.000000 0.00 546 | 92.41 89.23 266.54 1.000000 0.00 547 | 273.15 95.32 110.47 1.000000 0.00 548 | 180.49 71.83 270.95 1.000000 0.00 549 | 341.33 21.82 117.73 1.000000 0.00 550 | 338.59 165.19 332.78 1.000000 0.00 551 | 129.27 172.14 299.95 1.000000 0.00 552 | 177.51 73.40 269.00 1.000000 0.00 553 | 354.53 152.63 81.90 1.000000 0.00 554 | 131.16 90.19 92.76 1.000000 0.00 555 | 351.51 125.14 352.41 1.000000 0.00 556 | 183.24 147.99 178.75 1.000000 0.00 557 | 284.33 81.54 175.24 1.000000 0.00 558 | 282.00 84.96 180.68 1.000000 0.00 559 | 301.45 178.25 41.08 1.000000 0.00 560 | 132.45 67.80 50.76 1.000000 0.00 561 | 357.06 70.40 92.11 1.000000 0.00 562 | 11.95 93.42 87.78 1.000000 0.00 563 | 262.39 93.95 78.91 1.000000 0.00 564 | 197.83 91.37 171.86 1.000000 0.00 565 | 273.74 94.59 130.79 1.000000 0.00 566 | 355.40 87.81 3.08 1.000000 0.00 567 | 230.03 73.26 87.34 1.000000 0.00 568 | 270.15 5.74 181.49 1.000000 0.00 569 | 267.72 89.90 351.74 1.000000 0.00 570 | 197.61 102.76 269.23 1.000000 0.00 571 | 289.74 92.66 185.95 1.000000 0.00 572 | 152.25 169.16 58.90 1.000000 0.00 573 | 101.15 94.18 278.27 1.000000 0.00 574 | 174.53 89.11 270.33 1.000000 0.00 575 | 269.74 87.10 228.61 1.000000 0.00 576 | 263.04 82.91 200.37 1.000000 0.00 577 | 230.29 88.55 182.28 1.000000 0.00 578 | 4.92 51.82 79.30 1.000000 0.00 579 | 161.18 171.98 146.71 1.000000 0.00 580 | 245.20 26.40 235.22 1.000000 0.00 581 | 166.82 135.14 358.00 1.000000 0.00 582 | 301.25 158.73 228.92 1.000000 0.00 583 | 184.03 122.45 267.23 1.000000 0.00 584 | 268.25 94.30 111.89 1.000000 0.00 585 | 238.79 92.99 353.92 1.000000 0.00 586 | 344.18 139.44 269.48 1.000000 0.00 587 | 169.75 143.98 167.35 1.000000 0.00 588 | 269.08 89.66 105.82 1.000000 0.00 589 | 196.69 46.93 299.49 1.000000 0.00 590 | 183.86 105.13 88.09 1.000000 0.00 591 | 180.95 71.45 88.03 1.000000 0.00 592 | 199.66 2.43 338.36 1.000000 0.00 593 | 180.14 86.15 269.15 1.000000 0.00 594 | 239.95 174.58 231.94 1.000000 0.00 595 | 308.58 96.22 278.67 1.000000 0.00 596 | 2.32 40.91 262.83 1.000000 0.00 597 | 337.43 144.45 24.34 1.000000 0.00 598 | 265.68 85.53 41.31 1.000000 0.00 599 | 294.31 71.35 358.94 1.000000 0.00 600 | 178.36 101.67 280.29 1.000000 0.00 601 | 266.10 98.81 190.53 1.000000 0.00 602 | 6.18 69.22 171.37 1.000000 0.00 603 | 346.70 92.19 182.56 1.000000 0.00 604 | 343.94 40.83 97.97 1.000000 0.00 605 | 215.96 24.26 155.68 1.000000 0.00 606 | 99.56 91.70 284.82 1.000000 0.00 607 | 0.80 103.68 174.75 1.000000 0.00 608 | 73.94 88.50 272.68 1.000000 0.00 609 | 284.31 28.86 301.23 1.000000 0.00 610 | 56.10 113.22 256.70 1.000000 0.00 611 | 14.10 166.96 278.12 1.000000 0.00 612 | 81.39 98.50 239.96 1.000000 0.00 613 | 178.41 119.96 95.90 1.000000 0.00 614 | 0.71 68.02 192.45 1.000000 0.00 615 | 348.86 23.32 200.23 1.000000 0.00 616 | 11.46 91.85 261.40 1.000000 0.00 617 | 270.70 81.08 185.72 1.000000 0.00 618 | 64.57 10.49 295.30 1.000000 0.00 619 | 190.61 99.44 92.66 1.000000 0.00 620 | 214.53 101.70 189.36 1.000000 0.00 621 | 264.66 85.62 109.72 1.000000 0.00 622 | 253.79 90.68 273.64 1.000000 0.00 623 | 24.08 100.66 71.40 1.000000 0.00 624 | 320.40 74.71 347.45 1.000000 0.00 625 | 188.14 78.40 190.19 1.000000 0.00 626 | 35.95 74.64 32.76 1.000000 0.00 627 | 268.49 81.97 66.97 1.000000 0.00 628 | 100.50 86.32 151.10 1.000000 0.00 629 | 271.76 98.17 352.78 1.000000 0.00 630 | 124.42 91.43 260.94 1.000000 0.00 631 | 358.28 79.70 89.18 1.000000 0.00 632 | 184.31 97.31 83.15 1.000000 0.00 633 | 62.14 99.92 228.54 1.000000 0.00 634 | 92.29 95.60 99.63 1.000000 0.00 635 | 280.69 87.17 64.33 1.000000 0.00 636 | 192.34 24.07 169.06 1.000000 0.00 637 | 62.98 123.84 111.32 1.000000 0.00 638 | 211.38 82.98 84.58 1.000000 0.00 639 | 197.24 58.65 259.24 1.000000 0.00 640 | 172.19 129.42 275.51 1.000000 0.00 641 | 154.92 2.20 294.88 1.000000 0.00 642 | 132.14 98.66 93.32 1.000000 0.00 643 | 1.75 118.81 2.12 1.000000 0.00 644 | 88.30 87.32 6.04 1.000000 0.00 645 | 178.40 116.05 179.69 1.000000 0.00 646 | 358.58 89.94 354.26 1.000000 0.00 647 | 277.37 92.29 69.03 1.000000 0.00 648 | 118.30 83.08 173.72 1.000000 0.00 649 | 175.41 142.16 294.18 1.000000 0.00 650 | 302.63 171.66 216.62 1.000000 0.00 651 | 270.22 178.58 82.30 1.000000 0.00 652 | 182.73 85.32 177.72 1.000000 0.00 653 | 187.18 94.70 276.71 1.000000 0.00 654 | 3.32 168.65 275.38 1.000000 0.00 655 | 270.25 98.11 153.48 1.000000 0.00 656 | 137.60 76.21 99.65 1.000000 0.00 657 | 262.98 98.91 358.55 1.000000 0.00 658 | 8.55 169.23 16.27 1.000000 0.00 659 | 18.91 8.94 247.40 1.000000 0.00 660 | 104.01 18.68 308.41 1.000000 0.00 661 | 274.21 81.29 264.03 1.000000 0.00 662 | 190.88 48.58 66.81 1.000000 0.00 663 | 322.92 175.59 272.24 1.000000 0.00 664 | 351.40 88.48 260.79 1.000000 0.00 665 | 186.90 90.13 276.10 1.000000 0.00 666 | 90.76 89.81 42.30 1.000000 0.00 667 | 302.40 96.38 182.50 1.000000 0.00 668 | 272.17 20.89 25.83 1.000000 0.00 669 | 92.09 89.67 160.03 1.000000 0.00 670 | 148.25 85.64 197.68 1.000000 0.00 671 | 175.64 98.59 169.02 1.000000 0.00 672 | 42.05 97.40 264.86 1.000000 0.00 673 | 217.08 92.17 84.62 1.000000 0.00 674 | 89.13 166.03 71.82 1.000000 0.00 675 | 188.92 105.03 81.59 1.000000 0.00 676 | 139.11 13.91 119.01 1.000000 0.00 677 | 43.39 82.93 173.19 1.000000 0.00 678 | 356.75 166.64 359.12 1.000000 0.00 679 | 318.35 80.11 344.02 1.000000 0.00 680 | 253.38 84.51 185.61 1.000000 0.00 681 | 1.14 70.10 155.51 1.000000 0.00 682 | 93.70 87.64 326.80 1.000000 0.00 683 | 353.26 76.60 173.50 1.000000 0.00 684 | 347.01 122.84 271.76 1.000000 0.00 685 | 86.93 81.88 354.62 1.000000 0.00 686 | 165.98 87.46 267.59 1.000000 0.00 687 | 246.86 105.11 1.35 1.000000 0.00 688 | 294.46 13.09 161.18 1.000000 0.00 689 | 183.10 111.26 86.21 1.000000 0.00 690 | 10.97 92.50 3.36 1.000000 0.00 691 | 153.21 87.92 355.08 1.000000 0.00 692 | 185.59 134.65 267.09 1.000000 0.00 693 | 201.00 106.45 77.53 1.000000 0.00 694 | 141.71 84.93 257.22 1.000000 0.00 695 | 350.18 101.48 94.33 1.000000 0.00 696 | 88.77 91.17 260.54 1.000000 0.00 697 | 310.13 162.28 357.91 1.000000 0.00 698 | 52.71 95.79 337.09 1.000000 0.00 699 | 93.15 177.44 61.41 1.000000 0.00 700 | 172.08 16.99 128.53 1.000000 0.00 701 | 176.59 26.80 1.92 1.000000 0.00 702 | 196.84 164.01 103.86 1.000000 0.00 703 | 284.01 94.11 269.86 1.000000 0.00 704 | 75.98 36.56 234.11 1.000000 0.00 705 | 53.51 78.90 164.03 1.000000 0.00 706 | 351.18 127.39 72.44 1.000000 0.00 707 | 82.47 89.56 156.63 1.000000 0.00 708 | 1.85 176.86 88.56 1.000000 0.00 709 | 229.78 69.30 307.13 1.000000 0.00 710 | 254.98 170.32 223.08 1.000000 0.00 711 | 357.08 93.34 91.92 1.000000 0.00 712 | 282.35 87.90 161.35 1.000000 0.00 713 | 188.90 26.98 267.22 1.000000 0.00 714 | 226.26 3.30 228.89 1.000000 0.00 715 | 133.35 86.39 87.93 1.000000 0.00 716 | 199.85 158.14 289.58 1.000000 0.00 717 | 7.10 142.00 4.81 1.000000 0.00 718 | 219.04 12.48 323.88 1.000000 0.00 719 | 14.73 36.15 79.85 1.000000 0.00 720 | 19.37 148.69 193.27 1.000000 0.00 721 | 194.78 10.37 356.05 1.000000 0.00 722 | 277.17 87.72 2.06 1.000000 0.00 723 | 233.99 89.68 281.55 1.000000 0.00 724 | 85.78 87.12 75.51 1.000000 0.00 725 | 316.29 97.44 88.27 1.000000 0.00 726 | 131.24 105.41 266.23 1.000000 0.00 727 | 175.22 130.64 357.91 1.000000 0.00 728 | 87.72 85.99 189.97 1.000000 0.00 729 | 60.23 168.50 265.69 1.000000 0.00 730 | 94.72 97.51 275.15 1.000000 0.00 731 | 168.94 105.66 95.75 1.000000 0.00 732 | 89.88 81.57 278.63 1.000000 0.00 733 | 271.43 90.88 281.65 1.000000 0.00 734 | 95.57 89.68 281.38 1.000000 0.00 735 | 173.37 71.14 95.04 1.000000 0.00 736 | 96.64 91.75 348.66 1.000000 0.00 737 | 228.78 177.96 41.15 1.000000 0.00 738 | 157.94 3.35 129.58 1.000000 0.00 739 | 0.02 30.14 281.35 1.000000 0.00 740 | 298.94 108.91 309.91 1.000000 0.00 741 | 313.69 96.47 6.30 1.000000 0.00 742 | 180.62 106.36 177.16 1.000000 0.00 743 | 289.04 83.75 125.78 1.000000 0.00 744 | 239.19 175.53 238.29 1.000000 0.00 745 | 205.24 169.10 19.04 1.000000 0.00 746 | 275.35 113.48 132.21 1.000000 0.00 747 | 172.54 9.97 135.84 1.000000 0.00 748 | 2.81 121.14 5.72 1.000000 0.00 749 | 178.92 100.46 176.08 1.000000 0.00 750 | 97.04 84.28 188.14 1.000000 0.00 751 | 145.29 89.85 2.21 1.000000 0.00 752 | 53.28 77.65 121.30 1.000000 0.00 753 | 124.21 93.08 159.23 1.000000 0.00 754 | 358.74 34.67 208.99 1.000000 0.00 755 | 112.22 91.89 274.84 1.000000 0.00 756 | 183.46 12.98 84.65 1.000000 0.00 757 | 359.16 50.12 356.69 1.000000 0.00 758 | 3.73 102.25 116.27 1.000000 0.00 759 | 168.61 49.36 300.23 1.000000 0.00 760 | 217.44 165.16 218.15 1.000000 0.00 761 | 281.80 79.19 91.90 1.000000 0.00 762 | 97.65 84.84 248.16 1.000000 0.00 763 | 259.54 92.32 358.56 1.000000 0.00 764 | 339.23 87.02 0.61 1.000000 0.00 765 | 319.57 172.63 229.79 1.000000 0.00 766 | 342.52 174.27 179.81 1.000000 0.00 767 | 167.34 39.62 192.32 1.000000 0.00 768 | 357.74 130.71 269.69 1.000000 0.00 769 | 237.71 89.34 100.51 1.000000 0.00 770 | 342.82 138.36 343.49 1.000000 0.00 771 | 75.52 93.73 359.28 1.000000 0.00 772 | 16.18 76.96 96.24 1.000000 0.00 773 | 123.70 99.37 90.76 1.000000 0.00 774 | 46.49 93.87 350.37 1.000000 0.00 775 | 183.07 84.70 95.21 1.000000 0.00 776 | 146.00 4.90 131.04 1.000000 0.00 777 | 2.51 91.04 208.35 1.000000 0.00 778 | 311.72 92.11 81.35 1.000000 0.00 779 | 171.93 55.60 269.60 1.000000 0.00 780 | 270.01 91.89 103.49 1.000000 0.00 781 | 350.61 115.76 258.13 1.000000 0.00 782 | 158.51 14.53 349.71 1.000000 0.00 783 | 266.96 85.48 93.43 1.000000 0.00 784 | 171.67 62.29 103.48 1.000000 0.00 785 | 93.28 93.79 99.23 1.000000 0.00 786 | 66.51 2.57 216.98 1.000000 0.00 787 | 2.32 146.60 358.27 1.000000 0.00 788 | 10.35 80.50 354.49 1.000000 0.00 789 | 157.69 86.32 273.55 1.000000 0.00 790 | 250.12 109.84 155.33 1.000000 0.00 791 | 176.32 69.02 176.80 1.000000 0.00 792 | 223.60 160.08 260.57 1.000000 0.00 793 | 354.56 164.84 266.23 1.000000 0.00 794 | 157.37 138.09 92.22 1.000000 0.00 795 | 97.54 30.53 24.81 1.000000 0.00 796 | 19.59 96.33 76.22 1.000000 0.00 797 | 87.76 89.24 225.59 1.000000 0.00 798 | 300.67 173.41 118.06 1.000000 0.00 799 | 356.80 74.33 269.52 1.000000 0.00 800 | 143.15 158.78 235.40 1.000000 0.00 801 | 292.53 6.86 153.32 1.000000 0.00 802 | 232.60 173.61 43.45 1.000000 0.00 803 | 5.14 113.91 278.85 1.000000 0.00 804 | 189.88 20.19 271.56 1.000000 0.00 805 | 179.31 93.08 89.97 1.000000 0.00 806 | 187.29 79.40 102.67 1.000000 0.00 807 | 110.05 8.51 225.76 1.000000 0.00 808 | 93.72 87.04 32.18 1.000000 0.00 809 | 194.94 141.22 258.68 1.000000 0.00 810 | 357.31 83.56 91.49 1.000000 0.00 811 | 23.33 11.26 342.58 1.000000 0.00 812 | 251.41 81.99 280.14 1.000000 0.00 813 | 240.17 168.69 254.25 1.000000 0.00 814 | 353.53 139.21 180.00 1.000000 0.00 815 | 46.26 89.63 92.94 1.000000 0.00 816 | 77.79 90.82 187.31 1.000000 0.00 817 | 167.71 61.29 164.67 1.000000 0.00 818 | 82.09 92.29 2.06 1.000000 0.00 819 | 107.65 82.08 250.86 1.000000 0.00 820 | 326.82 97.87 200.54 1.000000 0.00 821 | 185.03 1.46 260.88 1.000000 0.00 822 | 81.33 92.39 342.28 1.000000 0.00 823 | 112.12 173.87 107.53 1.000000 0.00 824 | 237.17 176.47 228.86 1.000000 0.00 825 | 191.88 46.37 149.93 1.000000 0.00 826 | 94.88 175.00 224.34 1.000000 0.00 827 | 278.73 96.51 193.31 1.000000 0.00 828 | 187.16 51.14 262.67 1.000000 0.00 829 | 112.08 112.34 7.34 1.000000 0.00 830 | 89.90 86.80 272.00 1.000000 0.00 831 | 98.49 92.72 89.27 1.000000 0.00 832 | 11.20 9.82 344.57 1.000000 0.00 833 | 8.17 81.97 355.76 1.000000 0.00 834 | 184.63 111.12 174.07 1.000000 0.00 835 | 169.20 128.96 356.71 1.000000 0.00 836 | 82.37 98.99 78.12 1.000000 0.00 837 | 345.33 91.80 278.83 1.000000 0.00 838 | 72.69 94.95 169.04 1.000000 0.00 839 | 330.25 95.73 129.46 1.000000 0.00 840 | 107.53 101.07 97.29 1.000000 0.00 841 | 7.04 153.64 93.37 1.000000 0.00 842 | 173.64 160.96 283.87 1.000000 0.00 843 | 232.31 98.32 352.89 1.000000 0.00 844 | 96.77 76.00 90.32 1.000000 0.00 845 | 89.68 90.96 10.33 1.000000 0.00 846 | 123.22 5.53 326.07 1.000000 0.00 847 | 155.65 7.07 296.64 1.000000 0.00 848 | 98.87 93.06 295.19 1.000000 0.00 849 | 271.83 90.19 109.94 1.000000 0.00 850 | 169.49 69.21 98.00 1.000000 0.00 851 | 344.64 87.94 0.93 1.000000 0.00 852 | 82.71 98.74 357.50 1.000000 0.00 853 | 88.33 91.66 267.34 1.000000 0.00 854 | 180.21 72.20 185.18 1.000000 0.00 855 | 88.32 105.16 50.58 1.000000 0.00 856 | 190.93 103.65 183.61 1.000000 0.00 857 | 268.46 96.37 179.85 1.000000 0.00 858 | 279.52 174.18 320.92 1.000000 0.00 859 | 199.77 144.97 51.09 1.000000 0.00 860 | 87.58 92.57 34.40 1.000000 0.00 861 | 124.97 21.30 358.73 1.000000 0.00 862 | 98.58 89.66 266.84 1.000000 0.00 863 | 251.91 82.60 46.15 1.000000 0.00 864 | 272.85 92.51 152.82 1.000000 0.00 865 | 278.08 83.65 273.78 1.000000 0.00 866 | 115.03 139.52 244.28 1.000000 0.00 867 | 228.47 71.11 264.61 1.000000 0.00 868 | 321.71 102.74 170.71 1.000000 0.00 869 | 271.06 93.91 255.83 1.000000 0.00 870 | 173.10 130.84 67.84 1.000000 0.00 871 | 155.32 86.35 346.89 1.000000 0.00 872 | 172.08 40.18 174.30 1.000000 0.00 873 | 102.34 90.57 87.57 1.000000 0.00 874 | 222.71 159.71 1.13 1.000000 0.00 875 | 13.14 171.16 105.77 1.000000 0.00 876 | 217.93 88.61 78.98 1.000000 0.00 877 | 186.08 165.49 177.82 1.000000 0.00 878 | 17.91 39.94 260.93 1.000000 0.00 879 | 15.07 159.11 9.64 1.000000 0.00 880 | 258.48 82.23 106.71 1.000000 0.00 881 | 168.27 94.03 275.26 1.000000 0.00 882 | 227.93 19.83 60.92 1.000000 0.00 883 | 4.89 24.37 87.06 1.000000 0.00 884 | 45.45 97.61 249.07 1.000000 0.00 885 | 174.36 72.55 293.74 1.000000 0.00 886 | 136.82 120.34 220.75 1.000000 0.00 887 | 183.27 133.84 85.67 1.000000 0.00 888 | 167.05 9.93 199.77 1.000000 0.00 889 | 176.92 59.60 359.79 1.000000 0.00 890 | 336.67 77.63 253.85 1.000000 0.00 891 | 274.46 96.21 294.22 1.000000 0.00 892 | 94.38 84.19 129.09 1.000000 0.00 893 | 102.56 82.74 268.30 1.000000 0.00 894 | 135.31 71.78 174.84 1.000000 0.00 895 | 7.76 45.19 2.95 1.000000 0.00 896 | 248.02 4.50 112.20 1.000000 0.00 897 | 278.51 94.14 305.43 1.000000 0.00 898 | 353.99 113.56 92.72 1.000000 0.00 899 | 334.33 53.59 122.27 1.000000 0.00 900 | 105.79 6.89 66.86 1.000000 0.00 901 | 255.81 96.87 88.54 1.000000 0.00 902 | 184.29 165.59 182.27 1.000000 0.00 903 | 266.87 81.73 272.33 1.000000 0.00 904 | 178.94 101.07 190.24 1.000000 0.00 905 | 172.28 101.09 358.94 1.000000 0.00 906 | 8.81 105.91 350.35 1.000000 0.00 907 | 278.47 80.93 79.50 1.000000 0.00 908 | 85.81 81.64 347.83 1.000000 0.00 909 | 186.35 146.32 272.66 1.000000 0.00 910 | 357.57 76.34 186.38 1.000000 0.00 911 | 296.61 176.40 120.28 1.000000 0.00 912 | 266.91 92.16 85.56 1.000000 0.00 913 | 227.12 127.67 152.86 1.000000 0.00 914 | 97.62 90.99 9.19 1.000000 0.00 915 | 277.23 78.94 186.80 1.000000 0.00 916 | 5.57 49.00 179.11 1.000000 0.00 917 | 193.13 30.75 349.18 1.000000 0.00 918 | 75.08 21.95 344.21 1.000000 0.00 919 | 63.72 93.74 189.43 1.000000 0.00 920 | 260.94 83.69 186.89 1.000000 0.00 921 | 277.44 101.70 87.03 1.000000 0.00 922 | 134.44 41.26 163.39 1.000000 0.00 923 | 53.15 175.46 45.28 1.000000 0.00 924 | 173.68 130.41 263.64 1.000000 0.00 925 | 119.82 115.90 10.97 1.000000 0.00 926 | 10.22 69.12 4.92 1.000000 0.00 927 | 183.98 82.57 95.50 1.000000 0.00 928 | 11.63 87.50 263.64 1.000000 0.00 929 | 34.73 136.36 208.05 1.000000 0.00 930 | 116.03 5.56 89.22 1.000000 0.00 931 | 108.74 31.86 303.29 1.000000 0.00 932 | 177.89 88.25 357.12 1.000000 0.00 933 | 336.57 51.22 27.15 1.000000 0.00 934 | 352.18 120.65 254.42 1.000000 0.00 935 | 152.77 96.21 98.45 1.000000 0.00 936 | 313.86 97.54 108.31 1.000000 0.00 937 | 98.53 94.84 265.47 1.000000 0.00 938 | 356.66 83.97 266.99 1.000000 0.00 939 | 105.56 89.48 303.61 1.000000 0.00 940 | 124.38 114.16 103.21 1.000000 0.00 941 | 356.96 89.67 188.93 1.000000 0.00 942 | 39.67 163.27 124.67 1.000000 0.00 943 | 95.76 92.56 182.63 1.000000 0.00 944 | 355.25 126.66 261.31 1.000000 0.00 945 | 7.16 117.62 92.42 1.000000 0.00 946 | 77.35 176.52 255.41 1.000000 0.00 947 | 353.26 46.77 356.67 1.000000 0.00 948 | 194.10 86.54 79.38 1.000000 0.00 949 | 352.94 87.07 258.97 1.000000 0.00 950 | 97.76 2.20 264.02 1.000000 0.00 951 | 149.59 5.75 33.30 1.000000 0.00 952 | 192.92 15.25 263.48 1.000000 0.00 953 | 10.54 14.45 341.96 1.000000 0.00 954 | 179.62 44.79 85.99 1.000000 0.00 955 | 243.02 160.20 235.98 1.000000 0.00 956 | 0.05 101.54 181.89 1.000000 0.00 957 | 144.67 77.14 32.83 1.000000 0.00 958 | 149.50 92.11 85.76 1.000000 0.00 959 | 10.83 143.96 271.04 1.000000 0.00 960 | 71.37 87.48 85.20 1.000000 0.00 961 | 58.12 90.50 100.54 1.000000 0.00 962 | 4.23 71.61 278.15 1.000000 0.00 963 | 236.54 138.14 195.41 1.000000 0.00 964 | 81.40 86.63 82.33 1.000000 0.00 965 | 83.06 100.21 159.12 1.000000 0.00 966 | 356.81 132.18 271.72 1.000000 0.00 967 | 307.96 98.63 83.32 1.000000 0.00 968 | 186.21 105.99 356.56 1.000000 0.00 969 | 352.16 162.45 77.61 1.000000 0.00 970 | 7.43 5.52 264.66 1.000000 0.00 971 | 309.77 64.73 56.34 1.000000 0.00 972 | 84.80 101.26 165.42 1.000000 0.00 973 | 183.92 86.12 191.43 1.000000 0.00 974 | 31.91 110.79 39.00 1.000000 0.00 975 | 154.69 93.26 204.49 1.000000 0.00 976 | 268.13 86.99 196.91 1.000000 0.00 977 | 358.10 99.17 357.22 1.000000 0.00 978 | 351.52 103.18 92.86 1.000000 0.00 979 | 215.44 74.86 266.86 1.000000 0.00 980 | 85.40 63.66 34.91 1.000000 0.00 981 | 318.71 91.67 24.50 1.000000 0.00 982 | 9.56 129.15 177.73 1.000000 0.00 983 | 310.25 87.13 270.20 1.000000 0.00 984 | 266.84 80.88 278.90 1.000000 0.00 985 | 133.61 99.26 102.59 1.000000 0.00 986 | 317.96 173.92 322.90 1.000000 0.00 987 | 165.68 92.38 3.64 1.000000 0.00 988 | 317.40 93.21 272.99 1.000000 0.00 989 | 313.58 141.29 163.94 1.000000 0.00 990 | 209.81 177.18 299.74 1.000000 0.00 991 | 356.86 82.90 182.48 1.000000 0.00 992 | 96.22 88.87 349.77 1.000000 0.00 993 | 38.65 17.83 349.73 1.000000 0.00 994 | 176.76 123.14 354.45 1.000000 0.00 995 | 4.66 89.11 270.04 1.000000 0.00 996 | 263.53 84.81 256.67 1.000000 0.00 997 | 312.39 42.19 117.99 1.000000 0.00 998 | 209.01 92.65 85.97 1.000000 0.00 999 | 90.10 89.45 308.16 1.000000 0.00 1000 | 184.27 23.67 177.85 1.000000 0.00 1001 | 167.05 92.41 356.54 1.000000 0.00 1002 | 183.79 62.97 1.44 1.000000 0.00 1003 | 236.23 130.25 112.07 1.000000 0.00 1004 | --------------------------------------------------------------------------------