To run this example, do
root > .L htest.C
root > htw()
root > htr1()
root > htr2()
root > htr3()
Author: Rene Brun
This notebook tutorial was automatically generated with ROOTBOOK-izer (Beta) from the macro found in the ROOT repository on Tuesday, January 17, 2017 at 02:43 PM.
A helper function is created:
In [1]:
%%cpp -d
void htw() {
//create a Tree with a few branches of type histogram
//25000 entries are filled in the Tree
//For each entry, the copy of 3 histograms is written
//The data base will contain 75000 histograms.
gBenchmark->Start("hsimple");
TFile f("ht.root","recreate");
auto T = new TTree("T","test");
auto hpx = new TH1F("hpx","This is the px distribution",100,-4,4);
auto hpxpy = new TH2F("hpxpy","py vs px",40,-4,4,40,-4,4);
auto hprof = new TProfile("hprof","Profile of pz versus px",100,-4,4,0,20);
T->Branch("hpx","TH1F",&hpx,32000,0);
T->Branch("hpxpy","TH2F",&hpxpy,32000,0);
T->Branch("hprof","TProfile",&hprof,32000,0);
Float_t px, py, pz;
for (Int_t i = 0; i < 25000; i++) {
if (i%1000 == 0) printf("at entry: %d\n",i);
gRandom->Rannor(px,py);
pz = px*px + py*py;
hpx->Fill(px);
hpxpy->Fill(px,py);
hprof->Fill(px,pz);
T->Fill();
}
T->Print();
f.Write();
gBenchmark->Show("hsimple");
}
A helper function is created:
In [2]:
%%cpp -d
void htr1() {
//connect Tree generated by htw and show histograms for entry 12345
auto f = new TFile("ht.root");
auto T = (TTree*)f->Get("T");
TH1F *hpx = nullptr;
TH2F *hpxpy = nullptr;
TProfile *hprof = nullptr;
T->SetBranchAddress("hpx",&hpx);
T->SetBranchAddress("hpxpy",&hpxpy);
T->SetBranchAddress("hprof",&hprof);
T->GetEntry(12345);
auto c1 = new TCanvas("c1","test",10,10,600,1000);
c1->Divide(1,3);
c1->cd(1);
hpx->Draw();
c1->cd(2);
hpxpy->Draw();
c1->cd(3);
hprof->Draw();
c1->Print("htr1.png");
}
A helper function is created:
In [3]:
%%cpp -d
void htr2() {
//connect Tree generated by htw and show histograms for entry 12345
// a variant of htr1
auto f = new TFile("ht.root");
auto T = (TTree*)f->Get("T");
auto c1 = new TCanvas("c1","test",10,10,600,1000);
c1->Divide(1,3);
c1->cd(1);
T->Draw("hpx.Draw()","","goff",1,12345);
c1->cd(2);
T->Draw("hpxpy.Draw()","","goff",1,12345);
c1->cd(3);
T->Draw("hprof.Draw()","","goff",1,12345);
c1->Print("htr2.png");
}
A helper function is created:
In [4]:
%%cpp -d
void htr3() {
//connect Tree generated by htw
//read all histograms and plot the RMS of hpx versus the Mean of hprof
//for each of the 25000 entries
auto f = new TFile("ht.root");
auto T = (TTree*)f->Get("T");
T->Draw("hpx.GetRMS():hprof.GetMean()");
gPad->Print("htr3.png");
}
In [5]:
htw();
htr1();
htr2();
htr3();
at entry: 0
at entry: 1000
at entry: 2000
at entry: 3000
at entry: 4000
at entry: 5000
at entry: 6000
at entry: 7000
at entry: 8000
at entry: 9000
at entry: 10000
at entry: 11000
at entry: 12000
at entry: 13000
at entry: 14000
at entry: 15000
at entry: 16000
at entry: 17000
at entry: 18000
at entry: 19000
at entry: 20000
at entry: 21000
at entry: 22000
at entry: 23000
at entry: 24000
******************************************************************************
*Tree :T : test *
*Entries : 25000 : Total = 292254026 bytes File Size = 32809354 *
* : : Tree compression factor = 8.63 *
******************************************************************************
*Br 0 :hpx : TH1F *
*Entries : 25000 : Total Size= 24000872 bytes File Size = 1629629 *
*Baskets : 662 : Basket Size= 787968 bytes Compression= 14.22 *
*............................................................................*
*Br 1 :hpxpy : TH2F *
*Entries : 25000 : Total Size= 191521195 bytes File Size = 23982694 *
*Baskets : 5434 : Basket Size= 6291968 bytes Compression= 7.72 *
*............................................................................*
*Br 2 :hprof : TProfile *
*Entries : 25000 : Total Size= 76762953 bytes File Size = 7129708 *
*Baskets : 2176 : Basket Size= 2521088 bytes Compression= 10.41 *
*............................................................................*
hsimple : Real Time = 1.87 seconds Cpu Time = 1.80 seconds
Info in <TCanvas::Print>: png file htr1.png has been created
Warning in <TCanvas::Constructor>: Deleting canvas with same name: c1
Info in <TCanvas::Print>: png file htr2.png has been created
Warning in <TASImage::PutPixel>: Out of range width=584 x=358, height=304 y=931
Warning in <TASImage::PutPixel>: Out of range width=584 x=217, height=304 y=877
Warning in <TASImage::PutPixel>: Out of range width=584 x=289, height=304 y=872
Warning in <TASImage::PutPixel>: Out of range width=584 x=265, height=304 y=877
Warning in <TASImage::PutPixel>: Out of range width=584 x=165, height=304 y=840
Warning in <TASImage::PutPixel>: Out of range width=584 x=142, height=304 y=846
Warning in <TASImage::PutPixel>: Out of range width=584 x=64, height=304 y=823
Warning in <TASImage::PutPixel>: Out of range width=584 x=165, height=304 y=787
Warning in <TASImage::PutPixel>: Out of range width=584 x=229, height=304 y=778
Warning in <TASImage::PutPixel>: Out of range width=584 x=330, height=304 y=745
Warning in <TASImage::PutPixel>: Out of range width=584 x=440, height=304 y=708
Warning in <TASImage::PutPixel>: Out of range width=584 x=405, height=304 y=712
Warning in <TASImage::PutPixel>: Out of range width=584 x=376, height=304 y=717
Warning in <TASImage::PutPixel>: Out of range width=584 x=374, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=407, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=437, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=374, height=304 y=711
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=715
Warning in <TASImage::PutPixel>: Out of range width=584 x=368, height=304 y=719
Warning in <TASImage::PutPixel>: Out of range width=584 x=380, height=304 y=724
Warning in <TASImage::PutPixel>: Out of range width=584 x=378, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=418, height=304 y=721
Warning in <TASImage::PutPixel>: Out of range width=584 x=451, height=304 y=717
Warning in <TASImage::PutPixel>: Out of range width=584 x=459, height=304 y=721
Warning in <TASImage::PutPixel>: Out of range width=584 x=434, height=304 y=720
Warning in <TASImage::PutPixel>: Out of range width=584 x=445, height=304 y=723
Warning in <TASImage::PutPixel>: Out of range width=584 x=464, height=304 y=723
Warning in <TASImage::PutPixel>: Out of range width=584 x=474, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=476, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=471, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=465, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=470, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=474, height=304 y=741
Warning in <TASImage::PutPixel>: Out of range width=584 x=457, height=304 y=740
Warning in <TASImage::PutPixel>: Out of range width=584 x=456, height=304 y=743
Warning in <TASImage::PutPixel>: Out of range width=584 x=480, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=488, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=493, height=304 y=741
Warning in <TASImage::PutPixel>: Out of range width=584 x=482, height=304 y=742
Warning in <TASImage::PutPixel>: Out of range width=584 x=481, height=304 y=744
Warning in <TASImage::PutPixel>: Out of range width=584 x=483, height=304 y=746
Warning in <TASImage::PutPixel>: Out of range width=584 x=472, height=304 y=746
Warning in <TASImage::PutPixel>: Out of range width=584 x=457, height=304 y=745
Warning in <TASImage::PutPixel>: Out of range width=584 x=460, height=304 y=747
Warning in <TASImage::PutPixel>: Out of range width=584 x=453, height=304 y=748
Warning in <TASImage::PutPixel>: Out of range width=584 x=437, height=304 y=746
Warning in <TASImage::PutPixel>: Out of range width=584 x=441, height=304 y=747
Warning in <TASImage::PutPixel>: Out of range width=584 x=451, height=304 y=748
Warning in <TASImage::PutPixel>: Out of range width=584 x=461, height=304 y=747
Warning in <TASImage::PutPixel>: Out of range width=584 x=451, height=304 y=747
Warning in <TASImage::PutPixel>: Out of range width=584 x=453, height=304 y=749
Warning in <TASImage::PutPixel>: Out of range width=584 x=440, height=304 y=747
Warning in <TASImage::PutPixel>: Out of range width=584 x=430, height=304 y=747
Warning in <TASImage::PutPixel>: Out of range width=584 x=443, height=304 y=745
Warning in <TASImage::PutPixel>: Out of range width=584 x=420, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=436, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=448, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=439, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=444, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=440, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=441, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=432, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=417, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=415, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=404, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=403, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=392, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=400, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=404, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=403, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=389, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=401, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=405, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=411, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=402, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=398, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=408, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=399, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=396, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=396, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=405, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=399, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=402, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=397, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=407, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=407, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=406, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=406, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=406, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=399, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=398, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=396, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=388, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=383, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=383, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=376, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=383, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=380, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=376, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=379, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=383, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=384, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=389, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=393, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=397, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=400, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=406, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=404, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=413, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=417, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=420, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=419, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=427, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=422, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=420, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=415, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=414, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=412, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=408, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=406, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=413, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=413, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=411, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=411, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=406, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=403, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=404, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=405, height=304 y=740
Warning in <TASImage::PutPixel>: Out of range width=584 x=407, height=304 y=740
Warning in <TASImage::PutPixel>: Out of range width=584 x=407, height=304 y=741
Warning in <TASImage::PutPixel>: Out of range width=584 x=411, height=304 y=741
Warning in <TASImage::PutPixel>: Out of range width=584 x=404, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=405, height=304 y=740
Warning in <TASImage::PutPixel>: Out of range width=584 x=399, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=403, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=406, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=406, height=304 y=740
Warning in <TASImage::PutPixel>: Out of range width=584 x=405, height=304 y=741
Warning in <TASImage::PutPixel>: Out of range width=584 x=399, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=396, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=389, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=383, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=387, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=383, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=383, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=383, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=380, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=379, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=382, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=380, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=381, height=304 y=739
Warning in <TASImage::PutPixel>: Out of range width=584 x=371, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=365, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=365, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=361, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=359, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=332, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=359, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=363, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=360, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=358, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=358, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=358, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=358, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=358, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=724
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=725
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=726
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=358, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=357, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=356, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=738
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=737
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=736
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=735
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=734
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=733
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=732
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=334, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=337, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=334, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=335, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=336, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=338, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=731
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=355, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=354, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=339, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=340, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=341, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=342, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=343, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=344, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=345, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=727
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=353, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=352, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=351, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=350, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=730
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=349, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=728
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=348, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=346, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Warning in <TASImage::PutPixel>: Out of range width=584 x=347, height=304 y=729
Info in <TPad::Print>: png file htr3.png has been created
Draw all canvases
In [6]:
gROOT->GetListOfCanvases()->Draw()
Content source: cernbox/entf
Similar notebooks: