<html><head></head><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, Sans-Serif;font-size:16px"><div id="yui_3_16_0_1_1450805026332_3152"><span id="yui_3_16_0_1_1450805026332_3200">thanks again Denis for helping me.&nbsp;</span></div><div id="yui_3_16_0_1_1450805026332_3152"><span><br></span></div><div id="yui_3_16_0_1_1450805026332_3152" dir="ltr"><span id="yui_3_16_0_1_1450805026332_3351">I was able to plot the Rf after some failed attempts. I did take help from the Example 4 but didn't go line by line. I am attaching script and figure. &nbsp;</span></div><div id="yui_3_16_0_1_1450805026332_3152" dir="ltr"><span><br></span></div><div id="yui_3_16_0_1_1450805026332_3152" dir="ltr"><span>Kindly clarify my doubt reg the 2nd record.&nbsp;</span></div><div id="yui_3_16_0_1_1450805026332_3152" dir="ltr">I extracted the 2nd record by the&nbsp;</div><div id="yui_3_16_0_1_1450805026332_3152" dir="ltr" class="">rec1 &nbsp; &nbsp; &nbsp; &nbsp; = &nbsp;fbindirread(diri+fili,1,(/ntim,nlat,nlon/),"ubyte")</div><div id="yui_3_16_0_1_1450805026332_3152" dir="ltr" class="">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printMinMax(rec1,True)</div><div dir="ltr" id="yui_3_16_0_1_1450805026332_3410" class="">it prints the following.&nbsp;</div><div dir="ltr" id="yui_3_16_0_1_1450805026332_3410" class="">&nbsp;</div><div></div><div id="yui_3_16_0_1_1450805026332_3405">&nbsp;(0)<span class="" style="white-space:pre-wrap;" id="yui_3_16_0_1_1450805026332_3532">        </span>min=0 &nbsp; max=255</div><div dir="ltr" id="yui_3_16_0_1_1450805026332_3534" class="">the 2nd record is the time of the satellite pass. but I am not able to get that.&nbsp;</div><div class="signature" id="yui_3_16_0_1_1450805026332_3522"><br></div> <div class="qtdSeparateBR"><br><br></div><div class="yahoo_quoted" style="display: block;"> <div style="font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, Sans-Serif; font-size: 16px;"> <div style="font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, Sans-Serif; font-size: 16px;"> <div dir="ltr"><font size="2" face="Arial"> On Monday, 21 December 2015 11:57 PM, Dennis Shea &lt;shea@ucar.edu&gt; wrote:<br></font></div>  <br><br> <div class="y_msg_container">This is offline.<br clear="none"><br clear="none">Hello,<br clear="none"><br clear="none">ncl-talk likes to help BUT we do expect people to read the documentation.<br clear="none">We expect people to do their own debugging. After an honest attempt,<br clear="none">send clear concise code ... no commented out code.<br clear="none"><br clear="none">Our time is valuable also. We have our own jobs to do. Debugging other<br clear="none">people's code is time consuming.<br clear="none">We answer on a volunteer basis. We are not paid to answer.<br clear="none"><br clear="none">Use print statements to see what is happening.<br clear="none"><br clear="none">Good Luck<br clear="none"><br clear="none"><br clear="none"><div class="yqt7482910420" id="yqtfd81934"><br clear="none">On Mon, Dec 21, 2015 at 10:33 AM, Geeta Geeta &lt;<a shape="rect" ymailto="mailto:geetag54@yahoo.com" href="mailto:geetag54@yahoo.com">geetag54@yahoo.com</a>&gt; wrote:<br clear="none">&gt; Thanks Rick and Dennis for your help..<br clear="none">&gt;<br clear="none">&gt; So the Rf values are now being wriiten properly.&nbsp; how to see the 1st and 2nd<br clear="none">&gt; records.<br clear="none">&gt;<br clear="none">&gt;&nbsp;  nlat&nbsp; &nbsp; &nbsp; &nbsp; =&nbsp; 1649<br clear="none">&gt;&nbsp;  nlon&nbsp; &nbsp; &nbsp; &nbsp; =&nbsp; 4948<br clear="none">&gt; ;--------------------------------------------------<br clear="none">&gt;<br clear="none">&gt;&nbsp; lat&nbsp; &nbsp; &nbsp; &nbsp;  = 59.963614 + ispan(0,nlat-1,1)*0.072771377<br clear="none">&gt;&nbsp; lat!0&nbsp; &nbsp; &nbsp;  = "latitude"<br clear="none">&gt;&nbsp; <a shape="rect" ymailto="mailto:lat@units" href="mailto:lat@units">lat@units</a>&nbsp;  = "degrees_north"<br clear="none">&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  printVarSummary(lat)<br clear="none">&gt;<br clear="none">&gt;&nbsp; lon&nbsp; &nbsp; &nbsp; &nbsp;  = 0.036378335 + ispan(0,nlon-1,1)*0.072756669<br clear="none">&gt;&nbsp; lon!0&nbsp; &nbsp; &nbsp;  = "longitude"<br clear="none">&gt;&nbsp; <a shape="rect" ymailto="mailto:lon@units" href="mailto:lon@units">lon@units</a>&nbsp;  = "degrees_east"<br clear="none">&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  printVarSummary(lon)<br clear="none">&gt;<br clear="none">&gt;<br clear="none">&gt; ; Reading File-----------------<br clear="none">&gt; rf&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  =&nbsp; fbindirread("test.bin",0,(/nlat,nlon/),"ubyte")<br clear="none">&gt; ;&nbsp; res1&nbsp; &nbsp; &nbsp; &nbsp;  =&nbsp; fbindirread("test.bin",1,-1,"float")<br clear="none">&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  asciiwrite("rf.txt",rf)<br clear="none">&gt; ;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; print(res1)<br clear="none">&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  printVarSummary(rf)<br clear="none">&gt;<br clear="none">&gt;&nbsp; ;<a shape="rect" ymailto="mailto:rf@_FillValue" href="mailto:rf@_FillValue">rf@_FillValue</a>= 255<br clear="none">&gt;<br clear="none">&gt;&nbsp; cmorrf&nbsp; &nbsp; &nbsp; &nbsp; = where(rf.eq.255,255,rf*0.2)<br clear="none">&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; asciiwrite("crf.txt",cmorrf)<br clear="none">&gt;&nbsp; <a shape="rect" ymailto="mailto:cmorrf@_FillValue" href="mailto:cmorrf@_FillValue">cmorrf@_FillValue</a>&nbsp; = 255<br clear="none">&gt;&nbsp; <a shape="rect" ymailto="mailto:cmorrf@units" href="mailto:cmorrf@units">cmorrf@units</a>&nbsp; &nbsp; &nbsp; = "mm"<br clear="none">&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  printVarSummary(cmorrf)<br clear="none">&gt;<br clear="none">&gt; This doc mentions that there are 6 records. ;; Each file contains 6 records.<br clear="none">&gt; The 1st 3 records pertain to the top half<br clear="none">&gt;<br clear="none">&gt; ;; of the hour (00-29 minus after the hour) and the last 3 records are for<br clear="none">&gt; the<br clear="none">&gt; ;; bottom half of the hour.&nbsp; Within each group:<br clear="none">&gt; ;;<br clear="none">&gt; ;;&nbsp;  -&nbsp; the 1st record contains the CMORPH precipitation estimates<br clear="none">&gt; ;;<br clear="none">&gt; ;;&nbsp;  -&nbsp; the 2nd record contains the time (in half hour units) since the most<br clear="none">&gt; ;;&nbsp; &nbsp; &nbsp; recent microwave pass.&nbsp; Note that since we do both a forward &amp;<br clear="none">&gt; ;;&nbsp; &nbsp; &nbsp; &nbsp; backward interpolation in time, the nearest time may be prior to<br clear="none">&gt; ;;&nbsp; &nbsp; &nbsp; &nbsp; the file time stamp or after it.<br clear="none">&gt; ;;<br clear="none">&gt; ;;&nbsp;  -&nbsp; the 3rd record contains an ID that tells the satellite from which<br clear="none">&gt; the last<br clear="none">&gt; ;;&nbsp; &nbsp; &nbsp; &nbsp; microwave observation was made which can be interpretted by the<br clear="none">&gt; following<br clear="none">&gt; ;;&nbsp; &nbsp; &nbsp; &nbsp; table (as of the time of the last update of this documentation):<br clear="none">&gt; ;;<br clear="none">&gt;<br clear="none">&gt;<br clear="none">&gt; How should I see the rest of them??<br clear="none">&gt;<br clear="none">&gt;<br clear="none">&gt;<br clear="none">&gt; On Monday, 21 December 2015 8:03 PM, Dennis Shea &lt;<a shape="rect" ymailto="mailto:shea@ucar.edu" href="mailto:shea@ucar.edu">shea@ucar.edu</a>&gt; wrote:<br clear="none">&gt;<br clear="none">&gt;<br clear="none">&gt; Also ... *you* must read the documentation carefully. The documentation<br clear="none">&gt; states:<br clear="none">&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  "Each direct access record is a 4948 x 1649 CHARACTER*1"<br clear="none">&gt;<br clear="none">&gt; [1]<br clear="none">&gt; You are using 'fbinrecread' which is for fortran sequential records.<br clear="none">&gt; You should use 'fbindirread' which is for direct access records.<br clear="none">&gt;<br clear="none">&gt; [2]<br clear="none">&gt; Ypu have 'lat' going from South-to-North. The documentation states the<br clear="none">&gt; data are N-&gt;S.<br clear="none">&gt;<br clear="none">&gt; [3]<br clear="none">&gt; Since the max byte is 255, I think unsigned byte type should be used.<br clear="none">&gt;<br clear="none">&gt;<br clear="none">&gt; <a shape="rect" href="http://www.ncl.ucar.edu/Applications/" target="_blank">http://www.ncl.ucar.edu/Applications/</a><br clear="none">&gt; Under 'Datasets' ... Click 'High Res Precipitation'<br clear="none">&gt;<br clear="none">&gt; Minor modifications to existing CMORPH examples resulted in cmorph_4.ncl<br clear="none">&gt;<br clear="none">&gt;<br clear="none">&gt; On Mon, Dec 21, 2015 at 6:46 AM, Rick Brownrigg &lt;<a shape="rect" ymailto="mailto:brownrig@ucar.edu" href="mailto:brownrig@ucar.edu">brownrig@ucar.edu</a>&gt; wrote:<br clear="none">&gt;&gt; Hi,<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; According to the docs at:<br clear="none">&gt;&gt;<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; <a shape="rect" href="ftp://ftp.cpc.ncep.noaa.gov/precip/global_CMORPH/README.cmorph.8km_30minute" target="_blank">ftp://ftp.cpc.ncep.noaa.gov/precip/global_CMORPH/README.cmorph.8km_30minute</a><br clear="none">&gt;&gt;<br clear="none">&gt;&gt; the data are given as unsigned bytes, not floats. This would explain the<br clear="none">&gt;&gt; warning about file size.&nbsp; By the comments in the GRADS definition, you<br clear="none">&gt;&gt; multiply the cmorph values by 0.2 to get mm/hr. With that in mind, I<br clear="none">&gt;&gt; *think*<br clear="none">&gt;&gt; you need something like (untested!):<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; cmorrf_ubytes&nbsp; =&nbsp; &nbsp; fbinrecread("test.bin",0,(/nlat,nlon/),"ubyte")<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; <a shape="rect" ymailto="mailto:cmorrf_ubytes@_FillValue" href="mailto:cmorrf_ubytes@_FillValue">cmorrf_ubytes@_FillValue</a> = 255B<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; cmorrf = cmorrf_ubytes * 0.2&nbsp; ; convert to floats, units are mm/hr<br clear="none">&gt;&gt;<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; As a side note, since its byte data, the setfileoption(...) is<br clear="none">&gt;&gt; superfluous.<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; Hope that helps..<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; Rick<br clear="none">&gt;&gt;<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; On Sun, Dec 20, 2015 at 4:39 AM, Geeta Geeta &lt;<a shape="rect" ymailto="mailto:geetag54@yahoo.com" href="mailto:geetag54@yahoo.com">geetag54@yahoo.com</a>&gt; wrote:<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; I have to plot 8km_30minutes resolution CMORPH rainfall.<br clear="none">&gt;&gt;&gt; The data is binary format. and has 24 files of each hour.<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; -rw-r--r-- 1 aditya aditya 48955512 Dec&nbsp; 1 19:33<br clear="none">&gt;&gt;&gt; CMORPH_8KM-30MIN_2015113021<br clear="none">&gt;&gt;&gt; -rw-r--r-- 1 aditya aditya 48955512 Dec&nbsp; 1 19:33<br clear="none">&gt;&gt;&gt; CMORPH_8KM-30MIN_2015113022<br clear="none">&gt;&gt;&gt; -rw-r--r-- 1 aditya aditya 48955512 Dec&nbsp; 1 19:33<br clear="none">&gt;&gt;&gt; CMORPH_8KM-30MIN_2015113023<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; As per the documentation of this data from<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; (<a shape="rect" href="ftp://ftp.cpc.ncep.noaa.gov/precip/global_CMORPH/CMORPH_8km-30-minute.ctl" target="_blank">ftp://ftp.cpc.ncep.noaa.gov/precip/global_CMORPH/CMORPH_8km-30-minute.ctl</a>)<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; DSET<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; /your-data-set-path/advt-8km-intrp-prim-sat-spat-2lag-2.5+5dovlp8kmIR-%y4%m2%d2%h2<br clear="none">&gt;&gt;&gt; OPTIONS yrev big_endian template<br clear="none">&gt;&gt;&gt; UNDEF&nbsp; 255<br clear="none">&gt;&gt;&gt; TITLE&nbsp; correlation estimates<br clear="none">&gt;&gt;&gt; XDEF 4948 LINEAR&nbsp; 0.036378335 0.072756669<br clear="none">&gt;&gt;&gt; YDEF 1649 LINEAR -59.963614&nbsp; &nbsp; 0.072771377<br clear="none">&gt;&gt;&gt; ZDEF&nbsp; 01 LEVELS 1<br clear="none">&gt;&gt;&gt; TDEF 99999&nbsp; LINEAR&nbsp; 00z21dec2002 30mn<br clear="none">&gt;&gt;&gt; VARS 3<br clear="none">&gt;&gt;&gt; cmorph&nbsp; 1&nbsp; -1,40,1,-1 xxxxxx yyyyy&nbsp; (mult. by 0.2 to get mm/hr units)<br clear="none">&gt;&gt;&gt; time&nbsp; &nbsp; 1&nbsp; -1,40,1,-1 xxxxxx yyyyy<br clear="none">&gt;&gt;&gt; satid&nbsp; &nbsp; 1&nbsp; -1,40,1,-1 xxxxxx yyyyy<br clear="none">&gt;&gt;&gt; ENDVARS<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; there are 3 records, 1st record being the desired parameter.<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; (<a shape="rect" href="ftp://ftp.cpc.ncep.noaa.gov/precip/global_CMORPH/README.cmorph.8km_30minute" target="_blank">ftp://ftp.cpc.ncep.noaa.gov/precip/global_CMORPH/README.cmorph.8km_30minute</a>).<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; I have to plot each hourly file and then get 24 hrs rainfall for a day.<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; ;;;;;;;Code;<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt;&nbsp; print(isbigendian)<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; ; ----Defining for Once -----<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt;&nbsp; wks&nbsp; &nbsp; &nbsp; &nbsp; = gsn_open_wks("ps","CMO-v1")<br clear="none">&gt;&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; gsn_define_colormap(wks,"prcp_2")<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt;&nbsp; nlat&nbsp; &nbsp; &nbsp; &nbsp; =&nbsp; 1649<br clear="none">&gt;&gt;&gt;&nbsp; nlon&nbsp; &nbsp; &nbsp; &nbsp; =&nbsp; 4948<br clear="none">&gt;&gt;&gt; ;--------------------------------------------------<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt;&nbsp; lat&nbsp; &nbsp; &nbsp; &nbsp; = -59.963614 + ispan(0,nlat-1,1)*0.072771377<br clear="none">&gt;&gt;&gt; ;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; print(lat)<br clear="none">&gt;&gt;&gt;&nbsp; lon&nbsp; &nbsp; &nbsp; &nbsp; = 0.036378335 + ispan(0,nlon-1,1)*0.072756669<br clear="none">&gt;&gt;&gt; ;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; print(lon)<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; setfileoption("bin","ReadByteOrder","BigEndian")<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; ; cmorrf&nbsp; =&nbsp; &nbsp; fbinrecread("test.bin",0,(/nlat,nlon/),"float")&nbsp; ; print<br clear="none">&gt;&gt;&gt; 0th record.<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; cmorrf&nbsp; =&nbsp; &nbsp; fbinrecread("test.bin",0,-1,"float")&nbsp; ; print 0th record.<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; print("Sizeof rf&nbsp; ="+dimsizes(cmorrf))<br clear="none">&gt;&gt;&gt; ;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; print(cmorrf)<br clear="none">&gt;&gt;&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; asciiwrite("rf.txt",cmorrf)<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; When I run this,<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; See <a shape="rect" href="http://www.ncl.ucar.edu/" target="_blank">http://www.ncl.ucar.edu/ </a>for more details.<br clear="none">&gt;&gt;&gt; (0) False<br clear="none">&gt;&gt;&gt; warning:fbinrecread: size specified is greater than record size, filling<br clear="none">&gt;&gt;&gt; with missing values<br clear="none">&gt;&gt;&gt; (0) Sizeof rf&nbsp; =1649<br clear="none">&gt;&gt;&gt; (1) Sizeof rf&nbsp; =4948<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; when I use -1 in line defining cmorphh, I get this output.<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; <a shape="rect" ymailto="mailto:aditya@agniilap" href="mailto:aditya@agniilap">aditya@agniilap</a>:~/geeta/ncl/CMORPH$&nbsp; See <a shape="rect" href="http://www.ncl.ucar.edu/" target="_blank">http://www.ncl.ucar.edu/ </a>for<br clear="none">&gt;&gt;&gt; more<br clear="none">&gt;&gt;&gt; details.<br clear="none">&gt;&gt;&gt; (0) False<br clear="none">&gt;&gt;&gt; (0) Sizeof rf&nbsp; =0<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; no rainfall is written to the file.<br clear="none">&gt;&gt;&gt; Also the 1st and 2nd&nbsp; records are not being shown.<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; Pls suggest.<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;&gt; _______________________________________________<br clear="none">&gt;&gt;&gt; ncl-talk mailing list<br clear="none">&gt;&gt;&gt; <a shape="rect" ymailto="mailto:ncl-talk@ucar.edu" href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br clear="none">&gt;&gt;&gt; List instructions, subscriber options, unsubscribe:<br clear="none">&gt;&gt;&gt; <a shape="rect" href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br clear="none">&gt;<br clear="none">&gt;&gt;&gt;<br clear="none">&gt;&gt;<br clear="none">&gt;&gt;<br clear="none">&gt;&gt; _______________________________________________<br clear="none">&gt;&gt; ncl-talk mailing list<br clear="none">&gt;&gt; <a shape="rect" ymailto="mailto:ncl-talk@ucar.edu" href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br clear="none">&gt;&gt; List instructions, subscriber options, unsubscribe:<br clear="none">&gt;&gt; <a shape="rect" href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br clear="none">&gt;&gt;<br clear="none">&gt;<br clear="none">&gt;<br clear="none"></div><br><br></div>  </div> </div>  </div></div></body></html>