Rollup interactions.R

This commit is contained in:
2024-08-10 09:54:01 -04:00
parent 9f541115eb
commit db92aea17d
248 changed files with 3197 additions and 4759 deletions

View File

@@ -1,7 +1,5 @@
%% CALLED BY EASYconsole.m %%
% Updated 240724 Bryan C Roessler to improve file operations and portability
%
global projectScansDir global projectScansDir
global projectName
global matFile global matFile
global defImParMat global defImParMat
global printResultsDir global printResultsDir
@@ -27,7 +25,7 @@ end
% MPnum=ImParMat(1); % MPnum=ImParMat(1);
% opt=questdlg('Print Results Only (RES), DB Only (DB), or Both','Results Printout Options','Res','DB','Both','Both'); % opt=questdlg('Print Results Only (RES), DB Only (DB), or Both','Results Printout Options','Res','DB','Both','Both');
opt='Res'; opt='Res';
if ~exist('defImParMat','var') || isempty(defImParMat) % TODO needs better explanation if ~exist('defImParMat','var') || isempty(defImParMat) % TODO needs explanation
load(pointMapsFile); load(pointMapsFile);
end end
destPerMP=ImParMat(2); % TODO this is weird, needs explanation destPerMP=ImParMat(2); % TODO this is weird, needs explanation
@@ -37,7 +35,7 @@ numOfDrgs=length(DM.drug);
numOfMeds=length(DM.media); numOfMeds=length(DM.media);
destPerMP=numOfDrgs; destPerMP=numOfDrgs;
% TODO this should be rewritten or is uncessary, what is this for % TODO this should be rewritten or is unnecessary, what is this for
% Determine the longest set of intensity(tPts) for the Experiment Data Set % Determine the longest set of intensity(tPts) for the Experiment Data Set
maxNumIntens=0; maxNumIntens=0;
for n=1:size(scan,2) for n=1:size(scan,2)
@@ -53,22 +51,12 @@ end
% end % end
% TODO this seems weird % TODO this seems weird
expNm=projectScansDir(max(strfind(projectScansDir,'/'))+1:end);
drivePos=min(strfind(projectScansDir,'/')); drivePos=min(strfind(projectScansDir,'/'));
drive=projectScansDir(1:(drivePos-1)); drive=projectScansDir(1:(drivePos-1));
DBupload=fullfile(drive,'EZdbFiles','DBupLOADfiles'); % DBupload=fullfile(drive,'EZdbFiles','DBupLOADfiles');
% Added to allow backward compatability resultsFilename=fullfile(printResultsDir, 'results_elr.txt');
% Test for CFoutStd as indication of 2018version with r_refined fit code;If DBfilename=fullfile(printResultsDir, 'DbaseELr.txt');
% earlier version with only a standard composite fite, Print results to !!ResultsStd_...txt only
try
scan(1).plate(1).CFoutStd(1,1);
resultsFilename=fullfile(printResultsDir, strcat('!!ResultsELr_',expNm,'.txt'));
DBfilename=fullfile(printResultsDir, strcat('!!DbaseELr_',expNm,'.txt'));
catch
resultsFilename=fullfile(printResultsDir, strcat('!!ResultsStd_',expNm,'.txt'));
DBfilename=fullfile(printResultsDir, strcat('!!DbaseStd_',expNm,'.txt'));
end
if isequal(opt,'Res')||isequal(opt,'Both'),fid=fopen(resultsFilename,'w');end if isequal(opt,'Res')||isequal(opt,'Both'),fid=fopen(resultsFilename,'w');end
if isequal(opt,'DB')||isequal(opt,'Both'),fid2=fopen(DBfilename,'w');end if isequal(opt,'DB')||isequal(opt,'Both'),fid2=fopen(DBfilename,'w');end
@@ -271,7 +259,7 @@ for s=1:size(scan,2)
end end
if isequal(opt,'DB')||isequal(opt,'Both') if isequal(opt,'DB')||isequal(opt,'Both')
fprintf(fid2,'%s\t %d\t %d\t %d\t %d\t %d\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t',expNm,s,p,r,c,n,selcode,drug,conc,media,mod1,conc1,mod2,conc2,orf,gene); fprintf(fid2,'%s\t %d\t %d\t %d\t %d\t %d\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t',projectName,s,p,r,c,n,selcode,drug,conc,media,mod1,conc1,mod2,conc2,orf,gene);
fprintf(fid2, '%.5f\t %.5f\t %.5f\t %.5f\t %.5f\t %.5f\t%.5f\t%.5f\t%.5f\t%.5f\t%.5f\t%.5f',... fprintf(fid2, '%.5f\t %.5f\t %.5f\t %.5f\t %.5f\t %.5f\t%.5f\t%.5f\t%.5f\t%.5f\t%.5f\t%.5f',...
outCmat(n,1),riseTm,outCmat(n,3),outCmat(n,4),... outCmat(n,1),riseTm,outCmat(n,3),outCmat(n,4),...
outCmat(n,5),dbRsq,dbKup,dbKlo,dbrup,dbrlo,dbLlo,dbLup); %\t%.5f\t%.5f\t%.5f\t%.5f outCmat(n,5),dbRsq,dbKup,dbKlo,dbrup,dbrlo,dbLlo,dbLup); %\t%.5f\t%.5f\t%.5f\t%.5f
@@ -361,24 +349,24 @@ if isequal(opt,'Res')||isequal(opt,'Both')
fclose(fid); fclose(fid);
end end
if isequal(opt,'DB')||isequal(opt,'Both') % if isequal(opt,'DB')||isequal(opt,'Both')
fclose(fid2); % fclose(fid2);
try % try
copyfile(DBfilename,DBupload) % copyfile(DBfilename,DBupload)
catch ME % catch ME
fprintf('DB upload failed with error: %s\n', getReport(ME, 'basic')); % fprintf('DB upload failed with error: %s\n', getReport(ME, 'basic'));
rep=sprintf('Failed copyfile to %s - %s', DBupload, rep); % rep=sprintf('Failed copyfile to %s - %s', DBupload, rep);
errordlg(rep); % errordlg(rep);
end % end
end % end
% Print results using the standard method % Print results using the standard method
try try
scan(1).plate(1).CFoutStd(1,1) %Test for 2018 r_refined version scan(1).plate(1).CFoutStd(1,1) %Test for 2018 r_refined version
ln=1; ln=1;
resultsFilename=fullfile(printResultsDir, strcat('!!ResultsStd_',expNm,'.txt')); resultsFilename=fullfile(printResultsDir, 'results_std.txt');
DBfilename=fullfile(printResultsDir, strcat('!!DbaseStd_',expNm,'.txt')); DBfilename=fullfile(printResultsDir, 'DbaseStd.txt');
if isequal(opt,'Res')||isequal(opt,'Both'),fid=fopen(resultsFilename,'w');end if isequal(opt,'Res')||isequal(opt,'Both'),fid=fopen(resultsFilename,'w');end
if isequal(opt,'DB')||isequal(opt,'Both'),fid2=fopen(DBfilename,'w');end %121012 Combo if isequal(opt,'DB')||isequal(opt,'Both'),fid2=fopen(DBfilename,'w');end %121012 Combo
if isequal(opt,'Res')||isequal(opt,'Both') %print Results if isequal(opt,'Res')||isequal(opt,'Both') %print Results
@@ -553,7 +541,7 @@ try
end end
if isequal(opt,'DB')||isequal(opt,'Both') if isequal(opt,'DB')||isequal(opt,'Both')
fprintf(fid2,'%s\t %d\t %d\t %d\t %d\t %d\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t',expNm,s,p,r,c,n,selcode,drug,conc,media,mod1,conc1,mod2,conc2,orf,gene); fprintf(fid2,'%s\t %d\t %d\t %d\t %d\t %d\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t %s\t',projectName,s,p,r,c,n,selcode,drug,conc,media,mod1,conc1,mod2,conc2,orf,gene);
fprintf(fid2, '%.5f\t %.5f\t %.5f\t %.5f\t %.5f\t %.5f\t%.5f\t%.5f\t%.5f\t%.5f\t%.5f\t%.5f',... fprintf(fid2, '%.5f\t %.5f\t %.5f\t %.5f\t %.5f\t %.5f\t%.5f\t%.5f\t%.5f\t%.5f\t%.5f\t%.5f',...
outCmat(n,1),riseTm,outCmat(n,3),outCmat(n,4),... outCmat(n,1),riseTm,outCmat(n,3),outCmat(n,4),...
outCmat(n,5),dbRsq,dbKup,dbKlo,... outCmat(n,5),dbRsq,dbKup,dbKlo,...
@@ -649,20 +637,20 @@ try
fclose(fid); fclose(fid);
end end
if isequal(opt,'DB')||isequal(opt,'Both') % if isequal(opt,'DB')||isequal(opt,'Both')
fclose(fid2); % fclose(fid2);
try % try
copyfile(DBfilename,DBupload) % copyfile(DBfilename,DBupload)
catch ME % catch ME
fsprintf('DB upload failed with error: %s\n', getReport(ME, 'basic')); % fsprintf('DB upload failed with error: %s\n', getReport(ME, 'basic'));
rep=sprintf('Failed copyfile to %s - %s\n', DBupload, rep); % rep=sprintf('Failed copyfile to %s - %s\n', DBupload, rep);
errordlg(rep) % errordlg(rep)
end % end
end % end
msgbox([sprintf('Printing Script complete. Check !!Results sheets in %s for results.', printResultsDir)]) msgbox([sprintf('Printing script complete. Check results sheets in %s for results.', printResultsDir)])
catch ME catch ME
fprintf('Printing Script failed with error: %s\n', getReport(ME, 'basic')); fprintf('Printing script failed with error: %s\n', getReport(ME, 'basic'));
end end

View File

@@ -141,8 +141,7 @@ function varargout = EASYconsole(varargin)
if ~isempty(getenv('MASTER_PLATE_FILE')) if ~isempty(getenv('MASTER_PLATE_FILE'))
masterPlateFile=fullfile(getenv('MASTER_PLATE_FILE')); masterPlateFile=fullfile(getenv('MASTER_PLATE_FILE'));
fprintf('Using drug media file: %s from environment variable MASTER_PLATE_FILE\n', masterPlateFile); fprintf('Using drug media file: %s from environment variable MASTER_PLATE_FILE\n', masterPlateFile);
else else % try to find MasterPlate_ file on our own
% Try to find MasterPlate_ file on our own
mp=fullfile(easyResultsDir, strcat('MasterPlate_', projectName,'.xlsx')); mp=fullfile(easyResultsDir, strcat('MasterPlate_', projectName,'.xlsx'));
if exist(mp, 'file') if exist(mp, 'file')
masterPlateFile=mp; masterPlateFile=mp;
@@ -281,7 +280,7 @@ function NewExpDat_Callback(~, ~, ~)
% Create a new experiment % Create a new experiment
try try
questdlg('\fontsize{20} NAME the file and NAVIGATE to the directory with the image folders.','File Creation','OK', struct('Default','OK','Interpreter','tex')); questdlg('Name the file and navigate to the directory with the image folders.','File Creation','OK', struct('Default','OK','Interpreter','tex'));
[matfile,easyResultsDir]=uiputfile('.mat'); [matfile,easyResultsDir]=uiputfile('.mat');
inputFileName=strrep(inputFile,'.mat',''); inputFileName=strrep(inputFile,'.mat','');

View File

@@ -791,7 +791,7 @@ function [Tmpsbdg2, scanIntens, F_spots, bmtp, optomizedPos, TmpexpScanIntens2,
else else
refBG(1)=refP(1)-floor(0.5*(refP(1)-(refPrR(1)+widthEx))); refBG(1)=refP(1)-floor(0.5*(refP(1)-(refPrR(1)+widthEx)));
end end
refBG(2)=refP(2)-floor(0.5*(refP(2)-(refPrC(2)+widthEx))); % return from lunch fix start here!!!!! refBG(2)=refP(2)-floor(0.5*(refP(2)-(refPrC(2)+widthEx)));
if rem(r,numRows)==0 if rem(r,numRows)==0
refBG(3)=refP(1)+widthEx+ floor(0.5*(plateBotSpace)); refBG(3)=refP(1)+widthEx+ floor(0.5*(plateBotSpace));
else else

View File

@@ -1,5 +1,3 @@
%% CALLED BY EASYconsole.m %%
global SWgrowthArea global SWgrowthArea
global scLst global scLst
global ImParMat global ImParMat
@@ -62,9 +60,9 @@ end
% after each run to allow previous version of EASY to access data made % after each run to allow previous version of EASY to access data made
% by EASY versions after 20_0819. % by EASY versions after 20_0819.
try try
load(fullfile(fotosResultsDir,'Nbdg')); %Modified to load from 'Fotos' 20_0819 load(fullfile(fotosResultsDir,'Nbdg')); % modified to load from 'Fotos' 20_0819
catch catch
load(fullfile(pointMapsResultsDir,'Nbdg')); %Left in to accomodate loads of work before 20_0819 load(fullfile(pointMapsResultsDir,'Nbdg')); % left in to accomodate loads of work before 20_0819
end end
% Load Fotos stored data % Load Fotos stored data
fotosToLoad={'Coordinates', 'BGatTpts', 'anlZones', 'NCFparms'}; fotosToLoad={'Coordinates', 'BGatTpts', 'anlZones', 'NCFparms'};
@@ -211,11 +209,11 @@ end
% Save data in .mat files % Save data in .mat files
save(matFile,'scan'); save(matFile,'scan');
% save((fullfile(easyResultsDir,'PTmats','Nbdg')), 'sbdg'); %legacy location can probably get rid of in time % save((fullfile(easyResultsDir,'PTmats','Nbdg')), 'sbdg'); % legacy location can probably get rid of in time
save((fullfile(fotosResultsDir,'Nbdg')), 'sbdg'); save((fullfile(fotosResultsDir,'Nbdg')), 'sbdg');
save((fullfile(fotosResultsDir,'Coordinates')),'FexpScanSpots') %Saves frames at each tPt save((fullfile(fotosResultsDir,'Coordinates')),'FexpScanSpots') % saves frames at each tPt
save((fullfile(fotosResultsDir,'BGatTpts')),'FexpScanBMtp') save((fullfile(fotosResultsDir,'BGatTpts')),'FexpScanBMtp')
save((fullfile(fotosResultsDir,'anlZones')),'anlZoneRefs')%Saves anl Positions at each tPt save((fullfile(fotosResultsDir,'anlZones')),'anlZoneRefs') % saves anl Positions at each tPt
% Print FitResults % Print FitResults
fileExt='.txt'; fileExt='.txt';

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

View File

@@ -1,384 +0,0 @@
1,70,145,0,0,0,0,0,0,0,0,0,0,0,0
2,70,220,0,0,0,0,0,0,0,0,0,0,0,0
3,70,295,0,0,0,0,0,0,0,0,0,0,0,0
4,70,370,0,0,0,0,0,0,0,0,0,0,0,0
5,70,445,0,0,0,0,0,0,0,0,0,0,0,0
6,70,520,0,0,0,0,0,0,0,0,0,0,0,0
7,70,595,0,0,0,0,0,0,0,0,0,0,0,0
8,70,670,0,0,0,0,0,0,0,0,0,0,0,0
9,70,745,0,0,0,0,0,0,0,0,0,0,0,0
10,70,820,0,0,0,0,0,0,0,0,0,0,0,0
11,70,895,0,0,0,0,0,0,0,0,0,0,0,0
12,70,970,0,0,0,0,0,0,0,0,0,0,0,0
13,70,1045,0,0,0,0,0,0,0,0,0,0,0,0
14,70,1120,0,0,0,0,0,0,0,0,0,0,0,0
15,70,1195,0,0,0,0,0,0,0,0,0,0,0,0
16,70,1270,0,0,0,0,0,0,0,0,0,0,0,0
17,70,1345,0,0,0,0,0,0,0,0,0,0,0,0
18,70,1420,0,0,0,0,0,0,0,0,0,0,0,0
19,70,1495,0,0,0,0,0,0,0,0,0,0,0,0
20,70,1570,0,0,0,0,0,0,0,0,0,0,0,0
21,70,1645,0,0,0,0,0,0,0,0,0,0,0,0
22,70,1720,0,0,0,0,0,0,0,0,0,0,0,0
23,70,1795,0,0,0,0,0,0,0,0,0,0,0,0
24,70,1870,0,0,0,0,0,0,0,0,0,0,0,0
25,-6,145,0,0,0,0,0,0,0,0,0,0,0,0
26,-6,220,0,0,0,0,0,0,0,0,0,0,0,0
27,-6,295,0,0,0,0,0,0,0,0,0,0,0,0
28,-6,370,0,0,0,0,0,0,0,0,0,0,0,0
29,-6,445,0,0,0,0,0,0,0,0,0,0,0,0
30,-6,520,0,0,0,0,0,0,0,0,0,0,0,0
31,-6,595,0,0,0,0,0,0,0,0,0,0,0,0
32,-6,670,0,0,0,0,0,0,0,0,0,0,0,0
33,-6,745,0,0,0,0,0,0,0,0,0,0,0,0
34,-6,820,0,0,0,0,0,0,0,0,0,0,0,0
35,-6,895,0,0,0,0,0,0,0,0,0,0,0,0
36,-6,970,0,0,0,0,0,0,0,0,0,0,0,0
37,-6,1045,0,0,0,0,0,0,0,0,0,0,0,0
38,-6,1120,0,0,0,0,0,0,0,0,0,0,0,0
39,-6,1195,0,0,0,0,0,0,0,0,0,0,0,0
40,-6,1270,0,0,0,0,0,0,0,0,0,0,0,0
41,-6,1345,0,0,0,0,0,0,0,0,0,0,0,0
42,-6,1420,0,0,0,0,0,0,0,0,0,0,0,0
43,-6,1495,0,0,0,0,0,0,0,0,0,0,0,0
44,-6,1570,0,0,0,0,0,0,0,0,0,0,0,0
45,-6,1645,0,0,0,0,0,0,0,0,0,0,0,0
46,-6,1720,0,0,0,0,0,0,0,0,0,0,0,0
47,-6,1795,0,0,0,0,0,0,0,0,0,0,0,0
48,-6,1870,0,0,0,0,0,0,0,0,0,0,0,0
49,-82,145,0,0,0,0,0,0,0,0,0,0,0,0
50,-82,220,0,0,0,0,0,0,0,0,0,0,0,0
51,-82,295,0,0,0,0,0,0,0,0,0,0,0,0
52,-82,370,0,0,0,0,0,0,0,0,0,0,0,0
53,-82,445,0,0,0,0,0,0,0,0,0,0,0,0
54,-82,520,0,0,0,0,0,0,0,0,0,0,0,0
55,-82,595,0,0,0,0,0,0,0,0,0,0,0,0
56,-82,670,0,0,0,0,0,0,0,0,0,0,0,0
57,-82,745,0,0,0,0,0,0,0,0,0,0,0,0
58,-82,820,0,0,0,0,0,0,0,0,0,0,0,0
59,-82,895,0,0,0,0,0,0,0,0,0,0,0,0
60,-82,970,0,0,0,0,0,0,0,0,0,0,0,0
61,-82,1045,0,0,0,0,0,0,0,0,0,0,0,0
62,-82,1120,0,0,0,0,0,0,0,0,0,0,0,0
63,-82,1195,0,0,0,0,0,0,0,0,0,0,0,0
64,-82,1270,0,0,0,0,0,0,0,0,0,0,0,0
65,-82,1345,0,0,0,0,0,0,0,0,0,0,0,0
66,-82,1420,0,0,0,0,0,0,0,0,0,0,0,0
67,-82,1495,0,0,0,0,0,0,0,0,0,0,0,0
68,-82,1570,0,0,0,0,0,0,0,0,0,0,0,0
69,-82,1645,0,0,0,0,0,0,0,0,0,0,0,0
70,-82,1720,0,0,0,0,0,0,0,0,0,0,0,0
71,-82,1795,0,0,0,0,0,0,0,0,0,0,0,0
72,-82,1870,0,0,0,0,0,0,0,0,0,0,0,0
73,-158,145,0,0,0,0,0,0,0,0,0,0,0,0
74,-158,220,0,0,0,0,0,0,0,0,0,0,0,0
75,-158,295,0,0,0,0,0,0,0,0,0,0,0,0
76,-158,370,0,0,0,0,0,0,0,0,0,0,0,0
77,-158,445,0,0,0,0,0,0,0,0,0,0,0,0
78,-158,520,0,0,0,0,0,0,0,0,0,0,0,0
79,-158,595,0,0,0,0,0,0,0,0,0,0,0,0
80,-158,670,0,0,0,0,0,0,0,0,0,0,0,0
81,-158,745,0,0,0,0,0,0,0,0,0,0,0,0
82,-158,820,0,0,0,0,0,0,0,0,0,0,0,0
83,-158,895,0,0,0,0,0,0,0,0,0,0,0,0
84,-158,970,0,0,0,0,0,0,0,0,0,0,0,0
85,-158,1045,0,0,0,0,0,0,0,0,0,0,0,0
86,-158,1120,0,0,0,0,0,0,0,0,0,0,0,0
87,-158,1195,0,0,0,0,0,0,0,0,0,0,0,0
88,-158,1270,0,0,0,0,0,0,0,0,0,0,0,0
89,-158,1345,0,0,0,0,0,0,0,0,0,0,0,0
90,-158,1420,0,0,0,0,0,0,0,0,0,0,0,0
91,-158,1495,0,0,0,0,0,0,0,0,0,0,0,0
92,-158,1570,0,0,0,0,0,0,0,0,0,0,0,0
93,-158,1645,0,0,0,0,0,0,0,0,0,0,0,0
94,-158,1720,0,0,0,0,0,0,0,0,0,0,0,0
95,-158,1795,0,0,0,0,0,0,0,0,0,0,0,0
96,-158,1870,0,0,0,0,0,0,0,0,0,0,0,0
97,-234,145,0,0,0,0,0,0,0,0,0,0,0,0
98,-234,220,0,0,0,0,0,0,0,0,0,0,0,0
99,-234,295,0,0,0,0,0,0,0,0,0,0,0,0
100,-234,370,0,0,0,0,0,0,0,0,0,0,0,0
101,-234,445,0,0,0,0,0,0,0,0,0,0,0,0
102,-234,520,0,0,0,0,0,0,0,0,0,0,0,0
103,-234,595,0,0,0,0,0,0,0,0,0,0,0,0
104,-234,670,0,0,0,0,0,0,0,0,0,0,0,0
105,-234,745,0,0,0,0,0,0,0,0,0,0,0,0
106,-234,820,0,0,0,0,0,0,0,0,0,0,0,0
107,-234,895,0,0,0,0,0,0,0,0,0,0,0,0
108,-234,970,0,0,0,0,0,0,0,0,0,0,0,0
109,-234,1045,0,0,0,0,0,0,0,0,0,0,0,0
110,-234,1120,0,0,0,0,0,0,0,0,0,0,0,0
111,-234,1195,0,0,0,0,0,0,0,0,0,0,0,0
112,-234,1270,0,0,0,0,0,0,0,0,0,0,0,0
113,-234,1345,0,0,0,0,0,0,0,0,0,0,0,0
114,-234,1420,0,0,0,0,0,0,0,0,0,0,0,0
115,-234,1495,0,0,0,0,0,0,0,0,0,0,0,0
116,-234,1570,0,0,0,0,0,0,0,0,0,0,0,0
117,-234,1645,0,0,0,0,0,0,0,0,0,0,0,0
118,-234,1720,0,0,0,0,0,0,0,0,0,0,0,0
119,-234,1795,0,0,0,0,0,0,0,0,0,0,0,0
120,-234,1870,0,0,0,0,0,0,0,0,0,0,0,0
121,-310,145,0,0,0,0,0,0,0,0,0,0,0,0
122,-310,220,0,0,0,0,0,0,0,0,0,0,0,0
123,-310,295,0,0,0,0,0,0,0,0,0,0,0,0
124,-310,370,0,0,0,0,0,0,0,0,0,0,0,0
125,-310,445,0,0,0,0,0,0,0,0,0,0,0,0
126,-310,520,0,0,0,0,0,0,0,0,0,0,0,0
127,-310,595,0,0,0,0,0,0,0,0,0,0,0,0
128,-310,670,0,0,0,0,0,0,0,0,0,0,0,0
129,-310,745,0,0,0,0,0,0,0,0,0,0,0,0
130,-310,820,0,0,0,0,0,0,0,0,0,0,0,0
131,-310,895,0,0,0,0,0,0,0,0,0,0,0,0
132,-310,970,0,0,0,0,0,0,0,0,0,0,0,0
133,-310,1045,0,0,0,0,0,0,0,0,0,0,0,0
134,-310,1120,0,0,0,0,0,0,0,0,0,0,0,0
135,-310,1195,0,0,0,0,0,0,0,0,0,0,0,0
136,-310,1270,0,0,0,0,0,0,0,0,0,0,0,0
137,-310,1345,0,0,0,0,0,0,0,0,0,0,0,0
138,-310,1420,0,0,0,0,0,0,0,0,0,0,0,0
139,-310,1495,0,0,0,0,0,0,0,0,0,0,0,0
140,-310,1570,0,0,0,0,0,0,0,0,0,0,0,0
141,-310,1645,0,0,0,0,0,0,0,0,0,0,0,0
142,-310,1720,0,0,0,0,0,0,0,0,0,0,0,0
143,-310,1795,0,0,0,0,0,0,0,0,0,0,0,0
144,-310,1870,0,0,0,0,0,0,0,0,0,0,0,0
145,-386,145,0,0,0,0,0,0,0,0,0,0,0,0
146,-386,220,0,0,0,0,0,0,0,0,0,0,0,0
147,-386,295,0,0,0,0,0,0,0,0,0,0,0,0
148,-386,370,0,0,0,0,0,0,0,0,0,0,0,0
149,-386,445,0,0,0,0,0,0,0,0,0,0,0,0
150,-386,520,0,0,0,0,0,0,0,0,0,0,0,0
151,-386,595,0,0,0,0,0,0,0,0,0,0,0,0
152,-386,670,0,0,0,0,0,0,0,0,0,0,0,0
153,-386,745,0,0,0,0,0,0,0,0,0,0,0,0
154,-386,820,0,0,0,0,0,0,0,0,0,0,0,0
155,-386,895,0,0,0,0,0,0,0,0,0,0,0,0
156,-386,970,0,0,0,0,0,0,0,0,0,0,0,0
157,-386,1045,0,0,0,0,0,0,0,0,0,0,0,0
158,-386,1120,0,0,0,0,0,0,0,0,0,0,0,0
159,-386,1195,0,0,0,0,0,0,0,0,0,0,0,0
160,-386,1270,0,0,0,0,0,0,0,0,0,0,0,0
161,-386,1345,0,0,0,0,0,0,0,0,0,0,0,0
162,-386,1420,0,0,0,0,0,0,0,0,0,0,0,0
163,-386,1495,0,0,0,0,0,0,0,0,0,0,0,0
164,-386,1570,0,0,0,0,0,0,0,0,0,0,0,0
165,-386,1645,0,0,0,0,0,0,0,0,0,0,0,0
166,-386,1720,0,0,0,0,0,0,0,0,0,0,0,0
167,-386,1795,0,0,0,0,0,0,0,0,0,0,0,0
168,-386,1870,0,0,0,0,0,0,0,0,0,0,0,0
169,-462,145,0,0,0,0,0,0,0,0,0,0,0,0
170,-462,220,0,0,0,0,0,0,0,0,0,0,0,0
171,-462,295,0,0,0,0,0,0,0,0,0,0,0,0
172,-462,370,0,0,0,0,0,0,0,0,0,0,0,0
173,-462,445,0,0,0,0,0,0,0,0,0,0,0,0
174,-462,520,0,0,0,0,0,0,0,0,0,0,0,0
175,-462,595,0,0,0,0,0,0,0,0,0,0,0,0
176,-462,670,0,0,0,0,0,0,0,0,0,0,0,0
177,-462,745,0,0,0,0,0,0,0,0,0,0,0,0
178,-462,820,0,0,0,0,0,0,0,0,0,0,0,0
179,-462,895,0,0,0,0,0,0,0,0,0,0,0,0
180,-462,970,0,0,0,0,0,0,0,0,0,0,0,0
181,-462,1045,0,0,0,0,0,0,0,0,0,0,0,0
182,-462,1120,0,0,0,0,0,0,0,0,0,0,0,0
183,-462,1195,0,0,0,0,0,0,0,0,0,0,0,0
184,-462,1270,0,0,0,0,0,0,0,0,0,0,0,0
185,-462,1345,0,0,0,0,0,0,0,0,0,0,0,0
186,-462,1420,0,0,0,0,0,0,0,0,0,0,0,0
187,-462,1495,0,0,0,0,0,0,0,0,0,0,0,0
188,-462,1570,0,0,0,0,0,0,0,0,0,0,0,0
189,-462,1645,0,0,0,0,0,0,0,0,0,0,0,0
190,-462,1720,0,0,0,0,0,0,0,0,0,0,0,0
191,-462,1795,0,0,0,0,0,0,0,0,0,0,0,0
192,-462,1870,0,0,0,0,0,0,0,0,0,0,0,0
193,-538,145,0,0,0,0,0,0,0,0,0,0,0,0
194,-538,220,0,0,0,0,0,0,0,0,0,0,0,0
195,-538,295,0,0,0,0,0,0,0,0,0,0,0,0
196,-538,370,0,0,0,0,0,0,0,0,0,0,0,0
197,-538,445,0,0,0,0,0,0,0,0,0,0,0,0
198,-538,520,0,0,0,0,0,0,0,0,0,0,0,0
199,-538,595,0,0,0,0,0,0,0,0,0,0,0,0
200,-538,670,0,0,0,0,0,0,0,0,0,0,0,0
201,-538,745,0,0,0,0,0,0,0,0,0,0,0,0
202,-538,820,0,0,0,0,0,0,0,0,0,0,0,0
203,-538,895,0,0,0,0,0,0,0,0,0,0,0,0
204,-538,970,0,0,0,0,0,0,0,0,0,0,0,0
205,-538,1045,0,0,0,0,0,0,0,0,0,0,0,0
206,-538,1120,0,0,0,0,0,0,0,0,0,0,0,0
207,-538,1195,0,0,0,0,0,0,0,0,0,0,0,0
208,-538,1270,0,0,0,0,0,0,0,0,0,0,0,0
209,-538,1345,0,0,0,0,0,0,0,0,0,0,0,0
210,-538,1420,0,0,0,0,0,0,0,0,0,0,0,0
211,-538,1495,0,0,0,0,0,0,0,0,0,0,0,0
212,-538,1570,0,0,0,0,0,0,0,0,0,0,0,0
213,-538,1645,0,0,0,0,0,0,0,0,0,0,0,0
214,-538,1720,0,0,0,0,0,0,0,0,0,0,0,0
215,-538,1795,0,0,0,0,0,0,0,0,0,0,0,0
216,-538,1870,0,0,0,0,0,0,0,0,0,0,0,0
217,-614,145,0,0,0,0,0,0,0,0,0,0,0,0
218,-614,220,0,0,0,0,0,0,0,0,0,0,0,0
219,-614,295,0,0,0,0,0,0,0,0,0,0,0,0
220,-614,370,0,0,0,0,0,0,0,0,0,0,0,0
221,-614,445,0,0,0,0,0,0,0,0,0,0,0,0
222,-614,520,0,0,0,0,0,0,0,0,0,0,0,0
223,-614,595,0,0,0,0,0,0,0,0,0,0,0,0
224,-614,670,0,0,0,0,0,0,0,0,0,0,0,0
225,-614,745,0,0,0,0,0,0,0,0,0,0,0,0
226,-614,820,0,0,0,0,0,0,0,0,0,0,0,0
227,-614,895,0,0,0,0,0,0,0,0,0,0,0,0
228,-614,970,0,0,0,0,0,0,0,0,0,0,0,0
229,-614,1045,0,0,0,0,0,0,0,0,0,0,0,0
230,-614,1120,0,0,0,0,0,0,0,0,0,0,0,0
231,-614,1195,0,0,0,0,0,0,0,0,0,0,0,0
232,-614,1270,0,0,0,0,0,0,0,0,0,0,0,0
233,-614,1345,0,0,0,0,0,0,0,0,0,0,0,0
234,-614,1420,0,0,0,0,0,0,0,0,0,0,0,0
235,-614,1495,0,0,0,0,0,0,0,0,0,0,0,0
236,-614,1570,0,0,0,0,0,0,0,0,0,0,0,0
237,-614,1645,0,0,0,0,0,0,0,0,0,0,0,0
238,-614,1720,0,0,0,0,0,0,0,0,0,0,0,0
239,-614,1795,0,0,0,0,0,0,0,0,0,0,0,0
240,-614,1870,0,0,0,0,0,0,0,0,0,0,0,0
241,-690,145,0,0,0,0,0,0,0,0,0,0,0,0
242,-690,220,0,0,0,0,0,0,0,0,0,0,0,0
243,-690,295,0,0,0,0,0,0,0,0,0,0,0,0
244,-690,370,0,0,0,0,0,0,0,0,0,0,0,0
245,-690,445,0,0,0,0,0,0,0,0,0,0,0,0
246,-690,520,0,0,0,0,0,0,0,0,0,0,0,0
247,-690,595,0,0,0,0,0,0,0,0,0,0,0,0
248,-690,670,0,0,0,0,0,0,0,0,0,0,0,0
249,-690,745,0,0,0,0,0,0,0,0,0,0,0,0
250,-690,820,0,0,0,0,0,0,0,0,0,0,0,0
251,-690,895,0,0,0,0,0,0,0,0,0,0,0,0
252,-690,970,0,0,0,0,0,0,0,0,0,0,0,0
253,-690,1045,0,0,0,0,0,0,0,0,0,0,0,0
254,-690,1120,0,0,0,0,0,0,0,0,0,0,0,0
255,-690,1195,0,0,0,0,0,0,0,0,0,0,0,0
256,-690,1270,0,0,0,0,0,0,0,0,0,0,0,0
257,-690,1345,0,0,0,0,0,0,0,0,0,0,0,0
258,-690,1420,0,0,0,0,0,0,0,0,0,0,0,0
259,-690,1495,0,0,0,0,0,0,0,0,0,0,0,0
260,-690,1570,0,0,0,0,0,0,0,0,0,0,0,0
261,-690,1645,0,0,0,0,0,0,0,0,0,0,0,0
262,-690,1720,0,0,0,0,0,0,0,0,0,0,0,0
263,-690,1795,0,0,0,0,0,0,0,0,0,0,0,0
264,-690,1870,0,0,0,0,0,0,0,0,0,0,0,0
265,-766,145,0,0,0,0,0,0,0,0,0,0,0,0
266,-766,220,0,0,0,0,0,0,0,0,0,0,0,0
267,-766,295,0,0,0,0,0,0,0,0,0,0,0,0
268,-766,370,0,0,0,0,0,0,0,0,0,0,0,0
269,-766,445,0,0,0,0,0,0,0,0,0,0,0,0
270,-766,520,0,0,0,0,0,0,0,0,0,0,0,0
271,-766,595,0,0,0,0,0,0,0,0,0,0,0,0
272,-766,670,0,0,0,0,0,0,0,0,0,0,0,0
273,-766,745,0,0,0,0,0,0,0,0,0,0,0,0
274,-766,820,0,0,0,0,0,0,0,0,0,0,0,0
275,-766,895,0,0,0,0,0,0,0,0,0,0,0,0
276,-766,970,0,0,0,0,0,0,0,0,0,0,0,0
277,-766,1045,0,0,0,0,0,0,0,0,0,0,0,0
278,-766,1120,0,0,0,0,0,0,0,0,0,0,0,0
279,-766,1195,0,0,0,0,0,0,0,0,0,0,0,0
280,-766,1270,0,0,0,0,0,0,0,0,0,0,0,0
281,-766,1345,0,0,0,0,0,0,0,0,0,0,0,0
282,-766,1420,0,0,0,0,0,0,0,0,0,0,0,0
283,-766,1495,0,0,0,0,0,0,0,0,0,0,0,0
284,-766,1570,0,0,0,0,0,0,0,0,0,0,0,0
285,-766,1645,0,0,0,0,0,0,0,0,0,0,0,0
286,-766,1720,0,0,0,0,0,0,0,0,0,0,0,0
287,-766,1795,0,0,0,0,0,0,0,0,0,0,0,0
288,-766,1870,0,0,0,0,0,0,0,0,0,0,0,0
289,-842,145,0,0,0,0,0,0,0,0,0,0,0,0
290,-842,220,0,0,0,0,0,0,0,0,0,0,0,0
291,-842,295,0,0,0,0,0,0,0,0,0,0,0,0
292,-842,370,0,0,0,0,0,0,0,0,0,0,0,0
293,-842,445,0,0,0,0,0,0,0,0,0,0,0,0
294,-842,520,0,0,0,0,0,0,0,0,0,0,0,0
295,-842,595,0,0,0,0,0,0,0,0,0,0,0,0
296,-842,670,0,0,0,0,0,0,0,0,0,0,0,0
297,-842,745,0,0,0,0,0,0,0,0,0,0,0,0
298,-842,820,0,0,0,0,0,0,0,0,0,0,0,0
299,-842,895,0,0,0,0,0,0,0,0,0,0,0,0
300,-842,970,0,0,0,0,0,0,0,0,0,0,0,0
301,-842,1045,0,0,0,0,0,0,0,0,0,0,0,0
302,-842,1120,0,0,0,0,0,0,0,0,0,0,0,0
303,-842,1195,0,0,0,0,0,0,0,0,0,0,0,0
304,-842,1270,0,0,0,0,0,0,0,0,0,0,0,0
305,-842,1345,0,0,0,0,0,0,0,0,0,0,0,0
306,-842,1420,0,0,0,0,0,0,0,0,0,0,0,0
307,-842,1495,0,0,0,0,0,0,0,0,0,0,0,0
308,-842,1570,0,0,0,0,0,0,0,0,0,0,0,0
309,-842,1645,0,0,0,0,0,0,0,0,0,0,0,0
310,-842,1720,0,0,0,0,0,0,0,0,0,0,0,0
311,-842,1795,0,0,0,0,0,0,0,0,0,0,0,0
312,-842,1870,0,0,0,0,0,0,0,0,0,0,0,0
313,-918,145,0,0,0,0,0,0,0,0,0,0,0,0
314,-918,220,0,0,0,0,0,0,0,0,0,0,0,0
315,-918,295,0,0,0,0,0,0,0,0,0,0,0,0
316,-918,370,0,0,0,0,0,0,0,0,0,0,0,0
317,-918,445,0,0,0,0,0,0,0,0,0,0,0,0
318,-918,520,0,0,0,0,0,0,0,0,0,0,0,0
319,-918,595,0,0,0,0,0,0,0,0,0,0,0,0
320,-918,670,0,0,0,0,0,0,0,0,0,0,0,0
321,-918,745,0,0,0,0,0,0,0,0,0,0,0,0
322,-918,820,0,0,0,0,0,0,0,0,0,0,0,0
323,-918,895,0,0,0,0,0,0,0,0,0,0,0,0
324,-918,970,0,0,0,0,0,0,0,0,0,0,0,0
325,-918,1045,0,0,0,0,0,0,0,0,0,0,0,0
326,-918,1120,0,0,0,0,0,0,0,0,0,0,0,0
327,-918,1195,0,0,0,0,0,0,0,0,0,0,0,0
328,-918,1270,0,0,0,0,0,0,0,0,0,0,0,0
329,-918,1345,0,0,0,0,0,0,0,0,0,0,0,0
330,-918,1420,0,0,0,0,0,0,0,0,0,0,0,0
331,-918,1495,0,0,0,0,0,0,0,0,0,0,0,0
332,-918,1570,0,0,0,0,0,0,0,0,0,0,0,0
333,-918,1645,0,0,0,0,0,0,0,0,0,0,0,0
334,-918,1720,0,0,0,0,0,0,0,0,0,0,0,0
335,-918,1795,0,0,0,0,0,0,0,0,0,0,0,0
336,-918,1870,0,0,0,0,0,0,0,0,0,0,0,0
337,-994,145,0,0,0,0,0,0,0,0,0,0,0,0
338,-994,220,0,0,0,0,0,0,0,0,0,0,0,0
339,-994,295,0,0,0,0,0,0,0,0,0,0,0,0
340,-994,370,0,0,0,0,0,0,0,0,0,0,0,0
341,-994,445,0,0,0,0,0,0,0,0,0,0,0,0
342,-994,520,0,0,0,0,0,0,0,0,0,0,0,0
343,-994,595,0,0,0,0,0,0,0,0,0,0,0,0
344,-994,670,0,0,0,0,0,0,0,0,0,0,0,0
345,-994,745,0,0,0,0,0,0,0,0,0,0,0,0
346,-994,820,0,0,0,0,0,0,0,0,0,0,0,0
347,-994,895,0,0,0,0,0,0,0,0,0,0,0,0
348,-994,970,0,0,0,0,0,0,0,0,0,0,0,0
349,-994,1045,0,0,0,0,0,0,0,0,0,0,0,0
350,-994,1120,0,0,0,0,0,0,0,0,0,0,0,0
351,-994,1195,0,0,0,0,0,0,0,0,0,0,0,0
352,-994,1270,0,0,0,0,0,0,0,0,0,0,0,0
353,-994,1345,0,0,0,0,0,0,0,0,0,0,0,0
354,-994,1420,0,0,0,0,0,0,0,0,0,0,0,0
355,-994,1495,0,0,0,0,0,0,0,0,0,0,0,0
356,-994,1570,0,0,0,0,0,0,0,0,0,0,0,0
357,-994,1645,0,0,0,0,0,0,0,0,0,0,0,0
358,-994,1720,0,0,0,0,0,0,0,0,0,0,0,0
359,-994,1795,0,0,0,0,0,0,0,0,0,0,0,0
360,-994,1870,0,0,0,0,0,0,0,0,0,0,0,0
361,-1070,145,0,0,0,0,0,0,0,0,0,0,0,0
362,-1070,220,0,0,0,0,0,0,0,0,0,0,0,0
363,-1070,295,0,0,0,0,0,0,0,0,0,0,0,0
364,-1070,370,0,0,0,0,0,0,0,0,0,0,0,0
365,-1070,445,0,0,0,0,0,0,0,0,0,0,0,0
366,-1070,520,0,0,0,0,0,0,0,0,0,0,0,0
367,-1070,595,0,0,0,0,0,0,0,0,0,0,0,0
368,-1070,670,0,0,0,0,0,0,0,0,0,0,0,0
369,-1070,745,0,0,0,0,0,0,0,0,0,0,0,0
370,-1070,820,0,0,0,0,0,0,0,0,0,0,0,0
371,-1070,895,0,0,0,0,0,0,0,0,0,0,0,0
372,-1070,970,0,0,0,0,0,0,0,0,0,0,0,0
373,-1070,1045,0,0,0,0,0,0,0,0,0,0,0,0
374,-1070,1120,0,0,0,0,0,0,0,0,0,0,0,0
375,-1070,1195,0,0,0,0,0,0,0,0,0,0,0,0
376,-1070,1270,0,0,0,0,0,0,0,0,0,0,0,0
377,-1070,1345,0,0,0,0,0,0,0,0,0,0,0,0
378,-1070,1420,0,0,0,0,0,0,0,0,0,0,0,0
379,-1070,1495,0,0,0,0,0,0,0,0,0,0,0,0
380,-1070,1570,0,0,0,0,0,0,0,0,0,0,0,0
381,-1070,1645,0,0,0,0,0,0,0,0,0,0,0,0
382,-1070,1720,0,0,0,0,0,0,0,0,0,0,0,0
383,-1070,1795,0,0,0,0,0,0,0,0,0,0,0,0
384,-1070,1870,0,0,0,0,0,0,0,0,0,0,0,0

View File

@@ -1 +0,0 @@
7/19/2024 2:47:05 PM

View File

@@ -1,42 +0,0 @@
0000
10871
21740
32590
43456
54325
65174
76041
86892
97740
108591
119439
130308
141158
152025
162894
173744
184591
195460
206308
217175
228025
238872
249723
260571
271415
282260
293104
303948
314792
325636
336480
347350
358200
369052
379921
390789
401656
412503
423372
434220
445068

View File

@@ -1,42 +0,0 @@
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\1.bmp,7/19/2024 2:47:05 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\2.bmp,7/19/2024 5:48:16 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\3.bmp,7/19/2024 8:49:25 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\4.bmp,7/19/2024 11:50:15 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\5.bmp,7/20/2024 2:51:21 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\6.bmp,7/20/2024 5:52:30 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\7.bmp,7/20/2024 8:53:19 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\8.bmp,7/20/2024 11:54:26 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\9.bmp,7/20/2024 2:55:17 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\10.bmp,7/20/2024 5:56:05 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\11.bmp,7/20/2024 8:56:56 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\12.bmp,7/20/2024 11:57:44 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\13.bmp,7/21/2024 2:58:53 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\14.bmp,7/21/2024 5:59:43 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\15.bmp,7/21/2024 9:00:50 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\16.bmp,7/21/2024 12:01:59 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\17.bmp,7/21/2024 3:02:49 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\18.bmp,7/21/2024 6:03:36 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\19.bmp,7/21/2024 9:04:45 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\20.bmp,7/22/2024 12:05:33 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\21.bmp,7/22/2024 3:06:40 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\22.bmp,7/22/2024 6:07:30 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\23.bmp,7/22/2024 9:08:17 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\24.bmp,7/22/2024 12:09:08 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\25.bmp,7/22/2024 3:09:56 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\26.bmp,7/22/2024 6:10:40 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\27.bmp,7/22/2024 9:11:25 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\28.bmp,7/23/2024 12:12:09 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\29.bmp,7/23/2024 3:12:53 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\30.bmp,7/23/2024 6:13:37 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\31.bmp,7/23/2024 9:14:21 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\32.bmp,7/23/2024 12:15:05 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\33.bmp,7/23/2024 3:16:15 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\34.bmp,7/23/2024 6:17:05 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\35.bmp,7/23/2024 9:17:57 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\36.bmp,7/24/2024 12:19:06 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\37.bmp,7/24/2024 3:20:14 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\38.bmp,7/24/2024 6:21:21 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\39.bmp,7/24/2024 9:22:08 AM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\40.bmp,7/24/2024 12:23:17 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\41.bmp,7/24/2024 3:24:05 PM
d:\jobs\24_0719_PDR1CYC8_P6_TC\1\42.bmp,7/24/2024 6:24:53 PM

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

View File

@@ -1,384 +0,0 @@
1,70,145,0,0,0,0,0,0,0,0,0,0,0,0
2,70,220,0,0,0,0,0,0,0,0,0,0,0,0
3,70,295,0,0,0,0,0,0,0,0,0,0,0,0
4,70,370,0,0,0,0,0,0,0,0,0,0,0,0
5,70,445,0,0,0,0,0,0,0,0,0,0,0,0
6,70,520,0,0,0,0,0,0,0,0,0,0,0,0
7,70,595,0,0,0,0,0,0,0,0,0,0,0,0
8,70,670,0,0,0,0,0,0,0,0,0,0,0,0
9,70,745,0,0,0,0,0,0,0,0,0,0,0,0
10,70,820,0,0,0,0,0,0,0,0,0,0,0,0
11,70,895,0,0,0,0,0,0,0,0,0,0,0,0
12,70,970,0,0,0,0,0,0,0,0,0,0,0,0
13,70,1045,0,0,0,0,0,0,0,0,0,0,0,0
14,70,1120,0,0,0,0,0,0,0,0,0,0,0,0
15,70,1195,0,0,0,0,0,0,0,0,0,0,0,0
16,70,1270,0,0,0,0,0,0,0,0,0,0,0,0
17,70,1345,0,0,0,0,0,0,0,0,0,0,0,0
18,70,1420,0,0,0,0,0,0,0,0,0,0,0,0
19,70,1495,0,0,0,0,0,0,0,0,0,0,0,0
20,70,1570,0,0,0,0,0,0,0,0,0,0,0,0
21,70,1645,0,0,0,0,0,0,0,0,0,0,0,0
22,70,1720,0,0,0,0,0,0,0,0,0,0,0,0
23,70,1795,0,0,0,0,0,0,0,0,0,0,0,0
24,70,1870,0,0,0,0,0,0,0,0,0,0,0,0
25,-6,145,0,0,0,0,0,0,0,0,0,0,0,0
26,-6,220,0,0,0,0,0,0,0,0,0,0,0,0
27,-6,295,0,0,0,0,0,0,0,0,0,0,0,0
28,-6,370,0,0,0,0,0,0,0,0,0,0,0,0
29,-6,445,0,0,0,0,0,0,0,0,0,0,0,0
30,-6,520,0,0,0,0,0,0,0,0,0,0,0,0
31,-6,595,0,0,0,0,0,0,0,0,0,0,0,0
32,-6,670,0,0,0,0,0,0,0,0,0,0,0,0
33,-6,745,0,0,0,0,0,0,0,0,0,0,0,0
34,-6,820,0,0,0,0,0,0,0,0,0,0,0,0
35,-6,895,0,0,0,0,0,0,0,0,0,0,0,0
36,-6,970,0,0,0,0,0,0,0,0,0,0,0,0
37,-6,1045,0,0,0,0,0,0,0,0,0,0,0,0
38,-6,1120,0,0,0,0,0,0,0,0,0,0,0,0
39,-6,1195,0,0,0,0,0,0,0,0,0,0,0,0
40,-6,1270,0,0,0,0,0,0,0,0,0,0,0,0
41,-6,1345,0,0,0,0,0,0,0,0,0,0,0,0
42,-6,1420,0,0,0,0,0,0,0,0,0,0,0,0
43,-6,1495,0,0,0,0,0,0,0,0,0,0,0,0
44,-6,1570,0,0,0,0,0,0,0,0,0,0,0,0
45,-6,1645,0,0,0,0,0,0,0,0,0,0,0,0
46,-6,1720,0,0,0,0,0,0,0,0,0,0,0,0
47,-6,1795,0,0,0,0,0,0,0,0,0,0,0,0
48,-6,1870,0,0,0,0,0,0,0,0,0,0,0,0
49,-82,145,0,0,0,0,0,0,0,0,0,0,0,0
50,-82,220,0,0,0,0,0,0,0,0,0,0,0,0
51,-82,295,0,0,0,0,0,0,0,0,0,0,0,0
52,-82,370,0,0,0,0,0,0,0,0,0,0,0,0
53,-82,445,0,0,0,0,0,0,0,0,0,0,0,0
54,-82,520,0,0,0,0,0,0,0,0,0,0,0,0
55,-82,595,0,0,0,0,0,0,0,0,0,0,0,0
56,-82,670,0,0,0,0,0,0,0,0,0,0,0,0
57,-82,745,0,0,0,0,0,0,0,0,0,0,0,0
58,-82,820,0,0,0,0,0,0,0,0,0,0,0,0
59,-82,895,0,0,0,0,0,0,0,0,0,0,0,0
60,-82,970,0,0,0,0,0,0,0,0,0,0,0,0
61,-82,1045,0,0,0,0,0,0,0,0,0,0,0,0
62,-82,1120,0,0,0,0,0,0,0,0,0,0,0,0
63,-82,1195,0,0,0,0,0,0,0,0,0,0,0,0
64,-82,1270,0,0,0,0,0,0,0,0,0,0,0,0
65,-82,1345,0,0,0,0,0,0,0,0,0,0,0,0
66,-82,1420,0,0,0,0,0,0,0,0,0,0,0,0
67,-82,1495,0,0,0,0,0,0,0,0,0,0,0,0
68,-82,1570,0,0,0,0,0,0,0,0,0,0,0,0
69,-82,1645,0,0,0,0,0,0,0,0,0,0,0,0
70,-82,1720,0,0,0,0,0,0,0,0,0,0,0,0
71,-82,1795,0,0,0,0,0,0,0,0,0,0,0,0
72,-82,1870,0,0,0,0,0,0,0,0,0,0,0,0
73,-158,145,0,0,0,0,0,0,0,0,0,0,0,0
74,-158,220,0,0,0,0,0,0,0,0,0,0,0,0
75,-158,295,0,0,0,0,0,0,0,0,0,0,0,0
76,-158,370,0,0,0,0,0,0,0,0,0,0,0,0
77,-158,445,0,0,0,0,0,0,0,0,0,0,0,0
78,-158,520,0,0,0,0,0,0,0,0,0,0,0,0
79,-158,595,0,0,0,0,0,0,0,0,0,0,0,0
80,-158,670,0,0,0,0,0,0,0,0,0,0,0,0
81,-158,745,0,0,0,0,0,0,0,0,0,0,0,0
82,-158,820,0,0,0,0,0,0,0,0,0,0,0,0
83,-158,895,0,0,0,0,0,0,0,0,0,0,0,0
84,-158,970,0,0,0,0,0,0,0,0,0,0,0,0
85,-158,1045,0,0,0,0,0,0,0,0,0,0,0,0
86,-158,1120,0,0,0,0,0,0,0,0,0,0,0,0
87,-158,1195,0,0,0,0,0,0,0,0,0,0,0,0
88,-158,1270,0,0,0,0,0,0,0,0,0,0,0,0
89,-158,1345,0,0,0,0,0,0,0,0,0,0,0,0
90,-158,1420,0,0,0,0,0,0,0,0,0,0,0,0
91,-158,1495,0,0,0,0,0,0,0,0,0,0,0,0
92,-158,1570,0,0,0,0,0,0,0,0,0,0,0,0
93,-158,1645,0,0,0,0,0,0,0,0,0,0,0,0
94,-158,1720,0,0,0,0,0,0,0,0,0,0,0,0
95,-158,1795,0,0,0,0,0,0,0,0,0,0,0,0
96,-158,1870,0,0,0,0,0,0,0,0,0,0,0,0
97,-234,145,0,0,0,0,0,0,0,0,0,0,0,0
98,-234,220,0,0,0,0,0,0,0,0,0,0,0,0
99,-234,295,0,0,0,0,0,0,0,0,0,0,0,0
100,-234,370,0,0,0,0,0,0,0,0,0,0,0,0
101,-234,445,0,0,0,0,0,0,0,0,0,0,0,0
102,-234,520,0,0,0,0,0,0,0,0,0,0,0,0
103,-234,595,0,0,0,0,0,0,0,0,0,0,0,0
104,-234,670,0,0,0,0,0,0,0,0,0,0,0,0
105,-234,745,0,0,0,0,0,0,0,0,0,0,0,0
106,-234,820,0,0,0,0,0,0,0,0,0,0,0,0
107,-234,895,0,0,0,0,0,0,0,0,0,0,0,0
108,-234,970,0,0,0,0,0,0,0,0,0,0,0,0
109,-234,1045,0,0,0,0,0,0,0,0,0,0,0,0
110,-234,1120,0,0,0,0,0,0,0,0,0,0,0,0
111,-234,1195,0,0,0,0,0,0,0,0,0,0,0,0
112,-234,1270,0,0,0,0,0,0,0,0,0,0,0,0
113,-234,1345,0,0,0,0,0,0,0,0,0,0,0,0
114,-234,1420,0,0,0,0,0,0,0,0,0,0,0,0
115,-234,1495,0,0,0,0,0,0,0,0,0,0,0,0
116,-234,1570,0,0,0,0,0,0,0,0,0,0,0,0
117,-234,1645,0,0,0,0,0,0,0,0,0,0,0,0
118,-234,1720,0,0,0,0,0,0,0,0,0,0,0,0
119,-234,1795,0,0,0,0,0,0,0,0,0,0,0,0
120,-234,1870,0,0,0,0,0,0,0,0,0,0,0,0
121,-310,145,0,0,0,0,0,0,0,0,0,0,0,0
122,-310,220,0,0,0,0,0,0,0,0,0,0,0,0
123,-310,295,0,0,0,0,0,0,0,0,0,0,0,0
124,-310,370,0,0,0,0,0,0,0,0,0,0,0,0
125,-310,445,0,0,0,0,0,0,0,0,0,0,0,0
126,-310,520,0,0,0,0,0,0,0,0,0,0,0,0
127,-310,595,0,0,0,0,0,0,0,0,0,0,0,0
128,-310,670,0,0,0,0,0,0,0,0,0,0,0,0
129,-310,745,0,0,0,0,0,0,0,0,0,0,0,0
130,-310,820,0,0,0,0,0,0,0,0,0,0,0,0
131,-310,895,0,0,0,0,0,0,0,0,0,0,0,0
132,-310,970,0,0,0,0,0,0,0,0,0,0,0,0
133,-310,1045,0,0,0,0,0,0,0,0,0,0,0,0
134,-310,1120,0,0,0,0,0,0,0,0,0,0,0,0
135,-310,1195,0,0,0,0,0,0,0,0,0,0,0,0
136,-310,1270,0,0,0,0,0,0,0,0,0,0,0,0
137,-310,1345,0,0,0,0,0,0,0,0,0,0,0,0
138,-310,1420,0,0,0,0,0,0,0,0,0,0,0,0
139,-310,1495,0,0,0,0,0,0,0,0,0,0,0,0
140,-310,1570,0,0,0,0,0,0,0,0,0,0,0,0
141,-310,1645,0,0,0,0,0,0,0,0,0,0,0,0
142,-310,1720,0,0,0,0,0,0,0,0,0,0,0,0
143,-310,1795,0,0,0,0,0,0,0,0,0,0,0,0
144,-310,1870,0,0,0,0,0,0,0,0,0,0,0,0
145,-386,145,0,0,0,0,0,0,0,0,0,0,0,0
146,-386,220,0,0,0,0,0,0,0,0,0,0,0,0
147,-386,295,0,0,0,0,0,0,0,0,0,0,0,0
148,-386,370,0,0,0,0,0,0,0,0,0,0,0,0
149,-386,445,0,0,0,0,0,0,0,0,0,0,0,0
150,-386,520,0,0,0,0,0,0,0,0,0,0,0,0
151,-386,595,0,0,0,0,0,0,0,0,0,0,0,0
152,-386,670,0,0,0,0,0,0,0,0,0,0,0,0
153,-386,745,0,0,0,0,0,0,0,0,0,0,0,0
154,-386,820,0,0,0,0,0,0,0,0,0,0,0,0
155,-386,895,0,0,0,0,0,0,0,0,0,0,0,0
156,-386,970,0,0,0,0,0,0,0,0,0,0,0,0
157,-386,1045,0,0,0,0,0,0,0,0,0,0,0,0
158,-386,1120,0,0,0,0,0,0,0,0,0,0,0,0
159,-386,1195,0,0,0,0,0,0,0,0,0,0,0,0
160,-386,1270,0,0,0,0,0,0,0,0,0,0,0,0
161,-386,1345,0,0,0,0,0,0,0,0,0,0,0,0
162,-386,1420,0,0,0,0,0,0,0,0,0,0,0,0
163,-386,1495,0,0,0,0,0,0,0,0,0,0,0,0
164,-386,1570,0,0,0,0,0,0,0,0,0,0,0,0
165,-386,1645,0,0,0,0,0,0,0,0,0,0,0,0
166,-386,1720,0,0,0,0,0,0,0,0,0,0,0,0
167,-386,1795,0,0,0,0,0,0,0,0,0,0,0,0
168,-386,1870,0,0,0,0,0,0,0,0,0,0,0,0
169,-462,145,0,0,0,0,0,0,0,0,0,0,0,0
170,-462,220,0,0,0,0,0,0,0,0,0,0,0,0
171,-462,295,0,0,0,0,0,0,0,0,0,0,0,0
172,-462,370,0,0,0,0,0,0,0,0,0,0,0,0
173,-462,445,0,0,0,0,0,0,0,0,0,0,0,0
174,-462,520,0,0,0,0,0,0,0,0,0,0,0,0
175,-462,595,0,0,0,0,0,0,0,0,0,0,0,0
176,-462,670,0,0,0,0,0,0,0,0,0,0,0,0
177,-462,745,0,0,0,0,0,0,0,0,0,0,0,0
178,-462,820,0,0,0,0,0,0,0,0,0,0,0,0
179,-462,895,0,0,0,0,0,0,0,0,0,0,0,0
180,-462,970,0,0,0,0,0,0,0,0,0,0,0,0
181,-462,1045,0,0,0,0,0,0,0,0,0,0,0,0
182,-462,1120,0,0,0,0,0,0,0,0,0,0,0,0
183,-462,1195,0,0,0,0,0,0,0,0,0,0,0,0
184,-462,1270,0,0,0,0,0,0,0,0,0,0,0,0
185,-462,1345,0,0,0,0,0,0,0,0,0,0,0,0
186,-462,1420,0,0,0,0,0,0,0,0,0,0,0,0
187,-462,1495,0,0,0,0,0,0,0,0,0,0,0,0
188,-462,1570,0,0,0,0,0,0,0,0,0,0,0,0
189,-462,1645,0,0,0,0,0,0,0,0,0,0,0,0
190,-462,1720,0,0,0,0,0,0,0,0,0,0,0,0
191,-462,1795,0,0,0,0,0,0,0,0,0,0,0,0
192,-462,1870,0,0,0,0,0,0,0,0,0,0,0,0
193,-538,145,0,0,0,0,0,0,0,0,0,0,0,0
194,-538,220,0,0,0,0,0,0,0,0,0,0,0,0
195,-538,295,0,0,0,0,0,0,0,0,0,0,0,0
196,-538,370,0,0,0,0,0,0,0,0,0,0,0,0
197,-538,445,0,0,0,0,0,0,0,0,0,0,0,0
198,-538,520,0,0,0,0,0,0,0,0,0,0,0,0
199,-538,595,0,0,0,0,0,0,0,0,0,0,0,0
200,-538,670,0,0,0,0,0,0,0,0,0,0,0,0
201,-538,745,0,0,0,0,0,0,0,0,0,0,0,0
202,-538,820,0,0,0,0,0,0,0,0,0,0,0,0
203,-538,895,0,0,0,0,0,0,0,0,0,0,0,0
204,-538,970,0,0,0,0,0,0,0,0,0,0,0,0
205,-538,1045,0,0,0,0,0,0,0,0,0,0,0,0
206,-538,1120,0,0,0,0,0,0,0,0,0,0,0,0
207,-538,1195,0,0,0,0,0,0,0,0,0,0,0,0
208,-538,1270,0,0,0,0,0,0,0,0,0,0,0,0
209,-538,1345,0,0,0,0,0,0,0,0,0,0,0,0
210,-538,1420,0,0,0,0,0,0,0,0,0,0,0,0
211,-538,1495,0,0,0,0,0,0,0,0,0,0,0,0
212,-538,1570,0,0,0,0,0,0,0,0,0,0,0,0
213,-538,1645,0,0,0,0,0,0,0,0,0,0,0,0
214,-538,1720,0,0,0,0,0,0,0,0,0,0,0,0
215,-538,1795,0,0,0,0,0,0,0,0,0,0,0,0
216,-538,1870,0,0,0,0,0,0,0,0,0,0,0,0
217,-614,145,0,0,0,0,0,0,0,0,0,0,0,0
218,-614,220,0,0,0,0,0,0,0,0,0,0,0,0
219,-614,295,0,0,0,0,0,0,0,0,0,0,0,0
220,-614,370,0,0,0,0,0,0,0,0,0,0,0,0
221,-614,445,0,0,0,0,0,0,0,0,0,0,0,0
222,-614,520,0,0,0,0,0,0,0,0,0,0,0,0
223,-614,595,0,0,0,0,0,0,0,0,0,0,0,0
224,-614,670,0,0,0,0,0,0,0,0,0,0,0,0
225,-614,745,0,0,0,0,0,0,0,0,0,0,0,0
226,-614,820,0,0,0,0,0,0,0,0,0,0,0,0
227,-614,895,0,0,0,0,0,0,0,0,0,0,0,0
228,-614,970,0,0,0,0,0,0,0,0,0,0,0,0
229,-614,1045,0,0,0,0,0,0,0,0,0,0,0,0
230,-614,1120,0,0,0,0,0,0,0,0,0,0,0,0
231,-614,1195,0,0,0,0,0,0,0,0,0,0,0,0
232,-614,1270,0,0,0,0,0,0,0,0,0,0,0,0
233,-614,1345,0,0,0,0,0,0,0,0,0,0,0,0
234,-614,1420,0,0,0,0,0,0,0,0,0,0,0,0
235,-614,1495,0,0,0,0,0,0,0,0,0,0,0,0
236,-614,1570,0,0,0,0,0,0,0,0,0,0,0,0
237,-614,1645,0,0,0,0,0,0,0,0,0,0,0,0
238,-614,1720,0,0,0,0,0,0,0,0,0,0,0,0
239,-614,1795,0,0,0,0,0,0,0,0,0,0,0,0
240,-614,1870,0,0,0,0,0,0,0,0,0,0,0,0
241,-690,145,0,0,0,0,0,0,0,0,0,0,0,0
242,-690,220,0,0,0,0,0,0,0,0,0,0,0,0
243,-690,295,0,0,0,0,0,0,0,0,0,0,0,0
244,-690,370,0,0,0,0,0,0,0,0,0,0,0,0
245,-690,445,0,0,0,0,0,0,0,0,0,0,0,0
246,-690,520,0,0,0,0,0,0,0,0,0,0,0,0
247,-690,595,0,0,0,0,0,0,0,0,0,0,0,0
248,-690,670,0,0,0,0,0,0,0,0,0,0,0,0
249,-690,745,0,0,0,0,0,0,0,0,0,0,0,0
250,-690,820,0,0,0,0,0,0,0,0,0,0,0,0
251,-690,895,0,0,0,0,0,0,0,0,0,0,0,0
252,-690,970,0,0,0,0,0,0,0,0,0,0,0,0
253,-690,1045,0,0,0,0,0,0,0,0,0,0,0,0
254,-690,1120,0,0,0,0,0,0,0,0,0,0,0,0
255,-690,1195,0,0,0,0,0,0,0,0,0,0,0,0
256,-690,1270,0,0,0,0,0,0,0,0,0,0,0,0
257,-690,1345,0,0,0,0,0,0,0,0,0,0,0,0
258,-690,1420,0,0,0,0,0,0,0,0,0,0,0,0
259,-690,1495,0,0,0,0,0,0,0,0,0,0,0,0
260,-690,1570,0,0,0,0,0,0,0,0,0,0,0,0
261,-690,1645,0,0,0,0,0,0,0,0,0,0,0,0
262,-690,1720,0,0,0,0,0,0,0,0,0,0,0,0
263,-690,1795,0,0,0,0,0,0,0,0,0,0,0,0
264,-690,1870,0,0,0,0,0,0,0,0,0,0,0,0
265,-766,145,0,0,0,0,0,0,0,0,0,0,0,0
266,-766,220,0,0,0,0,0,0,0,0,0,0,0,0
267,-766,295,0,0,0,0,0,0,0,0,0,0,0,0
268,-766,370,0,0,0,0,0,0,0,0,0,0,0,0
269,-766,445,0,0,0,0,0,0,0,0,0,0,0,0
270,-766,520,0,0,0,0,0,0,0,0,0,0,0,0
271,-766,595,0,0,0,0,0,0,0,0,0,0,0,0
272,-766,670,0,0,0,0,0,0,0,0,0,0,0,0
273,-766,745,0,0,0,0,0,0,0,0,0,0,0,0
274,-766,820,0,0,0,0,0,0,0,0,0,0,0,0
275,-766,895,0,0,0,0,0,0,0,0,0,0,0,0
276,-766,970,0,0,0,0,0,0,0,0,0,0,0,0
277,-766,1045,0,0,0,0,0,0,0,0,0,0,0,0
278,-766,1120,0,0,0,0,0,0,0,0,0,0,0,0
279,-766,1195,0,0,0,0,0,0,0,0,0,0,0,0
280,-766,1270,0,0,0,0,0,0,0,0,0,0,0,0
281,-766,1345,0,0,0,0,0,0,0,0,0,0,0,0
282,-766,1420,0,0,0,0,0,0,0,0,0,0,0,0
283,-766,1495,0,0,0,0,0,0,0,0,0,0,0,0
284,-766,1570,0,0,0,0,0,0,0,0,0,0,0,0
285,-766,1645,0,0,0,0,0,0,0,0,0,0,0,0
286,-766,1720,0,0,0,0,0,0,0,0,0,0,0,0
287,-766,1795,0,0,0,0,0,0,0,0,0,0,0,0
288,-766,1870,0,0,0,0,0,0,0,0,0,0,0,0
289,-842,145,0,0,0,0,0,0,0,0,0,0,0,0
290,-842,220,0,0,0,0,0,0,0,0,0,0,0,0
291,-842,295,0,0,0,0,0,0,0,0,0,0,0,0
292,-842,370,0,0,0,0,0,0,0,0,0,0,0,0
293,-842,445,0,0,0,0,0,0,0,0,0,0,0,0
294,-842,520,0,0,0,0,0,0,0,0,0,0,0,0
295,-842,595,0,0,0,0,0,0,0,0,0,0,0,0
296,-842,670,0,0,0,0,0,0,0,0,0,0,0,0
297,-842,745,0,0,0,0,0,0,0,0,0,0,0,0
298,-842,820,0,0,0,0,0,0,0,0,0,0,0,0
299,-842,895,0,0,0,0,0,0,0,0,0,0,0,0
300,-842,970,0,0,0,0,0,0,0,0,0,0,0,0
301,-842,1045,0,0,0,0,0,0,0,0,0,0,0,0
302,-842,1120,0,0,0,0,0,0,0,0,0,0,0,0
303,-842,1195,0,0,0,0,0,0,0,0,0,0,0,0
304,-842,1270,0,0,0,0,0,0,0,0,0,0,0,0
305,-842,1345,0,0,0,0,0,0,0,0,0,0,0,0
306,-842,1420,0,0,0,0,0,0,0,0,0,0,0,0
307,-842,1495,0,0,0,0,0,0,0,0,0,0,0,0
308,-842,1570,0,0,0,0,0,0,0,0,0,0,0,0
309,-842,1645,0,0,0,0,0,0,0,0,0,0,0,0
310,-842,1720,0,0,0,0,0,0,0,0,0,0,0,0
311,-842,1795,0,0,0,0,0,0,0,0,0,0,0,0
312,-842,1870,0,0,0,0,0,0,0,0,0,0,0,0
313,-918,145,0,0,0,0,0,0,0,0,0,0,0,0
314,-918,220,0,0,0,0,0,0,0,0,0,0,0,0
315,-918,295,0,0,0,0,0,0,0,0,0,0,0,0
316,-918,370,0,0,0,0,0,0,0,0,0,0,0,0
317,-918,445,0,0,0,0,0,0,0,0,0,0,0,0
318,-918,520,0,0,0,0,0,0,0,0,0,0,0,0
319,-918,595,0,0,0,0,0,0,0,0,0,0,0,0
320,-918,670,0,0,0,0,0,0,0,0,0,0,0,0
321,-918,745,0,0,0,0,0,0,0,0,0,0,0,0
322,-918,820,0,0,0,0,0,0,0,0,0,0,0,0
323,-918,895,0,0,0,0,0,0,0,0,0,0,0,0
324,-918,970,0,0,0,0,0,0,0,0,0,0,0,0
325,-918,1045,0,0,0,0,0,0,0,0,0,0,0,0
326,-918,1120,0,0,0,0,0,0,0,0,0,0,0,0
327,-918,1195,0,0,0,0,0,0,0,0,0,0,0,0
328,-918,1270,0,0,0,0,0,0,0,0,0,0,0,0
329,-918,1345,0,0,0,0,0,0,0,0,0,0,0,0
330,-918,1420,0,0,0,0,0,0,0,0,0,0,0,0
331,-918,1495,0,0,0,0,0,0,0,0,0,0,0,0
332,-918,1570,0,0,0,0,0,0,0,0,0,0,0,0
333,-918,1645,0,0,0,0,0,0,0,0,0,0,0,0
334,-918,1720,0,0,0,0,0,0,0,0,0,0,0,0
335,-918,1795,0,0,0,0,0,0,0,0,0,0,0,0
336,-918,1870,0,0,0,0,0,0,0,0,0,0,0,0
337,-994,145,0,0,0,0,0,0,0,0,0,0,0,0
338,-994,220,0,0,0,0,0,0,0,0,0,0,0,0
339,-994,295,0,0,0,0,0,0,0,0,0,0,0,0
340,-994,370,0,0,0,0,0,0,0,0,0,0,0,0
341,-994,445,0,0,0,0,0,0,0,0,0,0,0,0
342,-994,520,0,0,0,0,0,0,0,0,0,0,0,0
343,-994,595,0,0,0,0,0,0,0,0,0,0,0,0
344,-994,670,0,0,0,0,0,0,0,0,0,0,0,0
345,-994,745,0,0,0,0,0,0,0,0,0,0,0,0
346,-994,820,0,0,0,0,0,0,0,0,0,0,0,0
347,-994,895,0,0,0,0,0,0,0,0,0,0,0,0
348,-994,970,0,0,0,0,0,0,0,0,0,0,0,0
349,-994,1045,0,0,0,0,0,0,0,0,0,0,0,0
350,-994,1120,0,0,0,0,0,0,0,0,0,0,0,0
351,-994,1195,0,0,0,0,0,0,0,0,0,0,0,0
352,-994,1270,0,0,0,0,0,0,0,0,0,0,0,0
353,-994,1345,0,0,0,0,0,0,0,0,0,0,0,0
354,-994,1420,0,0,0,0,0,0,0,0,0,0,0,0
355,-994,1495,0,0,0,0,0,0,0,0,0,0,0,0
356,-994,1570,0,0,0,0,0,0,0,0,0,0,0,0
357,-994,1645,0,0,0,0,0,0,0,0,0,0,0,0
358,-994,1720,0,0,0,0,0,0,0,0,0,0,0,0
359,-994,1795,0,0,0,0,0,0,0,0,0,0,0,0
360,-994,1870,0,0,0,0,0,0,0,0,0,0,0,0
361,-1070,145,0,0,0,0,0,0,0,0,0,0,0,0
362,-1070,220,0,0,0,0,0,0,0,0,0,0,0,0
363,-1070,295,0,0,0,0,0,0,0,0,0,0,0,0
364,-1070,370,0,0,0,0,0,0,0,0,0,0,0,0
365,-1070,445,0,0,0,0,0,0,0,0,0,0,0,0
366,-1070,520,0,0,0,0,0,0,0,0,0,0,0,0
367,-1070,595,0,0,0,0,0,0,0,0,0,0,0,0
368,-1070,670,0,0,0,0,0,0,0,0,0,0,0,0
369,-1070,745,0,0,0,0,0,0,0,0,0,0,0,0
370,-1070,820,0,0,0,0,0,0,0,0,0,0,0,0
371,-1070,895,0,0,0,0,0,0,0,0,0,0,0,0
372,-1070,970,0,0,0,0,0,0,0,0,0,0,0,0
373,-1070,1045,0,0,0,0,0,0,0,0,0,0,0,0
374,-1070,1120,0,0,0,0,0,0,0,0,0,0,0,0
375,-1070,1195,0,0,0,0,0,0,0,0,0,0,0,0
376,-1070,1270,0,0,0,0,0,0,0,0,0,0,0,0
377,-1070,1345,0,0,0,0,0,0,0,0,0,0,0,0
378,-1070,1420,0,0,0,0,0,0,0,0,0,0,0,0
379,-1070,1495,0,0,0,0,0,0,0,0,0,0,0,0
380,-1070,1570,0,0,0,0,0,0,0,0,0,0,0,0
381,-1070,1645,0,0,0,0,0,0,0,0,0,0,0,0
382,-1070,1720,0,0,0,0,0,0,0,0,0,0,0,0
383,-1070,1795,0,0,0,0,0,0,0,0,0,0,0,0
384,-1070,1870,0,0,0,0,0,0,0,0,0,0,0,0

View File

@@ -1 +0,0 @@
7/19/2024 2:47:54 PM

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