[BioPython] new parser questions

Danny Navarro d.navarro@bmb.sdu.dk
04 Apr 2002 19:12:15 +0200


--=-gzrGQ4R79GHmZRmqApta
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

Hi all,

So now that I can use biopython modules from Zope. I'll try to do the
following proyect:

A database accesible through the web which will serve the result of
high-throughput mass-spec experiments in a handy way. I'd like to use
biopython modules to provide biology services. The first step would be a
parser to extract information from the mass-spec results.

The file with the experiment results is simple HTML format. They are
very huge, ~60 MBytes. I'll attach one sample.

The parser will extract protein names, peptides sequence which their
score, reporting from where protein come, whether they are red and/or
bold, and its delta.

I have done some parsers but they were not very robust. With this parser
my first though was to use htmlparser python module. 

Is it better to reuse something from ParserSupport.py?

Should I use the scanner and consumer framework? 

Any hints about how to start properly the parser design in this kind of
file?

I'll put the whole project in sourceforge.net soon. Then you can see
exactly what is the project about.

If anybody is interested in participate with me in this project it'd be
great!

Danny

--=-gzrGQ4R79GHmZRmqApta
Content-Disposition: attachment; filename="APMascot Search Results.htm"
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html; charset=ANSI_X3.4-1968

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=3D(0079)http://pilmascot/mascot/cgi/master_results.pl?f=
ile=3D../data/20011120/F001249.dat -->=0D
<!-- 5.778 seconds --><!-- 5.858 seconds --><!-- 5.928 seconds --><!-- 5.98=
8 seconds --><!-- 6.048 seconds --><!-- 6.108 seconds --><!-- 6.178 seconds=
 --><!-- 6.228 seconds --><!-- 6.289 seconds --><!-- 6.339 seconds --><!-- =
6.389 seconds --><!-- 6.439 seconds --><!-- 6.499 seconds --><!-- 6.549 sec=
onds --><!-- 6.599 seconds --><!-- 6.659 seconds --><!-- 6.709 seconds --><=
!-- 6.759 seconds --><!-- 6.809 seconds --><!-- 6.859 seconds --><!-- 6.909=
 seconds --><!-- 6.97 seconds --><!-- 7.03 seconds --><!-- 7.08 seconds -->=
<!-- 7.13 seconds --><!-- 7.19 seconds --><!-- 7.25 seconds --><!-- 7.31 se=
conds --><!-- 7.36 seconds --><!-- 7.42 seconds --><!-- 7.47 seconds --><!-=
- 7.52 seconds --><!-- 7.57 seconds --><!-- 7.63 seconds --><!-- 7.691 seco=
nds --><!-- 7.741 seconds --><!-- 7.801 seconds --><!-- 7.851 seconds --><!=
-- 7.901 seconds --><!-- 7.961 seconds --><!-- 8.011 seconds --><!-- 8.071 =
seconds --><!-- 8.131 seconds --><!-- 8.191 seconds --><!-- 8.241 seconds -=
-><!-- 8.301 seconds --><!-- 8.352 seconds --><!-- 8.402 seconds --><!-- 8.=
452 seconds --><!-- 8.502 seconds --><!-- 8.562 seconds --><!-- 8.622 secon=
ds --><!-- 8.682 seconds --><!-- 8.742 seconds --><!-- 8.792 seconds --><!-=
- 8.912 seconds --><!-- 8.972 seconds --><!-- 9.022 seconds --><!-- 9.083 s=
econds --><!-- 9.143 seconds --><!-- 9.213 seconds --><!-- 9.273 seconds --=
><!-- 9.323 seconds --><!-- 9.433 seconds --><!-- 9.493 seconds --><!-- 9.5=
53 seconds --><!-- 9.613 seconds --><!-- 9.663 seconds --><!-- 9.723 second=
s --><!-- 9.784 seconds --><!-- 9.964 seconds --><!-- 10.044 seconds --><!-=
- 10.104 seconds --><!-- 10.164 seconds --><!-- 10.224 seconds --><!-- 10.2=
74 seconds --><!-- 10.334 seconds --><!-- 10.384 seconds --><!-- 10.435 sec=
onds --><!-- 10.485 seconds --><!-- 10.525 seconds --><!-- 10.595 seconds -=
-><!-- 10.655 seconds --><!-- 10.715 seconds --><!-- 10.765 seconds --><!--=
 10.855 seconds --><!-- 10.915 seconds --><!-- 10.975 seconds --><!-- 11.02=
5 seconds --><!-- 11.085 seconds --><!-- 11.146 seconds --><!-- 11.196 seco=
nds --><!-- 11.256 seconds --><!-- 11.316 seconds --><!-- 11.376 seconds --=
><!-- 11.436 seconds --><!-- 11.496 seconds --><!-- 11.556 seconds --><!-- =
11.616 seconds --><!-- 11.686 seconds --><!-- 11.746 seconds --><HTML><HEAD=
><TITLE>Mascot Search Results</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-125=
2">=0D
<SCRIPT language=3DJavaScript>
<!-- Begin hiding Javascript from old browsers.

  var arrayReady=3D0;

  if (document.images){
    redBall =3D new Image();
    redBall.src =3D "../images/red_ball_white.gif";
    cyanBall =3D new Image();
    cyanBall.src =3D "../images/cyan_ball_white.gif";
  }

  function cover(hit,query,protSeq){
    document.Results.Title.value =3D queryTitle[query];
    document.Results.Accession.value =3D protName[hit];
    document.Results.Sequence.value =3D protSeq;
    if (hit =3D=3D 0) {
      self.status =3D queryTitle[query];
    } else {
      self.status =3D protName[hit] + ": " + protSeq;
    }
    if (protSeq !=3D "" && document.fred && arrayReady =3D=3D 1){
      var i =3D 0;
      var element =3D 0;
      element =3D eval(protSeq+"["+i+"]");
      while(element) {
        document.images[element].src =3D redBall.src;
        i++;
        element =3D eval(protSeq+"["+i+"]");
      }
    }
  }

  function uncover(hit,query,protSeq){
    document.Results.Title.value =3D "-Query-";
    document.Results.Accession.value=3D"-Accession-";
    document.Results.Sequence.value=3D"-Sequence-";
    self.status=3D"";
    if (protSeq !=3D "" && document.fred && arrayReady =3D=3D 1){
      var i =3D 0;
      var element =3D 0;
      element =3D eval(protSeq+"["+i+"]");
      while(element) {
        document.images[element].src =3D cyanBall.src;
        i++;
        element =3D eval(protSeq+"["+i+"]");
      }
    }
  }

  function checkQuery(checkState,numChecks,form){
    if (numChecks =3D=3D 1){
      form.QUE.checked =3D checkState;
    } else {
      for (var i =3D 0; i < form.elements.length; i++) {
        if (form.elements[i].name =3D=3D "QUE"){
          form.elements[i].checked =3D checkState;
        }
      }
    }
  }

  function SaveClicks(checkBox,form){
    var checkState =3D checkBox.checked;
    var thisHit =3D 0;
    for (var i =3D 0; i < form.elements.length; i++) {
      if (thisHit =3D=3D 1){
        if (form.elements[i].name =3D=3D "QUE") {
          form.elements[i].checked =3D !checkState;
        } else {
          break;
        }
      } else {
        if (form.elements[i] =3D=3D checkBox){
          thisHit =3D 1;
        }
      }
    }
  }

  function unMatched(form){
    var numMisses =3D 0;
    for (var i =3D 0; i < form.elements.length; i++) {
      if (form.elements[i].name =3D=3D "MISSES"){
        numMisses++;
      }
    }
    if (numMisses < 1) {
      alert("No unmatched mass values to be searched");
      return false;
    }
    for (var i =3D 0; i < form.elements.length; i++) {
      if (form.elements[i].name =3D=3D "QUE"){
        form.elements[i].name =3D "DUMMY";
      }
    }
    for (var i =3D 0; i < form.elements.length; i++) {
      if (form.elements[i].name =3D=3D "MISSES"){
        form.elements[i].name =3D "QUE";
      }
    }
    form.submit();
    return true;
  }

  var NS4 =3D (document.layers) ? 1 : 0;
  var IE4 =3D (document.all) ? 1 : 0;

  function clearEl() {}

  function makeArchive(form){
    var tempUrl =3D "./master_results.pl?REPTYPE=3Darchive&INTERMEDIATE=3D.=
./data/20011120/F001249.dat";
    for (var i =3D 0; i < form.elements.length; i++) {
      if (form.elements[i].name =3D=3D "INCLUDE" && form.elements[i].checke=
d){
        tempUrl =3D tempUrl + "&INCLUDE=3D" + form.elements[i].value;
      }
    }
    form.REPTYPE.value=3D"archive";
    form.action=3DtempUrl;
    form.submit();
  }

  var h0_q1689 =3D " ";
  var h0_q810 =3D " ";
  var h0_q811 =3D " ";
  var h0_q812 =3D " ";
  var h0_q813 =3D " ";
  var h16_q41 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h0_q814 =3D " ";
  var h0_q490 =3D " ";
  var h1_q606 =3D "1:IPI:IPI00019502  ";
  var h0_q815 =3D " ";
  var h0_q491 =3D " ";
  var h1_q607 =3D "1:IPI:IPI00019502  ";
  var h0_q816 =3D " ";
  var h0_q492 =3D " ";
  var h0_q817 =3D " ";
  var h0_q493 =3D " ";
  var h0_q818 =3D " ";
  var h0_q494 =3D " ";
  var h0_q819 =3D " ";
  var h0_q495 =3D " ";
  var h0_q496 =3D " ";
  var h0_q497 =3D " ";
  var h0_q498 =3D " ";
  var h0_q499 =3D " ";
  var h0_q1690 =3D " ";
  var h0_q1691 =3D " ";
  var h0_q1692 =3D " ";
  var h0_q1693 =3D " ";
  var h0_q1694 =3D " ";
  var h0_q1695 =3D " ";
  var h0_q1696 =3D " ";
  var h2_q400 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q1697 =3D " ";
  var h0_q1698 =3D " ";
  var h0_q1699 =3D " ";
  var h0_q820 =3D " ";
  var h0_q821 =3D " ";
  var h0_q822 =3D " ";
  var h1_q290 =3D "1:IPI:IPI00019502  ";
  var h0_q823 =3D " ";
  var h0_q824 =3D " ";
  var h0_q825 =3D " ";
  var h0_q826 =3D " ";
  var h0_q827 =3D " ";
  var h0_q828 =3D " ";
  var h0_q829 =3D " ";
  var h3_q1122 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h3_q1124 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h3_q1125 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h3_q1127 =3D "3:IPI:IPI00012053  4:IPI:IPI00029727  ";
  var h0_q830 =3D " ";
  var h0_q831 =3D " ";
  var h0_q832 =3D " ";
  var h0_q833 =3D " ";
  var h0_q834 =3D " ";
  var h0_q835 =3D " ";
  var h52_q27 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h9_q142 =3D "9:IPI:IPI00033494  ";
  var h0_q836 =3D " ";
  var h0_q837 =3D " ";
  var h0_q838 =3D " ";
  var h12_q1186 =3D "12:IPI:IPI00028646  ";
  var h0_q839 =3D " ";
  var h3_q215 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h3_q216 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q841 =3D " ";
  var h3_q217 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q842 =3D " ";
  var h0_q843 =3D " ";
  var h0_q844 =3D " ";
  var h0_q845 =3D " ";
  var h52_q37 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h0_q847 =3D " ";
  var h0_q848 =3D " ";
  var h0_q849 =3D " ";
  var h32_q634 =3D "30:IPI:IPI00018158  32:IPI:IPI00030960  ";
  var h0_q850 =3D " ";
  var h0_q851 =3D " ";
  var h0_q852 =3D " ";
  var h0_q853 =3D " ";
  var h0_q854 =3D " ";
  var h0_q855 =3D " ";
  var h79_q684 =3D "79:IPI:IPI00012847  ";
  var h0_q857 =3D " ";
  var h0_q858 =3D " ";
  var h0_q859 =3D " ";
  var h10_q145 =3D "10:IPI:IPI00011042  ";
  var h10_q146 =3D "10:IPI:IPI00011042  ";
  var h60_q164 =3D "60:IPI:IPI00020052  ";
  var h0_q861 =3D " ";
  var h0_q863 =3D " ";
  var h0_q865 =3D " ";
  var h7_q913 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI0000296=
5  ";
  var h0_q867 =3D " ";
  var h7_q914 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI0000296=
5  ";
  var h7_q915 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI0000296=
5  ";
  var h0_q869 =3D " ";
  var h0_q870 =3D " ";
  var h0_q871 =3D " ";
  var h0_q872 =3D " ";
  var h8_q712 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q874 =3D " ";
  var h8_q713 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q875 =3D " ";
  var h0_q876 =3D " ";
  var h8_q715 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q877 =3D " ";
  var h8_q716 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q878 =3D " ";
  var h0_q879 =3D " ";
  var h22_q1403 =3D "22:IPI:IPI00027214  ";
  var h0_q881 =3D " ";
  var h0_q883 =3D " ";
  var h43_q84 =3D "43:IPI:IPI00029137  ";
  var h0_q884 =3D " ";
  var h0_q885 =3D " ";
  var h0_q886 =3D " ";
  var h0_q887 =3D " ";
  var h4_q1200 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h0_q888 =3D " ";
  var h0_q889 =3D " ";
  var h17_q226 =3D "17:IPI:IPI00027488  ";
  var h15_q642 =3D "15:IPI:IPI00021327  ";
  var h2_q472 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h2_q473 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q890 =3D " ";
  var h0_q891 =3D " ";
  var h0_q892 =3D " ";
  var h0_q894 =3D " ";
  var h0_q895 =3D " ";
  var h0_q896 =3D " ";
  var h0_q897 =3D " ";
  var h0_q898 =3D " ";
  var h0_q899 =3D " ";
  var h3_q1199 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h74_q586 =3D "74:IPI:IPI00019412  ";
  var h53_q204 =3D "53:IPI:IPI00001376  ";
  var h75_q382 =3D "75:IPI:IPI00016856  ";
  var h41_q1112 =3D "41:IPI:IPI00010796  ";
  var h45_q39 =3D "45:IPI:IPI00026621  ";
  var h12_q103 =3D "12:IPI:IPI00028646  ";
  var h12_q104 =3D "12:IPI:IPI00028646  ";
  var h61_q336 =3D "61:IPI:IPI00007781  ";
  var h24_q588 =3D "24:IPI:IPI00003362  ";
  var h3_q292 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q296 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q297 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q298 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q299 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h62_q130 =3D "47:IPI:IPI00013485  62:IPI:IPI00025777  ";
  var h24_q913 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI000029=
65  ";
  var h24_q914 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI000029=
65  ";
  var h24_q915 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI000029=
65  ";
  var h99_q803 =3D "99:IPI:IPI00030246  ";
  var h99_q804 =3D "99:IPI:IPI00030246  ";
  var h3_q627 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q628 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q629 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h5_q210 =3D "5:IPI:IPI00018231  ";
  var h1_q41 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h1_q48 =3D "1:IPI:IPI00019502  ";
  var h17_q600 =3D "17:IPI:IPI00027488  ";
  var h9_q580 =3D "9:IPI:IPI00033494  ";
  var h9_q581 =3D "9:IPI:IPI00033494  ";
  var h1_q56 =3D "1:IPI:IPI00019502  ";
  var h86_q242 =3D "86:IPI:IPI00025806  ";
  var h29_q25 =3D "29:IPI:IPI00007188  ";
  var h54_q73 =3D "54:IPI:IPI00013296  ";
  var h36_q236 =3D "36:IPI:IPI00030575  ";
  var h3_q666 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h3_q667 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q100 =3D " ";
  var h0_q101 =3D " ";
  var h11_q379 =3D "11:IPI:IPI00023528  13:IPI:IPI00000230  44:IPI:IPI00013=
991  ";
  var h0_q105 =3D " ";
  var h0_q106 =3D " ";
  var h0_q108 =3D " ";
  var h0_q109 =3D " ";
  var h0_q1300 =3D " ";
  var h3_q674 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1301 =3D " ";
  var h3_q675 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1302 =3D " ";
  var h3_q676 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1303 =3D " ";
  var h3_q677 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1304 =3D " ";
  var h3_q678 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q110 =3D " ";
  var h0_q111 =3D " ";
  var h0_q112 =3D " ";
  var h2_q8 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727  "=
;
  var h0_q119 =3D " ";
  var h44_q379 =3D "11:IPI:IPI00023528  13:IPI:IPI00000230  44:IPI:IPI00013=
991  ";
  var h0_q1312 =3D " ";
  var h0_q1313 =3D " ";
  var h0_q1314 =3D " ";
  var h0_q1315 =3D " ";
  var h0_q1316 =3D " ";
  var h0_q1317 =3D " ";
  var h0_q1318 =3D " ";
  var h0_q1319 =3D " ";
  var h0_q120 =3D " ";
  var h0_q121 =3D " ";
  var h0_q122 =3D " ";
  var h0_q123 =3D " ";
  var h0_q124 =3D " ";
  var h0_q125 =3D " ";
  var h0_q126 =3D " ";
  var h0_q127 =3D " ";
  var h0_q129 =3D " ";
  var h0_q1320 =3D " ";
  var h0_q1321 =3D " ";
  var h0_q1322 =3D " ";
  var h0_q1323 =3D " ";
  var h0_q1324 =3D " ";
  var h0_q1325 =3D " ";
  var h0_q1326 =3D " ";
  var h0_q1327 =3D " ";
  var h0_q1328 =3D " ";
  var h0_q1329 =3D " ";
  var h64_q117 =3D "64:IPI:IPI00002844  ";
  var h0_q132 =3D " ";
  var h0_q133 =3D " ";
  var h0_q134 =3D " ";
  var h0_q135 =3D " ";
  var h59_q560 =3D "59:IPI:IPI00016774  ";
  var h0_q136 =3D " ";
  var h0_q137 =3D " ";
  var h0_q138 =3D " ";
  var h0_q139 =3D " ";
  var h0_q1330 =3D " ";
  var h0_q1331 =3D " ";
  var h0_q1332 =3D " ";
  var h0_q1333 =3D " ";
  var h22_q222 =3D "22:IPI:IPI00027214  ";
  var h0_q1334 =3D " ";
  var h0_q1335 =3D " ";
  var h0_q1336 =3D " ";
  var h0_q1337 =3D " ";
  var h0_q1338 =3D " ";
  var h0_q1339 =3D " ";
  var h19_q251 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h19_q252 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h19_q253 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h0_q140 =3D " ";
  var h80_q365 =3D "80:IPI:IPI00008406  ";
  var h0_q143 =3D " ";
  var h0_q144 =3D " ";
  var h28_q168 =3D "28:IPI:IPI00034297  ";
  var h0_q147 =3D " ";
  var h0_q149 =3D " ";
  var h0_q1340 =3D " ";
  var h0_q1341 =3D " ";
  var h0_q1342 =3D " ";
  var h0_q1343 =3D " ";
  var h0_q1344 =3D " ";
  var h0_q1345 =3D " ";
  var h0_q1346 =3D " ";
  var h12_q533 =3D "12:IPI:IPI00028646  ";
  var h0_q1347 =3D " ";
  var h6_q1062 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h0_q1348 =3D " ";
  var h6_q1063 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h0_q1349 =3D " ";
  var h6_q1064 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h0_q150 =3D " ";
  var h0_q151 =3D " ";
  var h28_q175 =3D "28:IPI:IPI00034297  ";
  var h0_q152 =3D " ";
  var h0_q154 =3D " ";
  var h0_q156 =3D " ";
  var h0_q157 =3D " ";
  var h0_q158 =3D " ";
  var h0_q159 =3D " ";
  var h65_q51 =3D "65:IPI:IPI00013003  ";
  var h65_q1253 =3D "65:IPI:IPI00013003  ";
  var h0_q1350 =3D " ";
  var h0_q1351 =3D " ";
  var h0_q1352 =3D " ";
  var h0_q1353 =3D " ";
  var h0_q1354 =3D " ";
  var h0_q1355 =3D " ";
  var h0_q1356 =3D " ";
  var h0_q1357 =3D " ";
  var h90_q403 =3D "90:IPI:IPI00012587  ";<!DOCTYPE HTML PUBLIC "-//W3C//DT=
D HTML 4.0 Transitional//EN">
<!-- saved from url=3D(0079)http://pilmascot/mascot/cgi/master_results.pl?f=
ile=3D../data/20011120/F001249.dat -->
<!-- 5.778 seconds --><!-- 5.858 seconds --><!-- 5.928 seconds --><!-- 5.98=
8 seconds --><!-- 6.048 seconds --><!-- 6.108 seconds --><!-- 6.178 seconds=
 --><!-- 6.228 seconds --><!-- 6.289 seconds --><!-- 6.339 seconds --><!-- =
6.389 seconds --><!-- 6.439 seconds --><!-- 6.499 seconds --><!-- 6.549 sec=
onds --><!-- 6.599 seconds --><!-- 6.659 seconds --><!-- 6.709 seconds --><=
!-- 6.759 seconds --><!-- 6.809 seconds --><!-- 6.859 seconds --><!-- 6.909=
 seconds --><!-- 6.97 seconds --><!-- 7.03 seconds --><!-- 7.08 seconds -->=
<!-- 7.13 seconds --><!-- 7.19 seconds --><!-- 7.25 seconds --><!-- 7.31 se=
conds --><!-- 7.36 seconds --><!-- 7.42 seconds --><!-- 7.47 seconds --><!-=
- 7.52 seconds --><!-- 7.57 seconds --><!-- 7.63 seconds --><!-- 7.691 seco=
nds --><!-- 7.741 seconds --><!-- 7.801 seconds --><!-- 7.851 seconds --><!=
-- 7.901 seconds --><!-- 7.961 seconds --><!-- 8.011 seconds --><!-- 8.071 =
seconds --><!-- 8.131 seconds --><!-- 8.191 seconds --><!-- 8.241 seconds -=
-><!-- 8.301 seconds --><!-- 8.352 seconds --><!-- 8.402 seconds --><!-- 8.=
452 seconds --><!-- 8.502 seconds --><!-- 8.562 seconds --><!-- 8.622 secon=
ds --><!-- 8.682 seconds --><!-- 8.742 seconds --><!-- 8.792 seconds --><!-=
- 8.912 seconds --><!-- 8.972 seconds --><!-- 9.022 seconds --><!-- 9.083 s=
econds --><!-- 9.143 seconds --><!-- 9.213 seconds --><!-- 9.273 seconds --=
><!-- 9.323 seconds --><!-- 9.433 seconds --><!-- 9.493 seconds --><!-- 9.5=
53 seconds --><!-- 9.613 seconds --><!-- 9.663 seconds --><!-- 9.723 second=
s --><!-- 9.784 seconds --><!-- 9.964 seconds --><!-- 10.044 seconds --><!-=
- 10.104 seconds --><!-- 10.164 seconds --><!-- 10.224 seconds --><!-- 10.2=
74 seconds --><!-- 10.334 seconds --><!-- 10.384 seconds --><!-- 10.435 sec=
onds --><!-- 10.485 seconds --><!-- 10.525 seconds --><!-- 10.595 seconds -=
-><!-- 10.655 seconds --><!-- 10.715 seconds --><!-- 10.765 seconds --><!--=
 10.855 seconds --><!-- 10.915 seconds --><!-- 10.975 seconds --><!-- 11.02=
5 seconds --><!-- 11.085 seconds --><!-- 11.146 seconds --><!-- 11.196 seco=
nds --><!-- 11.256 seconds --><!-- 11.316 seconds --><!-- 11.376 seconds --=
><!-- 11.436 seconds --><!-- 11.496 seconds --><!-- 11.556 seconds --><!-- =
11.616 seconds --><!-- 11.686 seconds --><!-- 11.746 seconds --><HTML><HEAD=
><TITLE>Mascot Search Results</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-125=
2">
<SCRIPT language=3DJavaScript>
<!-- Begin hiding Javascript from old browsers.

  var arrayReady=3D0;

  if (document.images){
    redBall =3D new Image();
    redBall.src =3D "../images/red_ball_white.gif";
    cyanBall =3D new Image();
    cyanBall.src =3D "../images/cyan_ball_white.gif";
  }

  function cover(hit,query,protSeq){
    document.Results.Title.value =3D queryTitle[query];
    document.Results.Accession.value =3D protName[hit];
    document.Results.Sequence.value =3D protSeq;
    if (hit =3D=3D 0) {
      self.status =3D queryTitle[query];
    } else {
      self.status =3D protName[hit] + ": " + protSeq;
    }
    if (protSeq !=3D "" && document.fred && arrayReady =3D=3D 1){
      var i =3D 0;
      var element =3D 0;
      element =3D eval(protSeq+"["+i+"]");
      while(element) {
        document.images[element].src =3D redBall.src;
        i++;
        element =3D eval(protSeq+"["+i+"]");
      }
    }
  }

  function uncover(hit,query,protSeq){
    document.Results.Title.value =3D "-Query-";
    document.Results.Accession.value=3D"-Accession-";
    document.Results.Sequence.value=3D"-Sequence-";
    self.status=3D"";
    if (protSeq !=3D "" && document.fred && arrayReady =3D=3D 1){
      var i =3D 0;
      var element =3D 0;
      element =3D eval(protSeq+"["+i+"]");
      while(element) {
        document.images[element].src =3D cyanBall.src;
        i++;
        element =3D eval(protSeq+"["+i+"]");
      }
    }
  }

  function checkQuery(checkState,numChecks,form){
    if (numChecks =3D=3D 1){
      form.QUE.checked =3D checkState;
    } else {
      for (var i =3D 0; i < form.elements.length; i++) {
        if (form.elements[i].name =3D=3D "QUE"){
          form.elements[i].checked =3D checkState;
        }
      }
    }
  }

  function SaveClicks(checkBox,form){
    var checkState =3D checkBox.checked;
    var thisHit =3D 0;
    for (var i =3D 0; i < form.elements.length; i++) {
      if (thisHit =3D=3D 1){
        if (form.elements[i].name =3D=3D "QUE") {
          form.elements[i].checked =3D !checkState;
        } else {
          break;
        }
      } else {
        if (form.elements[i] =3D=3D checkBox){
          thisHit =3D 1;
        }
      }
    }
  }

  function unMatched(form){
    var numMisses =3D 0;
    for (var i =3D 0; i < form.elements.length; i++) {
      if (form.elements[i].name =3D=3D "MISSES"){
        numMisses++;
      }
    }
    if (numMisses < 1) {
      alert("No unmatched mass values to be searched");
      return false;
    }
    for (var i =3D 0; i < form.elements.length; i++) {
      if (form.elements[i].name =3D=3D "QUE"){
        form.elements[i].name =3D "DUMMY";
      }
    }
    for (var i =3D 0; i < form.elements.length; i++) {
      if (form.elements[i].name =3D=3D "MISSES"){
        form.elements[i].name =3D "QUE";
      }
    }
    form.submit();
    return true;
  }

  var NS4 =3D (document.layers) ? 1 : 0;
  var IE4 =3D (document.all) ? 1 : 0;

  function clearEl() {}

  function makeArchive(form){
    var tempUrl =3D "./master_results.pl?REPTYPE=3Darchive&INTERMEDIATE=3D.=
./data/20011120/F001249.dat";
    for (var i =3D 0; i < form.elements.length; i++) {
      if (form.elements[i].name =3D=3D "INCLUDE" && form.elements[i].checke=
d){
        tempUrl =3D tempUrl + "&INCLUDE=3D" + form.elements[i].value;
      }
    }
    form.REPTYPE.value=3D"archive";
    form.action=3DtempUrl;
    form.submit();
  }

  var h0_q1689 =3D " ";
  var h0_q810 =3D " ";
  var h0_q811 =3D " ";
  var h0_q812 =3D " ";
  var h0_q813 =3D " ";
  var h16_q41 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h0_q814 =3D " ";
  var h0_q490 =3D " ";
  var h1_q606 =3D "1:IPI:IPI00019502  ";
  var h0_q815 =3D " ";
  var h0_q491 =3D " ";
  var h1_q607 =3D "1:IPI:IPI00019502  ";
  var h0_q816 =3D " ";
  var h0_q492 =3D " ";
  var h0_q817 =3D " ";
  var h0_q493 =3D " ";
  var h0_q818 =3D " ";
  var h0_q494 =3D " ";
  var h0_q819 =3D " ";
  var h0_q495 =3D " ";
  var h0_q496 =3D " ";
  var h0_q497 =3D " ";
  var h0_q498 =3D " ";
  var h0_q499 =3D " ";
  var h0_q1690 =3D " ";
  var h0_q1691 =3D " ";
  var h0_q1692 =3D " ";
  var h0_q1693 =3D " ";
  var h0_q1694 =3D " ";
  var h0_q1695 =3D " ";
  var h0_q1696 =3D " ";
  var h2_q400 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q1697 =3D " ";
  var h0_q1698 =3D " ";
  var h0_q1699 =3D " ";
  var h0_q820 =3D " ";
  var h0_q821 =3D " ";
  var h0_q822 =3D " ";
  var h1_q290 =3D "1:IPI:IPI00019502  ";
  var h0_q823 =3D " ";
  var h0_q824 =3D " ";
  var h0_q825 =3D " ";
  var h0_q826 =3D " ";
  var h0_q827 =3D " ";
  var h0_q828 =3D " ";
  var h0_q829 =3D " ";
  var h3_q1122 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h3_q1124 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h3_q1125 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h3_q1127 =3D "3:IPI:IPI00012053  4:IPI:IPI00029727  ";
  var h0_q830 =3D " ";
  var h0_q831 =3D " ";
  var h0_q832 =3D " ";
  var h0_q833 =3D " ";
  var h0_q834 =3D " ";
  var h0_q835 =3D " ";
  var h52_q27 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h9_q142 =3D "9:IPI:IPI00033494  ";
  var h0_q836 =3D " ";
  var h0_q837 =3D " ";
  var h0_q838 =3D " ";
  var h12_q1186 =3D "12:IPI:IPI00028646  ";
  var h0_q839 =3D " ";
  var h3_q215 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h3_q216 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q841 =3D " ";
  var h3_q217 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q842 =3D " ";
  var h0_q843 =3D " ";
  var h0_q844 =3D " ";
  var h0_q845 =3D " ";
  var h52_q37 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h0_q847 =3D " ";
  var h0_q848 =3D " ";
  var h0_q849 =3D " ";
  var h32_q634 =3D "30:IPI:IPI00018158  32:IPI:IPI00030960  ";
  var h0_q850 =3D " ";
  var h0_q851 =3D " ";
  var h0_q852 =3D " ";
  var h0_q853 =3D " ";
  var h0_q854 =3D " ";
  var h0_q855 =3D " ";
  var h79_q684 =3D "79:IPI:IPI00012847  ";
  var h0_q857 =3D " ";
  var h0_q858 =3D " ";
  var h0_q859 =3D " ";
  var h10_q145 =3D "10:IPI:IPI00011042  ";
  var h10_q146 =3D "10:IPI:IPI00011042  ";
  var h60_q164 =3D "60:IPI:IPI00020052  ";
  var h0_q861 =3D " ";
  var h0_q863 =3D " ";
  var h0_q865 =3D " ";
  var h7_q913 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI0000296=
5  ";
  var h0_q867 =3D " ";
  var h7_q914 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI0000296=
5  ";
  var h7_q915 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI0000296=
5  ";
  var h0_q869 =3D " ";
  var h0_q870 =3D " ";
  var h0_q871 =3D " ";
  var h0_q872 =3D " ";
  var h8_q712 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q874 =3D " ";
  var h8_q713 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q875 =3D " ";
  var h0_q876 =3D " ";
  var h8_q715 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q877 =3D " ";
  var h8_q716 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q878 =3D " ";
  var h0_q879 =3D " ";
  var h22_q1403 =3D "22:IPI:IPI00027214  ";
  var h0_q881 =3D " ";
  var h0_q883 =3D " ";
  var h43_q84 =3D "43:IPI:IPI00029137  ";
  var h0_q884 =3D " ";
  var h0_q885 =3D " ";
  var h0_q886 =3D " ";
  var h0_q887 =3D " ";
  var h4_q1200 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h0_q888 =3D " ";
  var h0_q889 =3D " ";
  var h17_q226 =3D "17:IPI:IPI00027488  ";
  var h15_q642 =3D "15:IPI:IPI00021327  ";
  var h2_q472 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h2_q473 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q890 =3D " ";
  var h0_q891 =3D " ";
  var h0_q892 =3D " ";
  var h0_q894 =3D " ";
  var h0_q895 =3D " ";
  var h0_q896 =3D " ";
  var h0_q897 =3D " ";
  var h0_q898 =3D " ";
  var h0_q899 =3D " ";
  var h3_q1199 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h74_q586 =3D "74:IPI:IPI00019412  ";
  var h53_q204 =3D "53:IPI:IPI00001376  ";
  var h75_q382 =3D "75:IPI:IPI00016856  ";
  var h41_q1112 =3D "41:IPI:IPI00010796  ";
  var h45_q39 =3D "45:IPI:IPI00026621  ";
  var h12_q103 =3D "12:IPI:IPI00028646  ";
  var h12_q104 =3D "12:IPI:IPI00028646  ";
  var h61_q336 =3D "61:IPI:IPI00007781  ";
  var h24_q588 =3D "24:IPI:IPI00003362  ";
  var h3_q292 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q296 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q297 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q298 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q299 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h62_q130 =3D "47:IPI:IPI00013485  62:IPI:IPI00025777  ";
  var h24_q913 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI000029=
65  ";
  var h24_q914 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI000029=
65  ";
  var h24_q915 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI000029=
65  ";
  var h99_q803 =3D "99:IPI:IPI00030246  ";
  var h99_q804 =3D "99:IPI:IPI00030246  ";
  var h3_q627 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q628 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q629 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h5_q210 =3D "5:IPI:IPI00018231  ";
  var h1_q41 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h1_q48 =3D "1:IPI:IPI00019502  ";
  var h17_q600 =3D "17:IPI:IPI00027488  ";
  var h9_q580 =3D "9:IPI:IPI00033494  ";
  var h9_q581 =3D "9:IPI:IPI00033494  ";
  var h1_q56 =3D "1:IPI:IPI00019502  ";
  var h86_q242 =3D "86:IPI:IPI00025806  ";
  var h29_q25 =3D "29:IPI:IPI00007188  ";
  var h54_q73 =3D "54:IPI:IPI00013296  ";
  var h36_q236 =3D "36:IPI:IPI00030575  ";
  var h3_q666 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h3_q667 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q100 =3D " ";
  var h0_q101 =3D " ";
  var h11_q379 =3D "11:IPI:IPI00023528  13:IPI:IPI00000230  44:IPI:IPI00013=
991  ";
  var h0_q105 =3D " ";
  var h0_q106 =3D " ";
  var h0_q108 =3D " ";
  var h0_q109 =3D " ";
  var h0_q1300 =3D " ";
  var h3_q674 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1301 =3D " ";
  var h3_q675 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1302 =3D " ";
  var h3_q676 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1303 =3D " ";
  var h3_q677 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1304 =3D " ";
  var h3_q678 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q110 =3D " ";
  var h0_q111 =3D " ";
  var h0_q112 =3D " ";
  var h2_q8 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727  "=
;
  var h0_q119 =3D " ";
  var h44_q379 =3D "11:IPI:IPI00023528  13:IPI:IPI00000230  44:IPI:IPI00013=
991  ";
  var h0_q1312 =3D " ";
  var h0_q1313 =3D " ";
  var h0_q1314 =3D " ";
  var h0_q1315 =3D " ";
  var h0_q1316 =3D " ";
  var h0_q1317 =3D " ";
  var h0_q1318 =3D " ";
  var h0_q1319 =3D " ";
  var h0_q120 =3D " ";
  var h0_q121 =3D " ";
  var h0_q122 =3D " ";
  var h0_q123 =3D " ";
  var h0_q124 =3D " ";
  var h0_q125 =3D " ";
  var h0_q126 =3D " ";
  var h0_q127 =3D " ";
  var h0_q129 =3D " ";
  var h0_q1320 =3D " ";
  var h0_q1321 =3D " ";
  var h0_q1322 =3D " ";
  var h0_q1323 =3D " ";
  var h0_q1324 =3D " ";
  var h0_q1325 =3D " ";
  var h0_q1326 =3D " ";
  var h0_q1327 =3D " ";
  var h0_q1328 =3D " ";
  var h0_q1329 =3D " ";
  var h64_q117 =3D "64:IPI:IPI00002844  ";
  var h0_q132 =3D " ";
  var h0_q133 =3D " ";
  var h0_q134 =3D " ";
  var h0_q135 =3D " ";
  var h59_q560 =3D "59:IPI:IPI00016774  ";
  var h0_q136 =3D " ";
  var h0_q137 =3D " ";
  var h0_q138 =3D " ";
  var h0_q139 =3D " ";
  var h0_q1330 =3D " ";
  var h0_q1331 =3D " ";
  var h0_q1332 =3D " ";
  var h0_q1333 =3D " ";
  var h22_q222 =3D "22:IPI:IPI00027214  ";
  var h0_q1334 =3D " ";
  var h0_q1335 =3D " ";
  var h0_q1336 =3D " ";
  var h0_q1337 =3D " ";
  var h0_q1338 =3D " ";
  var h0_q1339 =3D " ";
  var h19_q251 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h19_q252 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h19_q253 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h0_q140 =3D " ";
  var h80_q365 =3D "80:IPI:IPI00008406  ";
  var h0_q143 =3D " ";
  var h0_q144 =3D " ";
  var h28_q168 =3D "28:IPI:IPI00034297  ";
  var h0_q147 =3D " ";
  var h0_q149 =3D " ";
  var h0_q1340 =3D " ";
  var h0_q1341 =3D " ";
  var h0_q1342 =3D " ";
  var h0_q1343 =3D " ";
  var h0_q1344 =3D " ";
  var h0_q1345 =3D " ";
  var h0_q1346 =3D " ";
  var h12_q533 =3D "12:IPI:IPI00028646  ";
  var h0_q1347 =3D " ";
  var h6_q1062 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h0_q1348 =3D " ";
  var h6_q1063 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h0_q1349 =3D " ";
  var h6_q1064 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h0_q150 =3D " ";
  var h0_q151 =3D " ";
  var h28_q175 =3D "28:IPI:IPI00034297  ";
  var h0_q152 =3D " ";
  var h0_q154 =3D " ";
  var h0_q156 =3D " ";
  var h0_q157 =3D " ";
  var h0_q158 =3D " ";
  var h0_q159 =3D " ";
  var h65_q51 =3D "65:IPI:IPI00013003  ";
  var h65_q1253 =3D "65:IPI:IPI00013003  ";
  var h0_q1350 =3D " ";
  var h0_q1351 =3D " ";
  var h0_q1352 =3D " ";
  var h0_q1353 =3D " ";
  var h0_q1354 =3D " ";
  var h0_q1355 =3D " ";
  var h0_q1356 =3D " ";
  var h0_q1357 =3D " ";
  var h90_q403 =3D "90:IPI:IPI00012587  ";
  var h64_q141 =3D "64:IPI:IPI00002844  ";
  var h0_q1358 =3D " ";
  var h27_q710 =3D "14:IPI:IPI00033619  27:IPI:IPI00013921  ";
  var h0_q1359 =3D " ";
  var h0_q160 =3D " ";
  var h0_q161 =3D " ";
  var h0_q162 =3D " ";
  var h0_q163 =3D " ";
  var h0_q166 =3D " ";
  var h0_q169 =3D " ";
  var h38_q94 =3D "38:IPI:IPI00022753  ";
  var h0_q1360 =3D " ";
  var h3_q61 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q1361 =3D " ";
  var h0_q1362 =3D " ";
  var h0_q1363 =3D " ";
  var h0_q1364 =3D " ";
  var h0_q1365 =3D " ";
  var h0_q1366 =3D " ";
  var h72_q7 =3D "72:IPI:IPI00017287  ";
  var h0_q1367 =3D " ";
  var h0_q1368 =3D " ";
  var h0_q1369 =3D " ";
  var h21_q468 =3D "10:IPI:IPI00011042  21:IPI:IPI00017216  ";
  var h0_q170 =3D " ";
  var h0_q171 =3D " ";
  var h0_q172 =3D " ";
  var h0_q173 =3D " ";
  var h0_q174 =3D " ";
  var h0_q176 =3D " ";
  var h0_q177 =3D " ";
  var h0_q178 =3D " ";
  var h0_q179 =3D " ";
  var h92_q48 =3D "92:IPI:IPI00009181  ";
  var h40_q402 =3D "14:IPI:IPI00033619  40:IPI:IPI00027230  ";
  var h0_q1370 =3D " ";
  var h0_q1371 =3D " ";
  var h0_q1372 =3D " ";
  var h0_q1373 =3D " ";
  var h30_q380 =3D "30:IPI:IPI00018158  32:IPI:IPI00030960  ";
  var h0_q1374 =3D " ";
  var h47_q130 =3D "47:IPI:IPI00013485  62:IPI:IPI00025777  ";
  var h0_q1375 =3D " ";
  var h0_q1376 =3D " ";
  var h0_q1378 =3D " ";
  var h0_q1379 =3D " ";
  var h0_q500 =3D " ";
  var h0_q501 =3D " ";
  var h0_q502 =3D " ";
  var h0_q503 =3D " ";
  var h0_q504 =3D " ";
  var h0_q505 =3D " ";
  var h0_q181 =3D " ";
  var h0_q506 =3D " ";
  var h0_q182 =3D " ";
  var h0_q507 =3D " ";
  var h0_q184 =3D " ";
  var h0_q509 =3D " ";
  var h0_q187 =3D " ";
  var h0_q189 =3D " ";
  var h0_q1700 =3D " ";
  var h0_q1701 =3D " ";
  var h0_q1702 =3D " ";
  var h0_q1703 =3D " ";
  var h0_q1704 =3D " ";
  var h0_q1380 =3D " ";
  var h0_q1705 =3D " ";
  var h0_q1381 =3D " ";
  var h0_q1706 =3D " ";
  var h0_q1382 =3D " ";
  var h0_q1707 =3D " ";
  var h0_q1383 =3D " ";
  var h0_q1708 =3D " ";
  var h0_q1384 =3D " ";
  var h0_q1709 =3D " ";
  var h0_q1385 =3D " ";
  var h0_q1388 =3D " ";
  var h54_q470 =3D "54:IPI:IPI00013296  ";
  var h0_q1389 =3D " ";
  var h0_q510 =3D " ";
  var h0_q513 =3D " ";
  var h0_q514 =3D " ";
  var h0_q190 =3D " ";
  var h0_q191 =3D " ";
  var h0_q193 =3D " ";
  var h0_q194 =3D " ";
  var h96_q375 =3D "96:IPI:IPI00020647  ";
  var h0_q195 =3D " ";
  var h0_q197 =3D " ";
  var h0_q198 =3D " ";
  var h0_q199 =3D " ";
  var h0_q1710 =3D " ";
  var h0_q1711 =3D " ";
  var h0_q1712 =3D " ";
  var h0_q1713 =3D " ";
  var h0_q1714 =3D " ";
  var h0_q1390 =3D " ";
  var h0_q1715 =3D " ";
  var h0_q1391 =3D " ";
  var h0_q1716 =3D " ";
  var h0_q1392 =3D " ";
  var h0_q1717 =3D " ";
  var h0_q1393 =3D " ";
  var h0_q1718 =3D " ";
  var h0_q1394 =3D " ";
  var h0_q1719 =3D " ";
  var h0_q1395 =3D " ";
  var h0_q1396 =3D " ";
  var h0_q1397 =3D " ";
  var h0_q1398 =3D " ";
  var h18_q840 =3D "18:IPI:IPI00016613  ";
  var h0_q1399 =3D " ";
  var h13_q379 =3D "11:IPI:IPI00023528  13:IPI:IPI00000230  44:IPI:IPI00013=
991  ";
  var h0_q521 =3D " ";
  var h0_q522 =3D " ";
  var h0_q523 =3D " ";
  var h0_q524 =3D " ";
  var h0_q525 =3D " ";
  var h0_q526 =3D " ";
  var h0_q527 =3D " ";
  var h0_q528 =3D " ";
  var h0_q529 =3D " ";
  var h2_q1122 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h56_q1472 =3D "56:IPI:IPI00000952  ";
  var h0_q1720 =3D " ";
  var h2_q1124 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h0_q1721 =3D " ";
  var h2_q1125 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h0_q1722 =3D " ";
  var h0_q1723 =3D " ";
  var h0_q1724 =3D " ";
  var h5_q27 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h0_q1725 =3D " ";
  var h0_q1726 =3D " ";
  var h0_q1727 =3D " ";
  var h0_q1728 =3D " ";
  var h55_q602 =3D "55:IPI:IPI00029191  ";
  var h0_q1729 =3D " ";
  var h29_q341 =3D "29:IPI:IPI00007188  ";
  var h83_q127 =3D "83:IPI:IPI00030790  ";
  var h1_q320 =3D "1:IPI:IPI00019502  ";
  var h2_q113 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q530 =3D " ";
  var h2_q114 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q531 =3D " ";
  var h1_q323 =3D "1:IPI:IPI00019502  ";
  var h0_q532 =3D " ";
  var h0_q533 =3D " ";
  var h0_q534 =3D " ";
  var h0_q535 =3D " ";
  var h0_q536 =3D " ";
  var h0_q537 =3D " ";
  var h0_q538 =3D " ";
  var h0_q539 =3D " ";
  var h0_q1730 =3D " ";
  var h0_q1731 =3D " ";
  var h0_q1732 =3D " ";
  var h0_q1733 =3D " ";
  var h0_q1734 =3D " ";
  var h5_q37 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h0_q1735 =3D " ";
  var h0_q1736 =3D " ";
  var h0_q1737 =3D " ";
  var h0_q1738 =3D " ";
  var h0_q1739 =3D " ";
  var h100_q204 =3D "100:IPI:IPI00026320  ";
  var h0_q540 =3D " ";
  var h0_q541 =3D " ";
  var h0_q542 =3D " ";
  var h0_q543 =3D " ";
  var h97_q192 =3D "97:IPI:IPI00027824  ";
  var h0_q544 =3D " ";
  var h0_q547 =3D " ";
  var h1_q339 =3D "1:IPI:IPI00019502  ";
  var h0_q548 =3D " ";
  var h0_q549 =3D " ";
  var h0_q1740 =3D " ";
  var h14_q511 =3D "14:IPI:IPI00033619  ";
  var h0_q1741 =3D " ";
  var h14_q512 =3D "14:IPI:IPI00033619  ";
  var h0_q1742 =3D " ";
  var h0_q1743 =3D " ";
  var h0_q1744 =3D " ";
  var h0_q1745 =3D " ";
  var h0_q1746 =3D " ";
  var h0_q1747 =3D " ";
  var h0_q1748 =3D " ";
  var h0_q1749 =3D " ";
  var h0_q550 =3D " ";
  var h1_q342 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  34:IPI:IPI0001608=
7  ";
  var h0_q551 =3D " ";
  var h0_q552 =3D " ";
  var h0_q553 =3D " ";
  var h6_q7 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q554 =3D " ";
  var h0_q555 =3D " ";
  var h0_q556 =3D " ";
  var h0_q557 =3D " ";
  var h7_q604 =3D "7:IPI:IPI00003865  ";
  var h1_q349 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h0_q559 =3D " ";
  var h0_q1750 =3D " ";
  var h0_q1751 =3D " ";
  var h0_q1752 =3D " ";
  var h0_q1753 =3D " ";
  var h0_q1754 =3D " ";
  var h0_q1755 =3D " ";
  var h0_q1757 =3D " ";
  var h0_q1758 =3D " ";
  var h0_q1759 =3D " ";
  var h1_q350 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h0_q561 =3D " ";
  var h0_q563 =3D " ";
  var h0_q564 =3D " ";
  var h0_q565 =3D " ";
  var h0_q566 =3D " ";
  var h0_q567 =3D " ";
  var h0_q568 =3D " ";
  var h0_q569 =3D " ";
  var h0_q1760 =3D " ";
  var h0_q1761 =3D " ";
  var h0_q1762 =3D " ";
  var h0_q1763 =3D " ";
  var h49_q103 =3D "49:IPI:IPI00029286  ";
  var h0_q1764 =3D " ";
  var h49_q104 =3D "49:IPI:IPI00029286  ";
  var h0_q1765 =3D " ";
  var h0_q1766 =3D " ";
  var h0_q1767 =3D " ";
  var h0_q1768 =3D " ";
  var h0_q1769 =3D " ";
  var h0_q570 =3D " ";
  var h0_q571 =3D " ";
  var h45_q948 =3D "45:IPI:IPI00026621  ";
  var h0_q572 =3D " ";
  var h45_q949 =3D "45:IPI:IPI00026621  ";
  var h0_q573 =3D " ";
  var h0_q575 =3D " ";
  var h0_q576 =3D " ";
  var h0_q577 =3D " ";
  var h0_q578 =3D " ";
  var h17_q1265 =3D "17:IPI:IPI00027488  ";
  var h15_q332 =3D "15:IPI:IPI00021327  ";
  var h0_q1770 =3D " ";
  var h0_q1771 =3D " ";
  var h0_q1772 =3D " ";
  var h0_q1773 =3D " ";
  var h0_q1774 =3D " ";
  var h0_q1775 =3D " ";
  var h0_q1776 =3D " ";
  var h0_q1777 =3D " ";
  var h46_q741 =3D "46:IPI:IPI00011269  ";
  var h0_q1778 =3D " ";
  var h46_q742 =3D "46:IPI:IPI00011269  ";
  var h0_q1779 =3D " ";
  var h0_q900 =3D " ";
  var h0_q901 =3D " ";
  var h0_q902 =3D " ";
  var h0_q903 =3D " ";
  var h0_q904 =3D " ";
  var h0_q905 =3D " ";
  var h0_q906 =3D " ";
  var h0_q582 =3D " ";
  var h0_q907 =3D " ";
  var h0_q583 =3D " ";
  var h0_q908 =3D " ";
  var h0_q584 =3D " ";
  var h0_q585 =3D " ";
  var h0_q587 =3D " ";
  var h3_q1200 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h0_q589 =3D " ";
  var h0_q1780 =3D " ";
  var h92_q410 =3D "92:IPI:IPI00009181  ";
  var h0_q1781 =3D " ";
  var h0_q1782 =3D " ";
  var h0_q1783 =3D " ";
  var h0_q1784 =3D " ";
  var h0_q1785 =3D " ";
  var h0_q1786 =3D " ";
  var h0_q1787 =3D " ";
  var h0_q1788 =3D " ";
  var h0_q1789 =3D " ";
  var h0_q910 =3D " ";
  var h0_q911 =3D " ";
  var h0_q912 =3D " ";
  var h99_q146 =3D "99:IPI:IPI00030246  ";
  var h0_q591 =3D " ";
  var h0_q916 =3D " ";
  var h0_q592 =3D " ";
  var h0_q917 =3D " ";
  var h0_q593 =3D " ";
  var h0_q918 =3D " ";
  var h0_q919 =3D " ";
  var h0_q597 =3D " ";
  var h0_q598 =3D " ";
  var h0_q599 =3D " ";
  var h6_q855 =3D "6:IPI:IPI00021439  ";
  var h32_q380 =3D "30:IPI:IPI00018158  32:IPI:IPI00030960  ";
  var h0_q1790 =3D " ";
  var h0_q1791 =3D " ";
  var h0_q1792 =3D " ";
  var h0_q1793 =3D " ";
  var h0_q1794 =3D " ";
  var h0_q1795 =3D " ";
  var h2_q1199 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h65_q371 =3D "65:IPI:IPI00013003  ";
  var h0_q1796 =3D " ";
  var h31_q595 =3D "31:IPI:IPI00021266  ";
  var h0_q1797 =3D " ";
  var h83_q517 =3D "83:IPI:IPI00030790  ";
  var h0_q1798 =3D " ";
  var h83_q518 =3D "83:IPI:IPI00030790  ";
  var h0_q1799 =3D " ";
  var h83_q519 =3D "83:IPI:IPI00030790  ";
  var h0_q920 =3D " ";
  var h0_q921 =3D " ";
  var h0_q922 =3D " ";
  var h0_q923 =3D " ";
  var h0_q924 =3D " ";
  var h0_q926 =3D " ";
  var h0_q927 =3D " ";
  var h0_q928 =3D " ";
  var h0_q929 =3D " ";
  var h33_q180 =3D "33:IPI:IPI00011253  ";
  var h0_q931 =3D " ";
  var h0_q933 =3D " ";
  var h2_q517 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q934 =3D " ";
  var h2_q518 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q935 =3D " ";
  var h2_q519 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q936 =3D " ";
  var h0_q937 =3D " ";
  var h6_q873 =3D "6:IPI:IPI00021439  ";
  var h10_q225 =3D "10:IPI:IPI00011042  21:IPI:IPI00017216  ";
  var h2_q520 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h57_q275 =3D "57:IPI:IPI00013889  ";
  var h22_q1141 =3D "22:IPI:IPI00027214  ";
  var h57_q276 =3D "57:IPI:IPI00013889  ";
  var h22_q1142 =3D "22:IPI:IPI00027214  ";
  var h0_q940 =3D " ";
  var h22_q1143 =3D "22:IPI:IPI00027214  ";
  var h0_q941 =3D " ";
  var h1_q733 =3D "1:IPI:IPI00019502  ";
  var h47_q577 =3D "47:IPI:IPI00013485  ";
  var h0_q942 =3D " ";
  var h1_q734 =3D "1:IPI:IPI00019502  ";
  var h0_q943 =3D " ";
  var h1_q735 =3D "1:IPI:IPI00019502  ";
  var h0_q944 =3D " ";
  var h0_q945 =3D " ";
  var h0_q946 =3D " ";
  var h0_q947 =3D " ";
  var h15_q705 =3D "15:IPI:IPI00021327  ";
  var h15_q706 =3D "15:IPI:IPI00021327  ";
  var h15_q707 =3D "15:IPI:IPI00021327  ";
  var h8_q1264 =3D "8:IPI:IPI00021428  ";
  var h4_q113 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q114 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q950 =3D " ";
  var h0_q951 =3D " ";
  var h0_q952 =3D " ";
  var h0_q953 =3D " ";
  var h0_q954 =3D " ";
  var h0_q955 =3D " ";
  var h0_q956 =3D " ";
  var h0_q957 =3D " ";
  var h0_q958 =3D " ";
  var h88_q697 =3D "88:IPI:IPI00027269  ";
  var h0_q959 =3D " ";
  var h88_q698 =3D "88:IPI:IPI00027269  ";
  var h7_q689 =3D "7:IPI:IPI00003865  25:IPI:IPI00002965  ";
  var h24_q622 =3D "24:IPI:IPI00003362  ";
  var h26_q206 =3D "26:IPI:IPI00011335  ";
  var h0_q960 =3D " ";
  var h0_q961 =3D " ";
  var h0_q962 =3D " ";
  var h0_q963 =3D " ";
  var h1_q755 =3D "1:IPI:IPI00019502  ";
  var h0_q964 =3D " ";
  var h0_q965 =3D " ";
  var h0_q966 =3D " ";
  var h0_q967 =3D " ";
  var h0_q968 =3D " ";
  var h0_q969 =3D " ";
  var h96_q37 =3D "96:IPI:IPI00020647  ";
  var h69_q68 =3D "69:IPI:IPI00004071  ";
  var h50_q574 =3D "50:IPI:IPI00005762  ";
  var h50_q1007 =3D "50:IPI:IPI00005762  ";
  var h0_q970 =3D " ";
  var h1_q763 =3D "1:IPI:IPI00019502  ";
  var h0_q972 =3D " ";
  var h1_q765 =3D "1:IPI:IPI00019502  ";
  var h19_q1062 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI000032=
69  ";
  var h0_q974 =3D " ";
  var h1_q766 =3D "1:IPI:IPI00019502  ";
  var h19_q1063 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI000032=
69  ";
  var h0_q975 =3D " ";
  var h19_q1064 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI000032=
69  ";
  var h0_q976 =3D " ";
  var h0_q977 =3D " ";
  var h0_q978 =3D " ";
  var h0_q979 =3D " ";
  var h34_q342 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  34:IPI:IPI000160=
87  ";
  var h26_q228 =3D "26:IPI:IPI00011335  ";
  var h9_q610 =3D "9:IPI:IPI00033494  ";
  var h0_q980 =3D " ";
  var h0_q981 =3D " ";
  var h0_q982 =3D " ";
  var h0_q984 =3D " ";
  var h0_q985 =3D " ";
  var h0_q986 =3D " ";
  var h0_q987 =3D " ";
  var h0_q988 =3D " ";
  var h0_q989 =3D " ";
  var h71_q103 =3D "71:IPI:IPI00019567  ";
  var h71_q104 =3D "71:IPI:IPI00019567  ";
  var h0_q990 =3D " ";
  var h0_q992 =3D " ";
  var h0_q993 =3D " ";
  var h0_q999 =3D " ";
  var h5_q1014 =3D "5:IPI:IPI00018231  ";
  var h24_q661 =3D "24:IPI:IPI00003362  ";
  var h66_q562 =3D "66:IPI:IPI00022003  ";
  var h0_q1000 =3D " ";
  var h0_q1001 =3D " ";
  var h0_q1002 =3D " ";
  var h0_q1003 =3D " ";
  var h0_q1004 =3D " ";
  var h0_q1005 =3D " ";
  var h0_q1006 =3D " ";
  var h0_q1008 =3D " ";
  var h0_q1009 =3D " ";
  var h37_q1078 =3D "17:IPI:IPI00027488  37:IPI:IPI00012815  46:IPI:IPI0001=
1269  ";
  var h37_q1079 =3D "17:IPI:IPI00027488  37:IPI:IPI00012815  46:IPI:IPI0001=
1269  ";
  var h58_q453 =3D "58:IPI:IPI00008530  ";
  var h58_q454 =3D "58:IPI:IPI00008530  ";
  var h0_q1010 =3D " ";
  var h0_q1011 =3D " ";
  var h0_q1012 =3D " ";
  var h0_q1013 =3D " ";
  var h0_q1015 =3D " ";
  var h0_q1016 =3D " ";
  var h0_q1017 =3D " ";
  var h0_q1018 =3D " ";
  var h0_q1019 =3D " ";
  var h0_q1021 =3D " ";
  var h0_q1022 =3D " ";
  var h0_q1023 =3D " ";
  var h0_q1024 =3D " ";
  var h0_q1025 =3D " ";
  var h0_q1026 =3D " ";
  var h0_q1027 =3D " ";
  var h0_q1028 =3D " ";
  var h0_q1029 =3D " ";
  var h71_q145 =3D "71:IPI:IPI00019567  86:IPI:IPI00025806  ";
  var h4_q517 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q518 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q519 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1030 =3D " ";
  var h0_q1031 =3D " ";
  var h0_q1032 =3D " ";
  var h2_q938 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1033 =3D " ";
  var h2_q939 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1034 =3D " ";
  var h0_q1035 =3D " ";
  var h0_q1036 =3D " ";
  var h0_q1037 =3D " ";
  var h0_q1038 =3D " ";
  var h0_q1039 =3D " ";
  var h4_q520 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h6_q107 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI00003269=
  ";
  var h0_q1040 =3D " ";
  var h0_q1041 =3D " ";
  var h0_q1042 =3D " ";
  var h0_q1043 =3D " ";
  var h0_q1044 =3D " ";
  var h0_q1045 =3D " ";
  var h0_q1046 =3D " ";
  var h0_q1047 =3D " ";
  var h0_q1048 =3D " ";
  var h0_q1049 =3D " ";
  var h52_q557 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h52_q558 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h20_q75 =3D "20:IPI:IPI00021826  ";
  var h0_q1050 =3D " ";
  var h0_q1051 =3D " ";
  var h0_q1052 =3D " ";
  var h0_q1053 =3D " ";
  var h0_q1054 =3D " ";
  var h0_q1055 =3D " ";
  var h0_q1056 =3D " ";
  var h0_q1057 =3D " ";
  var h0_q1058 =3D " ";
  var h0_q1059 =3D " ";
  var h3_q751 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1061 =3D " ";
  var h50_q1099 =3D "50:IPI:IPI00005762  ";
  var h0_q1065 =3D " ";
  var h0_q1066 =3D " ";
  var h0_q1067 =3D " ";
  var h0_q1068 =3D " ";
  var h0_q1069 =3D " ";
  var h52_q570 =3D "52:IPI:IPI00000880  ";
  var h27_q426 =3D "27:IPI:IPI00013921  ";
  var h4_q1386 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h4_q1387 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h41_q1278 =3D "41:IPI:IPI00010796  ";
  var h0_q1070 =3D " ";
  var h41_q1279 =3D "41:IPI:IPI00010796  ";
  var h0_q1071 =3D " ";
  var h0_q1072 =3D " ";
  var h0_q1073 =3D " ";
  var h0_q1074 =3D " ";
  var h0_q1075 =3D " ";
  var h0_q1076 =3D " ";
  var h0_q1077 =3D " ";
  var h71_q514 =3D "71:IPI:IPI00019567  ";
  var h0_q200 =3D " ";
  var h71_q515 =3D "71:IPI:IPI00019567  ";
  var h0_q201 =3D " ";
  var h71_q516 =3D "71:IPI:IPI00019567  ";
  var h0_q203 =3D " ";
  var h54_q167 =3D "54:IPI:IPI00013296  ";
  var h0_q205 =3D " ";
  var h0_q208 =3D " ";
  var h0_q209 =3D " ";
  var h10_q1155 =3D "10:IPI:IPI00011042  ";
  var h86_q367 =3D "86:IPI:IPI00025806  ";
  var h86_q368 =3D "86:IPI:IPI00025806  ";
  var h10_q1158 =3D "10:IPI:IPI00011042  ";
  var h0_q1400 =3D " ";
  var h0_q1401 =3D " ";
  var h0_q1402 =3D " ";
  var h31_q202 =3D "31:IPI:IPI00021266  ";
  var h0_q1404 =3D " ";
  var h0_q1080 =3D " ";
  var h0_q1405 =3D " ";
  var h0_q1081 =3D " ";
  var h0_q1406 =3D " ";
  var h0_q1082 =3D " ";
  var h0_q1407 =3D " ";
  var h0_q1083 =3D " ";
  var h0_q1408 =3D " ";
  var h0_q1084 =3D " ";
  var h98_q75 =3D "98:IPI:IPI00000705  ";
  var h0_q1409 =3D " ";
  var h0_q1085 =3D " ";
  var h0_q1086 =3D " ";
  var h0_q1087 =3D " ";
  var h0_q1088 =3D " ";
  var h0_q1089 =3D " ";
  var h0_q211 =3D " ";
  var h0_q212 =3D " ";
  var h0_q214 =3D " ";
  var h0_q217 =3D " ";
  var h0_q218 =3D " ";
  var h0_q219 =3D " ";
  var h92_q1125 =3D "92:IPI:IPI00009181  ";
  var h0_q1410 =3D " ";
  var h92_q1127 =3D "92:IPI:IPI00009181  ";
  var h0_q1411 =3D " ";
  var h0_q1412 =3D " ";
  var h0_q1413 =3D " ";
  var h0_q1414 =3D " ";
  var h0_q1090 =3D " ";
  var h0_q1415 =3D " ";
  var h0_q1091 =3D " ";
  var h0_q1416 =3D " ";
  var h0_q1092 =3D " ";
  var h0_q1417 =3D " ";
  var h0_q1093 =3D " ";
  var h0_q1418 =3D " ";
  var h0_q1094 =3D " ";
  var h0_q1419 =3D " ";
  var h0_q1095 =3D " ";
  var h0_q1096 =3D " ";
  var h0_q1097 =3D " ";
  var h0_q1098 =3D " ";
  var h0_q220 =3D " ";
  var h0_q221 =3D " ";
  var h0_q223 =3D " ";
  var h0_q227 =3D " ";
  var h0_q229 =3D " ";
  var h0_q1420 =3D " ";
  var h0_q1421 =3D " ";
  var h0_q1422 =3D " ";
  var h0_q1423 =3D " ";
  var h0_q1424 =3D " ";
  var h0_q1425 =3D " ";
  var h0_q1426 =3D " ";
  var h0_q1427 =3D " ";
  var h0_q1428 =3D " ";
  var h0_q1429 =3D " ";
  var h5_q1443 =3D "5:IPI:IPI00018231  ";
  var h0_q230 =3D " ";
  var h0_q231 =3D " ";
  var h0_q232 =3D " ";
  var h0_q233 =3D " ";
  var h0_q234 =3D " ";
  var h0_q235 =3D " ";
  var h0_q237 =3D " ";
  var h5_q705 =3D "5:IPI:IPI00018231  ";
  var h0_q1430 =3D " ";
  var h0_q1431 =3D " ";
  var h0_q1432 =3D " ";
  var h0_q1433 =3D " ";
  var h0_q1434 =3D " ";
  var h0_q1435 =3D " ";
  var h0_q1436 =3D " ";
  var h0_q1438 =3D " ";
  var h0_q1439 =3D " ";
  var h0_q240 =3D " ";
  var h0_q241 =3D " ";
  var h0_q243 =3D " ";
  var h0_q245 =3D " ";
  var h0_q246 =3D " ";
  var h0_q247 =3D " ";
  var h0_q248 =3D " ";
  var h0_q1440 =3D " ";
  var h0_q1441 =3D " ";
  var h0_q1442 =3D " ";
  var h0_q1444 =3D " ";
  var h0_q1445 =3D " ";
  var h0_q1446 =3D " ";
  var h0_q1447 =3D " ";
  var h0_q1448 =3D " ";
  var h0_q1449 =3D " ";
  var h78_q615 =3D "78:IPI:IPI00028654  ";
  var h0_q254 =3D " ";
  var h0_q255 =3D " ";
  var h40_q54 =3D "40:IPI:IPI00027230  ";
  var h0_q256 =3D " ";
  var h0_q257 =3D " ";
  var h0_q258 =3D " ";
  var h0_q259 =3D " ";
  var h5_q727 =3D "5:IPI:IPI00018231  ";
  var h5_q728 =3D "5:IPI:IPI00018231  ";
  var h5_q729 =3D "5:IPI:IPI00018231  ";
  var h4_q938 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q939 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1450 =3D " ";
  var h23_q131 =3D "23:IPI:IPI00015344  48:IPI:IPI00029036  ";
  var h0_q1451 =3D " ";
  var h0_q1452 =3D " ";
  var h1_q1154 =3D "1:IPI:IPI00019502  ";
  var h0_q1453 =3D " ";
  var h0_q1454 =3D " ";
  var h1_q1156 =3D "1:IPI:IPI00019502  ";
  var h0_q1455 =3D " ";
  var h0_q1456 =3D " ";
  var h0_q1457 =3D " ";
  var h0_q1458 =3D " ";
  var h0_q1459 =3D " ";
  var h0_q260 =3D " ";
  var h0_q261 =3D " ";
  var h0_q262 =3D " ";
  var h0_q263 =3D " ";
  var h0_q264 =3D " ";
  var h7_q312 =3D "7:IPI:IPI00003865  ";
  var h0_q265 =3D " ";
  var h0_q266 =3D " ";
  var h0_q267 =3D " ";
  var h8_q107 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI00003269=
  ";
  var h0_q269 =3D " ";
  var h0_q1460 =3D " ";
  var h0_q1461 =3D " ";
  var h0_q1462 =3D " ";
  var h0_q1463 =3D " ";
  var h0_q1464 =3D " ";
  var h0_q1465 =3D " ";
  var h0_q1466 =3D " ";
  var h0_q1467 =3D " ";
  var h0_q1468 =3D " ";
  var h0_q1469 =3D " ";
  var h11_q866 =3D "11:IPI:IPI00023528  26:IPI:IPI00011335  ";
  var h11_q868 =3D "11:IPI:IPI00023528  26:IPI:IPI00011335  ";
  var h0_q272 =3D " ";
  var h0_q273 =3D " ";
  var h0_q274 =3D " ";
  var h0_q275 =3D " ";
  var h0_q277 =3D " ";
  var h0_q278 =3D " ";
  var h1_q1171 =3D "1:IPI:IPI00019502  ";
  var h0_q1470 =3D " ";
  var h0_q1471 =3D " ";
  var h0_q1473 =3D " ";
  var h0_q1474 =3D " ";
  var h0_q1475 =3D " ";
  var h0_q1476 =3D " ";
  var h0_q1477 =3D " ";
  var h0_q1478 =3D " ";
  var h0_q1479 =3D " ";
  var h0_q601 =3D " ";
  var h0_q602 =3D " ";
  var h0_q603 =3D " ";
  var h0_q281 =3D " ";
  var h0_q605 =3D " ";
  var h0_q282 =3D " ";
  var h0_q283 =3D " ";
  var h0_q284 =3D " ";
  var h0_q608 =3D " ";
  var h0_q285 =3D " ";
  var h0_q609 =3D " ";
  var h0_q286 =3D " ";
  var h0_q287 =3D " ";
  var h16_q1271 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h0_q288 =3D " ";
  var h0_q289 =3D " ";
  var h2_q1200 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h0_q1800 =3D " ";
  var h0_q1801 =3D " ";
  var h0_q1802 =3D " ";
  var h0_q1803 =3D " ";
  var h0_q1804 =3D " ";
  var h0_q1480 =3D " ";
  var h0_q1805 =3D " ";
  var h0_q1481 =3D " ";
  var h0_q1806 =3D " ";
  var h0_q1482 =3D " ";
  var h0_q1807 =3D " ";
  var h0_q1483 =3D " ";
  var h0_q1808 =3D " ";
  var h0_q1484 =3D " ";
  var h0_q1809 =3D " ";
  var h0_q1485 =3D " ";
  var h0_q1486 =3D " ";
  var h0_q1487 =3D " ";
  var h0_q1488 =3D " ";
  var h0_q1489 =3D " ";
  var h71_q925 =3D "71:IPI:IPI00019567  ";
  var h0_q611 =3D " ";
  var h0_q613 =3D " ";
  var h0_q614 =3D " ";
  var h0_q291 =3D " ";
  var h0_q616 =3D " ";
  var h0_q293 =3D " ";
  var h0_q617 =3D " ";
  var h0_q294 =3D " ";
  var h0_q618 =3D " ";
  var h0_q295 =3D " ";
  var h0_q619 =3D " ";
  var h0_q1810 =3D " ";
  var h0_q1811 =3D " ";
  var h0_q1812 =3D " ";
  var h0_q1813 =3D " ";
  var h0_q1814 =3D " ";
  var h0_q1490 =3D " ";
  var h0_q1815 =3D " ";
  var h0_q1491 =3D " ";
  var h0_q1816 =3D " ";
  var h0_q1492 =3D " ";
  var h41_q317 =3D "41:IPI:IPI00010796  ";
  var h0_q1817 =3D " ";
  var h0_q1493 =3D " ";
  var h0_q1818 =3D " ";
  var h0_q1494 =3D " ";
  var h0_q1819 =3D " ";
  var h0_q1495 =3D " ";
  var h0_q1496 =3D " ";
  var h0_q1497 =3D " ";
  var h0_q1498 =3D " ";
  var h0_q1499 =3D " ";
  var h0_q621 =3D " ";
  var h0_q623 =3D " ";
  var h1_q416 =3D "1:IPI:IPI00019502  ";
  var h0_q624 =3D " ";
  var h0_q625 =3D " ";
  var h15_q53 =3D "15:IPI:IPI00021327  ";
  var h0_q626 =3D " ";
  var h42_q29 =3D "42:IPI:IPI00024093  ";
  var h0_q1820 =3D " ";
  var h0_q1821 =3D " ";
  var h0_q1822 =3D " ";
  var h0_q1823 =3D " ";
  var h41_q324 =3D "41:IPI:IPI00010796  ";
  var h0_q1824 =3D " ";
  var h0_q1825 =3D " ";
  var h0_q1826 =3D " ";
  var h0_q1827 =3D " ";
  var h0_q1828 =3D " ";
  var h0_q1829 =3D " ";
  var h0_q630 =3D " ";
  var h2_q215 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q631 =3D " ";
  var h2_q216 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q632 =3D " ";
  var h18_q1020 =3D "18:IPI:IPI00016613  ";
  var h2_q217 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q633 =3D " ";
  var h0_q635 =3D " ";
  var h0_q636 =3D " ";
  var h0_q637 =3D " ";
  var h0_q638 =3D " ";
  var h0_q639 =3D " ";
  var h5_q785 =3D "5:IPI:IPI00018231  ";
  var h0_q1830 =3D " ";
  var h0_q1831 =3D " ";
  var h0_q1832 =3D " ";
  var h0_q1833 =3D " ";
  var h0_q1834 =3D " ";
  var h0_q1835 =3D " ";
  var h0_q1836 =3D " ";
  var h0_q1837 =3D " ";
  var h0_q1838 =3D " ";
  var h0_q1839 =3D " ";
  var h71_q951 =3D "71:IPI:IPI00019567  ";
  var h21_q1140 =3D "21:IPI:IPI00017216  ";
  var h2_q224 =3D "2:IPI:IPI00004497  4:IPI:IPI00029727  ";
  var h0_q640 =3D " ";
  var h0_q641 =3D " ";
  var h0_q644 =3D " ";
  var h1_q436 =3D "1:IPI:IPI00019502  ";
  var h1_q437 =3D "1:IPI:IPI00019502  ";
  var h0_q646 =3D " ";
  var h1_q438 =3D "1:IPI:IPI00019502  ";
  var h0_q647 =3D " ";
  var h1_q439 =3D "1:IPI:IPI00019502  ";
  var h0_q648 =3D " ";
  var h0_q649 =3D " ";
  var h7_q373 =3D "7:IPI:IPI00003865  ";
  var h0_q1840 =3D " ";
  var h0_q1841 =3D " ";
  var h14_q612 =3D "14:IPI:IPI00033619  27:IPI:IPI00013921  ";
  var h0_q1842 =3D " ";
  var h0_q1843 =3D " ";
  var h0_q1844 =3D " ";
  var h0_q1845 =3D " ";
  var h0_q1846 =3D " ";
  var h0_q1847 =3D " ";
  var h0_q1848 =3D " ";
  var h0_q1849 =3D " ";
  var h0_q650 =3D " ";
  var h0_q651 =3D " ";
  var h0_q652 =3D " ";
  var h0_q653 =3D " ";
  var h15_q81 =3D "15:IPI:IPI00021327  ";
  var h0_q654 =3D " ";
  var h15_q82 =3D "15:IPI:IPI00021327  ";
  var h0_q655 =3D " ";
  var h0_q656 =3D " ";
  var h0_q657 =3D " ";
  var h0_q658 =3D " ";
  var h0_q659 =3D " ";
  var h42_q1756 =3D "42:IPI:IPI00024093  ";
  var h100_q1342 =3D "100:IPI:IPI00026320  ";
  var h0_q1850 =3D " ";
  var h1_q1552 =3D "1:IPI:IPI00019502  ";
  var h0_q1851 =3D " ";
  var h1_q1553 =3D "1:IPI:IPI00019502  ";
  var h0_q1852 =3D " ";
  var h1_q1554 =3D "1:IPI:IPI00019502  ";
  var h0_q1853 =3D " ";
  var h0_q1854 =3D " ";
  var h0_q1855 =3D " ";
  var h0_q1856 =3D " ";
  var h0_q1857 =3D " ";
  var h0_q1858 =3D " ";
  var h0_q1859 =3D " ";
  var h0_q660 =3D " ";
  var h18_q983 =3D "18:IPI:IPI00016613  ";
  var h0_q662 =3D " ";
  var h0_q663 =3D " ";
  var h0_q664 =3D " ";
  var h0_q665 =3D " ";
  var h1_q458 =3D "1:IPI:IPI00019502  ";
  var h0_q668 =3D " ";
  var h0_q669 =3D " ";
  var h0_q1860 =3D " ";
  var h0_q1861 =3D " ";
  var h0_q1862 =3D " ";
  var h0_q1863 =3D " ";
  var h0_q1864 =3D " ";
  var h0_q1865 =3D " ";
  var h0_q1866 =3D " ";
  var h0_q1867 =3D " ";
  var h0_q1868 =3D " ";
  var h0_q1869 =3D " ";
  var h0_q671 =3D " ";
  var h0_q672 =3D " ";
  var h0_q673 =3D " ";
  var h0_q679 =3D " ";
  var h0_q1870 =3D " ";
  var h0_q1871 =3D " ";
  var h0_q1872 =3D " ";
  var h0_q1873 =3D " ";
  var h0_q1874 =3D " ";
  var h67_q7 =3D "67:IPI:IPI00023635  ";
  var h0_q1875 =3D " ";
  var h0_q1876 =3D " ";
  var h73_q570 =3D "73:IPI:IPI00005269  ";
  var h0_q1877 =3D " ";
  var h0_q1878 =3D " ";
  var h7_q1295 =3D "7:IPI:IPI00003865  ";
  var h0_q1879 =3D " ";
  var h7_q1296 =3D "7:IPI:IPI00003865  ";
  var h0_q680 =3D " ";
  var h0_q681 =3D " ";
  var h0_q682 =3D " ";
  var h0_q683 =3D " ";
  var h0_q687 =3D " ";
  var h0_q688 =3D " ";
  var h0_q1880 =3D " ";
  var h0_q1881 =3D " ";
  var h0_q1882 =3D " ";
  var h0_q1883 =3D " ";
  var h0_q1884 =3D " ";
  var h0_q1885 =3D " ";
  var h0_q1886 =3D " ";
  var h0_q1887 =3D " ";
  var h0_q1888 =3D " ";
  var h99_q241 =3D "99:IPI:IPI00030246  ";
  var h0_q1889 =3D " ";
  var h64_q674 =3D "64:IPI:IPI00002844  ";
  var h1_q803 =3D "1:IPI:IPI00019502  ";
  var h64_q675 =3D "64:IPI:IPI00002844  ";
  var h1_q804 =3D "1:IPI:IPI00019502  ";
  var h64_q677 =3D "64:IPI:IPI00002844  ";
  var h0_q691 =3D " ";
  var h0_q693 =3D " ";
  var h0_q694 =3D " ";
  var h2_q279 =3D "2:IPI:IPI00004497  4:IPI:IPI00029727  ";
  var h0_q695 =3D " ";
  var h0_q696 =3D " ";
  var h0_q699 =3D " ";
  var h0_q1890 =3D " ";
  var h0_q1891 =3D " ";
  var h0_q1892 =3D " ";
  var h0_q1893 =3D " ";
  var h0_q1894 =3D " ";
  var h59_q8 =3D "59:IPI:IPI00016774  ";
  var h0_q1895 =3D " ";
  var h0_q1896 =3D " ";
  var h0_q1897 =3D " ";
  var h0_q1898 =3D " ";
  var h0_q1899 =3D " ";
  var h2_q280 =3D "2:IPI:IPI00004497  4:IPI:IPI00029727  ";
  var h3_q400 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h38_q750 =3D "38:IPI:IPI00022753  ";
  var h2_q292 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h62_q1510 =3D "62:IPI:IPI00025777  ";
  var h62_q1511 =3D "62:IPI:IPI00025777  ";
  var h0_q10 =3D " ";
  var h62_q1513 =3D "62:IPI:IPI00025777  ";
  var h0_q11 =3D " ";
  var h2_q296 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h62_q1514 =3D "62:IPI:IPI00025777  ";
  var h0_q12 =3D " ";
  var h2_q297 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q13 =3D " ";
  var h2_q298 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h62_q1516 =3D "62:IPI:IPI00025777  ";
  var h0_q14 =3D " ";
  var h2_q299 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q15 =3D " ";
  var h0_q16 =3D " ";
  var h0_q17 =3D " ";
  var h0_q18 =3D " ";
  var h23_q594 =3D "23:IPI:IPI00015344  ";
  var h23_q596 =3D "23:IPI:IPI00015344  ";
  var h22_q1244 =3D "22:IPI:IPI00027214  ";
  var h2_q627 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h2_q628 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h2_q629 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q21 =3D " ";
  var h0_q22 =3D " ";
  var h0_q23 =3D " ";
  var h0_q24 =3D " ";
  var h9_q356 =3D "9:IPI:IPI00033494  ";
  var h0_q25 =3D " ";
  var h0_q26 =3D " ";
  var h0_q28 =3D " ";
  var h0_q29 =3D " ";
  var h4_q215 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q216 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q217 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q30 =3D " ";
  var h0_q31 =3D " ";
  var h0_q32 =3D " ";
  var h0_q33 =3D " ";
  var h0_q34 =3D " ";
  var h0_q35 =3D " ";
  var h0_q36 =3D " ";
  var h0_q37 =3D " ";
  var h0_q38 =3D " ";
  var h4_q224 =3D "2:IPI:IPI00004497  4:IPI:IPI00029727  ";
  var h0_q40 =3D " ";
  var h0_q42 =3D " ";
  var h0_q43 =3D " ";
  var h9_q375 =3D "9:IPI:IPI00033494  ";
  var h0_q44 =3D " ";
  var h0_q45 =3D " ";
  var h0_q46 =3D " ";
  var h0_q47 =3D " ";
  var h0_q49 =3D " ";
  var h34_q436 =3D "34:IPI:IPI00016087  ";
  var h34_q437 =3D "34:IPI:IPI00016087  ";
  var h34_q438 =3D "34:IPI:IPI00016087  ";
  var h34_q439 =3D "34:IPI:IPI00016087  ";
  var h1_q860 =3D "1:IPI:IPI00019502  ";
  var h71_q49 =3D "71:IPI:IPI00019567  ";
  var h0_q51 =3D " ";
  var h0_q52 =3D " ";
  var h0_q54 =3D " ";
  var h0_q55 =3D " ";
  var h0_q57 =3D " ";
  var h0_q58 =3D " ";
  var h0_q59 =3D " ";
  var h83_q678 =3D "83:IPI:IPI00030790  ";
  var h2_q666 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h2_q667 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q60 =3D " ";
  var h0_q62 =3D " ";
  var h0_q63 =3D " ";
  var h0_q64 =3D " ";
  var h0_q65 =3D " ";
  var h0_q66 =3D " ";
  var h0_q67 =3D " ";
  var h0_q69 =3D " ";
  var h0_q1 =3D " ";
  var h0_q2 =3D " ";
  var h0_q3 =3D " ";
  var h50_q690 =3D "50:IPI:IPI00005762  ";
  var h0_q4 =3D " ";
  var h3_q1386 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h0_q5 =3D " ";
  var h3_q1387 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h50_q692 =3D "50:IPI:IPI00005762  ";
  var h0_q6 =3D " ";
  var h61_q188 =3D "61:IPI:IPI00007781  ";
  var h0_q9 =3D " ";
  var h2_q674 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h2_q675 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h2_q676 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h2_q677 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h2_q678 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q70 =3D " ";
  var h0_q71 =3D " ";
  var h0_q72 =3D " ";
  var h0_q73 =3D " ";
  var h0_q76 =3D " ";
  var h0_q77 =3D " ";
  var h0_q78 =3D " ";
  var h33_q670 =3D "33:IPI:IPI00011253  ";
  var h16_q643 =3D "16:IPI:IPI00019512  ";
  var h16_q645 =3D "16:IPI:IPI00019512  ";
  var h94_q188 =3D "94:IPI:IPI00010109  ";
  var h3_q472 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h3_q473 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q1100 =3D " ";
  var h0_q1101 =3D " ";
  var h0_q1102 =3D " ";
  var h0_q1103 =3D " ";
  var h0_q1104 =3D " ";
  var h0_q1105 =3D " ";
  var h0_q80 =3D " ";
  var h0_q1106 =3D " ";
  var h0_q1107 =3D " ";
  var h0_q1108 =3D " ";
  var h0_q83 =3D " ";
  var h0_q1109 =3D " ";
  var h0_q85 =3D " ";
  var h0_q86 =3D " ";
  var h0_q87 =3D " ";
  var h0_q88 =3D " ";
  var h0_q89 =3D " ";
  var h0_q1110 =3D " ";
  var h0_q1111 =3D " ";
  var h4_q279 =3D "2:IPI:IPI00004497  4:IPI:IPI00029727  ";
  var h0_q1113 =3D " ";
  var h0_q1114 =3D " ";
  var h0_q1115 =3D " ";
  var h0_q90 =3D " ";
  var h0_q1116 =3D " ";
  var h0_q91 =3D " ";
  var h0_q1117 =3D " ";
  var h0_q92 =3D " ";
  var h0_q1118 =3D " ";
  var h0_q93 =3D " ";
  var h0_q1119 =3D " ";
  var h0_q95 =3D " ";
  var h0_q96 =3D " ";
  var h0_q97 =3D " ";
  var h0_q98 =3D " ";
  var h0_q99 =3D " ";
  var h86_q404 =3D "86:IPI:IPI00025806  ";
  var h43_q396 =3D "43:IPI:IPI00029137  ";
  var h4_q280 =3D "2:IPI:IPI00004497  4:IPI:IPI00029727  ";
  var h0_q1120 =3D " ";
  var h0_q1121 =3D " ";
  var h0_q1122 =3D " ";
  var h0_q1123 =3D " ";
  var h0_q1126 =3D " ";
  var h21_q225 =3D "10:IPI:IPI00011042  21:IPI:IPI00017216  ";
  var h0_q1128 =3D " ";
  var h0_q1129 =3D " ";
  var h76_q398 =3D "76:IPI:IPI00003918  ";
  var h5_q408 =3D "5:IPI:IPI00018231  ";
  var h0_q1130 =3D " ";
  var h0_q1131 =3D " ";
  var h0_q1132 =3D " ";
  var h0_q1133 =3D " ";
  var h0_q1134 =3D " ";
  var h0_q1135 =3D " ";
  var h0_q1137 =3D " ";
  var h0_q1138 =3D " ";
  var h0_q1139 =3D " ";
  var h45_q315 =3D "45:IPI:IPI00026621  ";
  var h36_q407 =3D "36:IPI:IPI00030575  ";
  var h25_q913 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI000029=
65  ";
  var h25_q914 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI000029=
65  ";
  var h25_q915 =3D "7:IPI:IPI00003865  24:IPI:IPI00003362  25:IPI:IPI000029=
65  ";
  var h5_q410 =3D "5:IPI:IPI00018231  ";
  var h5_q411 =3D "5:IPI:IPI00018231  ";
  var h6_q207 =3D "6:IPI:IPI00021439  ";
  var h0_q1144 =3D " ";
  var h0_q1145 =3D " ";
  var h0_q1146 =3D " ";
  var h0_q1147 =3D " ";
  var h0_q1148 =3D " ";
  var h0_q1149 =3D " ";
  var h0_q1150 =3D " ";
  var h0_q1151 =3D " ";
  var h0_q1152 =3D " ";
  var h0_q1153 =3D " ";
  var h0_q1157 =3D " ";
  var h27_q511 =3D "27:IPI:IPI00013921  ";
  var h0_q1159 =3D " ";
  var h27_q512 =3D "27:IPI:IPI00013921  ";
  var h5_q433 =3D "5:IPI:IPI00018231  ";
  var h5_q434 =3D "5:IPI:IPI00018231  ";
  var h0_q1160 =3D " ";
  var h2_q61 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  ";
  var h0_q1161 =3D " ";
  var h0_q1162 =3D " ";
  var h0_q1163 =3D " ";
  var h0_q1164 =3D " ";
  var h0_q1165 =3D " ";
  var h0_q1166 =3D " ";
  var h0_q1167 =3D " ";
  var h0_q1168 =3D " ";
  var h0_q1169 =3D " ";
  var h51_q882 =3D "51:IPI:IPI00027006  ";
  var h0_q1170 =3D " ";
  var h0_q1172 =3D " ";
  var h0_q1173 =3D " ";
  var h0_q1174 =3D " ";
  var h0_q1175 =3D " ";
  var h0_q1176 =3D " ";
  var h0_q1177 =3D " ";
  var h0_q1178 =3D " ";
  var h0_q1179 =3D " ";
  var h12_q368 =3D "12:IPI:IPI00028646  ";
  var h0_q301 =3D " ";
  var h0_q302 =3D " ";
  var h0_q303 =3D " ";
  var h0_q304 =3D " ";
  var h0_q305 =3D " ";
  var h0_q306 =3D " ";
  var h0_q307 =3D " ";
  var h0_q308 =3D " ";
  var h60_q1060 =3D "60:IPI:IPI00020052  ";
  var h6_q244 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h4_q666 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1500 =3D " ";
  var h4_q667 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1501 =3D " ";
  var h0_q1502 =3D " ";
  var h0_q1503 =3D " ";
  var h0_q1180 =3D " ";
  var h0_q1504 =3D " ";
  var h0_q1181 =3D " ";
  var h0_q1505 =3D " ";
  var h0_q1182 =3D " ";
  var h0_q1506 =3D " ";
  var h0_q1183 =3D " ";
  var h0_q1507 =3D " ";
  var h0_q1184 =3D " ";
  var h0_q1508 =3D " ";
  var h0_q1185 =3D " ";
  var h0_q1509 =3D " ";
  var h0_q1187 =3D " ";
  var h0_q1188 =3D " ";
  var h0_q1189 =3D " ";
  var h0_q313 =3D " ";
  var h0_q314 =3D " ";
  var h0_q315 =3D " ";
  var h0_q316 =3D " ";
  var h10_q1262 =3D "10:IPI:IPI00011042  21:IPI:IPI00017216  ";
  var h0_q318 =3D " ";
  var h0_q319 =3D " ";
  var h6_q251 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI00003269=
  ";
  var h51_q1242 =3D "51:IPI:IPI00027006  ";
  var h6_q252 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI00003269=
  ";
  var h85_q684 =3D "85:IPI:IPI00007204  89:IPI:IPI00013231  ";
  var h6_q253 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI00003269=
  ";
  var h48_q34 =3D "48:IPI:IPI00029036  ";
  var h4_q674 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q675 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q676 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q677 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h4_q678 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1512 =3D " ";
  var h0_q1190 =3D " ";
  var h0_q1191 =3D " ";
  var h0_q1515 =3D " ";
  var h0_q1192 =3D " ";
  var h0_q1193 =3D " ";
  var h0_q1517 =3D " ";
  var h0_q1194 =3D " ";
  var h0_q1518 =3D " ";
  var h0_q1195 =3D " ";
  var h0_q1519 =3D " ";
  var h0_q1196 =3D " ";
  var h0_q1197 =3D " ";
  var h0_q1198 =3D " ";
  var h0_q321 =3D " ";
  var h0_q322 =3D " ";
  var h0_q325 =3D " ";
  var h0_q326 =3D " ";
  var h0_q327 =3D " ";
  var h0_q328 =3D " ";
  var h0_q329 =3D " ";
  var h0_q1520 =3D " ";
  var h0_q1521 =3D " ";
  var h0_q1522 =3D " ";
  var h0_q1523 =3D " ";
  var h0_q1524 =3D " ";
  var h0_q1525 =3D " ";
  var h0_q1526 =3D " ";
  var h0_q1527 =3D " ";
  var h0_q1528 =3D " ";
  var h0_q1529 =3D " ";
  var h0_q330 =3D " ";
  var h64_q319 =3D "64:IPI:IPI00002844  ";
  var h0_q331 =3D " ";
  var h0_q333 =3D " ";
  var h0_q334 =3D " ";
  var h0_q335 =3D " ";
  var h4_q8 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727  "=
;
  var h0_q336 =3D " ";
  var h0_q337 =3D " ";
  var h0_q338 =3D " ";
  var h48_q50 =3D "23:IPI:IPI00015344  48:IPI:IPI00029036  ";
  var h14_q300 =3D "14:IPI:IPI00033619  ";
  var h1_q1231 =3D "1:IPI:IPI00019502  ";
  var h1_q1232 =3D "1:IPI:IPI00019502  ";
  var h0_q1530 =3D " ";
  var h0_q1531 =3D " ";
  var h0_q1532 =3D " ";
  var h0_q1533 =3D " ";
  var h0_q1534 =3D " ";
  var h11_q930 =3D "11:IPI:IPI00023528  ";
  var h0_q1535 =3D " ";
  var h0_q1536 =3D " ";
  var h0_q1537 =3D " ";
  var h6_q1253 =3D "6:IPI:IPI00021439  ";
  var h0_q1538 =3D " ";
  var h6_q1254 =3D "6:IPI:IPI00021439  ";
  var h0_q1539 =3D " ";
  var h6_q1255 =3D "6:IPI:IPI00021439  ";
  var h0_q340 =3D " ";
  var h0_q343 =3D " ";
  var h0_q344 =3D " ";
  var h0_q345 =3D " ";
  var h0_q346 =3D " ";
  var h0_q347 =3D " ";
  var h0_q348 =3D " ";
  var h93_q19 =3D "93:IPI:IPI00025320  ";
  var h0_q1540 =3D " ";
  var h91_q98 =3D "91:IPI:IPI00002233  ";
  var h0_q1541 =3D " ";
  var h0_q1542 =3D " ";
  var h0_q1543 =3D " ";
  var h0_q1544 =3D " ";
  var h0_q1545 =3D " ";
  var h37_q600 =3D "37:IPI:IPI00012815  ";
  var h0_q1546 =3D " ";
  var h0_q1547 =3D " ";
  var h0_q1548 =3D " ";
  var h0_q1549 =3D " ";
  var h44_q930 =3D "44:IPI:IPI00013991  ";
  var h20_q856 =3D "20:IPI:IPI00021826  ";
  var h0_q351 =3D " ";
  var h0_q352 =3D " ";
  var h0_q353 =3D " ";
  var h0_q354 =3D " ";
  var h0_q355 =3D " ";
  var h1_q148 =3D "1:IPI:IPI00019502  ";
  var h93_q20 =3D "93:IPI:IPI00025320  ";
  var h0_q357 =3D " ";
  var h0_q358 =3D " ";
  var h0_q359 =3D " ";
  var h0_q1550 =3D " ";
  var h0_q1551 =3D " ";
  var h0_q1555 =3D " ";
  var h0_q1556 =3D " ";
  var h0_q1557 =3D " ";
  var h0_q1558 =3D " ";
  var h0_q1559 =3D " ";
  var h12_q748 =3D "12:IPI:IPI00028646  ";
  var h0_q360 =3D " ";
  var h0_q361 =3D " ";
  var h0_q362 =3D " ";
  var h0_q363 =3D " ";
  var h0_q364 =3D " ";
  var h0_q366 =3D " ";
  var h0_q367 =3D " ";
  var h0_q369 =3D " ";
  var h0_q1560 =3D " ";
  var h0_q1561 =3D " ";
  var h0_q1562 =3D " ";
  var h0_q1563 =3D " ";
  var h0_q1564 =3D " ";
  var h0_q1565 =3D " ";
  var h0_q1566 =3D " ";
  var h0_q1567 =3D " ";
  var h0_q1568 =3D " ";
  var h0_q1569 =3D " ";
  var h0_q370 =3D " ";
  var h0_q371 =3D " ";
  var h0_q372 =3D " ";
  var h0_q374 =3D " ";
  var h70_q1305 =3D "70:IPI:IPI00033922  ";
  var h0_q376 =3D " ";
  var h0_q377 =3D " ";
  var h70_q1307 =3D "70:IPI:IPI00033922  ";
  var h0_q378 =3D " ";
  var h1_q1271 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h0_q1570 =3D " ";
  var h0_q1571 =3D " ";
  var h0_q1572 =3D " ";
  var h0_q1573 =3D " ";
  var h0_q1574 =3D " ";
  var h0_q1575 =3D " ";
  var h0_q1576 =3D " ";
  var h0_q1577 =3D " ";
  var h0_q1578 =3D " ";
  var h82_q183 =3D "82:IPI:IPI00012321  ";
  var h0_q1579 =3D " ";
  var h0_q700 =3D " ";
  var h0_q701 =3D " ";
  var h0_q702 =3D " ";
  var h0_q703 =3D " ";
  var h0_q704 =3D " ";
  var h0_q381 =3D " ";
  var h0_q706 =3D " ";
  var h0_q383 =3D " ";
  var h0_q384 =3D " ";
  var h0_q708 =3D " ";
  var h7_q432 =3D "7:IPI:IPI00003865  ";
  var h0_q385 =3D " ";
  var h0_q709 =3D " ";
  var h0_q386 =3D " ";
  var h0_q387 =3D " ";
  var h0_q388 =3D " ";
  var h0_q389 =3D " ";
  var h17_q1078 =3D "17:IPI:IPI00027488  37:IPI:IPI00012815  46:IPI:IPI0001=
1269  ";
  var h17_q1079 =3D "17:IPI:IPI00027488  37:IPI:IPI00012815  46:IPI:IPI0001=
1269  ";
  var h0_q1900 =3D " ";
  var h0_q1901 =3D " ";
  var h0_q1902 =3D " ";
  var h0_q1903 =3D " ";
  var h0_q1904 =3D " ";
  var h0_q1580 =3D " ";
  var h0_q1905 =3D " ";
  var h0_q1581 =3D " ";
  var h0_q1906 =3D " ";
  var h0_q1582 =3D " ";
  var h0_q1907 =3D " ";
  var h48_q131 =3D "23:IPI:IPI00015344  48:IPI:IPI00029036  ";
  var h0_q1583 =3D " ";
  var h0_q1908 =3D " ";
  var h0_q1584 =3D " ";
  var h0_q1909 =3D " ";
  var h0_q1585 =3D " ";
  var h0_q1586 =3D " ";
  var h0_q1587 =3D " ";
  var h0_q1588 =3D " ";
  var h0_q1589 =3D " ";
  var h0_q710 =3D " ";
  var h0_q711 =3D " ";
  var h0_q390 =3D " ";
  var h0_q714 =3D " ";
  var h0_q391 =3D " ";
  var h1_q508 =3D "1:IPI:IPI00019502  ";
  var h0_q393 =3D " ";
  var h0_q717 =3D " ";
  var h0_q394 =3D " ";
  var h0_q395 =3D " ";
  var h0_q397 =3D " ";
  var h5_q862 =3D "5:IPI:IPI00018231  ";
  var h0_q399 =3D " ";
  var h5_q864 =3D "5:IPI:IPI00018231  ";
  var h0_q1910 =3D " ";
  var h0_q1911 =3D " ";
  var h0_q1912 =3D " ";
  var h0_q1913 =3D " ";
  var h0_q1914 =3D " ";
  var h0_q1590 =3D " ";
  var h0_q1915 =3D " ";
  var h0_q1591 =3D " ";
  var h0_q1916 =3D " ";
  var h0_q1592 =3D " ";
  var h0_q1917 =3D " ";
  var h0_q1593 =3D " ";
  var h0_q1918 =3D " ";
  var h0_q1594 =3D " ";
  var h0_q1919 =3D " ";
  var h0_q1595 =3D " ";
  var h0_q1596 =3D " ";
  var h0_q1597 =3D " ";
  var h0_q1598 =3D " ";
  var h0_q1599 =3D " ";
  var h0_q720 =3D " ";
  var h0_q721 =3D " ";
  var h0_q722 =3D " ";
  var h0_q723 =3D " ";
  var h0_q724 =3D " ";
  var h0_q725 =3D " ";
  var h0_q726 =3D " ";
  var h1_q196 =3D "1:IPI:IPI00019502  ";
  var h8_q244 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q1920 =3D " ";
  var h0_q1921 =3D " ";
  var h0_q1922 =3D " ";
  var h0_q1923 =3D " ";
  var h32_q514 =3D "32:IPI:IPI00030960  ";
  var h0_q1924 =3D " ";
  var h0_q1925 =3D " ";
  var h0_q1926 =3D " ";
  var h0_q1927 =3D " ";
  var h0_q1928 =3D " ";
  var h0_q1929 =3D " ";
  var h0_q730 =3D " ";
  var h81_q747 =3D "81:IPI:IPI00024252  ";
  var h0_q731 =3D " ";
  var h0_q732 =3D " ";
  var h8_q251 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI00003269=
  ";
  var h0_q736 =3D " ";
  var h8_q252 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI00003269=
  ";
  var h0_q737 =3D " ";
  var h8_q253 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI00003269=
  ";
  var h0_q738 =3D " ";
  var h0_q739 =3D " ";
  var h0_q1930 =3D " ";
  var h0_q1931 =3D " ";
  var h0_q1932 =3D " ";
  var h0_q1933 =3D " ";
  var h0_q1934 =3D " ";
  var h0_q1935 =3D " ";
  var h0_q1936 =3D " ";
  var h33_q319 =3D "33:IPI:IPI00011253  ";
  var h0_q1937 =3D " ";
  var h0_q1938 =3D " ";
  var h3_q113 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h3_q114 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q740 =3D " ";
  var h0_q743 =3D " ";
  var h0_q744 =3D " ";
  var h0_q746 =3D " ";
  var h0_q749 =3D " ";
  var h87_q697 =3D "87:IPI:IPI00004016  ";
  var h87_q698 =3D "87:IPI:IPI00004016  ";
  var h14_q710 =3D "14:IPI:IPI00033619  27:IPI:IPI00013921  ";
  var h8_q1062 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h8_q1063 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h8_q1064 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h15_q185 =3D "15:IPI:IPI00021327  ";
  var h15_q186 =3D "15:IPI:IPI00021327  ";
  var h0_q752 =3D " ";
  var h1_q545 =3D "1:IPI:IPI00019502  ";
  var h0_q753 =3D " ";
  var h1_q546 =3D "1:IPI:IPI00019502  ";
  var h0_q754 =3D " ";
  var h0_q756 =3D " ";
  var h0_q757 =3D " ";
  var h0_q758 =3D " ";
  var h0_q759 =3D " ";
  var h13_q930 =3D "13:IPI:IPI00000230  ";
  var h0_q760 =3D " ";
  var h21_q1262 =3D "10:IPI:IPI00011042  21:IPI:IPI00017216  ";
  var h0_q762 =3D " ";
  var h0_q764 =3D " ";
  var h0_q767 =3D " ";
  var h0_q768 =3D " ";
  var h0_q769 =3D " ";
  var h0_q770 =3D " ";
  var h8_q7 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q771 =3D " ";
  var h0_q772 =3D " ";
  var h0_q773 =3D " ";
  var h0_q774 =3D " ";
  var h0_q775 =3D " ";
  var h0_q776 =3D " ";
  var h0_q778 =3D " ";
  var h0_q779 =3D " ";
  var h25_q231 =3D "25:IPI:IPI00002965  ";
  var h17_q119 =3D "17:IPI:IPI00027488  ";
  var h0_q781 =3D " ";
  var h0_q782 =3D " ";
  var h0_q783 =3D " ";
  var h0_q784 =3D " ";
  var h1_q578 =3D "1:IPI:IPI00019502  ";
  var h0_q786 =3D " ";
  var h1_q579 =3D "1:IPI:IPI00019502  ";
  var h0_q787 =3D " ";
  var h0_q788 =3D " ";
  var h0_q789 =3D " ";
  var h2_q1386 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h2_q1387 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h0_q790 =3D " ";
  var h0_q791 =3D " ";
  var h0_q792 =3D " ";
  var h0_q793 =3D " ";
  var h0_q794 =3D " ";
  var h0_q795 =3D " ";
  var h0_q796 =3D " ";
  var h0_q797 =3D " ";
  var h0_q798 =3D " ";
  var h0_q799 =3D " ";
  var h16_q342 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  34:IPI:IPI000160=
87  ";
  var h16_q349 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h11_q206 =3D "11:IPI:IPI00023528  ";
  var h4_q1122 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h4_q1124 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h4_q1125 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h95_q79 =3D "95:IPI:IPI00018290  ";
  var h16_q350 =3D "1:IPI:IPI00019502  16:IPI:IPI00019512  ";
  var h4_q1127 =3D "3:IPI:IPI00012053  4:IPI:IPI00029727  ";
  var h47_q761 =3D "47:IPI:IPI00013485  ";
  var h1_q932 =3D "1:IPI:IPI00019502  ";
  var h1_q933 =3D "1:IPI:IPI00019502  ";
  var h3_q517 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h3_q518 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h3_q519 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h3_q520 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h49_q368 =3D "49:IPI:IPI00029286  ";
  var h89_q682 =3D "89:IPI:IPI00013231  ";
  var h89_q684 =3D "85:IPI:IPI00007204  89:IPI:IPI00013231  ";
  var h7_q880 =3D "7:IPI:IPI00003865  ";
  var h11_q238 =3D "11:IPI:IPI00023528  ";
  var h11_q239 =3D "11:IPI:IPI00023528  ";
  var h5_q115 =3D "5:IPI:IPI00018231  ";
  var h5_q116 =3D "5:IPI:IPI00018231  ";
  var h5_q118 =3D "5:IPI:IPI00018231  ";
  var h19_q1253 =3D "19:IPI:IPI00003269  ";
  var h19_q1255 =3D "19:IPI:IPI00003269  ";
  var h7_q893 =3D "7:IPI:IPI00003865  ";
  var h61_q264 =3D "61:IPI:IPI00007781  ";
  var h2_q751 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h46_q1078 =3D "17:IPI:IPI00027488  37:IPI:IPI00012815  46:IPI:IPI0001=
1269  ";
  var h46_q1079 =3D "17:IPI:IPI00027488  37:IPI:IPI00012815  46:IPI:IPI0001=
1269  ";
  var h10_q468 =3D "10:IPI:IPI00011042  21:IPI:IPI00017216  ";
  var h58_q620 =3D "58:IPI:IPI00008530  ";
  var h86_q145 =3D "71:IPI:IPI00019567  86:IPI:IPI00025806  ";
  var h1_q971 =3D "1:IPI:IPI00019502  34:IPI:IPI00016087  ";
  var h1_q973 =3D "1:IPI:IPI00019502  ";
  var h19_q107 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  19:IPI:IPI0000326=
9  ";
  var h70_q196 =3D "70:IPI:IPI00033922  ";
  var h4_q1199 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727=
  ";
  var h84_q589 =3D "84:IPI:IPI00030390  ";
  var h0_q1201 =3D " ";
  var h0_q1202 =3D " ";
  var h0_q1203 =3D " ";
  var h1_q994 =3D "1:IPI:IPI00019502  ";
  var h0_q1204 =3D " ";
  var h1_q995 =3D "1:IPI:IPI00019502  ";
  var h0_q1205 =3D " ";
  var h1_q996 =3D "1:IPI:IPI00019502  ";
  var h0_q1206 =3D " ";
  var h1_q997 =3D "1:IPI:IPI00019502  ";
  var h0_q1207 =3D " ";
  var h1_q998 =3D "1:IPI:IPI00019502  ";
  var h5_q1221 =3D "5:IPI:IPI00018231  ";
  var h0_q1208 =3D " ";
  var h0_q1209 =3D " ";
  var h36_q155 =3D "36:IPI:IPI00030575  ";
  var h84_q590 =3D "84:IPI:IPI00030390  ";
  var h0_q1210 =3D " ";
  var h0_q1211 =3D " ";
  var h0_q1212 =3D " ";
  var h0_q1213 =3D " ";
  var h0_q1214 =3D " ";
  var h0_q1215 =3D " ";
  var h0_q1216 =3D " ";
  var h0_q1217 =3D " ";
  var h0_q1218 =3D " ";
  var h0_q1219 =3D " ";
  var h63_q213 =3D "63:IPI:IPI00020165  ";
  var h0_q1220 =3D " ";
  var h0_q1222 =3D " ";
  var h0_q1223 =3D " ";
  var h0_q1224 =3D " ";
  var h0_q1225 =3D " ";
  var h0_q1226 =3D " ";
  var h13_q206 =3D "13:IPI:IPI00000230  ";
  var h0_q1227 =3D " ";
  var h0_q1228 =3D " ";
  var h0_q1229 =3D " ";
  var h16_q777 =3D "16:IPI:IPI00019512  ";
  var h25_q689 =3D "7:IPI:IPI00003865  25:IPI:IPI00002965  ";
  var h0_q1230 =3D " ";
  var h0_q1233 =3D " ";
  var h0_q1234 =3D " ";
  var h0_q1235 =3D " ";
  var h0_q1236 =3D " ";
  var h0_q1237 =3D " ";
  var h0_q1238 =3D " ";
  var h22_q128 =3D "22:IPI:IPI00027214  ";
  var h0_q1239 =3D " ";
  var h30_q249 =3D "30:IPI:IPI00018158  32:IPI:IPI00030960  ";
  var h10_q846 =3D "10:IPI:IPI00011042  ";
  var h16_q780 =3D "16:IPI:IPI00019512  ";
  var h35_q392 =3D "35:IPI:IPI00007805  ";
  var h6_q309 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h3_q938 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1240 =3D " ";
  var h3_q939 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1241 =3D " ";
  var h0_q1243 =3D " ";
  var h0_q1245 =3D " ";
  var h0_q1246 =3D " ";
  var h0_q1247 =3D " ";
  var h0_q1248 =3D " ";
  var h0_q1249 =3D " ";
  var h6_q310 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h7_q102 =3D "7:IPI:IPI00003865  ";
  var h6_q311 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h68_q396 =3D "68:IPI:IPI00005753  ";
  var h83_q1136 =3D "83:IPI:IPI00030790  ";
  var h0_q1250 =3D " ";
  var h0_q1251 =3D " ";
  var h0_q1252 =3D " ";
  var h0_q1256 =3D " ";
  var h0_q1257 =3D " ";
  var h0_q1258 =3D " ";
  var h0_q1259 =3D " ";
  var h27_q612 =3D "14:IPI:IPI00033619  27:IPI:IPI00013921  ";
  var h3_q8 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727  "=
;
  var h30_q74 =3D "30:IPI:IPI00018158  32:IPI:IPI00030960  ";
  var h0_q1260 =3D " ";
  var h0_q1261 =3D " ";
  var h0_q1263 =3D " ";
  var h0_q1266 =3D " ";
  var h0_q1267 =3D " ";
  var h0_q1268 =3D " ";
  var h0_q1269 =3D " ";
  var h71_q382 =3D "71:IPI:IPI00019567  ";
  var h4_q751 =3D "2:IPI:IPI00004497  3:IPI:IPI00012053  4:IPI:IPI00029727 =
 ";
  var h0_q1270 =3D " ";
  var h0_q1272 =3D " ";
  var h0_q1273 =3D " ";
  var h0_q1274 =3D " ";
  var h0_q1275 =3D " ";
  var h0_q1276 =3D " ";
  var h29_q213 =3D "29:IPI:IPI00007188  ";
  var h0_q1277 =3D " ";
  var h55_q153 =3D "55:IPI:IPI00029191  ";
  var h0_q401 =3D " ";
  var h0_q404 =3D " ";
  var h0_q405 =3D " ";
  var h0_q406 =3D " ";
  var h0_q409 =3D " ";
  var h5_q557 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h5_q558 =3D "5:IPI:IPI00018231  52:IPI:IPI00000880  ";
  var h0_q1600 =3D " ";
  var h0_q1601 =3D " ";
  var h0_q1602 =3D " ";
  var h1_q1305 =3D "1:IPI:IPI00019502  ";
  var h0_q1603 =3D " ";
  var h1_q1306 =3D "1:IPI:IPI00019502  ";
  var h0_q1280 =3D " ";
  var h0_q1604 =3D " ";
  var h1_q1307 =3D "1:IPI:IPI00019502  ";
  var h0_q1281 =3D " ";
  var h0_q1605 =3D " ";
  var h1_q1308 =3D "1:IPI:IPI00019502  ";
  var h0_q1282 =3D " ";
  var h0_q1606 =3D " ";
  var h1_q1309 =3D "1:IPI:IPI00019502  ";
  var h0_q1283 =3D " ";
  var h0_q1607 =3D " ";
  var h0_q1284 =3D " ";
  var h0_q1608 =3D " ";
  var h0_q1285 =3D " ";
  var h0_q1609 =3D " ";
  var h0_q1286 =3D " ";
  var h0_q1287 =3D " ";
  var h0_q1288 =3D " ";
  var h13_q268 =3D "13:IPI:IPI00000230  ";
  var h0_q1289 =3D " ";
  var h0_q412 =3D " ";
  var h0_q413 =3D " ";
  var h34_q971 =3D "1:IPI:IPI00019502  34:IPI:IPI00016087  ";
  var h0_q414 =3D " ";
  var h0_q415 =3D " ";
  var h0_q417 =3D " ";
  var h0_q418 =3D " ";
  var h0_q419 =3D " ";
  var h1_q1310 =3D "1:IPI:IPI00019502  ";
  var h1_q1311 =3D "1:IPI:IPI00019502  ";
  var h0_q1610 =3D " ";
  var h0_q1611 =3D " ";
  var h0_q1612 =3D " ";
  var h0_q1613 =3D " ";
  var h0_q1290 =3D " ";
  var h0_q1614 =3D " ";
  var h13_q270 =3D "13:IPI:IPI00000230  ";
  var h0_q1291 =3D " ";
  var h0_q1615 =3D " ";
  var h0_q1292 =3D " ";
  var h0_q1616 =3D " ";
  var h0_q1293 =3D " ";
  var h0_q1617 =3D " ";
  var h0_q1294 =3D " ";
  var h0_q1618 =3D " ";
  var h0_q1619 =3D " ";
  var h0_q1297 =3D " ";
  var h0_q1298 =3D " ";
  var h0_q1299 =3D " ";
  var h0_q420 =3D " ";
  var h0_q421 =3D " ";
  var h0_q422 =3D " ";
  var h0_q423 =3D " ";
  var h18_q745 =3D "18:IPI:IPI00016613  ";
  var h0_q424 =3D " ";
  var h0_q425 =3D " ";
  var h26_q866 =3D "11:IPI:IPI00023528  26:IPI:IPI00011335  ";
  var h0_q427 =3D " ";
  var h0_q428 =3D " ";
  var h26_q868 =3D "11:IPI:IPI00023528  26:IPI:IPI00011335  ";
  var h0_q429 =3D " ";
  var h0_q1620 =3D " ";
  var h0_q1621 =3D " ";
  var h0_q1622 =3D " ";
  var h0_q1623 =3D " ";
  var h0_q1624 =3D " ";
  var h0_q1625 =3D " ";
  var h0_q1626 =3D " ";
  var h30_q634 =3D "30:IPI:IPI00018158  32:IPI:IPI00030960  ";
  var h0_q1627 =3D " ";
  var h0_q1628 =3D " ";
  var h0_q1629 =3D " ";
  var h73_q325 =3D "73:IPI:IPI00005269  ";
  var h0_q430 =3D " ";
  var h0_q431 =3D " ";
  var h23_q50 =3D "23:IPI:IPI00015344  48:IPI:IPI00029036  ";
  var h0_q435 =3D " ";
  var h0_q436 =3D " ";
  var h77_q685 =3D "77:IPI:IPI00010039  ";
  var h77_q686 =3D "77:IPI:IPI00010039  ";
  var h5_q909 =3D "5:IPI:IPI00018231  ";
  var h0_q1630 =3D " ";
  var h14_q402 =3D "14:IPI:IPI00033619  40:IPI:IPI00027230  ";
  var h0_q1631 =3D " ";
  var h0_q1632 =3D " ";
  var h0_q1633 =3D " ";
  var h0_q1634 =3D " ";
  var h0_q1635 =3D " ";
  var h0_q1636 =3D " ";
  var h0_q1637 =3D " ";
  var h0_q1638 =3D " ";
  var h0_q1639 =3D " ";
  var h0_q440 =3D " ";
  var h0_q441 =3D " ";
  var h0_q442 =3D " ";
  var h0_q443 =3D " ";
  var h0_q444 =3D " ";
  var h0_q445 =3D " ";
  var h0_q446 =3D " ";
  var h0_q447 =3D " ";
  var h0_q449 =3D " ";
  var h39_q1437 =3D "39:IPI:IPI00016742  ";
  var h0_q1640 =3D " ";
  var h0_q1641 =3D " ";
  var h0_q1642 =3D " ";
  var h0_q1643 =3D " ";
  var h0_q1644 =3D " ";
  var h0_q1645 =3D " ";
  var h0_q1646 =3D " ";
  var h0_q1647 =3D " ";
  var h0_q1648 =3D " ";
  var h0_q1649 =3D " ";
  var h91_q165 =3D "91:IPI:IPI00002233  ";
  var h0_q450 =3D " ";
  var h0_q451 =3D " ";
  var h0_q452 =3D " ";
  var h0_q455 =3D " ";
  var h0_q456 =3D " ";
  var h0_q457 =3D " ";
  var h6_q712 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q458 =3D " ";
  var h6_q713 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q459 =3D " ";
  var h6_q715 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h6_q716 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h6_q718 =3D "6:IPI:IPI00021439  ";
  var h6_q719 =3D "6:IPI:IPI00021439  ";
  var h0_q1650 =3D " ";
  var h0_q1651 =3D " ";
  var h0_q1652 =3D " ";
  var h0_q1653 =3D " ";
  var h0_q1654 =3D " ";
  var h0_q1655 =3D " ";
  var h0_q1656 =3D " ";
  var h0_q1657 =3D " ";
  var h32_q249 =3D "30:IPI:IPI00018158  32:IPI:IPI00030960  ";
  var h0_q1658 =3D " ";
  var h0_q1659 =3D " ";
  var h1_q250 =3D "1:IPI:IPI00019502  ";
  var h0_q460 =3D " ";
  var h0_q461 =3D " ";
  var h0_q462 =3D " ";
  var h0_q463 =3D " ";
  var h0_q464 =3D " ";
  var h0_q465 =3D " ";
  var h0_q466 =3D " ";
  var h32_q74 =3D "30:IPI:IPI00018158  32:IPI:IPI00030960  ";
  var h0_q467 =3D " ";
  var h0_q469 =3D " ";
  var h8_q309 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q1660 =3D " ";
  var h0_q1661 =3D " ";
  var h0_q1662 =3D " ";
  var h0_q1663 =3D " ";
  var h0_q1664 =3D " ";
  var h0_q1665 =3D " ";
  var h0_q1666 =3D " ";
  var h82_q271 =3D "82:IPI:IPI00012321  ";
  var h0_q1667 =3D " ";
  var h0_q1668 =3D " ";
  var h0_q1669 =3D " ";
  var h91_q188 =3D "91:IPI:IPI00002233  ";
  var h0_q471 =3D " ";
  var h8_q310 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h8_q311 =3D "6:IPI:IPI00021439  8:IPI:IPI00021428  ";
  var h0_q474 =3D " ";
  var h0_q475 =3D " ";
  var h0_q476 =3D " ";
  var h0_q477 =3D " ";
  var h0_q478 =3D " ";
  var h0_q479 =3D " ";
  var h0_q1670 =3D " ";
  var h0_q1671 =3D " ";
  var h0_q1672 =3D " ";
  var h0_q1673 =3D " ";
  var h0_q1674 =3D " ";
  var h1_q1377 =3D "1:IPI:IPI00019502  ";
  var h0_q1675 =3D " ";
  var h14_q447 =3D "14:IPI:IPI00033619  ";
  var h0_q1676 =3D " ";
  var h14_q448 =3D "14:IPI:IPI00033619  ";
  var h0_q1677 =3D " ";
  var h0_q1678 =3D " ";
  var h0_q1679 =3D " ";
  var h0_q800 =3D " ";
  var h0_q801 =3D " ";
  var h0_q802 =3D " ";
  var h0_q480 =3D " ";
  var h0_q481 =3D " ";
  var h0_q805 =3D " ";
  var h0_q482 =3D " ";
  var h22_q1009 =3D "22:IPI:IPI00027214  ";
  var h0_q806 =3D " ";
  var h0_q483 =3D " ";
  var h0_q807 =3D " ";
  var h0_q484 =3D " ";
  var h0_q808 =3D " ";
  var h0_q485 =3D " ";
  var h0_q809 =3D " ";
  var h0_q486 =3D " ";
  var h0_q487 =3D " ";
  var h0_q488 =3D " ";
  var h0_q489 =3D " ";
  var h0_q1680 =3D " ";
  var h0_q1681 =3D " ";
  var h0_q1682 =3D " ";
  var h0_q1683 =3D " ";
  var h0_q1684 =3D " ";
  var h0_q1685 =3D " ";
  var h20_q991 =3D "20:IPI:IPI00021826  ";
  var h0_q1686 =3D " ";
  var h0_q1687 =3D " ";
  var h0_q1688 =3D " ";

// End hiding Javascript from old browsers. -->
</SCRIPT>=0D
=0D
<META content=3D"MSHTML 6.00.2600.0" name=3DGENERATOR></HEAD>=0D
<BODY vLink=3D#0000ff aLink=3D#0000ff bgColor=3D#ffffff>=0D
<H1><IMG height=3D31 src=3D"APMascot Search Results_files/88x31_logo_white.=
gif"=20=0D
width=3D88 align=3Dtop border=3D0 name=3Dfred NATURALSIZEFLAG=3D"3"> Mascot=
 Search=20=0D
Results</H1><FONT face=3D"Courier New,Courier,monospace"><PRE><B>User      =
      : </B>=0D
<B>Email           : </B>=0D
<B>Search title    : D:\Jens\JA\APdigestJens.wiff : JAAP001</B>=0D
<B>MS data file    : C:\DOCUME~1\PROTEI~1\LOCALS~1\Temp\masA.tmp</B>=0D
<B>Database        : IPI nov1801 (32817 sequences; 12911978 residues)</B>=0D
<B>Taxonomy        : Homo sapiens (human) (32817 sequences)</B>=0D
<B>Timestamp       : 20 Nov 2001 at 14:05:40 GMT</B>=0D
<B>Warning         : Taxonomy 'Homo sapiens (human)' ignored. No taxonomy i=
ndexes for this database</B>=0D
<B>Significant hits: <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit1">IPI:IPI00019502</A> SWISS-PROT=
:P35579|REFSEQ_NP:NP_002464|TREMBL:Q99529;Q9UMJ0|REFSEQ_XP:XP_038635;XP_015=
198|ENSEMBL:EN</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit2">IPI:IPI00004497</A> SWISS-PROT=
:P11274|REFSEQ_NP:NP_004318|TREMBL:Q13746|ENSEMBL:ENSP00000263107 Breakpoin=
t cluster regi</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit3">IPI:IPI00012053</A> REFSEQ_NP:=
NP_067585|TREMBL:P78501|REFSEQ_XP:XP_037060;XP_037059|ENSEMBL:ENSP000002631=
06 breakpoint </B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit4">IPI:IPI00029727</A> REFSEQ_XP:=
XP_037058|ENSEMBL:ENSP00000263109 </B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit5">IPI:IPI00018231</A> SWISS-PROT=
:P00519|REFSEQ_NP:NP_005148|TREMBL:Q13915|REFSEQ_XP:XP_053262;XP_053263;XP_=
057293;XP_0333</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit6">IPI:IPI00021439</A> SWISS-PROT=
:P02570|REFSEQ_NP:NP_001092|TREMBL:Q9UE89;Q9BTD2|REFSEQ_XP:XP_037241;XP_037=
235|ENSEMBL:EN</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit7">IPI:IPI00003865</A> SWISS-PROT=
:P11142|REFSEQ_NP:NP_006588|TREMBL:Q9NZ87|REFSEQ_XP:XP_050983;XP_050984;XP_=
050981|ENSEMBL</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit8">IPI:IPI00021428</A> SWISS-PROT=
:P02568|REFSEQ_NP:NP_001091|REFSEQ_XP:XP_001869|ENSEMBL:ENSP00000235219 Act=
in, alpha skel</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit9">IPI:IPI00033494</A> TREMBL:Q13=
182|REFSEQ_XP:XP_041677|ENSEMBL:ENSP00000237500 MYOSIN REGULATORY LIGHT CHA=
IN</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit10">IPI:IPI00011042</A> TREMBL:Q9=
BVP8|REFSEQ_XP:XP_041732;XP_057720;XP_057719|ENSEMBL:ENSP00000259925 </B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit11">IPI:IPI00023528</A> SWISS-PRO=
T:P12324 Tropomyosin, cytoskeletal type</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit12">IPI:IPI00028646</A> SWISS-PRO=
T:P16475|REFSEQ_NP:NP_066299|REFSEQ_XP:XP_049092;XP_049091|ENSEMBL:ENSP0000=
0257959 Myosin </B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit13">IPI:IPI00000230</A> TREMBL:Q9=
Y427|REFSEQ_XP:XP_029494 HYPOTHETICAL 34.9 kDa PROTEIN (FRAGMENT)</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit14">IPI:IPI00033619</A> TREMBL:Q9=
NTK6|REFSEQ_XP:XP_044840 Hypothetical 84.8 kDa protein</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit15">IPI:IPI00021327</A> SWISS-PRO=
T:P29354|REFSEQ_NP:NP_002077|REFSEQ_XP:XP_008198;XP_039834;XP_055363|ENSEMB=
L:ENSP000002555</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit16">IPI:IPI00019512</A> SWISS-PRO=
T:P35580|REFSEQ_XP:XP_044702 Myosin heavy chain, nonmuscle type B</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit17">IPI:IPI00027488</A> SWISS-PRO=
T:P06733|REFSEQ_NP:NP_001419|TREMBL:Q9UCH6;Q9BT62|REFSEQ_XP:XP_045253;XP_04=
5257;XP_045259;</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit18">IPI:IPI00016613</A> SWISS-PRO=
T:P19138|REFSEQ_NP:NP_001886|REFSEQ_XP:XP_049424|ENSEMBL:ENSP00000217244 Ca=
sein kinase II,</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit19">IPI:IPI00003269</A> ENSEMBL:E=
NSP00000239572 </B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit20">IPI:IPI00021826</A> TREMBL:Q9=
H107|ENSEMBL:ENSP00000244792 Phosphoglycerate kinase</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit21">IPI:IPI00017216</A> REFSEQ_XP=
:XP_047083 hypothetical protein XP_047083 </B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit22">IPI:IPI00027214</A> SWISS-PRO=
T:P14618 Pyruvate kinase, M1 isozyme</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit23">IPI:IPI00015344</A> REFSEQ_NP=
:NP_001394|TREMBL:Q16577 ONCOGENE</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit24">IPI:IPI00003362</A> SWISS-PRO=
T:P11021|TREMBL:Q9UK02|REFSEQ_XP:XP_044201;XP_044200;XP_044202|ENSEMBL:ENSP=
00000265959 78 kDa glucose-regulated protein precursor</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit25">IPI:IPI00002965</A> SWISS-PRO=
T:P34931|REFSEQ_NP:NP_005518|TREMBL:O75634|REFSEQ_XP:XP_004187|ENSEMBL:ENSP=
00000259871 Heat shock 70 kDa protein 1-HOM</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit26">IPI:IPI00011335</A> REFSEQ_XP=
:XP_051219 hypothetical protein XP_051219</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit27">IPI:IPI00013921</A> SWISS-PRO=
T:P07900|REFSEQ_NP:NP_005339|TREMBL:Q9BVQ5|REFSEQ_XP:XP_056565;XP_040944|EN=
SEMBL:ENSP00000216281 Heat shock protein HSP 90-alpha</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit28">IPI:IPI00034297</A> REFSEQ_XP=
:XP_038141 hypothetical protein XP_038141</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit29">IPI:IPI00007188</A> SWISS-PRO=
T:P05141|REFSEQ_NP:NP_001143|REFSEQ_XP:XP_010362|ENSEMBL:ENSP00000005593 AD=
P,ATP carrier protein, fibroblast isoform</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit30">IPI:IPI00018158</A> TREMBL:Q9=
NSN1;Q9NTK4;Q9ULQ2;Q9UN29|REFSEQ_XP:XP_056964;XP_056963;XP_029755|ENSEMBL:E=
NSP00000265227</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit31">IPI:IPI00021266</A> SWISS-PRO=
T:P29316|REFSEQ_NP:NP_000975|REFSEQ_XP:XP_017356;XP_031454|ENSEMBL:ENSP0000=
0237694 60S ribosomal protein L23a</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit32">IPI:IPI00030960</A> TREMBL:Q9=
BSD9;Q14467;Q9BVC7|REFSEQ_XP:XP_039225|ENSEMBL:ENSP00000261611 KIAA0068 PRO=
TEIN (FRAGMENT)</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit33">IPI:IPI00011253</A> SWISS-PRO=
T:P23396|REFSEQ_NP:NP_000996|TREMBL:Q9NQS8|REFSEQ_XP:XP_035076;XP_015852|EN=
SEMBL:ENSP00000228012 40S ribosomal protein S3</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit34">IPI:IPI00016087</A> ENSEMBL:E=
NSP00000262273</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit35">IPI:IPI00007805</A> SWISS-PRO=
T:P38663|REFSEQ_NP:NP_000977|REFSEQ_XP:XP_040555|ENSEMBL:ENSP00000265264 60=
S ribosomal protein L24</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit36">IPI:IPI00030575</A> REFSEQ_NP=
:NP_066953|TREMBL:Q9BTY9;Q9BVG1|REFSEQ_XP:XP_039526;XP_057291;XP_016175|ENS=
EMBL:ENSP00000248768 Unknown (Fragment)</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit37">IPI:IPI00012815</A> SWISS-PRO=
T:P09104|REFSEQ_NP:NP_001966|REFSEQ_XP:XP_032595;XP_032594|ENSEMBL:ENSP0000=
0229277 Gamma enolase</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit38">IPI:IPI00022753</A> SWISS-PRO=
T:P39026|REFSEQ_NP:NP_000966|TREMBL:Q9Y674|REFSEQ_XP:XP_054368;XP_055632|EN=
SEMBL:ENSP00000166266 60S ribosomal protein L11</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit39">IPI:IPI00016742</A> SWISS-PRO=
T:P00338|REFSEQ_NP:NP_005557|REFSEQ_XP:XP_036327;XP_036326|ENSEMBL:ENSP0000=
0227157 L-lactate dehydrogenase M chain</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit40">IPI:IPI00027230</A> SWISS-PRO=
T:P14625|REFSEQ_NP:NP_003290|REFSEQ_XP:XP_049132;XP_049131;XP_006604|ENSEMB=
L:ENSP00000258490 Endoplasmin precursor</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit41">IPI:IPI00010796</A> SWISS-PRO=
T:P07237|REFSEQ_NP:NP_000909|REFSEQ_XP:XP_046432;XP_046433;XP_008588;XP_056=
183;XP_053104 Protein disulfide isomerase precursor</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit42">IPI:IPI00024093</A> SWISS-PRO=
T:P04406|REFSEQ_NP:NP_002037|REFSEQ_XP:XP_033263;XP_033260|ENSEMBL:ENSP0000=
0229239 Glyceraldehyde 3-phosphate dehydrogenase, liver</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit43">IPI:IPI00029137</A> TREMBL:Q9=
BRL5|REFSEQ_XP:XP_028276 Similar to calmodulin 2</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit44">IPI:IPI00013991</A> SWISS-PRO=
T:P07951|REFSEQ_XP:XP_048482 Tropomyosin beta chain, skeletal muscle</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit45">IPI:IPI00026621</A> TREMBL:Q9=
NQ02|REFSEQ_XP:XP_016842|ENSEMBL:ENSP00000246019 DJ999L4.1</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit46">IPI:IPI00011269</A> SWISS-PRO=
T:P13929|REFSEQ_NP:NP_001967|TREMBL:Q9NPL4|REFSEQ_XP:XP_008524|ENSEMBL:ENSP=
00000225652 Beta enolase</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit47">IPI:IPI00013485</A> SWISS-PRO=
T:P15880|REFSEQ_NP:NP_002943|REFSEQ_XP:XP_049955;XP_034464;XP_045010|ENSEMB=
L:ENSP00000248131 40S ribosomal protein S2</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit48">IPI:IPI00029036</A> ENSEMBL:E=
NSP00000219675</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit49">IPI:IPI00029286</A> SWISS-PRO=
T:P08590|REFSEQ_NP:NP_000249|TREMBL:Q14909|REFSEQ_XP:XP_002896;XP_033741|EN=
SEMBL:ENSP00000232341 Myosin light chain 1, slow-twitch muscle B/ventricula=
r isoform</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit50">IPI:IPI00005762</A> REFSEQ_NP=
:NP_006073 tubulin, alpha, ubiquitous</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit51">IPI:IPI00027006</A> SWISS-PRO=
T:P06576|REFSEQ_NP:NP_001677|ENSEMBL:ENSP00000262030 ATP synthase beta chai=
n, mitochondrial precursor</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit52">IPI:IPI00000880</A> SWISS-PRO=
T:P42684|REFSEQ_NP:NP_009298|REFSEQ_XP:XP_010616 Tyrosine-protein kinase AB=
L2</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit53">IPI:IPI00001376</A> REFSEQ_XP=
:XP_046557 hypothetical protein XP_046557</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit54">IPI:IPI00013296</A> SWISS-PRO=
T:P25232|REFSEQ_NP:NP_072045|REFSEQ_XP:XP_016854|ENSEMBL:ENSP00000211372 40=
S ribosomal protein S18</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit55">IPI:IPI00029191</A> SWISS-PRO=
T:P08526|REFSEQ_NP:NP_000979|REFSEQ_XP:XP_008208;XP_032124|ENSEMBL:ENSP0000=
0253788 60S ribosomal protein L27</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit56">IPI:IPI00000952</A> SWISS-PRO=
T:P18669|REFSEQ_NP:NP_002620|REFSEQ_XP:XP_050862;XP_017950;XP_050863;XP_012=
219|ENSEMBL:ENSP00000240058;ENSP00000258502 Phosphoglycerate mutase, brain =
form</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit57">IPI:IPI00013889</A> SWISS-PRO=
T:P31946|REFSEQ_NP:NP_003395|REFSEQ_XP:XP_029816;XP_009519|ENSEMBL:ENSP0000=
0217069 14-3-3 protein beta/alpha</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit58">IPI:IPI00008530</A> SWISS-PRO=
T:P05388|REFSEQ_NP:NP_000993|ENSEMBL:ENSP00000228306 60S acidic ribosomal p=
rotein P0</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit59">IPI:IPI00016774</A> SWISS-PRO=
T:P00354 Glyceraldehyde 3-phosphate dehydrogenase, muscle</B>=0D
<B>                  <A href=3D"http://pilmascot/mascot/cgi/master_results.=
pl?file=3D../data/20011120/F001249.dat#Hit60">IPI:IPI00020052</A> SWISS-PRO=
T:P02248|REFSEQ_XP:XP_012614|ENSEMBL:ENSP00000075179 Ubiquitin</B>=0D
</PRE></FONT>=0D
<H3>Probability Based Mowse Score</H3>Score is -10*Log(P), where P is the=20=0D
probability that the observed match is a random event.<BR>Individual ions s=
cores=20=0D
&gt; 27 indicate identity or extensive homology (p&lt;0.05).=0D
<P><IMG height=3D200 alt=3D"Score Distribution"=20=0D
src=3D"APMascot Search Results_files/CANQIXNN.png" width=3D400>=20=0D
<H3>Peptide Summary Report</H3>=0D
<P><A=20=0D
href=3D"http://pilmascot/mascot/cgi/master_results.pl?file=3D../data/200111=
20/F001249.dat&amp;REPTYPE=3Dprotein">Switch=20=0D
to Protein Summary Report</A>=0D
<P>To create a bookmark for this report, right click this link: <A=20=0D
href=3D"http://pilmascot/mascot/cgi/master_results.pl?REPTYPE=3DPeptide&amp=
;file=3D../data/20011120/F001249.dat">Peptide=20=0D
Summary Report (D:\Jens\JA\APdigestJens.wiff : JAAP001)</A>=0D
<FORM name=3DResults action=3D./search_form.pl?SEARCH=3DMIS method=3Dpost><=
INPUT=20=0D
type=3Dhidden value=3D1.01 name=3DFORMVER> <INPUT type=3Dhidden value=3DMIS=
 name=3DSEARCH>=20=0D
<INPUT type=3Dhidden name=3DUSERNAME> <INPUT type=3Dhidden name=3DUSEREMAIL=
> <INPUT=20=0D
type=3Dhidden value=3D"D:\Jens\JA\APdigestJens.wiff : JAAP001" name=3DCOM> =
<INPUT=20=0D
type=3Dhidden value=3D"Carbamidomethyl (C)" name=3DMODS> <INPUT type=3Dhidd=
en=20=0D
value=3D"Oxidation (M)" name=3DIT_MODS> <INPUT type=3Dhidden value=3DTrypsi=
n name=3DCLE>=20=0D
<INPUT type=3Dhidden value=3DMonoisotopic name=3DMASS> <INPUT type=3Dhidden=
 name=3DSEG>=20=0D
<INPUT type=3Dhidden name=3DTWO> <INPUT type=3Dhidden value=3D0.15 name=3DT=
OL> <INPUT=20=0D
type=3Dhidden value=3DDa name=3DTOLU> <INPUT type=3Dhidden value=3D0.15 nam=
e=3DITOL> <INPUT=20=0D
type=3Dhidden value=3DDa name=3DITOLU> <INPUT type=3Dhidden name=3DLTOL> <I=
NPUT=20=0D
type=3Dhidden name=3DMP> <INPUT type=3Dhidden value=3DIPI name=3DDB> <INPUT=
 type=3Dhidden=20=0D
value=3D"2+ and 3+" name=3DCHARGE> <INPUT type=3Dhidden value=3D1 name=3DPF=
A> <INPUT=20=0D
type=3Dhidden value=3D0 name=3DIATOL> <INPUT type=3Dhidden value=3D0 name=
=3DIASTOL> <INPUT=20=0D
type=3Dhidden value=3D0 name=3DIA2TOL> <INPUT type=3Dhidden value=3D1 name=
=3DIBTOL> <INPUT=20=0D
type=3Dhidden value=3D0 name=3DIBSTOL> <INPUT type=3Dhidden value=3D1 name=
=3DIB2TOL> <INPUT=20=0D
type=3Dhidden value=3D1 name=3DIYTOL> <INPUT type=3Dhidden value=3D0 name=
=3DIYSTOL> <INPUT=20=0D
type=3Dhidden value=3D1 name=3DIY2TOL> <INPUT type=3Dhidden name=3DFRAG> <I=
NPUT=20=0D
type=3Dhidden value=3DC:\DOCUME~1\PROTEI~1\LOCALS~1\Temp\masA.tmp name=3DFI=
LE> <INPUT=20=0D
type=3Dhidden value=3D"Mascot generic" name=3DFORMAT> <INPUT type=3Dhidden=20=0D
value=3D../data/20011120/F001249.dat name=3DINTERMEDIATE> <INPUT type=3Dhid=
den=20=0D
value=3D100 name=3DREPORT> <INPUT type=3Dhidden value=3DOFF name=3DOVERVIEW=
> <INPUT=20=0D
type=3Dhidden value=3DAUTO name=3DPEAK> <INPUT type=3Dhidden name=3DPRECURS=
OR> <INPUT=20=0D
type=3Dhidden value=3D". . . . . . . . . . . . . . . . Homo sapiens (human)=
"=20=0D
name=3DTAXONOMY> <INPUT type=3Dhidden value=3DPeptide name=3DREPTYPE> <INPU=
T type=3Dhidden=20=0D
value=3D"not again" name=3DrepeatSearch> <INPUT type=3Dhidden value=3DOFF n=
ame=3DICAT>=20=0D
<P><INPUT onclick=3D"checkQuery(1,1938, this.form)" type=3Dbutton value=3D"=
Select All">=20=0D
&nbsp;&nbsp;<INPUT onclick=3D"checkQuery(0,1938, this.form)" type=3Dbutton =
value=3D"Select None">=20=0D
&nbsp;&nbsp;<INPUT type=3Dsubmit value=3D"Search Selected">&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;=20=0D
<INPUT onclick=3D"makeArchive(this.form); return true" type=3Dbutton value=
=3D"Archive Report">=20=0D
<FONT face=3D"Courier New,Courier,monospace"><PRE><A name=3DHit1><B>1.</B><=
/A> <A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/2=
0011120/F001249.dat&amp;hit=3DIPI%3aIPI00019502&amp;px=3D1">IPI:IPI00019502=
</A>  <B>Mass:</B> 227646   <B>Total score:</B> 873  <B>Peptides matched:</=
B> 62=20=0D
   SWISS-PROT:P35579|REFSEQ_NP:NP_002464|TREMBL:Q99529;Q9UMJ0|REFSEQ_XP:XP_=
038635;XP_015198|ENSEMBL:EN=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D1 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"891.456434 from(446.736042,2+) title(Elution%20from%3a%2010%=
2e73%20to%2010%2e73%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%201%20%20) query(41)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q41; if (NS4 || IE4) activateEl('Q=
41', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D41&amp;hit=3D1&amp;index=3DIPI%3aIPI00019502=
&amp;px=3D1"=20=0D
      target=3D_blank>41</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>446.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;891.46&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;891.42&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;ADEWLMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"907.506896 from(454.761273,2+) title(Elution%20from%3a%2015%=
2e78%20to%2015%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(48)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q48; if (NS4 || IE4) activateEl('Q=
48', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D48&amp;hit=3D1&amp;index=3DIPI%3aIPI00019502=
&amp;px=3D1"=20=0D
      target=3D_blank>48</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>454.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;907.51&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;907.48&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;FVSELWK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"923.512964 from(462.764307,2+) title(Elution%20from%3a%2012%=
2e95%20to%2012%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(56)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q56; if (NS4 || IE4) activateEl('Q=
56', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D56&amp;hit=3D1&amp;index=3DIPI%3aIPI00019502=
&amp;px=3D1"=20=0D
      target=3D_blank>56</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>462.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;923.51&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;923.49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;31&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;VVFQEFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1038.706370 from(520.361010,2+) title(Elution%20from%3a%2014=
%2e96%20to%2014%2e96%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(148)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q148; if (NS4 || IE4) activateEl('=
Q148', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D148&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>148</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>520.36&nbsp;&nbsp;&nbsp;&nbsp;1038.71&nbsp;&nbsp;&=
nbsp;&nbsp;1038.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VKPLLQVSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1115.635020 from(558.825335,2+) title(Elution%20from%3a%2018=
%2e68%20to%2018%2e68%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(196)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q196; if (NS4 || IE4) activateEl('=
Q196', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D196&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>196</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>558.83&nbsp;&nbsp;&nbsp;&nbsp;1115.64&nbsp;&nbsp;&=
nbsp;&nbsp;1115.57&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DLGEELEALK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1169.562382 from(585.789016,2+) title(Elution%20from%3a%208%=
2e7%20to%208%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3=
a%20%201%20%20) query(250)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q250; if (NS4 || IE4) activateEl('=
Q250', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D250&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>250</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>585.79&nbsp;&nbsp;&nbsp;&nbsp;1169.56&nbsp;&nbsp;&=
nbsp;&nbsp;1169.49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;37&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TEMEDLMSSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.680262 from(597.347956,2+) title(Elution%20from%3a%2017=
%2e02%20to%2017%2e02%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(290)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q290; if (NS4 || IE4) activateEl('=
Q290', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D290&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>290</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.35&nbsp;&nbsp;&nbsp;&nbsp;1192.68&nbsp;&nbsp;&=
nbsp;&nbsp;1192.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ALELDSNLYR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1203.670062 from(602.842856,2+) title(Elution%20from%3a%205%=
2e48%20to%205%2e48%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(320)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q320; if (NS4 || IE4) activateEl('=
Q320', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D320&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>320</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>602.84&nbsp;&nbsp;&nbsp;&nbsp;1203.67&nbsp;&nbsp;&=
nbsp;&nbsp;1203.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ALEQQVEEMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1204.711768 from(603.363709,2+) title(Elution%20from%3a%2014=
%2e42%20to%2014%2e42%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(323)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q323; if (NS4 || IE4) activateEl('=
Q323', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D323&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>323</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>603.36&nbsp;&nbsp;&nbsp;&nbsp;1204.71&nbsp;&nbsp;&=
nbsp;&nbsp;1204.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TDLLLEPYNK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1218.710568 from(610.363109,2+) title(Elution%20from%3a%2015=
%2e86%20to%2015%2e86%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(339)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q339; if (NS4 || IE4) activateEl('=
Q339', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D339&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>339</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>610.36&nbsp;&nbsp;&nbsp;&nbsp;1218.71&nbsp;&nbsp;&=
nbsp;&nbsp;1218.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AQFERDLQGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1219.716590 from(610.866120,2+) title(Elution%20from%3a%2013=
%2e9%20to%2013%2e9%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(342)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q342; if (NS4 || IE4) activateEl('=
Q342', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D342&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>342</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>610.87&nbsp;&nbsp;&nbsp;&nbsp;1219.72&nbsp;&nbsp;&=
nbsp;&nbsp;1219.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KFDQLLAEEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1222.702894 from(612.359272,2+) title(Elution%20from%3a%2016=
%2e15%20to%2016%2e15%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(349)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q349; if (NS4 || IE4) activateEl('=
Q349', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D349&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>349</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>612.36&nbsp;&nbsp;&nbsp;&nbsp;1222.70&nbsp;&nbsp;&=
nbsp;&nbsp;1222.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(13)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;AG=
VLAHLEEER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1222.705686 from(612.360668,2+) title(Elution%20from%3a%2019=
%2e96%20to%2019%2e96%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(350)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q350; if (NS4 || IE4) activateEl('=
Q350', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D350&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>350</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>612.36&nbsp;&nbsp;&nbsp;&nbsp;1222.71&nbsp;&nbsp;&=
nbsp;&nbsp;1222.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;26&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;AGVLAHLEEER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1283.795892 from(642.905771,2+) title(Elution%20from%3a%2011=
%2e4%20to%2011%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(416)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q416; if (NS4 || IE4) activateEl('=
Q416', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D416&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>416</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>642.91&nbsp;&nbsp;&nbsp;&nbsp;1283.80&nbsp;&nbsp;&=
nbsp;&nbsp;1283.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VEAQLQELQVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q436; if (NS4 || IE4) activateEl('=
Q436', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D436&amp;hit=3D3&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>436</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>653.38&nbsp;&=
nbsp;&nbsp;&nbsp;1304.75&nbsp;&nbsp;&nbsp;&nbsp;1304.66&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nb=
sp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;EQADFAIEALAK</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1304.750984 from(653.383317,2+) title(Elution%20from%3a%2027=
%2e12%20to%2027%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(437)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q437; if (NS4 || IE4) activateEl('=
Q437', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D437&amp;hit=3D2&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>437</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>653.38&nbsp;&nbsp;&nbsp;&nbsp;1304.75&nbsp;&nbsp;&=
nbsp;&nbsp;1304.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;EQ=
ADFAIEALAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1304.753572 from(653.384611,2+) title(Elution%20from%3a%2030=
%2e21%20to%2030%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(438)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q438; if (NS4 || IE4) activateEl('=
Q438', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D438&amp;hit=3D2&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>438</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>653.38&nbsp;&nbsp;&nbsp;&nbsp;1304.75&nbsp;&nbsp;&=
nbsp;&nbsp;1304.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(2)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;EQADFAIEALAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1304.754086 from(653.384868,2+) title(Elution%20from%3a%2017=
%2e93%20to%2017%2e93%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(439)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q439; if (NS4 || IE4) activateEl('=
Q439', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D439&amp;hit=3D2&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>439</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>653.38&nbsp;&nbsp;&nbsp;&nbsp;1304.75&nbsp;&nbsp;&=
nbsp;&nbsp;1304.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EQADFAIEALAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q458; if (NS4 || IE4) activateEl('=
Q458', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D458&amp;hit=3D2&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>458</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>657.92&nbsp;&=
nbsp;&nbsp;&nbsp;1313.82&nbsp;&nbsp;&nbsp;&nbsp;1313.75&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;LRLEVNLQAMK</B></TT></TD>=
</TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1347.716518 from(674.866084,2+) title(Elution%20from%3a%201%=
2e49%20to%201%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(508)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q508; if (NS4 || IE4) activateEl('=
Q508', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D508&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>508</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>674.87&nbsp;&nbsp;&nbsp;&nbsp;1347.72&nbsp;&nbsp;&=
nbsp;&nbsp;1347.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DELADEIANSSGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1359.724770 from(454.249415,3+) title(Elution%20from%3a%209%=
2e94%20to%209%2e94%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(545)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q545; if (NS4 || IE4) activateEl('=
Q545', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D545&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>545</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>454.25&nbsp;&nbsp;&nbsp;&nbsp;1359.72&nbsp;&nbsp;&=
nbsp;&nbsp;1359.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;RA=
LEQQVEEMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1359.776604 from(680.896127,2+) title(Elution%20from%3a%209%=
2e99%20to%209%2e99%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(546)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q546; if (NS4 || IE4) activateEl('=
Q546', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D546&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>546</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>680.90&nbsp;&nbsp;&nbsp;&nbsp;1359.78&nbsp;&nbsp;&=
nbsp;&nbsp;1359.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;RALEQQVEEMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q578; if (NS4 || IE4) activateEl('=
Q578', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D578&amp;hit=3D2&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>578</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>694.83&nbsp;&=
nbsp;&nbsp;&nbsp;1387.64&nbsp;&nbsp;&nbsp;&nbsp;1387.56&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nb=
sp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;DMFQETMEAMR</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1387.667156 from(694.841403,2+) title(Elution%20from%3a%2022=
%2e96%20to%2022%2e96%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(579)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q579; if (NS4 || IE4) activateEl('=
Q579', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D579&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>579</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>694.84&nbsp;&nbsp;&nbsp;&nbsp;1387.67&nbsp;&nbsp;&=
nbsp;&nbsp;1387.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DMFQETMEAMR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1411.844856 from(471.622777,3+) title(Elution%20from%3a%2013=
%2e83%20to%2013%2e83%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(606)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q606; if (NS4 || IE4) activateEl('=
Q606', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D606&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>606</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>471.62&nbsp;&nbsp;&nbsp;&nbsp;1411.84&nbsp;&nbsp;&=
nbsp;&nbsp;1411.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;KV=
EAQLQELQVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1411.890308 from(706.952979,2+) title(Elution%20from%3a%2013=
%2e96%20to%2013%2e96%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(607)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q607; if (NS4 || IE4) activateEl('=
Q607', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D607&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>607</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>706.95&nbsp;&nbsp;&nbsp;&nbsp;1411.89&nbsp;&nbsp;&=
nbsp;&nbsp;1411.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KVEAQLQELQVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1529.821798 from(765.918724,2+) title(Elution%20from%3a%2010=
%2e35%20to%2010%2e48%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(733)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q733; if (NS4 || IE4) activateEl('=
Q733', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D733&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>733</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>765.92&nbsp;&nbsp;&nbsp;&nbsp;1529.82&nbsp;&nbsp;&=
nbsp;&nbsp;1529.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IAQLEEQLDNETK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1529.835930 from(510.953135,3+) title(Elution%20from%3a%2010=
%2e55%20to%2010%2e55%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(734)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q734; if (NS4 || IE4) activateEl('=
Q734', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D734&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>734</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>510.95&nbsp;&nbsp;&nbsp;&nbsp;1529.84&nbsp;&nbsp;&=
nbsp;&nbsp;1529.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IA=
QLEEQLDNETK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1529.862018 from(765.938834,2+) title(Elution%20from%3a%2013=
%2e44%20to%2013%2e44%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(735)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q735; if (NS4 || IE4) activateEl('=
Q735', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D735&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>735</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>765.94&nbsp;&nbsp;&nbsp;&nbsp;1529.86&nbsp;&nbsp;&=
nbsp;&nbsp;1529.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(6)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;IAQLEEQLDNETK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1557.957048 from(779.986349,2+) title(Elution%20from%3a%2016=
%2e63%20to%2016%2e63%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(755)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q755; if (NS4 || IE4) activateEl('=
Q755', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D755&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>755</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>779.99&nbsp;&nbsp;&nbsp;&nbsp;1557.96&nbsp;&nbsp;&=
nbsp;&nbsp;1557.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;QRYEILTPNSIPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1570.924458 from(524.649311,3+) title(Elution%20from%3a%2062=
%2e2%20to%2062%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(763)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q763; if (NS4 || IE4) activateEl('=
Q763', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D763&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>763</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>524.65&nbsp;&nbsp;&nbsp;&nbsp;1570.92&nbsp;&nbsp;&=
nbsp;&nbsp;1570.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;VS=
HLLGINVTDFTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1570.936386 from(524.653287,3+) title(Elution%20from%3a%2065=
%2e24%20to%2065%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(765)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q765; if (NS4 || IE4) activateEl('=
Q765', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D765&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>765</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>524.65&nbsp;&nbsp;&nbsp;&nbsp;1570.94&nbsp;&nbsp;&=
nbsp;&nbsp;1570.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VSHLLGINVTDFTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1570.956234 from(786.485942,2+) title(Elution%20from%3a%2063=
%2e94%20to%2063%2e94%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(766)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q766; if (NS4 || IE4) activateEl('=
Q766', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D766&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>766</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>786.49&nbsp;&nbsp;&nbsp;&nbsp;1570.96&nbsp;&nbsp;&=
nbsp;&nbsp;1570.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(5)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;VSHLLGINVTDFTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1584.844908 from(529.289461,3+) title(Elution%20from%3a%2015=
%2e01%20to%2015%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(803)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q803; if (NS4 || IE4) activateEl('=
Q803', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D803&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>803</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.29&nbsp;&nbsp;&nbsp;&nbsp;1584.84&nbsp;&nbsp;&=
nbsp;&nbsp;1584.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;NKHEAMITDLEER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1584.871078 from(793.443364,2+) title(Elution%20from%3a%2015=
%2e09%20to%2015%2e09%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(804)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q804; if (NS4 || IE4) activateEl('=
Q804', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D804&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>804</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>793.44&nbsp;&nbsp;&nbsp;&nbsp;1584.87&nbsp;&nbsp;&=
nbsp;&nbsp;1584.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;(41)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;NK=
HEAMITDLEER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1639.922241 from(547.648572,3+) title(Elution%20from%3a%2013=
%2e72%20to%2013%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(860)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q860; if (NS4 || IE4) activateEl('=
Q860', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D860&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>860</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>547.65&nbsp;&nbsp;&nbsp;&nbsp;1639.92&nbsp;&nbsp;&=
nbsp;&nbsp;1639.83&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FLSNGHVTIPGQQDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1671.953818 from(836.984734,2+) title(Elution%20from%3a%2027=
%2e85%20to%2027%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(932)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q932; if (NS4 || IE4) activateEl('=
Q932', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D932&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>932</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>836.98&nbsp;&nbsp;&nbsp;&nbsp;1671.95&nbsp;&nbsp;&=
nbsp;&nbsp;1671.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;NFINNPLAQADWAAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q933; if (NS4 || IE4) activateEl('=
Q933', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D933&amp;hit=3D3&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>933</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>558.33&nbsp;&=
nbsp;&nbsp;&nbsp;1671.96&nbsp;&nbsp;&nbsp;&nbsp;1671.84&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nb=
sp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;NFINNPLAQADWAAK</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1726.049943 from(576.357806,3+) title(Elution%20from%3a%2065=
%2e3%20to%2065%2e3%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(971)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q971; if (NS4 || IE4) activateEl('=
Q971', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D971&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>971</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>576.36&nbsp;&nbsp;&nbsp;&nbsp;1726.05&nbsp;&nbsp;&=
nbsp;&nbsp;1725.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QLLQANPILEAFGNAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1726.964246 from(864.489948,2+) title(Elution%20from%3a%2055=
%2e08%20to%2055%2e08%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(973)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q973; if (NS4 || IE4) activateEl('=
Q973', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D973&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>973</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>864.49&nbsp;&nbsp;&nbsp;&nbsp;1726.96&nbsp;&nbsp;&=
nbsp;&nbsp;1726.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;NLPIYSEEIVEMYK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1742.910573 from(581.978016,3+) title(Elution%20from%3a%2051=
%2e02%20to%2051%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(994)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q994; if (NS4 || IE4) activateEl('=
Q994', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D994&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>994</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>581.98&nbsp;&nbsp;&nbsp;&nbsp;1742.91&nbsp;&nbsp;&=
nbsp;&nbsp;1742.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;EE=
VGEEAIVELVENGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1742.975532 from(581.999669,3+) title(Elution%20from%3a%2054=
%2e15%20to%2054%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(995)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q995; if (NS4 || IE4) activateEl('=
Q995', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D995&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>995</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>582.00&nbsp;&nbsp;&nbsp;&nbsp;1742.98&nbsp;&nbsp;&=
nbsp;&nbsp;1742.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;EEVGEEAIVELVENGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1742.975799 from(581.999758,3+) title(Elution%20from%3a%2060=
%2e29%20to%2060%2e29%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(996)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q996; if (NS4 || IE4) activateEl('=
Q996', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D996&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>996</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>582.00&nbsp;&nbsp;&nbsp;&nbsp;1742.98&nbsp;&nbsp;&=
nbsp;&nbsp;1742.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;47&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EEVGEEAIVELVENGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1742.983113 from(582.002196,3+) title(Elution%20from%3a%2063=
%2e36%20to%2063%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(997)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q997; if (NS4 || IE4) activateEl('=
Q997', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D997&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>997</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>582.00&nbsp;&nbsp;&nbsp;&nbsp;1742.98&nbsp;&nbsp;&=
nbsp;&nbsp;1742.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(25)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;EE=
VGEEAIVELVENGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1742.983833 from(582.002436,3+) title(Elution%20from%3a%2057=
%2e27%20to%2057%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(998)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h1_q998; if (NS4 || IE4) activateEl('=
Q998', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D998&amp;hit=3D1&amp;index=3DIPI%3aIPI0001950=
2&amp;px=3D1"=20=0D
      target=3D_blank>998</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>582.00&nbsp;&nbsp;&nbsp;&nbsp;1742.98&nbsp;&nbsp;&=
nbsp;&nbsp;1742.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(10)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;EE=
VGEEAIVELVENGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1869.076426 from(935.546038,2+) title(Elution%20from%3a%2032=
%2e62%20to%2032%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1154)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1154; if (NS4 || IE4) activateEl(=
'Q1154', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1154&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1154</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>935.55&nbsp;&nbsp;&nbsp;&nbsp;1869.08&nbsp;&nbsp;&=
nbsp;&nbsp;1868.96&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(10)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;AN=
LQIDQINTDLNLER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1869.092400 from(624.038625,3+) title(Elution%20from%3a%2022=
%2e83%20to%2022%2e83%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1156)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1156; if (NS4 || IE4) activateEl(=
'Q1156', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1156&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1156</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.04&nbsp;&nbsp;&nbsp;&nbsp;1869.09&nbsp;&nbsp;&=
nbsp;&nbsp;1868.96&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;37&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ANLQIDQINTDLNLER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1871.086080 from(624.703185,3+) title(Elution%20from%3a%2058=
%2e27%20to%2058%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1171)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1171; if (NS4 || IE4) activateEl(=
'Q1171', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1171&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1171</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.70&nbsp;&nbsp;&nbsp;&nbsp;1871.09&nbsp;&nbsp;&=
nbsp;&nbsp;1870.95&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;42&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EEVGEEAIVELVENGKK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1919.017340 from(960.516495,2+) title(Elution%20from%3a%2014=
%2e32%20to%2014%2e32%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1231)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1231; if (NS4 || IE4) activateEl(=
'Q1231', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1231&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1231</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>960.52&nbsp;&nbsp;&nbsp;&nbsp;1919.02&nbsp;&nbsp;&=
nbsp;&nbsp;1918.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(50)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TE=
LEDTLDSTAAQQELR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1919.049387 from(640.690954,3+) title(Elution%20from%3a%2014=
%2e24%20to%2014%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1232)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1232; if (NS4 || IE4) activateEl(=
'Q1232', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1232&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1232</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>640.69&nbsp;&nbsp;&nbsp;&nbsp;1919.05&nbsp;&nbsp;&=
nbsp;&nbsp;1918.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TELEDTLDSTAAQQELR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1961.056818 from(654.693431,3+) title(Elution%20from%3a%2033=
%2e19%20to%2033%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1271)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1271; if (NS4 || IE4) activateEl(=
'Q1271', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1271&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1271</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>654.69&nbsp;&nbsp;&nbsp;&nbsp;1961.06&nbsp;&nbsp;&=
nbsp;&nbsp;1960.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TQLEELEDELQATEDAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1995.147447 from(666.056974,3+) title(Elution%20from%3a%2014=
9%2e83%20to%20149%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1305)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1305; if (NS4 || IE4) activateEl(=
'Q1305', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1305&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1305</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.06&nbsp;&nbsp;&nbsp;&nbsp;1995.15&nbsp;&nbsp;&=
nbsp;&nbsp;1995.03&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;45&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TFHIFYYLLSGAGEHLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1995.147496 from(998.581573,2+) title(Elution%20from%3a%2014=
9%2e7%20to%20149%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1306)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1306; if (NS4 || IE4) activateEl(=
'Q1306', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1306&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1306</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>998.58&nbsp;&nbsp;&nbsp;&nbsp;1995.15&nbsp;&nbsp;&=
nbsp;&nbsp;1995.03&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TF=
HIFYYLLSGAGEHLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1995.157896 from(666.060457,3+) title(Elution%20from%3a%2015=
2%2e87%20to%20152%2e87%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1307)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1307; if (NS4 || IE4) activateEl(=
'Q1307', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1307&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1307</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.06&nbsp;&nbsp;&nbsp;&nbsp;1995.16&nbsp;&nbsp;&=
nbsp;&nbsp;1995.03&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(29)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TF=
HIFYYLLSGAGEHLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1995.159411 from(666.060962,3+) title(Elution%20from%3a%2014=
3%2e73%20to%20143%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1308)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1308; if (NS4 || IE4) activateEl(=
'Q1308', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1308&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1308</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.06&nbsp;&nbsp;&nbsp;&nbsp;1995.16&nbsp;&nbsp;&=
nbsp;&nbsp;1995.03&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;TFHIFYYLLSGAGEHLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1995.162015 from(666.061830,3+) title(Elution%20from%3a%2014=
6%2e79%20to%20146%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1309)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1309; if (NS4 || IE4) activateEl(=
'Q1309', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1309&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1309</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.06&nbsp;&nbsp;&nbsp;&nbsp;1995.16&nbsp;&nbsp;&=
nbsp;&nbsp;1995.03&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(24)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TF=
HIFYYLLSGAGEHLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1995.173340 from(666.065605,3+) title(Elution%20from%3a%2013=
1%2e32%20to%20131%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1310)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1310; if (NS4 || IE4) activateEl(=
'Q1310', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1310&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1310</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.07&nbsp;&nbsp;&nbsp;&nbsp;1995.17&nbsp;&nbsp;&=
nbsp;&nbsp;1995.03&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(23)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TF=
HIFYYLLSGAGEHLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1995.175230 from(666.066235,3+) title(Elution%20from%3a%2014=
0%2e72%20to%20140%2e72%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1311)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1311; if (NS4 || IE4) activateEl(=
'Q1311', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1311&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1311</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.07&nbsp;&nbsp;&nbsp;&nbsp;1995.18&nbsp;&nbsp;&=
nbsp;&nbsp;1995.03&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(15)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TF=
HIFYYLLSGAGEHLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2048.094720 from(683.706065,3+) title(Elution%20from%3a%2010=
2%2e48%20to%20102%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1377)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1377; if (NS4 || IE4) activateEl(=
'Q1377', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1377&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1377</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>683.71&nbsp;&nbsp;&nbsp;&nbsp;2048.09&nbsp;&nbsp;&=
nbsp;&nbsp;2047.96&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SMEAEMIQLQEELAAAER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2206.261692 from(736.428389,3+) title(Elution%20from%3a%2014=
3%2e96%20to%20143%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1552)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1552; if (NS4 || IE4) activateEl(=
'Q1552', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1552&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1552</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>736.43&nbsp;&nbsp;&nbsp;&nbsp;2206.26&nbsp;&nbsp;&=
nbsp;&nbsp;2206.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TR=
LQQELDDLLVDLDHQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2206.277886 from(736.433787,3+) title(Elution%20from%3a%2015=
0%2e16%20to%20150%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1553)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1553; if (NS4 || IE4) activateEl(=
'Q1553', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1553&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1553</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>736.43&nbsp;&nbsp;&nbsp;&nbsp;2206.28&nbsp;&nbsp;&=
nbsp;&nbsp;2206.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;(13)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TR=
LQQELDDLLVDLDHQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2206.279593 from(736.434356,3+) title(Elution%20from%3a%2015=
3%2e2%20to%20153%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1554)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h1_q1554; if (NS4 || IE4) activateEl(=
'Q1554', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1554&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
02&amp;px=3D1"=20=0D
      target=3D_blank>1554</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>736.43&nbsp;&nbsp;&nbsp;&nbsp;2206.28&nbsp;&nbsp;&=
nbsp;&nbsp;2206.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;37&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TRLQQELDDLLVDLDHQR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><H=
R>=0D
<A name=3DHit2><B>2.</B></A> <A href=3D"http://pilmascot/mascot/cgi/protein=
_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00004497&am=
p;px=3D1">IPI:IPI00004497</A>  <B>Mass:</B> 143744   <B>Total score:</B> 47=
3  <B>Peptides matched:</B> 42=20=0D
   SWISS-PROT:P11274|REFSEQ_NP:NP_004318|TREMBL:Q13746|ENSEMBL:ENSP00000263=
107 Breakpoint cluster regi=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D2 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"805.474674 from(403.745162,2+) title(Elution%20from%3a%204%2=
e63%20to%204%2e63%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(8)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q8; if (NS4 || IE4) activateEl('Q8=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D8&amp;hit=3D1&amp;index=3DIPI%3aIPI00004497&=
amp;px=3D1"=20=0D
      target=3D_blank>8</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>403.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;805.47&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;805.43&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;VGDLFQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"937.555638 from(469.785644,2+) title(Elution%20from%3a%200%2=
e67%20to%200%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(61)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q61; if (NS4 || IE4) activateEl('Q=
61', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D61&amp;hit=3D1&amp;index=3DIPI%3aIPI00004497=
&amp;px=3D1"=20=0D
      target=3D_blank>61</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>469.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;937.56&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;937.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;GPPASVAALR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1005.604200 from(503.809925,2+) title(Elution%20from%3a%208%=
2e62%20to%208%2e62%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(113)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q113; if (NS4 || IE4) activateEl('=
Q113', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D113&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>113</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>503.81&nbsp;&nbsp;&nbsp;&nbsp;1005.60&nbsp;&nbsp;&=
nbsp;&nbsp;1005.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LA=
SQLGVYR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1005.604250 from(503.809950,2+) title(Elution%20from%3a%205%=
2e4%20to%205%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3=
a%20%201%20%20) query(114)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q114; if (NS4 || IE4) activateEl('=
Q114', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D114&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>114</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>503.81&nbsp;&nbsp;&nbsp;&nbsp;1005.60&nbsp;&nbsp;&=
nbsp;&nbsp;1005.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LASQLGVYR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1137.735024 from(569.875337,2+) title(Elution%20from%3a%2046=
%2e49%20to%2046%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(215)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q215; if (NS4 || IE4) activateEl('=
Q215', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D215&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>215</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>569.88&nbsp;&nbsp;&nbsp;&nbsp;1137.74&nbsp;&nbsp;&=
nbsp;&nbsp;1137.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;STLVLHDLLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1137.745492 from(569.880571,2+) title(Elution%20from%3a%2049=
%2e54%20to%2049%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(216)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q216; if (NS4 || IE4) activateEl('=
Q216', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D216&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>216</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>569.88&nbsp;&nbsp;&nbsp;&nbsp;1137.75&nbsp;&nbsp;&=
nbsp;&nbsp;1137.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;STLVLHDLLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q217; if (NS4 || IE4) activateEl('=
Q217', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D217&amp;hit=3D2&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>217</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>569.88&nbsp;&=
nbsp;&nbsp;&nbsp;1137.75&nbsp;&nbsp;&nbsp;&nbsp;1137.68&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&nb=
sp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;STLVLHDLLK</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1142.633336 from(572.324493,2+) title(Elution%20from%3a%2019=
%2e71%20to%2019%2e71%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(224)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q224; if (NS4 || IE4) activateEl('=
Q224', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D224&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>224</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>572.32&nbsp;&nbsp;&nbsp;&nbsp;1142.63&nbsp;&nbsp;&=
nbsp;&nbsp;1142.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EFYDGLFPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1189.692278 from(595.853964,2+) title(Elution%20from%3a%208%=
2e83%20to%208%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(279)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q279; if (NS4 || IE4) activateEl('=
Q279', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D279&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>279</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>595.85&nbsp;&nbsp;&nbsp;&nbsp;1189.69&nbsp;&nbsp;&=
nbsp;&nbsp;1189.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(22)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;DA=
LVSGALESTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1189.692848 from(595.854249,2+) title(Elution%20from%3a%2012=
%2e18%20to%2012%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(280)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q280; if (NS4 || IE4) activateEl('=
Q280', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D280&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>280</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>595.85&nbsp;&nbsp;&nbsp;&nbsp;1189.69&nbsp;&nbsp;&=
nbsp;&nbsp;1189.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;33&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DALVSGALESTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.740868 from(597.378259,2+) title(Elution%20from%3a%2060=
%2e9%20to%2060%2e9%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(292)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q292; if (NS4 || IE4) activateEl('=
Q292', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D292&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>292</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.38&nbsp;&nbsp;&nbsp;&nbsp;1192.74&nbsp;&nbsp;&=
nbsp;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(25)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;MI=
YLQTLLAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.763450 from(597.389550,2+) title(Elution%20from%3a%2063=
%2e88%20to%2063%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(296)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q296; if (NS4 || IE4) activateEl('=
Q296', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D296&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>296</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.39&nbsp;&nbsp;&nbsp;&nbsp;1192.76&nbsp;&nbsp;&=
nbsp;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;MIYLQTLLAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.764642 from(597.390146,2+) title(Elution%20from%3a%2066=
%2e95%20to%2066%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(297)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q297; if (NS4 || IE4) activateEl('=
Q297', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D297&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>297</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.39&nbsp;&nbsp;&nbsp;&nbsp;1192.76&nbsp;&nbsp;&=
nbsp;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(14)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;MI=
YLQTLLAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.765778 from(597.390714,2+) title(Elution%20from%3a%2070=
%2e02%20to%2070%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(298)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q298; if (NS4 || IE4) activateEl('=
Q298', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D298&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>298</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.39&nbsp;&nbsp;&nbsp;&nbsp;1192.77&nbsp;&nbsp;&=
nbsp;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;39&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MIYLQTLLAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.776370 from(597.396010,2+) title(Elution%20from%3a%2048=
%2e1%20to%2048%2e1%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(299)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q299; if (NS4 || IE4) activateEl('=
Q299', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D299&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>299</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.40&nbsp;&nbsp;&nbsp;&nbsp;1192.78&nbsp;&nbsp;&=
nbsp;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;MIYLQTLLAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1273.698222 from(637.856936,2+) title(Elution%20from%3a%2013=
%2e65%20to%2013%2e65%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(400)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q400; if (NS4 || IE4) activateEl('=
Q400', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D400&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>400</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>637.86&nbsp;&nbsp;&nbsp;&nbsp;1273.70&nbsp;&nbsp;&=
nbsp;&nbsp;1273.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SVGDIEQELER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1323.763761 from(442.262412,3+) title(Elution%20from%3a%206%=
2e79%20to%206%2e79%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(472)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q472; if (NS4 || IE4) activateEl('=
Q472', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D472&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>472</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>442.26&nbsp;&nbsp;&nbsp;&nbsp;1323.76&nbsp;&nbsp;&=
nbsp;&nbsp;1323.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DDRGPPASVAALR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1323.781402 from(662.898526,2+) title(Elution%20from%3a%206%=
2e87%20to%206%2e87%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(473)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q473; if (NS4 || IE4) activateEl('=
Q473', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D473&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>473</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>662.90&nbsp;&nbsp;&nbsp;&nbsp;1323.78&nbsp;&nbsp;&=
nbsp;&nbsp;1323.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;DDRGPPASVAALR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1351.689330 from(451.570935,3+) title(Elution%20from%3a%2057=
%2e24%20to%2057%2e24%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(517)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q517; if (NS4 || IE4) activateEl('=
Q517', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D517&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>517</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>451.57&nbsp;&nbsp;&nbsp;&nbsp;1351.69&nbsp;&nbsp;&=
nbsp;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;DS=
FMVELVEGAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1351.714479 from(451.579318,3+) title(Elution%20from%3a%2060=
%2e22%20to%2060%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(518)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q518; if (NS4 || IE4) activateEl('=
Q518', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D518&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>518</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>451.58&nbsp;&nbsp;&nbsp;&nbsp;1351.71&nbsp;&nbsp;&=
nbsp;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DSFMVELVEGAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1351.716960 from(676.866305,2+) title(Elution%20from%3a%2074=
%2e85%20to%2074%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(519)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q519; if (NS4 || IE4) activateEl('=
Q519', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D519&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>519</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.87&nbsp;&nbsp;&nbsp;&nbsp;1351.72&nbsp;&nbsp;&=
nbsp;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(10)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;DS=
FMVELVEGAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1351.724450 from(676.870050,2+) title(Elution%20from%3a%2044=
%2e17%20to%2044%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(520)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q520; if (NS4 || IE4) activateEl('=
Q520', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D520&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>520</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.87&nbsp;&nbsp;&nbsp;&nbsp;1351.72&nbsp;&nbsp;&=
nbsp;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;DSFMVELVEGAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1436.744706 from(479.922727,3+) title(Elution%20from%3a%2010=
%2e3%20to%2010%2e3%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(627)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q627; if (NS4 || IE4) activateEl('=
Q627', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D627&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>627</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>479.92&nbsp;&nbsp;&nbsp;&nbsp;1436.74&nbsp;&nbsp;&=
nbsp;&nbsp;1436.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ISSLGSQAMQMER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1436.777048 from(719.396349,2+) title(Elution%20from%3a%2013=
%2e26%20to%2013%2e26%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(628)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q628; if (NS4 || IE4) activateEl('=
Q628', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D628&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>628</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>719.40&nbsp;&nbsp;&nbsp;&nbsp;1436.78&nbsp;&nbsp;&=
nbsp;&nbsp;1436.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(26)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IS=
SLGSQAMQMER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1436.778070 from(719.396860,2+) title(Elution%20from%3a%2010=
%2e12%20to%2010%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(629)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q629; if (NS4 || IE4) activateEl('=
Q629', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D629&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>629</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>719.40&nbsp;&nbsp;&nbsp;&nbsp;1436.78&nbsp;&nbsp;&=
nbsp;&nbsp;1436.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(28)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IS=
SLGSQAMQMER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1462.914069 from(488.645848,3+) title(Elution%20from%3a%2016=
%2e76%20to%2016%2e76%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(666)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q666; if (NS4 || IE4) activateEl('=
Q666', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D666&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>666</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>488.65&nbsp;&nbsp;&nbsp;&nbsp;1462.91&nbsp;&nbsp;&=
nbsp;&nbsp;1462.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(13)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LQ=
TVHSIPLTINK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1462.943036 from(732.479343,2+) title(Elution%20from%3a%2016=
%2e87%20to%2016%2e87%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(667)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q667; if (NS4 || IE4) activateEl('=
Q667', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D667&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>667</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>732.48&nbsp;&nbsp;&nbsp;&nbsp;1462.94&nbsp;&nbsp;&=
nbsp;&nbsp;1462.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LQTVHSIPLTINK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1479.794928 from(740.905289,2+) title(Elution%20from%3a%2027=
%2e72%20to%2027%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(674)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q674; if (NS4 || IE4) activateEl('=
Q674', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D674&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>674</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>740.91&nbsp;&nbsp;&nbsp;&nbsp;1479.79&nbsp;&nbsp;&=
nbsp;&nbsp;1479.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SY=
TFLISSDYER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1479.800832 from(740.908241,2+) title(Elution%20from%3a%2024=
%2e69%20to%2024%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(675)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q675; if (NS4 || IE4) activateEl('=
Q675', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D675&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>675</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>740.91&nbsp;&nbsp;&nbsp;&nbsp;1479.80&nbsp;&nbsp;&=
nbsp;&nbsp;1479.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;33&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SYTFLISSDYER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1479.803973 from(494.275816,3+) title(Elution%20from%3a%2061=
%2e06%20to%2061%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(676)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q676; if (NS4 || IE4) activateEl('=
Q676', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D676&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>676</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>494.28&nbsp;&nbsp;&nbsp;&nbsp;1479.80&nbsp;&nbsp;&=
nbsp;&nbsp;1479.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DSFMVELVEGARK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1479.813392 from(740.914521,2+) title(Elution%20from%3a%2018=
%2e21%20to%2018%2e34%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(677)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q677; if (NS4 || IE4) activateEl('=
Q677', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D677&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>677</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>740.91&nbsp;&nbsp;&nbsp;&nbsp;1479.81&nbsp;&nbsp;&=
nbsp;&nbsp;1479.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(30)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SY=
TFLISSDYER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1479.818475 from(494.280650,3+) title(Elution%20from%3a%2064=
%2e1%20to%2064%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(678)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q678; if (NS4 || IE4) activateEl('=
Q678', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D678&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>678</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>494.28&nbsp;&nbsp;&nbsp;&nbsp;1479.82&nbsp;&nbsp;&=
nbsp;&nbsp;1479.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;DSFMVELVEGARK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1546.914771 from(516.646082,3+) title(Elution%20from%3a%2024=
%2e18%20to%2024%2e3%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%202%20%20) query(751)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q751; if (NS4 || IE4) activateEl('=
Q751', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D751&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>751</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>516.65&nbsp;&nbsp;&nbsp;&nbsp;1546.91&nbsp;&nbsp;&=
nbsp;&nbsp;1546.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;NSLETLLYKPVDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1673.860719 from(558.961398,3+) title(Elution%20from%3a%2023=
%2e92%20to%2024%2e05%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(938)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q938; if (NS4 || IE4) activateEl('=
Q938', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D938&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>938</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>558.96&nbsp;&nbsp;&nbsp;&nbsp;1673.86&nbsp;&nbsp;&=
nbsp;&nbsp;1673.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;AFVDNYGVAMEMAEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1673.861238 from(837.938444,2+) title(Elution%20from%3a%2023=
%2e99%20to%2023%2e99%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(939)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h2_q939; if (NS4 || IE4) activateEl('=
Q939', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D939&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
7&amp;px=3D1"=20=0D
      target=3D_blank>939</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>837.94&nbsp;&nbsp;&nbsp;&nbsp;1673.86&nbsp;&nbsp;&=
nbsp;&nbsp;1673.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;AFVDNYGVAMEMAEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h2_q1122; if (NS4 || IE4) activateEl(=
'Q1122', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1122&amp;hit=3D2&amp;index=3DIPI%3aIPI000044=
97&amp;px=3D1"=20=0D
      target=3D_blank>1122</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>924.53&nbsp;=
&nbsp;&nbsp;&nbsp;1847.05&nbsp;&nbsp;&nbsp;&nbsp;1846.94&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&n=
bsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;ISQNFLSSINEEITPR</B></TT></TD></TR=
>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1847.066876 from(924.541263,2+) title(Elution%20from%3a%2054=
%2e71%20to%2054%2e71%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1124)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h2_q1124; if (NS4 || IE4) activateEl(=
'Q1124', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1124&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
97&amp;px=3D1"=20=0D
      target=3D_blank>1124</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>924.54&nbsp;&nbsp;&nbsp;&nbsp;1847.07&nbsp;&nbsp;&=
nbsp;&nbsp;1846.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(5)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;ISQNFLSSINEEITPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1847.075616 from(616.699697,3+) title(Elution%20from%3a%2055=
%2e66%20to%2055%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1125)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h2_q1125; if (NS4 || IE4) activateEl(=
'Q1125', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1125&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
97&amp;px=3D1"=20=0D
      target=3D_blank>1125</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>616.70&nbsp;&nbsp;&nbsp;&nbsp;1847.08&nbsp;&nbsp;&=
nbsp;&nbsp;1846.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ISQNFLSSINEEITPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1904.099367 from(635.707614,3+) title(Elution%20from%3a%2038=
%20to%2038%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3a%20%2=
01%20%20) query(1199)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h2_q1199; if (NS4 || IE4) activateEl(=
'Q1199', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1199&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
97&amp;px=3D1"=20=0D
      target=3D_blank>1199</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>635.71&nbsp;&nbsp;&nbsp;&nbsp;1904.10&nbsp;&nbsp;&=
nbsp;&nbsp;1903.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HTPASHPDHPLLQDALR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1904.099694 from(635.707723,3+) title(Elution%20from%3a%2022=
%2e22%20to%2022%2e22%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1200)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h2_q1200; if (NS4 || IE4) activateEl(=
'Q1200', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1200&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
97&amp;px=3D1"=20=0D
      target=3D_blank>1200</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>635.71&nbsp;&nbsp;&nbsp;&nbsp;1904.10&nbsp;&nbsp;&=
nbsp;&nbsp;1903.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;HTPASHPDHPLLQDALR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2051.156250 from(684.726575,3+) title(Elution%20from%3a%2010=
2%2e84%20to%20102%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1386)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h2_q1386; if (NS4 || IE4) activateEl(=
'Q1386', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1386&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
97&amp;px=3D1"=20=0D
      target=3D_blank>1386</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.73&nbsp;&nbsp;&nbsp;&nbsp;2051.16&nbsp;&nbsp;&=
nbsp;&nbsp;2051.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(6)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;LSEQESLLLLMSPSMAFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2051.190747 from(684.738074,3+) title(Elution%20from%3a%2012=
7%2e26%20to%20127%2e26%20%20%20period%3a%200%20%20%20experiment%3a%203%20cy=
cles%3a%20%201%20%20) query(1387)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h2_q1387; if (NS4 || IE4) activateEl(=
'Q1387', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1387&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
97&amp;px=3D1"=20=0D
      target=3D_blank>1387</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.74&nbsp;&nbsp;&nbsp;&nbsp;2051.19&nbsp;&nbsp;&=
nbsp;&nbsp;2051.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LSEQESLLLLMSPSMAFR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><H=
R>=0D
<A name=3DHit3><B>3.</B></A> <A href=3D"http://pilmascot/mascot/cgi/protein=
_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00012053&am=
p;px=3D1">IPI:IPI00012053</A>  <B>Mass:</B> 138507   <B>Total score:</B> 42=
0  <B>Peptides matched:</B> 40=20=0D
   REFSEQ_NP:NP_067585|TREMBL:P78501|REFSEQ_XP:XP_037060;XP_037059|ENSEMBL:=
ENSP00000263106 breakpoint=20=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D3 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q8; if (NS4 || IE4) activateEl('Q8=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D8&amp;hit=3D1&amp;index=3DIPI%3aIPI00012053&=
amp;px=3D1"=20=0D
      target=3D_blank>8</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>403.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;805.47&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;805.43&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;VGDLFQK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q61; if (NS4 || IE4) activateEl('Q=
61', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D61&amp;hit=3D1&amp;index=3DIPI%3aIPI00012053=
&amp;px=3D1"=20=0D
      target=3D_blank>61</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>469.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;937.56&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;937.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbs=
p;&nbsp;&nbsp;&nbsp;GPPASVAALR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q113; if (NS4 || IE4) activateEl('=
Q113', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D113&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>113</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>503.81&nbsp;&nbsp;&nbsp;&nbsp;1005.60&nbsp;&nbsp;&nbs=
p;&nbsp;1005.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LASQL=
GVYR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q114; if (NS4 || IE4) activateEl('=
Q114', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D114&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>114</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>503.81&nbsp;&nbsp;&nbsp;&nbsp;1005.60&nbsp;&nbsp;&nbs=
p;&nbsp;1005.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;LASQLGVYR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q215; if (NS4 || IE4) activateEl('=
Q215', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D215&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>215</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>569.88&nbsp;&nbsp;&nbsp;&nbsp;1137.74&nbsp;&nbsp;&nbs=
p;&nbsp;1137.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
STLVLHDLLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q216; if (NS4 || IE4) activateEl('=
Q216', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D216&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>216</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>569.88&nbsp;&nbsp;&nbsp;&nbsp;1137.75&nbsp;&nbsp;&nbs=
p;&nbsp;1137.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;STLVLHDLLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q217; if (NS4 || IE4) activateEl('=
Q217', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D217&amp;hit=3D2&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>217</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;569.88&nbsp;&nbs=
p;&nbsp;&nbsp;1137.75&nbsp;&nbsp;&nbsp;&nbsp;1137.68&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&nbsp;=
&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;STLVLHDLLK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q292; if (NS4 || IE4) activateEl('=
Q292', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D292&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>292</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>597.38&nbsp;&nbsp;&nbsp;&nbsp;1192.74&nbsp;&nbsp;&nbs=
p;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(25)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;MIYLQ=
TLLAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q296; if (NS4 || IE4) activateEl('=
Q296', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D296&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>296</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>597.39&nbsp;&nbsp;&nbsp;&nbsp;1192.76&nbsp;&nbsp;&nbs=
p;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
MIYLQTLLAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q297; if (NS4 || IE4) activateEl('=
Q297', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D297&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>297</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>597.39&nbsp;&nbsp;&nbsp;&nbsp;1192.76&nbsp;&nbsp;&nbs=
p;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(14)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;MIYLQ=
TLLAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q298; if (NS4 || IE4) activateEl('=
Q298', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D298&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>298</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>597.39&nbsp;&nbsp;&nbsp;&nbsp;1192.77&nbsp;&nbsp;&nbs=
p;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;39&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;MIYLQTLLAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q299; if (NS4 || IE4) activateEl('=
Q299', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D299&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>299</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>597.40&nbsp;&nbsp;&nbsp;&nbsp;1192.78&nbsp;&nbsp;&nbs=
p;&nbsp;1192.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
MIYLQTLLAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q400; if (NS4 || IE4) activateEl('=
Q400', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D400&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>400</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>637.86&nbsp;&nbsp;&nbsp;&nbsp;1273.70&nbsp;&nbsp;&nbs=
p;&nbsp;1273.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;SVGDIEQELER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q472; if (NS4 || IE4) activateEl('=
Q472', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D472&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>472</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>442.26&nbsp;&nbsp;&nbsp;&nbsp;1323.76&nbsp;&nbsp;&nbs=
p;&nbsp;1323.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;DDRGPPASVAALR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q473; if (NS4 || IE4) activateEl('=
Q473', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D473&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>473</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>662.90&nbsp;&nbsp;&nbsp;&nbsp;1323.78&nbsp;&nbsp;&nbs=
p;&nbsp;1323.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
DDRGPPASVAALR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q517; if (NS4 || IE4) activateEl('=
Q517', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D517&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>517</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>451.57&nbsp;&nbsp;&nbsp;&nbsp;1351.69&nbsp;&nbsp;&nbs=
p;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;DSFMV=
ELVEGAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q518; if (NS4 || IE4) activateEl('=
Q518', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D518&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>518</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>451.58&nbsp;&nbsp;&nbsp;&nbsp;1351.71&nbsp;&nbsp;&nbs=
p;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;DSFMVELVEGAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q519; if (NS4 || IE4) activateEl('=
Q519', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D519&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>519</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>676.87&nbsp;&nbsp;&nbsp;&nbsp;1351.72&nbsp;&nbsp;&nbs=
p;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(10)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;DSFMV=
ELVEGAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q520; if (NS4 || IE4) activateEl('=
Q520', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D520&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>520</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>676.87&nbsp;&nbsp;&nbsp;&nbsp;1351.72&nbsp;&nbsp;&nbs=
p;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
DSFMVELVEGAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q627; if (NS4 || IE4) activateEl('=
Q627', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D627&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>627</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>479.92&nbsp;&nbsp;&nbsp;&nbsp;1436.74&nbsp;&nbsp;&nbs=
p;&nbsp;1436.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;ISSLGSQAMQMER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q628; if (NS4 || IE4) activateEl('=
Q628', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D628&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>628</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>719.40&nbsp;&nbsp;&nbsp;&nbsp;1436.78&nbsp;&nbsp;&nbs=
p;&nbsp;1436.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(26)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;ISSLG=
SQAMQMER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q629; if (NS4 || IE4) activateEl('=
Q629', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D629&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>629</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>719.40&nbsp;&nbsp;&nbsp;&nbsp;1436.78&nbsp;&nbsp;&nbs=
p;&nbsp;1436.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(28)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;ISSLG=
SQAMQMER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q666; if (NS4 || IE4) activateEl('=
Q666', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D666&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>666</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>488.65&nbsp;&nbsp;&nbsp;&nbsp;1462.91&nbsp;&nbsp;&nbs=
p;&nbsp;1462.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(13)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LQTVH=
SIPLTINK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q667; if (NS4 || IE4) activateEl('=
Q667', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D667&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>667</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>732.48&nbsp;&nbsp;&nbsp;&nbsp;1462.94&nbsp;&nbsp;&nbs=
p;&nbsp;1462.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;LQTVHSIPLTINK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q674; if (NS4 || IE4) activateEl('=
Q674', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D674&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>674</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>740.91&nbsp;&nbsp;&nbsp;&nbsp;1479.79&nbsp;&nbsp;&nbs=
p;&nbsp;1479.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SYTFL=
ISSDYER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q675; if (NS4 || IE4) activateEl('=
Q675', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D675&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>675</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>740.91&nbsp;&nbsp;&nbsp;&nbsp;1479.80&nbsp;&nbsp;&nbs=
p;&nbsp;1479.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;33&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;SYTFLISSDYER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q676; if (NS4 || IE4) activateEl('=
Q676', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D676&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>676</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>494.28&nbsp;&nbsp;&nbsp;&nbsp;1479.80&nbsp;&nbsp;&nbs=
p;&nbsp;1479.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;DSFMVELVEGARK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q677; if (NS4 || IE4) activateEl('=
Q677', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D677&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>677</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>740.91&nbsp;&nbsp;&nbsp;&nbsp;1479.81&nbsp;&nbsp;&nbs=
p;&nbsp;1479.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(30)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SYTFL=
ISSDYER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q678; if (NS4 || IE4) activateEl('=
Q678', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D678&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>678</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>494.28&nbsp;&nbsp;&nbsp;&nbsp;1479.82&nbsp;&nbsp;&nbs=
p;&nbsp;1479.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
DSFMVELVEGARK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q751; if (NS4 || IE4) activateEl('=
Q751', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D751&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>751</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>516.65&nbsp;&nbsp;&nbsp;&nbsp;1546.91&nbsp;&nbsp;&nbs=
p;&nbsp;1546.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;NSLETLLYKPVDR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q938; if (NS4 || IE4) activateEl('=
Q938', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D938&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>938</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>558.96&nbsp;&nbsp;&nbsp;&nbsp;1673.86&nbsp;&nbsp;&nbs=
p;&nbsp;1673.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
AFVDNYGVAMEMAEK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h3_q939; if (NS4 || IE4) activateEl('=
Q939', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D939&amp;hit=3D1&amp;index=3DIPI%3aIPI0001205=
3&amp;px=3D1"=20=0D
      target=3D_blank>939</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>837.94&nbsp;&nbsp;&nbsp;&nbsp;1673.86&nbsp;&nbsp;&nbs=
p;&nbsp;1673.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;AFVDNYGVAMEMAEK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h3_q1122; if (NS4 || IE4) activateEl(=
'Q1122', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1122&amp;hit=3D2&amp;index=3DIPI%3aIPI000120=
53&amp;px=3D1"=20=0D
      target=3D_blank>1122</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;924.53&nbsp;&nb=
sp;&nbsp;&nbsp;1847.05&nbsp;&nbsp;&nbsp;&nbsp;1846.94&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp=
;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;ISQNFLSSINEEITPR</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h3_q1124; if (NS4 || IE4) activateEl(=
'Q1124', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1124&amp;hit=3D1&amp;index=3DIPI%3aIPI000120=
53&amp;px=3D1"=20=0D
      target=3D_blank>1124</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>924.54&nbsp;&nbsp;&nbsp;&nbsp;1847.07&nbsp;&nbsp;&nbs=
p;&nbsp;1846.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(5)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
ISQNFLSSINEEITPR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h3_q1125; if (NS4 || IE4) activateEl(=
'Q1125', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1125&amp;hit=3D1&amp;index=3DIPI%3aIPI000120=
53&amp;px=3D1"=20=0D
      target=3D_blank>1125</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>616.70&nbsp;&nbsp;&nbsp;&nbsp;1847.08&nbsp;&nbsp;&nbs=
p;&nbsp;1846.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;ISQNFLSSINEEITPR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h3_q1127; if (NS4 || IE4) activateEl(=
'Q1127', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1127&amp;hit=3D2&amp;index=3DIPI%3aIPI000120=
53&amp;px=3D1"=20=0D
      target=3D_blank>1127</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>616.71&nbsp;=
&nbsp;&nbsp;&nbsp;1847.11&nbsp;&nbsp;&nbsp;&nbsp;1847.05&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;HVFLFTDLLLCTKLK</B></TT>=
</TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h3_q1199; if (NS4 || IE4) activateEl(=
'Q1199', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1199&amp;hit=3D1&amp;index=3DIPI%3aIPI000120=
53&amp;px=3D1"=20=0D
      target=3D_blank>1199</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>635.71&nbsp;&nbsp;&nbsp;&nbsp;1904.10&nbsp;&nbsp;&nbs=
p;&nbsp;1903.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;HTPASHPDHPLLQDALR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h3_q1200; if (NS4 || IE4) activateEl(=
'Q1200', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1200&amp;hit=3D1&amp;index=3DIPI%3aIPI000120=
53&amp;px=3D1"=20=0D
      target=3D_blank>1200</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>635.71&nbsp;&nbsp;&nbsp;&nbsp;1904.10&nbsp;&nbsp;&nbs=
p;&nbsp;1903.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
HTPASHPDHPLLQDALR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h3_q1386; if (NS4 || IE4) activateEl(=
'Q1386', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1386&amp;hit=3D1&amp;index=3DIPI%3aIPI000120=
53&amp;px=3D1"=20=0D
      target=3D_blank>1386</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>684.73&nbsp;&nbsp;&nbsp;&nbsp;2051.16&nbsp;&nbsp;&nbs=
p;&nbsp;2051.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(6)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
LSEQESLLLLMSPSMAFR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h3_q1387; if (NS4 || IE4) activateEl(=
'Q1387', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1387&amp;hit=3D1&amp;index=3DIPI%3aIPI000120=
53&amp;px=3D1"=20=0D
      target=3D_blank>1387</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>684.74&nbsp;&nbsp;&nbsp;&nbsp;2051.19&nbsp;&nbsp;&nbs=
p;&nbsp;2051.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;LSEQESLLLLMSPSMAFR</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit4><B>4.</B></A> <A href=3D"http://pilmascot/mascot/cgi/protein=
_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00029727&am=
p;px=3D1">IPI:IPI00029727</A>  <B>Mass:</B> 101370   <B>Total score:</B> 31=
4  <B>Peptides matched:</B> 31=20=0D
   REFSEQ_XP:XP_037058|ENSEMBL:ENSP00000263109=20=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D4 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q8; if (NS4 || IE4) activateEl('Q8=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D8&amp;hit=3D1&amp;index=3DIPI%3aIPI00029727&=
amp;px=3D1"=20=0D
      target=3D_blank>8</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>403.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;805.47&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;805.43&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;VGDLFQK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q113; if (NS4 || IE4) activateEl('=
Q113', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D113&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>113</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>503.81&nbsp;&nbsp;&nbsp;&nbsp;1005.60&nbsp;&nbsp;&nbs=
p;&nbsp;1005.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LASQL=
GVYR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q114; if (NS4 || IE4) activateEl('=
Q114', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D114&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>114</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>503.81&nbsp;&nbsp;&nbsp;&nbsp;1005.60&nbsp;&nbsp;&nbs=
p;&nbsp;1005.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;LASQLGVYR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q215; if (NS4 || IE4) activateEl('=
Q215', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D215&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>215</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>569.88&nbsp;&nbsp;&nbsp;&nbsp;1137.74&nbsp;&nbsp;&nbs=
p;&nbsp;1137.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
STLVLHDLLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q216; if (NS4 || IE4) activateEl('=
Q216', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D216&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>216</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>569.88&nbsp;&nbsp;&nbsp;&nbsp;1137.75&nbsp;&nbsp;&nbs=
p;&nbsp;1137.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;STLVLHDLLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q217; if (NS4 || IE4) activateEl('=
Q217', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D217&amp;hit=3D2&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>217</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;569.88&nbsp;&nbs=
p;&nbsp;&nbsp;1137.75&nbsp;&nbsp;&nbsp;&nbsp;1137.68&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&nbsp;=
&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;STLVLHDLLK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q224; if (NS4 || IE4) activateEl('=
Q224', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D224&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>224</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>572.32&nbsp;&nbsp;&nbsp;&nbsp;1142.63&nbsp;&nbsp;&nbs=
p;&nbsp;1142.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;EFYDGLFPR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q279; if (NS4 || IE4) activateEl('=
Q279', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D279&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>279</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>595.85&nbsp;&nbsp;&nbsp;&nbsp;1189.69&nbsp;&nbsp;&nbs=
p;&nbsp;1189.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(22)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;DALVS=
GALESTK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q280; if (NS4 || IE4) activateEl('=
Q280', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D280&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>280</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>595.85&nbsp;&nbsp;&nbsp;&nbsp;1189.69&nbsp;&nbsp;&nbs=
p;&nbsp;1189.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;33&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;DALVSGALESTK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q517; if (NS4 || IE4) activateEl('=
Q517', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D517&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>517</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>451.57&nbsp;&nbsp;&nbsp;&nbsp;1351.69&nbsp;&nbsp;&nbs=
p;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;DSFMV=
ELVEGAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q518; if (NS4 || IE4) activateEl('=
Q518', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D518&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>518</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>451.58&nbsp;&nbsp;&nbsp;&nbsp;1351.71&nbsp;&nbsp;&nbs=
p;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;DSFMVELVEGAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q519; if (NS4 || IE4) activateEl('=
Q519', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D519&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>519</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>676.87&nbsp;&nbsp;&nbsp;&nbsp;1351.72&nbsp;&nbsp;&nbs=
p;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(10)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;DSFMV=
ELVEGAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q520; if (NS4 || IE4) activateEl('=
Q520', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D520&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>520</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>676.87&nbsp;&nbsp;&nbsp;&nbsp;1351.72&nbsp;&nbsp;&nbs=
p;&nbsp;1351.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
DSFMVELVEGAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q666; if (NS4 || IE4) activateEl('=
Q666', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D666&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>666</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>488.65&nbsp;&nbsp;&nbsp;&nbsp;1462.91&nbsp;&nbsp;&nbs=
p;&nbsp;1462.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(13)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LQTVH=
SIPLTINK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q667; if (NS4 || IE4) activateEl('=
Q667', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D667&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>667</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>732.48&nbsp;&nbsp;&nbsp;&nbsp;1462.94&nbsp;&nbsp;&nbs=
p;&nbsp;1462.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;LQTVHSIPLTINK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q674; if (NS4 || IE4) activateEl('=
Q674', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D674&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>674</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>740.91&nbsp;&nbsp;&nbsp;&nbsp;1479.79&nbsp;&nbsp;&nbs=
p;&nbsp;1479.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SYTFL=
ISSDYER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q675; if (NS4 || IE4) activateEl('=
Q675', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D675&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>675</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>740.91&nbsp;&nbsp;&nbsp;&nbsp;1479.80&nbsp;&nbsp;&nbs=
p;&nbsp;1479.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;33&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;SYTFLISSDYER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q676; if (NS4 || IE4) activateEl('=
Q676', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D676&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>676</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>494.28&nbsp;&nbsp;&nbsp;&nbsp;1479.80&nbsp;&nbsp;&nbs=
p;&nbsp;1479.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;DSFMVELVEGARK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q677; if (NS4 || IE4) activateEl('=
Q677', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D677&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>677</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>740.91&nbsp;&nbsp;&nbsp;&nbsp;1479.81&nbsp;&nbsp;&nbs=
p;&nbsp;1479.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(30)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SYTFL=
ISSDYER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q678; if (NS4 || IE4) activateEl('=
Q678', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D678&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>678</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>494.28&nbsp;&nbsp;&nbsp;&nbsp;1479.82&nbsp;&nbsp;&nbs=
p;&nbsp;1479.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
DSFMVELVEGARK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q751; if (NS4 || IE4) activateEl('=
Q751', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D751&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>751</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>516.65&nbsp;&nbsp;&nbsp;&nbsp;1546.91&nbsp;&nbsp;&nbs=
p;&nbsp;1546.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;NSLETLLYKPVDR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q938; if (NS4 || IE4) activateEl('=
Q938', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D938&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>938</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>558.96&nbsp;&nbsp;&nbsp;&nbsp;1673.86&nbsp;&nbsp;&nbs=
p;&nbsp;1673.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
AFVDNYGVAMEMAEK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h4_q939; if (NS4 || IE4) activateEl('=
Q939', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D939&amp;hit=3D1&amp;index=3DIPI%3aIPI0002972=
7&amp;px=3D1"=20=0D
      target=3D_blank>939</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>837.94&nbsp;&nbsp;&nbsp;&nbsp;1673.86&nbsp;&nbsp;&nbs=
p;&nbsp;1673.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;AFVDNYGVAMEMAEK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h4_q1122; if (NS4 || IE4) activateEl(=
'Q1122', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1122&amp;hit=3D2&amp;index=3DIPI%3aIPI000297=
27&amp;px=3D1"=20=0D
      target=3D_blank>1122</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;924.53&nbsp;&nb=
sp;&nbsp;&nbsp;1847.05&nbsp;&nbsp;&nbsp;&nbsp;1846.94&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp=
;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;ISQNFLSSINEEITPR</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h4_q1124; if (NS4 || IE4) activateEl(=
'Q1124', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1124&amp;hit=3D1&amp;index=3DIPI%3aIPI000297=
27&amp;px=3D1"=20=0D
      target=3D_blank>1124</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>924.54&nbsp;&nbsp;&nbsp;&nbsp;1847.07&nbsp;&nbsp;&nbs=
p;&nbsp;1846.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(5)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
ISQNFLSSINEEITPR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h4_q1125; if (NS4 || IE4) activateEl(=
'Q1125', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1125&amp;hit=3D1&amp;index=3DIPI%3aIPI000297=
27&amp;px=3D1"=20=0D
      target=3D_blank>1125</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>616.70&nbsp;&nbsp;&nbsp;&nbsp;1847.08&nbsp;&nbsp;&nbs=
p;&nbsp;1846.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;ISQNFLSSINEEITPR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h4_q1127; if (NS4 || IE4) activateEl(=
'Q1127', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1127&amp;hit=3D2&amp;index=3DIPI%3aIPI000297=
27&amp;px=3D1"=20=0D
      target=3D_blank>1127</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;616.71&nbsp;&nb=
sp;&nbsp;&nbsp;1847.11&nbsp;&nbsp;&nbsp;&nbsp;1847.05&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;HVFLFTDLLLCTKLK</TT></TD></=
TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h4_q1199; if (NS4 || IE4) activateEl(=
'Q1199', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1199&amp;hit=3D1&amp;index=3DIPI%3aIPI000297=
27&amp;px=3D1"=20=0D
      target=3D_blank>1199</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>635.71&nbsp;&nbsp;&nbsp;&nbsp;1904.10&nbsp;&nbsp;&nbs=
p;&nbsp;1903.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;HTPASHPDHPLLQDALR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h4_q1200; if (NS4 || IE4) activateEl(=
'Q1200', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1200&amp;hit=3D1&amp;index=3DIPI%3aIPI000297=
27&amp;px=3D1"=20=0D
      target=3D_blank>1200</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>635.71&nbsp;&nbsp;&nbsp;&nbsp;1904.10&nbsp;&nbsp;&nbs=
p;&nbsp;1903.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
HTPASHPDHPLLQDALR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h4_q1386; if (NS4 || IE4) activateEl(=
'Q1386', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1386&amp;hit=3D1&amp;index=3DIPI%3aIPI000297=
27&amp;px=3D1"=20=0D
      target=3D_blank>1386</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>684.73&nbsp;&nbsp;&nbsp;&nbsp;2051.16&nbsp;&nbsp;&nbs=
p;&nbsp;2051.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(6)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
LSEQESLLLLMSPSMAFR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h4_q1387; if (NS4 || IE4) activateEl(=
'Q1387', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1387&amp;hit=3D1&amp;index=3DIPI%3aIPI000297=
27&amp;px=3D1"=20=0D
      target=3D_blank>1387</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>684.74&nbsp;&nbsp;&nbsp;&nbsp;2051.19&nbsp;&nbsp;&nbs=
p;&nbsp;2051.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;LSEQESLLLLMSPSMAFR</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit5><B>5.</B></A> <A href=3D"http://pilmascot/mascot/cgi/protein=
_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00018231&am=
p;px=3D1">IPI:IPI00018231</A>  <B>Mass:</B> 123667   <B>Total score:</B> 31=
3  <B>Peptides matched:</B> 24=20=0D
   SWISS-PROT:P00519|REFSEQ_NP:NP_005148|TREMBL:Q13915|REFSEQ_XP:XP_053262;=
XP_053263;XP_057293;XP_0333=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D5 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"863.506242 from(432.760946,2+) title(Elution%20from%3a%204%2=
e99%20to%204%2e99%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(27)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q27; if (NS4 || IE4) activateEl('Q=
27', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D27&amp;hit=3D1&amp;index=3DIPI%3aIPI00018231=
&amp;px=3D1"=20=0D
      target=3D_blank>27</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>432.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;863.51&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;863.45&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;VADFGLSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q37; if (NS4 || IE4) activateEl('Q=
37', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D37&amp;hit=3D2&amp;index=3DIPI%3aIPI00018231=
&amp;px=3D1"=20=0D
      target=3D_blank>37</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>440.78&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;879.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;879.51&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;16&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;YSLTVAVK</B></TT></TD=
></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1005.622892 from(503.819271,2+) title(Elution%20from%3a%2039=
%2e55%20to%2039%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(115)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q115; if (NS4 || IE4) activateEl('=
Q115', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D115&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>115</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>503.82&nbsp;&nbsp;&nbsp;&nbsp;1005.62&nbsp;&nbsp;&=
nbsp;&nbsp;1005.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TN=
LFSALIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1005.624532 from(503.820091,2+) title(Elution%20from%3a%2060=
%2e11%20to%2060%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(116)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q116; if (NS4 || IE4) activateEl('=
Q116', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D116&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>116</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>503.82&nbsp;&nbsp;&nbsp;&nbsp;1005.62&nbsp;&nbsp;&=
nbsp;&nbsp;1005.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;TNLFSALIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1005.642394 from(503.829022,2+) title(Elution%20from%3a%2063=
%2e15%20to%2063%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(118)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q118; if (NS4 || IE4) activateEl('=
Q118', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D118&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>118</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>503.83&nbsp;&nbsp;&nbsp;&nbsp;1005.64&nbsp;&nbsp;&=
nbsp;&nbsp;1005.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TNLFSALIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1133.741180 from(567.878415,2+) title(Elution%20from%3a%2060=
%2e43%20to%2060%2e43%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(210)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q210; if (NS4 || IE4) activateEl('=
Q210', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D210&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>210</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>567.88&nbsp;&nbsp;&nbsp;&nbsp;1133.74&nbsp;&nbsp;&=
nbsp;&nbsp;1133.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KTNLFSALIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1278.682701 from(427.235392,3+) title(Elution%20from%3a%204%=
2e01%20to%204%2e01%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(408)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q408; if (NS4 || IE4) activateEl('=
Q408', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D408&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>408</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>427.24&nbsp;&nbsp;&nbsp;&nbsp;1278.68&nbsp;&nbsp;&=
nbsp;&nbsp;1278.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;31&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KNEEAADEVFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1278.694490 from(640.355070,2+) title(Elution%20from%3a%206%=
2e49%20to%206%2e49%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(410)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q410; if (NS4 || IE4) activateEl('=
Q410', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D410&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>410</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>640.36&nbsp;&nbsp;&nbsp;&nbsp;1278.69&nbsp;&nbsp;&=
nbsp;&nbsp;1278.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;KN=
EEAADEVFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1278.719160 from(640.367405,2+) title(Elution%20from%3a%2010=
%2e63%20to%2010%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(411)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q411; if (NS4 || IE4) activateEl('=
Q411', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D411&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>411</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>640.37&nbsp;&nbsp;&nbsp;&nbsp;1278.72&nbsp;&nbsp;&=
nbsp;&nbsp;1278.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;47&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;WTAPESLAYNK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1303.695128 from(652.855389,2+) title(Elution%20from%3a%2015=
%2e6%20to%2015%2e6%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(433)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q433; if (NS4 || IE4) activateEl('=
Q433', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D433&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>433</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>652.86&nbsp;&nbsp;&nbsp;&nbsp;1303.70&nbsp;&nbsp;&=
nbsp;&nbsp;1303.72&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;QV=
TVAPASGLPHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1303.780245 from(435.601240,3+) title(Elution%20from%3a%206%=
2e43%20to%206%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(434)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q434; if (NS4 || IE4) activateEl('=
Q434', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D434&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>434</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>435.60&nbsp;&nbsp;&nbsp;&nbsp;1303.78&nbsp;&nbsp;&=
nbsp;&nbsp;1303.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;QVTVAPASGLPHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q557; if (NS4 || IE4) activateEl('=
Q557', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D557&amp;hit=3D2&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>557</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>685.37&nbsp;&=
nbsp;&nbsp;&nbsp;1368.73&nbsp;&nbsp;&nbsp;&nbsp;1368.61&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(4)&nbsp;&nb=
sp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;EDTMEVEEFLK</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1368.737230 from(685.376440,2+) title(Elution%20from%3a%2019=
%2e53%20to%2019%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(558)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q558; if (NS4 || IE4) activateEl('=
Q558', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D558&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>558</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>685.38&nbsp;&nbsp;&nbsp;&nbsp;1368.74&nbsp;&nbsp;&=
nbsp;&nbsp;1368.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EDTMEVEEFLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q705; if (NS4 || IE4) activateEl('=
Q705', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D705&amp;hit=3D2&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>705</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>502.95&nbsp;&=
nbsp;&nbsp;&nbsp;1505.84&nbsp;&nbsp;&nbsp;&nbsp;1505.83&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;HPNLVQLLGVCTR</B></TT></T=
D></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1523.953946 from(762.984798,2+) title(Elution%20from%3a%2022=
%2e63%20to%2022%2e63%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(727)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q727; if (NS4 || IE4) activateEl('=
Q727', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D727&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>727</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>762.98&nbsp;&nbsp;&nbsp;&nbsp;1523.95&nbsp;&nbsp;&=
nbsp;&nbsp;1523.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(19)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;GA=
VSTLLQAPELPTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1523.976789 from(509.000088,3+) title(Elution%20from%3a%2022=
%2e6%20to%2022%2e6%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(728)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q728; if (NS4 || IE4) activateEl('=
Q728', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D728&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>728</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>509.00&nbsp;&nbsp;&nbsp;&nbsp;1523.98&nbsp;&nbsp;&=
nbsp;&nbsp;1523.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;36&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GAVSTLLQAPELPTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1523.977546 from(762.996598,2+) title(Elution%20from%3a%2022=
%2e5%20to%2022%2e5%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(729)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q729; if (NS4 || IE4) activateEl('=
Q729', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D729&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>729</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>763.00&nbsp;&nbsp;&nbsp;&nbsp;1523.98&nbsp;&nbsp;&=
nbsp;&nbsp;1523.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(19)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;GA=
VSTLLQAPELPTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1580.923920 from(791.469785,2+) title(Elution%20from%3a%205%=
2e89%20to%205%2e89%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(785)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q785; if (NS4 || IE4) activateEl('=
Q785', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D785&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>785</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>791.47&nbsp;&nbsp;&nbsp;&nbsp;1580.92&nbsp;&nbsp;&=
nbsp;&nbsp;1580.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;NKPTVYGVSPNYDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1640.885982 from(547.969819,3+) title(Elution%20from%3a%2021=
%2e54%20to%2021%2e54%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(862)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q862; if (NS4 || IE4) activateEl('=
Q862', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D862&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>862</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>547.97&nbsp;&nbsp;&nbsp;&nbsp;1640.89&nbsp;&nbsp;&=
nbsp;&nbsp;1640.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(17)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LG=
GGQYGEVYEGVWK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1640.903492 from(821.459571,2+) title(Elution%20from%3a%2016=
%2e09%20to%2016%2e09%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(864)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q864; if (NS4 || IE4) activateEl('=
Q864', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D864&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>864</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>821.46&nbsp;&nbsp;&nbsp;&nbsp;1640.90&nbsp;&nbsp;&=
nbsp;&nbsp;1640.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LGGGQYGEVYEGVWK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1657.900872 from(829.958261,2+) title(Elution%20from%3a%201%=
2e77%20to%201%2e77%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(909)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h5_q909; if (NS4 || IE4) activateEl('=
Q909', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D909&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
1&amp;px=3D1"=20=0D
      target=3D_blank>909</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>829.96&nbsp;&nbsp;&nbsp;&nbsp;1657.90&nbsp;&nbsp;&=
nbsp;&nbsp;1657.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NSEQMASHSAVLEAGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1768.985244 from(590.669573,3+) title(Elution%20from%3a%2016=
%2e48%20to%2016%2e48%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1014)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h5_q1014; if (NS4 || IE4) activateEl(=
'Q1014', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1014&amp;hit=3D1&amp;index=3DIPI%3aIPI000182=
31&amp;px=3D1"=20=0D
      target=3D_blank>1014</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>590.67&nbsp;&nbsp;&nbsp;&nbsp;1768.99&nbsp;&nbsp;&=
nbsp;&nbsp;1768.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LGGGQYGEVYEGVWKK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1916.066415 from(639.696630,3+) title(Elution%20from%3a%2022=
%2e47%20to%2022%2e47%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1221)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h5_q1221; if (NS4 || IE4) activateEl(=
'Q1221', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1221&amp;hit=3D1&amp;index=3DIPI%3aIPI000182=
31&amp;px=3D1"=20=0D
      target=3D_blank>1221</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>639.70&nbsp;&nbsp;&nbsp;&nbsp;1916.07&nbsp;&nbsp;&=
nbsp;&nbsp;1915.95&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DISNGALAFTPLDTADPAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2113.189839 from(705.404438,3+) title(Elution%20from%3a%2021=
%2e93%20to%2021%2e93%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1443)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h5_q1443; if (NS4 || IE4) activateEl(=
'Q1443', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1443&amp;hit=3D1&amp;index=3DIPI%3aIPI000182=
31&amp;px=3D1"=20=0D
      target=3D_blank>1443</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>705.40&nbsp;&nbsp;&nbsp;&nbsp;2113.19&nbsp;&nbsp;&=
nbsp;&nbsp;2113.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GQGESDPLDHEPAVSPLLPR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE>=
<HR>=0D
<A name=3DHit6><B>6.</B></A> <A href=3D"http://pilmascot/mascot/cgi/protein=
_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00021439&am=
p;px=3D1">IPI:IPI00021439</A>  <B>Mass:</B> 42052   <B>Total score:</B> 247=
  <B>Peptides matched:</B> 24=20=0D
   SWISS-PROT:P02570|REFSEQ_NP:NP_001092|TREMBL:Q9UE89;Q9BTD2|REFSEQ_XP:XP_=
037241;XP_037235|ENSEMBL:EN=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D6 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"799.565620 from(400.790635,2+) title(Elution%20from%3a%2014%=
2e75%20to%2014%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(7)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q7; if (NS4 || IE4) activateEl('Q7=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D7&amp;hit=3D1&amp;index=3DIPI%3aIPI00021439&=
amp;px=3D1"=20=0D
      target=3D_blank>7</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>400.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;799.57&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;799.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;RGILTLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"997.514020 from(499.764835,2+) title(Elution%20from%3a%2015%=
2e27%20to%2015%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(107)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q107; if (NS4 || IE4) activateEl('=
Q107', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D107&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>107</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>499.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;997.51&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;997.48&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;DLTDYLMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1131.576524 from(566.796087,2+) title(Elution%20from%3a%206%=
2e02%20to%206%2e02%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(207)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q207; if (NS4 || IE4) activateEl('=
Q207', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D207&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>207</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>566.80&nbsp;&nbsp;&nbsp;&nbsp;1131.58&nbsp;&nbsp;&=
nbsp;&nbsp;1131.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GYSFTTTAER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1160.681778 from(581.348714,2+) title(Elution%20from%3a%209%=
2e47%20to%209%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(244)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q244; if (NS4 || IE4) activateEl('=
Q244', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D244&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>244</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>581.35&nbsp;&nbsp;&nbsp;&nbsp;1160.68&nbsp;&nbsp;&=
nbsp;&nbsp;1160.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EITALAPSTMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1170.617288 from(586.316469,2+) title(Elution%20from%3a%209%=
2e86%20to%209%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(251)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q251; if (NS4 || IE4) activateEl('=
Q251', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D251&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>251</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>586.32&nbsp;&nbsp;&nbsp;&nbsp;1170.62&nbsp;&nbsp;&=
nbsp;&nbsp;1170.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;HQ=
GVMVGMGQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1170.635952 from(586.325801,2+) title(Elution%20from%3a%206%=
2e82%20to%206%2e82%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(252)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q252; if (NS4 || IE4) activateEl('=
Q252', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D252&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>252</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>586.33&nbsp;&nbsp;&nbsp;&nbsp;1170.64&nbsp;&nbsp;&=
nbsp;&nbsp;1170.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;HQGVMVGMGQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1170.636928 from(586.326289,2+) title(Elution%20from%3a%203%=
2e83%20to%203%2e83%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(253)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q253; if (NS4 || IE4) activateEl('=
Q253', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D253&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>253</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>586.33&nbsp;&nbsp;&nbsp;&nbsp;1170.64&nbsp;&nbsp;&=
nbsp;&nbsp;1170.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HQGVMVGMGQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1197.762825 from(400.262100,3+) title(Elution%20from%3a%2017=
%2e39%20to%2017%2e39%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(309)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q309; if (NS4 || IE4) activateEl('=
Q309', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D309&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>309</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>400.26&nbsp;&nbsp;&nbsp;&nbsp;1197.76&nbsp;&nbsp;&=
nbsp;&nbsp;1197.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;AVFPSIVGRPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1197.766400 from(599.891025,2+) title(Elution%20from%3a%2017=
%2e34%20to%2017%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(310)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q310; if (NS4 || IE4) activateEl('=
Q310', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D310&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>310</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>599.89&nbsp;&nbsp;&nbsp;&nbsp;1197.77&nbsp;&nbsp;&=
nbsp;&nbsp;1197.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(22)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;AV=
FPSIVGRPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1197.778792 from(599.897221,2+) title(Elution%20from%3a%2024=
%2e12%20to%2024%2e12%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(311)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q311; if (NS4 || IE4) activateEl('=
Q311', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D311&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>311</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>599.90&nbsp;&nbsp;&nbsp;&nbsp;1197.78&nbsp;&nbsp;&=
nbsp;&nbsp;1197.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(7)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;AVFPSIVGRPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1514.768247 from(505.930574,3+) title(Elution%20from%3a%2021=
%2e34%20to%2021%2e34%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(712)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q712; if (NS4 || IE4) activateEl('=
Q712', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D712&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>712</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>505.93&nbsp;&nbsp;&nbsp;&nbsp;1514.77&nbsp;&nbsp;&=
nbsp;&nbsp;1514.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(33)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IW=
HHTFYNELR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1514.798019 from(505.940498,3+) title(Elution%20from%3a%2040=
%2e78%20to%2040%2e78%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(713)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q713; if (NS4 || IE4) activateEl('=
Q713', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D713&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>713</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>505.94&nbsp;&nbsp;&nbsp;&nbsp;1514.80&nbsp;&nbsp;&=
nbsp;&nbsp;1514.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IW=
HHTFYNELR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1514.831595 from(505.951690,3+) title(Elution%20from%3a%2043=
%2e81%20to%2043%2e81%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(715)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q715; if (NS4 || IE4) activateEl('=
Q715', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D715&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>715</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>505.95&nbsp;&nbsp;&nbsp;&nbsp;1514.83&nbsp;&nbsp;&=
nbsp;&nbsp;1514.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;37&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IWHHTFYNELR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1514.857048 from(758.436349,2+) title(Elution%20from%3a%2021=
%2e49%20to%2021%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(716)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q716; if (NS4 || IE4) activateEl('=
Q716', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D716&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>716</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>758.44&nbsp;&nbsp;&nbsp;&nbsp;1514.86&nbsp;&nbsp;&=
nbsp;&nbsp;1514.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(6)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;IWHHTFYNELR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1515.781614 from(506.268363,3+) title(Elution%20from%3a%200%=
2e13%20to%200%2e13%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(718)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q718; if (NS4 || IE4) activateEl('=
Q718', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D718&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>718</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>506.27&nbsp;&nbsp;&nbsp;&nbsp;1515.78&nbsp;&nbsp;&=
nbsp;&nbsp;1515.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;QE=
YDESGPSIVHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1515.802562 from(758.909106,2+) title(Elution%20from%3a%200%=
2e51%20to%200%2e51%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(719)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q719; if (NS4 || IE4) activateEl('=
Q719', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D719&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>719</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>758.91&nbsp;&nbsp;&nbsp;&nbsp;1515.80&nbsp;&nbsp;&=
nbsp;&nbsp;1515.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;QEYDESGPSIVHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q855; if (NS4 || IE4) activateEl('=
Q855', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D855&amp;hit=3D2&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>855</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>543.98&nbsp;&=
nbsp;&nbsp;&nbsp;1628.92&nbsp;&nbsp;&nbsp;&nbsp;1628.82&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;GYSFTTTAEREIVR</B></TT></=
TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1643.896128 from(548.973201,3+) title(Elution%20from%3a%209%=
2e53%20to%209%2e53%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(873)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h6_q873; if (NS4 || IE4) activateEl('=
Q873', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D873&amp;hit=3D1&amp;index=3DIPI%3aIPI0002143=
9&amp;px=3D1"=20=0D
      target=3D_blank>873</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>548.97&nbsp;&nbsp;&nbsp;&nbsp;1643.90&nbsp;&nbsp;&=
nbsp;&nbsp;1643.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;QEYDESGPSIVHRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1790.004128 from(896.009889,2+) title(Elution%20from%3a%2019=
%2e27%20to%2019%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1062)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h6_q1062; if (NS4 || IE4) activateEl(=
'Q1062', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1062&amp;hit=3D1&amp;index=3DIPI%3aIPI000214=
39&amp;px=3D1"=20=0D
      target=3D_blank>1062</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>896.01&nbsp;&nbsp;&nbsp;&nbsp;1790.00&nbsp;&nbsp;&=
nbsp;&nbsp;1789.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SYELPDGQVITIGNER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1790.011242 from(597.678239,3+) title(Elution%20from%3a%2019=
%2e35%20to%2019%2e35%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1063)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h6_q1063; if (NS4 || IE4) activateEl(=
'Q1063', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1063&amp;hit=3D1&amp;index=3DIPI%3aIPI000214=
39&amp;px=3D1"=20=0D
      target=3D_blank>1063</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.68&nbsp;&nbsp;&nbsp;&nbsp;1790.01&nbsp;&nbsp;&=
nbsp;&nbsp;1789.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(34)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SY=
ELPDGQVITIGNER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1790.014092 from(896.014871,2+) title(Elution%20from%3a%2027=
%2e79%20to%2027%2e79%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1064)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h6_q1064; if (NS4 || IE4) activateEl(=
'Q1064', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1064&amp;hit=3D1&amp;index=3DIPI%3aIPI000214=
39&amp;px=3D1"=20=0D
      target=3D_blank>1064</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>896.01&nbsp;&nbsp;&nbsp;&nbsp;1790.01&nbsp;&nbsp;&=
nbsp;&nbsp;1789.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(55)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SY=
ELPDGQVITIGNER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h6_q1253; if (NS4 || IE4) activateEl(=
'Q1253', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1253&amp;hit=3D4&amp;index=3DIPI%3aIPI000214=
39&amp;px=3D1"=20=0D
      target=3D_blank>1253</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>652.06&nbsp;=
&nbsp;&nbsp;&nbsp;1953.16&nbsp;&nbsp;&nbsp;&nbsp;1953.06&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&n=
bsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;VAPEEHPVLLTEAPLNPK</B></TT></TD></=
TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1953.174240 from(977.594945,2+) title(Elution%20from%3a%2019=
%2e65%20to%2019%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1254)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h6_q1254; if (NS4 || IE4) activateEl(=
'Q1254', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1254&amp;hit=3D1&amp;index=3DIPI%3aIPI000214=
39&amp;px=3D1"=20=0D
      target=3D_blank>1254</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>977.59&nbsp;&nbsp;&nbsp;&nbsp;1953.17&nbsp;&nbsp;&=
nbsp;&nbsp;1953.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VAPEEHPVLLTEAPLNPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1953.194523 from(652.072666,3+) title(Elution%20from%3a%2019=
%2e4%20to%2019%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1255)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h6_q1255; if (NS4 || IE4) activateEl(=
'Q1255', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1255&amp;hit=3D1&amp;index=3DIPI%3aIPI000214=
39&amp;px=3D1"=20=0D
      target=3D_blank>1255</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>652.07&nbsp;&nbsp;&nbsp;&nbsp;1953.19&nbsp;&nbsp;&=
nbsp;&nbsp;1953.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;VAPEEHPVLLTEAPLNPK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Prot=
eins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00021440&amp;px=3D1">IPI:IPI00021440</A>=
  <B>Mass:</B> 42108   <B>Total score:</B> 247  <B>Peptides matched:</B> 24=
=20=0D
   SWISS-PROT:P02571|REFSEQ_NP:NP_001605 Actin, cytoplasmic 2=0D
=0D
<HR>=0D
<A name=3DHit7><B>7.</B></A> <A href=3D"http://pilmascot/mascot/cgi/protein=
_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00003865&am=
p;px=3D1">IPI:IPI00003865</A>  <B>Mass:</B> 71082   <B>Total score:</B> 242=
  <B>Peptides matched:</B> 13=20=0D
   SWISS-PROT:P11142|REFSEQ_NP:NP_006588|TREMBL:Q9NZ87|REFSEQ_XP:XP_050983;=
XP_050984;XP_050981|ENSEMBL=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D7 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"992.554388 from(497.285019,2+) title(Elution%20from%3a%204%2=
e76%20to%204%2e76%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(102)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q102; if (NS4 || IE4) activateEl('=
Q102', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D102&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>102</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>497.29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;992.55&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;992.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;EIAEAYLGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1198.742574 from(600.379112,2+) title(Elution%20from%3a%2023=
%2e66%20to%2023%2e79%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(312)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q312; if (NS4 || IE4) activateEl('=
Q312', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D312&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>312</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>600.38&nbsp;&nbsp;&nbsp;&nbsp;1198.74&nbsp;&nbsp;&=
nbsp;&nbsp;1198.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;36&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DAGTIAGLNVLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1234.702030 from(618.358840,2+) title(Elution%20from%3a%2030=
%2e65%20to%2030%2e65%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(373)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q373; if (NS4 || IE4) activateEl('=
Q373', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D373&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>373</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>618.36&nbsp;&nbsp;&nbsp;&nbsp;1234.70&nbsp;&nbsp;&=
nbsp;&nbsp;1234.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MVNHFIAEFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1302.693748 from(652.354699,2+) title(Elution%20from%3a%2015=
%2e45%20to%2015%2e45%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(432)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q432; if (NS4 || IE4) activateEl('=
Q432', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D432&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>432</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>652.35&nbsp;&nbsp;&nbsp;&nbsp;1302.69&nbsp;&nbsp;&=
nbsp;&nbsp;1302.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;NSLESYAFNMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1409.762674 from(705.889162,2+) title(Elution%20from%3a%2010=
%2e58%20to%2010%2e58%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(604)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q604; if (NS4 || IE4) activateEl('=
Q604', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D604&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>604</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>705.89&nbsp;&nbsp;&nbsp;&nbsp;1409.76&nbsp;&nbsp;&=
nbsp;&nbsp;1409.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;RFDDAVVQSDMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1486.810564 from(744.413107,2+) title(Elution%20from%3a%2010=
%2e61%20to%2010%2e61%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(689)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q689; if (NS4 || IE4) activateEl('=
Q689', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D689&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>689</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>744.41&nbsp;&nbsp;&nbsp;&nbsp;1486.81&nbsp;&nbsp;&=
nbsp;&nbsp;1486.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;43&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TTPSYVAFTDTER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1648.895824 from(825.455737,2+) title(Elution%20from%3a%2012=
%2e64%20to%2012%2e64%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(880)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q880; if (NS4 || IE4) activateEl('=
Q880', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D880&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>880</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>825.46&nbsp;&nbsp;&nbsp;&nbsp;1648.90&nbsp;&nbsp;&=
nbsp;&nbsp;1648.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;36&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;NQVAMNPTNTVFDAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1652.902104 from(551.975193,3+) title(Elution%20from%3a%2032=
%2e15%20to%2032%2e15%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(893)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q893; if (NS4 || IE4) activateEl('=
Q893', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D893&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>893</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>551.98&nbsp;&nbsp;&nbsp;&nbsp;1652.90&nbsp;&nbsp;&=
nbsp;&nbsp;1652.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HWPFMVVNDAGRPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1658.994156 from(554.005877,3+) title(Elution%20from%3a%2029=
%2e06%20to%2029%2e06%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(913)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q913; if (NS4 || IE4) activateEl('=
Q913', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D913&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>913</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>554.01&nbsp;&nbsp;&nbsp;&nbsp;1658.99&nbsp;&nbsp;&=
nbsp;&nbsp;1658.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(4)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;IINEPTAAAIAYGLDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1659.006988 from(830.511319,2+) title(Elution%20from%3a%2020=
%2e87%20to%2020%2e87%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(914)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q914; if (NS4 || IE4) activateEl('=
Q914', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D914&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>914</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>830.51&nbsp;&nbsp;&nbsp;&nbsp;1659.01&nbsp;&nbsp;&=
nbsp;&nbsp;1658.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IINEPTAAAIAYGLDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1659.010680 from(554.011385,3+) title(Elution%20from%3a%2020=
%2e43%20to%2020%2e43%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(915)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h7_q915; if (NS4 || IE4) activateEl('=
Q915', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D915&amp;hit=3D1&amp;index=3DIPI%3aIPI0000386=
5&amp;px=3D1"=20=0D
      target=3D_blank>915</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>554.01&nbsp;&nbsp;&nbsp;&nbsp;1659.01&nbsp;&nbsp;&=
nbsp;&nbsp;1658.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;II=
NEPTAAAIAYGLDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1981.121160 from(661.381545,3+) title(Elution%20from%3a%2024=
%2e02%20to%2024%2e02%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1295)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h7_q1295; if (NS4 || IE4) activateEl(=
'Q1295', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1295&amp;hit=3D1&amp;index=3DIPI%3aIPI000038=
65&amp;px=3D1"=20=0D
      target=3D_blank>1295</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>661.38&nbsp;&nbsp;&nbsp;&nbsp;1981.12&nbsp;&nbsp;&=
nbsp;&nbsp;1980.99&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(7)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;TVTNAVVTVPAYFNDSQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1981.134075 from(661.385850,3+) title(Elution%20from%3a%2018=
%2e03%20to%2018%2e03%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1296)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h7_q1296; if (NS4 || IE4) activateEl(=
'Q1296', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1296&amp;hit=3D1&amp;index=3DIPI%3aIPI000038=
65&amp;px=3D1"=20=0D
      target=3D_blank>1296</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>661.39&nbsp;&nbsp;&nbsp;&nbsp;1981.13&nbsp;&nbsp;&=
nbsp;&nbsp;1980.99&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TVTNAVVTVPAYFNDSQR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><H=
R>=0D
<A name=3DHit8><B>8.</B></A> <A href=3D"http://pilmascot/mascot/cgi/protein=
_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00021428&am=
p;px=3D1">IPI:IPI00021428</A>  <B>Mass:</B> 42366   <B>Total score:</B> 193=
  <B>Peptides matched:</B> 17=20=0D
   SWISS-PROT:P02568|REFSEQ_NP:NP_001091|REFSEQ_XP:XP_001869|ENSEMBL:ENSP00=
000235219 Actin, alpha skel=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D8 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q7; if (NS4 || IE4) activateEl('Q7=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D7&amp;hit=3D1&amp;index=3DIPI%3aIPI00021428&=
amp;px=3D1"=20=0D
      target=3D_blank>7</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>400.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;799.57&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;799.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbs=
p;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;RGILTLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q107; if (NS4 || IE4) activateEl('=
Q107', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D107&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>107</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>499.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;997.51&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;997.48&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;DLTDYLMK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q244; if (NS4 || IE4) activateEl('=
Q244', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D244&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>244</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>581.35&nbsp;&nbsp;&nbsp;&nbsp;1160.68&nbsp;&nbsp;&nbs=
p;&nbsp;1160.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;EITALAPSTMK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q251; if (NS4 || IE4) activateEl('=
Q251', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D251&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>251</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>586.32&nbsp;&nbsp;&nbsp;&nbsp;1170.62&nbsp;&nbsp;&nbs=
p;&nbsp;1170.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;HQGVM=
VGMGQK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q252; if (NS4 || IE4) activateEl('=
Q252', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D252&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>252</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>586.33&nbsp;&nbsp;&nbsp;&nbsp;1170.64&nbsp;&nbsp;&nbs=
p;&nbsp;1170.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
HQGVMVGMGQK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q253; if (NS4 || IE4) activateEl('=
Q253', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D253&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>253</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>586.33&nbsp;&nbsp;&nbsp;&nbsp;1170.64&nbsp;&nbsp;&nbs=
p;&nbsp;1170.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;HQGVMVGMGQK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q309; if (NS4 || IE4) activateEl('=
Q309', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D309&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>309</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>400.26&nbsp;&nbsp;&nbsp;&nbsp;1197.76&nbsp;&nbsp;&nbs=
p;&nbsp;1197.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;AVFPSIVGRPR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q310; if (NS4 || IE4) activateEl('=
Q310', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D310&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>310</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>599.89&nbsp;&nbsp;&nbsp;&nbsp;1197.77&nbsp;&nbsp;&nbs=
p;&nbsp;1197.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(22)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;AVFPS=
IVGRPR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q311; if (NS4 || IE4) activateEl('=
Q311', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D311&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>311</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>599.90&nbsp;&nbsp;&nbsp;&nbsp;1197.78&nbsp;&nbsp;&nbs=
p;&nbsp;1197.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(7)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
AVFPSIVGRPR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q712; if (NS4 || IE4) activateEl('=
Q712', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D712&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>712</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>505.93&nbsp;&nbsp;&nbsp;&nbsp;1514.77&nbsp;&nbsp;&nbs=
p;&nbsp;1514.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(33)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IWHHT=
FYNELR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q713; if (NS4 || IE4) activateEl('=
Q713', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D713&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>713</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>505.94&nbsp;&nbsp;&nbsp;&nbsp;1514.80&nbsp;&nbsp;&nbs=
p;&nbsp;1514.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IWHHT=
FYNELR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q715; if (NS4 || IE4) activateEl('=
Q715', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D715&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>715</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>505.95&nbsp;&nbsp;&nbsp;&nbsp;1514.83&nbsp;&nbsp;&nbs=
p;&nbsp;1514.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;37&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;IWHHTFYNELR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h8_q716; if (NS4 || IE4) activateEl('=
Q716', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D716&amp;hit=3D1&amp;index=3DIPI%3aIPI0002142=
8&amp;px=3D1"=20=0D
      target=3D_blank>716</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>758.44&nbsp;&nbsp;&nbsp;&nbsp;1514.86&nbsp;&nbsp;&nbs=
p;&nbsp;1514.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(6)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
IWHHTFYNELR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h8_q1062; if (NS4 || IE4) activateEl(=
'Q1062', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1062&amp;hit=3D1&amp;index=3DIPI%3aIPI000214=
28&amp;px=3D1"=20=0D
      target=3D_blank>1062</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>896.01&nbsp;&nbsp;&nbsp;&nbsp;1790.00&nbsp;&nbsp;&nbs=
p;&nbsp;1789.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;SYELPDGQVITIGNER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h8_q1063; if (NS4 || IE4) activateEl(=
'Q1063', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1063&amp;hit=3D1&amp;index=3DIPI%3aIPI000214=
28&amp;px=3D1"=20=0D
      target=3D_blank>1063</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>597.68&nbsp;&nbsp;&nbsp;&nbsp;1790.01&nbsp;&nbsp;&nbs=
p;&nbsp;1789.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(34)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SYELP=
DGQVITIGNER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h8_q1064; if (NS4 || IE4) activateEl(=
'Q1064', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1064&amp;hit=3D1&amp;index=3DIPI%3aIPI000214=
28&amp;px=3D1"=20=0D
      target=3D_blank>1064</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>896.01&nbsp;&nbsp;&nbsp;&nbsp;1790.01&nbsp;&nbsp;&nbs=
p;&nbsp;1789.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(55)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SYELP=
DGQVITIGNER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1960.050375 from(654.357950,3+) title(Elution%20from%3a%2035=
%2e35%20to%2035%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1264)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h8_q1264; if (NS4 || IE4) activateEl(=
'Q1264', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1264&amp;hit=3D1&amp;index=3DIPI%3aIPI000214=
28&amp;px=3D1"=20=0D
      target=3D_blank>1264</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>654.36&nbsp;&nbsp;&nbsp;&nbsp;1960.05&nbsp;&nbsp;&=
nbsp;&nbsp;1959.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YPIEHGIITNWDDMEK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE=
><B>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00023006&amp;px=3D1">IPI:IPI00023006</A>=
  <B>Mass:</B> 42334   <B>Total score:</B> 193  <B>Peptides matched:</B> 17=
=20=0D
   SWISS-PROT:P04270|REFSEQ_NP:NP_005150|TREMBL:P82374|REFSEQ_XP:XP_012405;=
XP_053614|ENSEMBL:ENSP00000=0D
=0D
<HR>=0D
<A name=3DHit9><B>9.</B></A> <A href=3D"http://pilmascot/mascot/cgi/protein=
_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00033494&am=
p;px=3D1">IPI:IPI00033494</A>  <B>Mass:</B> 19824   <B>Total score:</B> 171=
  <B>Peptides matched:</B> 6 =20=0D
   TREMBL:Q13182|REFSEQ_XP:XP_041677|ENSEMBL:ENSP00000237500 MYOSIN REGULAT=
ORY LIGHT CHAIN=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D9 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1034.567608 from(518.291629,2+) title(Elution%20from%3a%208%=
2e24%20to%208%2e24%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(142)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h9_q142; if (NS4 || IE4) activateEl('=
Q142', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D142&amp;hit=3D1&amp;index=3DIPI%3aIPI0003349=
4&amp;px=3D1"=20=0D
      target=3D_blank>142</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>518.29&nbsp;&nbsp;&nbsp;&nbsp;1034.57&nbsp;&nbsp;&=
nbsp;&nbsp;1034.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ELLTTMGDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1227.690140 from(614.852895,2+) title(Elution%20from%3a%206%=
2e51%20to%206%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(356)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h9_q356; if (NS4 || IE4) activateEl('=
Q356', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D356&amp;hit=3D1&amp;index=3DIPI%3aIPI0003349=
4&amp;px=3D1"=20=0D
      target=3D_blank>356</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>614.85&nbsp;&nbsp;&nbsp;&nbsp;1227.69&nbsp;&nbsp;&=
nbsp;&nbsp;1227.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;38&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LNGTDPEDVIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1236.666246 from(619.340948,2+) title(Elution%20from%3a%208%=
2e16%20to%208%2e29%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%202%20%20) query(375)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h9_q375; if (NS4 || IE4) activateEl('=
Q375', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D375&amp;hit=3D1&amp;index=3DIPI%3aIPI0003349=
4&amp;px=3D1"=20=0D
      target=3D_blank>375</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>619.34&nbsp;&nbsp;&nbsp;&nbsp;1236.67&nbsp;&nbsp;&=
nbsp;&nbsp;1236.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EAFNMIDQNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1387.735575 from(463.586350,3+) title(Elution%20from%3a%2017=
%2e26%20to%2017%2e26%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(580)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h9_q580; if (NS4 || IE4) activateEl('=
Q580', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D580&amp;hit=3D1&amp;index=3DIPI%3aIPI0003349=
4&amp;px=3D1"=20=0D
      target=3D_blank>580</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>463.59&nbsp;&nbsp;&nbsp;&nbsp;1387.74&nbsp;&nbsp;&=
nbsp;&nbsp;1387.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;(10)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;KG=
NFNYIEFTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1387.810728 from(694.913189,2+) title(Elution%20from%3a%2017=
%2e28%20to%2017%2e28%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(581)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h9_q581; if (NS4 || IE4) activateEl('=
Q581', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D581&amp;hit=3D1&amp;index=3DIPI%3aIPI0003349=
4&amp;px=3D1"=20=0D
      target=3D_blank>581</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>694.91&nbsp;&nbsp;&nbsp;&nbsp;1387.81&nbsp;&nbsp;&=
nbsp;&nbsp;1387.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KGNFNYIEFTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1414.732606 from(708.374128,2+) title(Elution%20from%3a%2012=
%2e69%20to%2012%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(610)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h9_q610; if (NS4 || IE4) activateEl('=
Q610', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D610&amp;hit=3D1&amp;index=3DIPI%3aIPI0003349=
4&amp;px=3D1"=20=0D
      target=3D_blank>610</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>708.37&nbsp;&nbsp;&nbsp;&nbsp;1414.73&nbsp;&nbsp;&=
nbsp;&nbsp;1414.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;34&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FTDEEVDELYR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Protei=
ns matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00016489&amp;px=3D1">IPI:IPI00016489</A>=
  <B>Mass:</B> 19707   <B>Total score:</B> 171  <B>Peptides matched:</B> 6 =
=20=0D
   SWISS-PROT:P19105|REFSEQ_NP:NP_006462|REFSEQ_XP:XP_041678|ENSEMBL:ENSP00=
000217652 Myosin regulatory=0D
=0D
<HR>=0D
<A name=3DHit10><B>10.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00011042&=
amp;px=3D1">IPI:IPI00011042</A>  <B>Mass:</B> 50095   <B>Total score:</B> 1=
59  <B>Peptides matched:</B> 8 =20=0D
    TREMBL:Q9BVP8|REFSEQ_XP:XP_041732;XP_057720;XP_057719|ENSEMBL:ENSP00000=
259925=20=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D10 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1038.619376 from(520.317513,2+) title(Elution%20from%3a%2040=
%2e12%20to%2040%2e12%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(145)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h10_q145; if (NS4 || IE4) activateEl(=
'Q145', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D145&amp;hit=3D1&amp;index=3DIPI%3aIPI0001104=
2&amp;px=3D1"=20=0D
      target=3D_blank>145</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>520.32&nbsp;&nbsp;&nbsp;&nbsp;1038.62&nbsp;&nbsp;&=
nbsp;&nbsp;1038.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;27&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;YLTVAAVFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1038.636932 from(520.326291,2+) title(Elution%20from%3a%2043=
%2e14%20to%2043%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(146)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h10_q146; if (NS4 || IE4) activateEl(=
'Q146', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D146&amp;hit=3D1&amp;index=3DIPI%3aIPI0001104=
2&amp;px=3D1"=20=0D
      target=3D_blank>146</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>520.33&nbsp;&nbsp;&nbsp;&nbsp;1038.64&nbsp;&nbsp;&=
nbsp;&nbsp;1038.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(13)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;YL=
TVAAVFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1142.662488 from(572.339069,2+) title(Elution%20from%3a%2022=
%2e78%20to%2022%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(225)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h10_q225; if (NS4 || IE4) activateEl(=
'Q225', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D225&amp;hit=3D1&amp;index=3DIPI%3aIPI0001104=
2&amp;px=3D1"=20=0D
      target=3D_blank>225</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>572.34&nbsp;&nbsp;&nbsp;&nbsp;1142.66&nbsp;&nbsp;&=
nbsp;&nbsp;1142.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LAVNMVPFPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1318.777590 from(660.396620,2+) title(Elution%20from%3a%2015=
%2e35%20to%2015%2e35%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(468)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h10_q468; if (NS4 || IE4) activateEl(=
'Q468', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D468&amp;hit=3D1&amp;index=3DIPI%3aIPI0001104=
2&amp;px=3D1"=20=0D
      target=3D_blank>468</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>660.40&nbsp;&nbsp;&nbsp;&nbsp;1318.78&nbsp;&nbsp;&=
nbsp;&nbsp;1318.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IMNTFSVVPSPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1619.970699 from(540.998058,3+) title(Elution%20from%3a%2079=
%2e19%20to%2079%2e19%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(846)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h10_q846; if (NS4 || IE4) activateEl(=
'Q846', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D846&amp;hit=3D1&amp;index=3DIPI%3aIPI0001104=
2&amp;px=3D1"=20=0D
      target=3D_blank>846</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>541.00&nbsp;&nbsp;&nbsp;&nbsp;1619.97&nbsp;&nbsp;&=
nbsp;&nbsp;1619.83&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;37&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LHFFMPGFAPLTSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1869.087966 from(624.037147,3+) title(Elution%20from%3a%2011=
4%2e69%20to%20114%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1155)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h10_q1155; if (NS4 || IE4) activateEl=
('Q1155', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1155&amp;hit=3D1&amp;index=3DIPI%3aIPI000110=
42&amp;px=3D1"=20=0D
      target=3D_blank>1155</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.04&nbsp;&nbsp;&nbsp;&nbsp;1869.09&nbsp;&nbsp;&=
nbsp;&nbsp;1868.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(5)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;MAVTFIGNSTAIQELFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1869.103383 from(624.042286,3+) title(Elution%20from%3a%2011=
7%2e74%20to%20117%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1158)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h10_q1158; if (NS4 || IE4) activateEl=
('Q1158', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1158&amp;hit=3D1&amp;index=3DIPI%3aIPI000110=
42&amp;px=3D1"=20=0D
      target=3D_blank>1158</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.04&nbsp;&nbsp;&nbsp;&nbsp;1869.10&nbsp;&nbsp;&=
nbsp;&nbsp;1868.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MAVTFIGNSTAIQELFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1958.089647 from(653.704374,3+) title(Elution%20from%3a%2012=
6%2e67%20to%20126%2e67%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1262)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h10_q1262; if (NS4 || IE4) activateEl=
('Q1262', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1262&amp;hit=3D1&amp;index=3DIPI%3aIPI000110=
42&amp;px=3D1"=20=0D
      target=3D_blank>1262</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>653.70&nbsp;&nbsp;&nbsp;&nbsp;1958.09&nbsp;&nbsp;&=
nbsp;&nbsp;1957.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GHYTEGAELVDSVLDVVR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B=
>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00011654&amp;px=3D1">IPI:IPI00011654</A>=
  <B>Mass:</B> 50240   <B>Total score:</B> 159  <B>Peptides matched:</B> 8 =
=20=0D
    SWISS-PROT:P07437 Tubulin beta-1 chain=0D
=0D
<HR>=0D
<A name=3DHit11><B>11.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00023528&=
amp;px=3D1">IPI:IPI00023528</A>  <B>Mass:</B> 29243   <B>Total score:</B> 1=
33  <B>Peptides matched:</B> 7 =20=0D
    SWISS-PROT:P12324 Tropomyosin, cytoskeletal type=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D11 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1130.657546 from(566.336598,2+) title(Elution%20from%3a%2014=
%2e83%20to%2014%2e83%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(206)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h11_q206; if (NS4 || IE4) activateEl(=
'Q206', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D206&amp;hit=3D3&amp;index=3DIPI%3aIPI0002352=
8&amp;px=3D1"=20=0D
      target=3D_blank>206</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>566.34&nbsp;&nbsp;&nbsp;&nbsp;1130.66&nbsp;&nbsp;&=
nbsp;&nbsp;1130.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MELQEIQLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1155.715112 from(578.865381,2+) title(Elution%20from%3a%2022=
%2e01%20to%2022%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(238)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h11_q238; if (NS4 || IE4) activateEl(=
'Q238', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D238&amp;hit=3D1&amp;index=3DIPI%3aIPI0002352=
8&amp;px=3D1"=20=0D
      target=3D_blank>238</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>578.87&nbsp;&nbsp;&nbsp;&nbsp;1155.72&nbsp;&nbsp;&=
nbsp;&nbsp;1155.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LVIIEGDLER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1155.715182 from(578.865416,2+) title(Elution%20from%3a%2018=
%2e88%20to%2018%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(239)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h11_q239; if (NS4 || IE4) activateEl(=
'Q239', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D239&amp;hit=3D1&amp;index=3DIPI%3aIPI0002352=
8&amp;px=3D1"=20=0D
      target=3D_blank>239</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>578.87&nbsp;&nbsp;&nbsp;&nbsp;1155.72&nbsp;&nbsp;&=
nbsp;&nbsp;1155.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(23)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LV=
IIEGDLER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1242.720162 from(622.367906,2+) title(Elution%20from%3a%2014=
%2e19%20to%2014%2e19%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(379)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h11_q379; if (NS4 || IE4) activateEl(=
'Q379', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D379&amp;hit=3D1&amp;index=3DIPI%3aIPI0002352=
8&amp;px=3D1"=20=0D
      target=3D_blank>379</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>622.37&nbsp;&nbsp;&nbsp;&nbsp;1242.72&nbsp;&nbsp;&=
nbsp;&nbsp;1242.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;40&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IQLVEEELDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1641.901572 from(548.308349,3+) title(Elution%20from%3a%200%=
2e21%20to%200%2e21%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(866)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h11_q866; if (NS4 || IE4) activateEl(=
'Q866', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D866&amp;hit=3D1&amp;index=3DIPI%3aIPI0002352=
8&amp;px=3D1"=20=0D
      target=3D_blank>866</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>548.31&nbsp;&nbsp;&nbsp;&nbsp;1641.90&nbsp;&nbsp;&=
nbsp;&nbsp;1641.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(29)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IQ=
VLQQQADDAEER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1641.909206 from(821.962428,2+) title(Elution%20from%3a%200%=
2e15%20to%200%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(868)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h11_q868; if (NS4 || IE4) activateEl(=
'Q868', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D868&amp;hit=3D1&amp;index=3DIPI%3aIPI0002352=
8&amp;px=3D1"=20=0D
      target=3D_blank>868</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>821.96&nbsp;&nbsp;&nbsp;&nbsp;1641.91&nbsp;&nbsp;&=
nbsp;&nbsp;1641.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;39&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IQVLQQQADDAEER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h11_q930; if (NS4 || IE4) activateEl(=
'Q930', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D930&amp;hit=3D5&amp;index=3DIPI%3aIPI0002352=
8&amp;px=3D1"=20=0D
      target=3D_blank>930</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>558.01&nbsp;&=
nbsp;&nbsp;&nbsp;1671.00&nbsp;&nbsp;&nbsp;&nbsp;1670.88&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;LVIIEGDLERTEER</B></TT></=
TD></TR></TBODY></TABLE><PRE><B>Proteins matching the same set of peptides:=
</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00015680&amp;px=3D1">IPI:IPI00015680</A>=
  <B>Mass:</B> 29109   <B>Total score:</B> 133  <B>Peptides matched:</B> 7 =
=20=0D
    TREMBL:Q9NQH8|REFSEQ_XP:XP_036825;XP_036826 Tropomyosin isoform=0D
=0D
<HR>=0D
<A name=3DHit12><B>12.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00028646&=
amp;px=3D1">IPI:IPI00028646</A>  <B>Mass:</B> 16959   <B>Total score:</B> 1=
16  <B>Peptides matched:</B> 6 =20=0D
    SWISS-PROT:P16475|REFSEQ_NP:NP_066299|REFSEQ_XP:XP_049092;XP_049091|ENS=
EMBL:ENSP00000257959 Myosin=20=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D12 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"994.620056 from(498.317853,2+) title(Elution%20from%3a%2013%=
2e47%20to%2013%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(103)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h12_q103; if (NS4 || IE4) activateEl(=
'Q103', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D103&amp;hit=3D1&amp;index=3DIPI%3aIPI0002864=
6&amp;px=3D1"=20=0D
      target=3D_blank>103</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>498.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;994.62&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;994.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;(39)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HVLVTLGEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"994.622200 from(498.318925,2+) title(Elution%20from%3a%2016%=
2e56%20to%2016%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(104)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h12_q104; if (NS4 || IE4) activateEl(=
'Q104', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D104&amp;hit=3D1&amp;index=3DIPI%3aIPI0002864=
6&amp;px=3D1"=20=0D
      target=3D_blank>104</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>498.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;994.62&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;994.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;HVLVTLGEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1232.664126 from(617.339888,2+) title(Elution%20from%3a%200%=
2e08%20to%200%2e08%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(368)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h12_q368; if (NS4 || IE4) activateEl(=
'Q368', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D368&amp;hit=3D2&amp;index=3DIPI%3aIPI0002864=
6&amp;px=3D1"=20=0D
      target=3D_blank>368</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>617.34&nbsp;&nbsp;&nbsp;&nbsp;1232.66&nbsp;&nbsp;&=
nbsp;&nbsp;1232.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EGNGTVMGAEIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h12_q533; if (NS4 || IE4) activateEl(=
'Q533', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D533&amp;hit=3D3&amp;index=3DIPI%3aIPI0002864=
6&amp;px=3D1"=20=0D
      target=3D_blank>533</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>452.28&nbsp;&=
nbsp;&nbsp;&nbsp;1353.81&nbsp;&nbsp;&nbsp;&nbsp;1353.73&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;ALGQNPTNAEVLK</B></TT></T=
D></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1543.795802 from(772.905726,2+) title(Elution%20from%3a%2012=
%2e49%20to%2012%2e49%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(748)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h12_q748; if (NS4 || IE4) activateEl(=
'Q748', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D748&amp;hit=3D1&amp;index=3DIPI%3aIPI0002864=
6&amp;px=3D1"=20=0D
      target=3D_blank>748</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>772.91&nbsp;&nbsp;&nbsp;&nbsp;1543.80&nbsp;&nbsp;&=
nbsp;&nbsp;1543.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;40&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DQGTYEDYVEGLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1887.116085 from(630.046520,3+) title(Elution%20from%3a%2014=
1%2e43%20to%20141%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1186)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h12_q1186; if (NS4 || IE4) activateEl=
('Q1186', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1186&amp;hit=3D1&amp;index=3DIPI%3aIPI000286=
46&amp;px=3D1"=20=0D
      target=3D_blank>1186</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>630.05&nbsp;&nbsp;&nbsp;&nbsp;1887.12&nbsp;&nbsp;&=
nbsp;&nbsp;1887.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VLDFEHFLPMLQTVAK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE=
><B>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00029208&amp;px=3D1">IPI:IPI00029208</A>=
  <B>Mass:</B> 16990   <B>Total score:</B> 116  <B>Peptides matched:</B> 6 =
=20=0D
    SWISS-PROT:P24572|ENSEMBL:ENSP00000257960 Myosin light chain alkali, sm=
ooth-muscle isoform=0D
=0D
<HR>=0D
<A name=3DHit13><B>13.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00000230&=
amp;px=3D1">IPI:IPI00000230</A>  <B>Mass:</B> 34980   <B>Total score:</B> 1=
14  <B>Peptides matched:</B> 5 =20=0D
    TREMBL:Q9Y427|REFSEQ_XP:XP_029494 HYPOTHETICAL 34.9 kDa PROTEIN (FRAGME=
NT)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D13 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h13_q206; if (NS4 || IE4) activateEl(=
'Q206', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D206&amp;hit=3D1&amp;index=3DIPI%3aIPI0000023=
0&amp;px=3D1"=20=0D
      target=3D_blank>206</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>566.34&nbsp;&nbsp;&nbsp;&nbsp;1130.66&nbsp;&nbsp;&nbs=
p;&nbsp;1130.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;MEIQEIQLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1185.737286 from(593.876468,2+) title(Elution%20from%3a%2021=
%2e62%20to%2021%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(268)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h13_q268; if (NS4 || IE4) activateEl(=
'Q268', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D268&amp;hit=3D1&amp;index=3DIPI%3aIPI0000023=
0&amp;px=3D1"=20=0D
      target=3D_blank>268</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>593.88&nbsp;&nbsp;&nbsp;&nbsp;1185.74&nbsp;&nbsp;&=
nbsp;&nbsp;1185.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;34&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LVIIESDLER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1185.797302 from(593.906476,2+) title(Elution%20from%3a%2018=
%2e57%20to%2018%2e57%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(270)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h13_q270; if (NS4 || IE4) activateEl(=
'Q270', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D270&amp;hit=3D1&amp;index=3DIPI%3aIPI0000023=
0&amp;px=3D1"=20=0D
      target=3D_blank>270</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>593.91&nbsp;&nbsp;&nbsp;&nbsp;1185.80&nbsp;&nbsp;&=
nbsp;&nbsp;1185.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(20)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LV=
IIESDLER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h13_q379; if (NS4 || IE4) activateEl(=
'Q379', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D379&amp;hit=3D1&amp;index=3DIPI%3aIPI0000023=
0&amp;px=3D1"=20=0D
      target=3D_blank>379</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>622.37&nbsp;&nbsp;&nbsp;&nbsp;1242.72&nbsp;&nbsp;&nbs=
p;&nbsp;1242.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;40&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;IQLVEEELDR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1671.000666 from(558.008047,3+) title(Elution%20from%3a%2031=
%2e99%20to%2031%2e99%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(930)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h13_q930; if (NS4 || IE4) activateEl(=
'Q930', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D930&amp;hit=3D1&amp;index=3DIPI%3aIPI0000023=
0&amp;px=3D1"=20=0D
      target=3D_blank>930</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>558.01&nbsp;&nbsp;&nbsp;&nbsp;1671.00&nbsp;&nbsp;&nbs=
p;&nbsp;1670.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;LVIIESDLERAEER</FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Prote=
ins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00021011&amp;px=3D1">IPI:IPI00021011</A>=
  <B>Mass:</B> 26618   <B>Total score:</B> 114  <B>Peptides matched:</B> 5 =
=20=0D
    SWISS-PROT:P10469 Tropomyosin alpha chain, smooth muscle (Fragment)=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00018853&amp;px=3D1">IPI:IPI00018853</A>=
  <B>Mass:</B> 28517   <B>Total score:</B> 114  <B>Peptides matched:</B> 5 =
=20=0D
    TREMBL:Q15657 TROPOMYOSIN ISOFORM=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00014581&amp;px=3D1">IPI:IPI00014581</A>=
  <B>Mass:</B> 32746   <B>Total score:</B> 114  <B>Peptides matched:</B> 5 =
=20=0D
    SWISS-PROT:P09493|REFSEQ_NP:NP_000357|REFSEQ_XP:XP_029497;XP_029492 Tro=
pomyosin alpha chain, skelet=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00015851&amp;px=3D1">IPI:IPI00015851</A>=
  <B>Mass:</B> 32846   <B>Total score:</B> 114  <B>Peptides matched:</B> 5 =
=20=0D
    REFSEQ_XP:XP_029496 hypothetical protein XP_029496=20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00014584&amp;px=3D1">IPI:IPI00014584</A>=
  <B>Mass:</B> 32856   <B>Total score:</B> 114  <B>Peptides matched:</B> 5 =
=20=0D
    SWISS-PROT:P09494|REFSEQ_XP:XP_029495 Tropomyosin alpha chain, fibrobla=
st isoform TM3=0D
=0D
<HR>=0D
<A name=3DHit14><B>14.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00033619&=
amp;px=3D1">IPI:IPI00033619</A>  <B>Mass:</B> 85189   <B>Total score:</B> 1=
13  <B>Peptides matched:</B> 8 =20=0D
    TREMBL:Q9NTK6|REFSEQ_XP:XP_044840 Hypothetical 84.8 kDa protein=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D14 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1193.712118 from(597.863884,2+) title(Elution%20from%3a%2012=
%2e41%20to%2012%2e54%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(300)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h14_q300; if (NS4 || IE4) activateEl(=
'Q300', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D300&amp;hit=3D1&amp;index=3DIPI%3aIPI0003361=
9&amp;px=3D1"=20=0D
      target=3D_blank>300</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.86&nbsp;&nbsp;&nbsp;&nbsp;1193.71&nbsp;&nbsp;&=
nbsp;&nbsp;1193.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IDIIPNPQER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1274.729804 from(638.372727,2+) title(Elution%20from%3a%209%=
2e96%20to%209%2e96%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(402)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h14_q402; if (NS4 || IE4) activateEl(=
'Q402', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D402&amp;hit=3D1&amp;index=3DIPI%3aIPI0003361=
9&amp;px=3D1"=20=0D
      target=3D_blank>402</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>638.37&nbsp;&nbsp;&nbsp;&nbsp;1274.73&nbsp;&nbsp;&=
nbsp;&nbsp;1274.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;44&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ELISNASDALDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h14_q447; if (NS4 || IE4) activateEl(=
'Q447', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D447&amp;hit=3D2&amp;index=3DIPI%3aIPI0003361=
9&amp;px=3D1"=20=0D
      target=3D_blank>447</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>436.92&nbsp;&=
nbsp;&nbsp;&nbsp;1307.73&nbsp;&nbsp;&nbsp;&nbsp;1307.67&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nb=
sp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;IRYESLTDPSK</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1307.780378 from(654.898014,2+) title(Elution%20from%3a%208%=
2e78%20to%208%2e78%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(448)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h14_q448; if (NS4 || IE4) activateEl(=
'Q448', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D448&amp;hit=3D1&amp;index=3DIPI%3aIPI0003361=
9&amp;px=3D1"=20=0D
      target=3D_blank>448</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>654.90&nbsp;&nbsp;&nbsp;&nbsp;1307.78&nbsp;&nbsp;&=
nbsp;&nbsp;1307.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IRYESLTDPSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1348.806292 from(675.410971,2+) title(Elution%20from%3a%2023=
%2e53%20to%2023%2e53%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(511)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h14_q511; if (NS4 || IE4) activateEl(=
'Q511', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D511&amp;hit=3D2&amp;index=3DIPI%3aIPI0003361=
9&amp;px=3D1"=20=0D
      target=3D_blank>511</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>675.41&nbsp;&nbsp;&nbsp;&nbsp;1348.81&nbsp;&nbsp;&=
nbsp;&nbsp;1348.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TLTLVDTGIGMTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1348.831702 from(675.423676,2+) title(Elution%20from%3a%2018=
%2e83%20to%2018%2e83%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(512)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h14_q512; if (NS4 || IE4) activateEl(=
'Q512', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D512&amp;hit=3D2&amp;index=3DIPI%3aIPI0003361=
9&amp;px=3D1"=20=0D
      target=3D_blank>512</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>675.42&nbsp;&nbsp;&nbsp;&nbsp;1348.83&nbsp;&nbsp;&=
nbsp;&nbsp;1348.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(36)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TL=
TLVDTGIGMTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1415.762000 from(708.888825,2+) title(Elution%20from%3a%206%=
2e9%20to%206%2e9%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%3=
a%20%201%20%20) query(612)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h14_q612; if (NS4 || IE4) activateEl(=
'Q612', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D612&amp;hit=3D1&amp;index=3DIPI%3aIPI0003361=
9&amp;px=3D1"=20=0D
      target=3D_blank>612</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>708.89&nbsp;&nbsp;&nbsp;&nbsp;1415.76&nbsp;&nbsp;&=
nbsp;&nbsp;1415.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EGLELPEDEEEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h14_q710; if (NS4 || IE4) activateEl(=
'Q710', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D710&amp;hit=3D4&amp;index=3DIPI%3aIPI0003361=
9&amp;px=3D1"=20=0D
      target=3D_blank>710</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>505.31&nbsp;&=
nbsp;&nbsp;&nbsp;1512.92&nbsp;&nbsp;&nbsp;&nbsp;1512.78&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;GVVDSEDLPLNISR</B></TT></=
TD></TR></TBODY></TABLE><PRE><B>Proteins matching the same set of peptides:=
</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00027749&amp;px=3D1">IPI:IPI00027749</A>=
  <B>Mass:</B> 83453   <B>Total score:</B> 113  <B>Peptides matched:</B> 8 =
=20=0D
    SWISS-PROT:P08238|REFSEQ_NP:NP_031381|TREMBL:Q9H6X9|REFSEQ_XP:XP_044844=
;XP_044839|ENSEMBL:ENSP00000=0D
=0D
<HR>=0D
<A name=3DHit15><B>15.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00021327&=
amp;px=3D1">IPI:IPI00021327</A>  <B>Mass:</B> 25305   <B>Total score:</B> 1=
10  <B>Peptides matched:</B> 10=20=0D
    SWISS-PROT:P29354|REFSEQ_NP:NP_002077|REFSEQ_XP:XP_008198;XP_039834;XP_=
055363|ENSEMBL:ENSP000002555=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D15 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"917.538068 from(459.776859,2+) title(Elution%20from%3a%208%2=
e06%20to%208%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(53)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q53; if (NS4 || IE4) activateEl('=
Q53', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D53&amp;hit=3D3&amp;index=3DIPI%3aIPI00021327=
&amp;px=3D1"=20=0D
      target=3D_blank>53</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>459.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;917.54&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;917.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;NQQIFLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"953.569756 from(477.792703,2+) title(Elution%20from%3a%2052%=
2e97%20to%2052%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(81)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q81; if (NS4 || IE4) activateEl('=
Q81', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D81&amp;hit=3D2&amp;index=3DIPI%3aIPI00021327=
&amp;px=3D1"=20=0D
      target=3D_blank>81</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>477.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;953.57&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;953.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YFLWVVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"953.586672 from(477.801161,2+) title(Elution%20from%3a%2056%=
20to%2056%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20%20=
1%20%20) query(82)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q82; if (NS4 || IE4) activateEl('=
Q82', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D82&amp;hit=3D2&amp;index=3DIPI%3aIPI00021327=
&amp;px=3D1"=20=0D
      target=3D_blank>82</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>477.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;953.59&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;953.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;YFLWVVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1095.573180 from(548.794415,2+) title(Elution%20from%3a%204%=
2e19%20to%204%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(185)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q185; if (NS4 || IE4) activateEl(=
'Q185', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D185&amp;hit=3D1&amp;index=3DIPI%3aIPI0002132=
7&amp;px=3D1"=20=0D
      target=3D_blank>185</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>548.79&nbsp;&nbsp;&nbsp;&nbsp;1095.57&nbsp;&nbsp;&=
nbsp;&nbsp;1095.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;ATADDELSFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1095.575146 from(548.795398,2+) title(Elution%20from%3a%201%=
2e03%20to%201%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(186)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q186; if (NS4 || IE4) activateEl(=
'Q186', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D186&amp;hit=3D1&amp;index=3DIPI%3aIPI0002132=
7&amp;px=3D1"=20=0D
      target=3D_blank>186</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>548.80&nbsp;&nbsp;&nbsp;&nbsp;1095.58&nbsp;&nbsp;&=
nbsp;&nbsp;1095.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ATADDELSFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1211.728275 from(404.917250,3+) title(Elution%20from%3a%2015=
%2e5%20to%2015%2e63%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%202%20%20) query(332)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q332; if (NS4 || IE4) activateEl(=
'Q332', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D332&amp;hit=3D1&amp;index=3DIPI%3aIPI0002132=
7&amp;px=3D1"=20=0D
      target=3D_blank>332</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>404.92&nbsp;&nbsp;&nbsp;&nbsp;1211.73&nbsp;&nbsp;&=
nbsp;&nbsp;1211.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;QRHDGAFLIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1451.787168 from(726.901409,2+) title(Elution%20from%3a%2011=
%2e92%20to%2011%2e92%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(642)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q642; if (NS4 || IE4) activateEl(=
'Q642', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D642&amp;hit=3D1&amp;index=3DIPI%3aIPI0002132=
7&amp;px=3D1"=20=0D
      target=3D_blank>642</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>726.90&nbsp;&nbsp;&nbsp;&nbsp;1451.79&nbsp;&nbsp;&=
nbsp;&nbsp;1451.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;34&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ESESAPGDFSLSVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1505.838615 from(502.954030,3+) title(Elution%20from%3a%2019=
%2e47%20to%2019%2e47%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(705)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q705; if (NS4 || IE4) activateEl(=
'Q705', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D705&amp;hit=3D1&amp;index=3DIPI%3aIPI0002132=
7&amp;px=3D1"=20=0D
      target=3D_blank>705</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>502.95&nbsp;&nbsp;&nbsp;&nbsp;1505.84&nbsp;&nbsp;&nbs=
p;&nbsp;1505.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;FNSLNELVDYHR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q706; if (NS4 || IE4) activateEl(=
'Q706', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D706&amp;hit=3D2&amp;index=3DIPI%3aIPI0002132=
7&amp;px=3D1"=20=0D
      target=3D_blank>706</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>753.94&nbsp;&=
nbsp;&nbsp;&nbsp;1505.87&nbsp;&nbsp;&nbsp;&nbsp;1505.73&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;(16)&nbsp;&nbsp;&n=
bsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;FNSLNELVDYHR</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1505.866989 from(502.963488,3+) title(Elution%20from%3a%2028=
%2e47%20to%2028%2e47%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(707)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h15_q707; if (NS4 || IE4) activateEl(=
'Q707', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D707&amp;hit=3D1&amp;index=3DIPI%3aIPI0002132=
7&amp;px=3D1"=20=0D
      target=3D_blank>707</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>502.96&nbsp;&nbsp;&nbsp;&nbsp;1505.87&nbsp;&nbsp;&=
nbsp;&nbsp;1505.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(7)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;FNSLNELVDYHR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit16><B>16.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00019512&=
amp;px=3D1">IPI:IPI00019512</A>  <B>Mass:</B> 229825   <B>Total score:</B> =
110  <B>Peptides matched:</B> 9 =20=0D
    SWISS-PROT:P35580|REFSEQ_XP:XP_044702 Myosin heavy chain, nonmuscle typ=
e B=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D16 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h16_q41; if (NS4 || IE4) activateEl('=
Q41', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D41&amp;hit=3D1&amp;index=3DIPI%3aIPI00019512=
&amp;px=3D1"=20=0D
      target=3D_blank>41</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>446.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;891.46&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;891.42&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbs=
p;&nbsp;&nbsp;&nbsp;ADEWLMK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h16_q342; if (NS4 || IE4) activateEl(=
'Q342', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D342&amp;hit=3D1&amp;index=3DIPI%3aIPI0001951=
2&amp;px=3D1"=20=0D
      target=3D_blank>342</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>610.87&nbsp;&nbsp;&nbsp;&nbsp;1219.72&nbsp;&nbsp;&nbs=
p;&nbsp;1219.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;KFDQLLAEEK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h16_q349; if (NS4 || IE4) activateEl(=
'Q349', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D349&amp;hit=3D1&amp;index=3DIPI%3aIPI0001951=
2&amp;px=3D1"=20=0D
      target=3D_blank>349</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>612.36&nbsp;&nbsp;&nbsp;&nbsp;1222.70&nbsp;&nbsp;&nbs=
p;&nbsp;1222.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(13)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;AGVLA=
HLEEER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h16_q350; if (NS4 || IE4) activateEl(=
'Q350', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D350&amp;hit=3D1&amp;index=3DIPI%3aIPI0001951=
2&amp;px=3D1"=20=0D
      target=3D_blank>350</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>612.36&nbsp;&nbsp;&nbsp;&nbsp;1222.71&nbsp;&nbsp;&nbs=
p;&nbsp;1222.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;26&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;AGVLAHLEEER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1451.866875 from(484.963450,3+) title(Elution%20from%3a%2021=
%2e88%20to%2021%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(643)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h16_q643; if (NS4 || IE4) activateEl(=
'Q643', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D643&amp;hit=3D1&amp;index=3DIPI%3aIPI0001951=
2&amp;px=3D1"=20=0D
      target=3D_blank>643</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>484.96&nbsp;&nbsp;&nbsp;&nbsp;1451.87&nbsp;&nbsp;&=
nbsp;&nbsp;1451.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(25)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;VI=
QYLAHVASSHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1451.898254 from(726.956952,2+) title(Elution%20from%3a%2021=
%2e96%20to%2021%2e96%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(645)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h16_q645; if (NS4 || IE4) activateEl(=
'Q645', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D645&amp;hit=3D1&amp;index=3DIPI%3aIPI0001951=
2&amp;px=3D1"=20=0D
      target=3D_blank>645</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>726.96&nbsp;&nbsp;&nbsp;&nbsp;1451.90&nbsp;&nbsp;&=
nbsp;&nbsp;1451.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;33&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VIQYLAHVASSHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1579.956342 from(790.985996,2+) title(Elution%20from%3a%2026=
%2e89%20to%2026%2e89%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(777)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h16_q777; if (NS4 || IE4) activateEl(=
'Q777', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D777&amp;hit=3D1&amp;index=3DIPI%3aIPI0001951=
2&amp;px=3D1"=20=0D
      target=3D_blank>777</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>790.99&nbsp;&nbsp;&nbsp;&nbsp;1579.96&nbsp;&nbsp;&=
nbsp;&nbsp;1579.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;KVIQYLAHVASSHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1579.968285 from(527.663920,3+) title(Elution%20from%3a%2042=
%2e99%20to%2042%2e99%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(780)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h16_q780; if (NS4 || IE4) activateEl(=
'Q780', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D780&amp;hit=3D1&amp;index=3DIPI%3aIPI0001951=
2&amp;px=3D1"=20=0D
      target=3D_blank>780</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>527.66&nbsp;&nbsp;&nbsp;&nbsp;1579.97&nbsp;&nbsp;&=
nbsp;&nbsp;1579.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KVIQYLAHVASSHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h16_q1271; if (NS4 || IE4) activateEl=
('Q1271', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1271&amp;hit=3D1&amp;index=3DIPI%3aIPI000195=
12&amp;px=3D1"=20=0D
      target=3D_blank>1271</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>654.69&nbsp;&nbsp;&nbsp;&nbsp;1961.06&nbsp;&nbsp;&nbs=
p;&nbsp;1960.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;TQLEELEDELQATEDAK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit17><B>17.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00027488&=
amp;px=3D1">IPI:IPI00027488</A>  <B>Mass:</B> 47350   <B>Total score:</B> 1=
02  <B>Peptides matched:</B> 6 =20=0D
    SWISS-PROT:P06733|REFSEQ_NP:NP_001419|TREMBL:Q9UCH6;Q9BT62|REFSEQ_XP:XP=
_045253;XP_045257;XP_045259;=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D17 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h17_q119; if (NS4 || IE4) activateEl(=
'Q119', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D119&amp;hit=3D4&amp;index=3DIPI%3aIPI0002748=
8&amp;px=3D1"=20=0D
      target=3D_blank>119</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>504.31&nbsp;&=
nbsp;&nbsp;&nbsp;1006.60&nbsp;&nbsp;&nbsp;&nbsp;1006.52&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;SCNCLLLK</B></TT></TD></T=
R>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1142.677750 from(572.346700,2+) title(Elution%20from%3a%209%=
2e45%20to%209%2e58%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%202%20%20) query(226)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h17_q226; if (NS4 || IE4) activateEl(=
'Q226', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D226&amp;hit=3D1&amp;index=3DIPI%3aIPI0002748=
8&amp;px=3D1"=20=0D
      target=3D_blank>226</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>572.35&nbsp;&nbsp;&nbsp;&nbsp;1142.68&nbsp;&nbsp;&=
nbsp;&nbsp;1142.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;33&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IGAEVYHNLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1405.805126 from(703.910388,2+) title(Elution%20from%3a%2014=
%2e68%20to%2014%2e68%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(600)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h17_q600; if (NS4 || IE4) activateEl(=
'Q600', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D600&amp;hit=3D2&amp;index=3DIPI%3aIPI0002748=
8&amp;px=3D1"=20=0D
      target=3D_blank>600</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>703.91&nbsp;&nbsp;&nbsp;&nbsp;1405.81&nbsp;&nbsp;&=
nbsp;&nbsp;1405.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GNPTVEVDLFTSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1804.073016 from(602.365497,3+) title(Elution%20from%3a%2044=
%2e33%20to%2044%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1078)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h17_q1078; if (NS4 || IE4) activateEl=
('Q1078', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1078&amp;hit=3D1&amp;index=3DIPI%3aIPI000274=
88&amp;px=3D1"=20=0D
      target=3D_blank>1078</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>602.37&nbsp;&nbsp;&nbsp;&nbsp;1804.07&nbsp;&nbsp;&=
nbsp;&nbsp;1803.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;AAVPSGASTGIYEALELR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1804.073568 from(602.365681,3+) title(Elution%20from%3a%2047=
%2e38%20to%2047%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1079)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h17_q1079; if (NS4 || IE4) activateEl=
('Q1079', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1079&amp;hit=3D1&amp;index=3DIPI%3aIPI000274=
88&amp;px=3D1"=20=0D
      target=3D_blank>1079</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>602.37&nbsp;&nbsp;&nbsp;&nbsp;1804.07&nbsp;&nbsp;&=
nbsp;&nbsp;1803.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AAVPSGASTGIYEALELR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1960.065942 from(654.363139,3+) title(Elution%20from%3a%2015=
%2e19%20to%2015%2e19%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1265)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h17_q1265; if (NS4 || IE4) activateEl=
('Q1265', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1265&amp;hit=3D1&amp;index=3DIPI%3aIPI000274=
88&amp;px=3D1"=20=0D
      target=3D_blank>1265</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>654.36&nbsp;&nbsp;&nbsp;&nbsp;1960.07&nbsp;&nbsp;&=
nbsp;&nbsp;1959.92&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DATNVGDEGGFAPNILENK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><=
HR>=0D
<A name=3DHit18><B>18.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00016613&=
amp;px=3D1">IPI:IPI00016613</A>  <B>Mass:</B> 45229   <B>Total score:</B> 1=
01  <B>Peptides matched:</B> 4 =20=0D
    SWISS-PROT:P19138|REFSEQ_NP:NP_001886|REFSEQ_XP:XP_049424|ENSEMBL:ENSP0=
0000217244 Casein kinase II,=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D18 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1542.861144 from(772.438397,2+) title(Elution%20from%3a%2023=
%2e63%20to%2023%2e63%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(745)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h18_q745; if (NS4 || IE4) activateEl(=
'Q745', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D745&amp;hit=3D1&amp;index=3DIPI%3aIPI0001661=
3&amp;px=3D1"=20=0D
      target=3D_blank>745</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>772.44&nbsp;&nbsp;&nbsp;&nbsp;1542.86&nbsp;&nbsp;&=
nbsp;&nbsp;1542.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;38&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VLGTEDLYDYIDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1612.856259 from(538.626578,3+) title(Elution%20from%3a%2025=
%2e52%20to%2025%2e52%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(840)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h18_q840; if (NS4 || IE4) activateEl(=
'Q840', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D840&amp;hit=3D1&amp;index=3DIPI%3aIPI0001661=
3&amp;px=3D1"=20=0D
      target=3D_blank>840</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>538.63&nbsp;&nbsp;&nbsp;&nbsp;1612.86&nbsp;&nbsp;&=
nbsp;&nbsp;1612.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EAMEHPYFYTVVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1730.980230 from(578.001235,3+) title(Elution%20from%3a%2030=
%2e57%20to%2030%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(983)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h18_q983; if (NS4 || IE4) activateEl(=
'Q983', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D983&amp;hit=3D1&amp;index=3DIPI%3aIPI0001661=
3&amp;px=3D1"=20=0D
      target=3D_blank>983</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>578.00&nbsp;&nbsp;&nbsp;&nbsp;1730.98&nbsp;&nbsp;&=
nbsp;&nbsp;1730.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TPALVFEHVNNTDFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1769.976414 from(885.996032,2+) title(Elution%20from%3a%2030=
%2e36%20to%2030%2e36%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1020)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h18_q1020; if (NS4 || IE4) activateEl=
('Q1020', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1020&amp;hit=3D1&amp;index=3DIPI%3aIPI000166=
13&amp;px=3D1"=20=0D
      target=3D_blank>1020</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>886.00&nbsp;&nbsp;&nbsp;&nbsp;1769.98&nbsp;&nbsp;&=
nbsp;&nbsp;1769.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;44&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;YSEVFEAINITNNEK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit19><B>19.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00003269&=
amp;px=3D1">IPI:IPI00003269</A>  <B>Mass:</B> 42318   <B>Total score:</B> 1=
00  <B>Peptides matched:</B> 9 =20=0D
    ENSEMBL:ENSP00000239572=20=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D19 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h19_q107; if (NS4 || IE4) activateEl(=
'Q107', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D107&amp;hit=3D1&amp;index=3DIPI%3aIPI0000326=
9&amp;px=3D1"=20=0D
      target=3D_blank>107</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>499.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;997.51&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;997.48&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;DLTDYLMK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h19_q251; if (NS4 || IE4) activateEl(=
'Q251', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D251&amp;hit=3D1&amp;index=3DIPI%3aIPI0000326=
9&amp;px=3D1"=20=0D
      target=3D_blank>251</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>586.32&nbsp;&nbsp;&nbsp;&nbsp;1170.62&nbsp;&nbsp;&nbs=
p;&nbsp;1170.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;HQGVM=
VGMGQK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h19_q252; if (NS4 || IE4) activateEl(=
'Q252', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D252&amp;hit=3D1&amp;index=3DIPI%3aIPI0000326=
9&amp;px=3D1"=20=0D
      target=3D_blank>252</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>586.33&nbsp;&nbsp;&nbsp;&nbsp;1170.64&nbsp;&nbsp;&nbs=
p;&nbsp;1170.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
HQGVMVGMGQK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h19_q253; if (NS4 || IE4) activateEl(=
'Q253', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D253&amp;hit=3D1&amp;index=3DIPI%3aIPI0000326=
9&amp;px=3D1"=20=0D
      target=3D_blank>253</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>586.33&nbsp;&nbsp;&nbsp;&nbsp;1170.64&nbsp;&nbsp;&nbs=
p;&nbsp;1170.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;HQGVMVGMGQK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h19_q1062; if (NS4 || IE4) activateEl=
('Q1062', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1062&amp;hit=3D1&amp;index=3DIPI%3aIPI000032=
69&amp;px=3D1"=20=0D
      target=3D_blank>1062</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>896.01&nbsp;&nbsp;&nbsp;&nbsp;1790.00&nbsp;&nbsp;&nbs=
p;&nbsp;1789.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;SYELPDGQVITIGNER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h19_q1063; if (NS4 || IE4) activateEl=
('Q1063', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1063&amp;hit=3D1&amp;index=3DIPI%3aIPI000032=
69&amp;px=3D1"=20=0D
      target=3D_blank>1063</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>597.68&nbsp;&nbsp;&nbsp;&nbsp;1790.01&nbsp;&nbsp;&nbs=
p;&nbsp;1789.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(34)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SYELP=
DGQVITIGNER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h19_q1064; if (NS4 || IE4) activateEl=
('Q1064', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1064&amp;hit=3D1&amp;index=3DIPI%3aIPI000032=
69&amp;px=3D1"=20=0D
      target=3D_blank>1064</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>896.01&nbsp;&nbsp;&nbsp;&nbsp;1790.01&nbsp;&nbsp;&nbs=
p;&nbsp;1789.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(55)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;SYELP=
DGQVITIGNER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h19_q1253; if (NS4 || IE4) activateEl=
('Q1253', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1253&amp;hit=3D3&amp;index=3DIPI%3aIPI000032=
69&amp;px=3D1"=20=0D
      target=3D_blank>1253</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;652.06&nbsp;&nb=
sp;&nbsp;&nbsp;1953.16&nbsp;&nbsp;&nbsp;&nbsp;1953.06&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nbsp=
;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;VAPDEHPILLTEAPLNPK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h19_q1255; if (NS4 || IE4) activateEl=
('Q1255', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1255&amp;hit=3D2&amp;index=3DIPI%3aIPI000032=
69&amp;px=3D1"=20=0D
      target=3D_blank>1255</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;652.07&nbsp;&nb=
sp;&nbsp;&nbsp;1953.19&nbsp;&nbsp;&nbsp;&nbsp;1953.06&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;VAPDEHPILLTEAPLNPK</TT></TD=
></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit20><B>20.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00021826&=
amp;px=3D1">IPI:IPI00021826</A>  <B>Mass:</B> 45167   <B>Total score:</B> 9=
5  <B>Peptides matched:</B> 3 =20=0D
    TREMBL:Q9H107|ENSEMBL:ENSP00000244792 Phosphoglycerate kinase=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D20 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h20_q75; if (NS4 || IE4) activateEl('=
Q75', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D75&amp;hit=3D2&amp;index=3DIPI%3aIPI00021826=
&amp;px=3D1"=20=0D
      target=3D_blank>75</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>475.27&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;948.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;948.47&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;15&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;VDFNVPMK</B></TT></TD=
></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1633.878543 from(545.634006,3+) title(Elution%20from%3a%2019=
%2e84%20to%2019%2e84%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(856)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h20_q856; if (NS4 || IE4) activateEl(=
'Q856', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D856&amp;hit=3D1&amp;index=3DIPI%3aIPI0002182=
6&amp;px=3D1"=20=0D
      target=3D_blank>856</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>545.63&nbsp;&nbsp;&nbsp;&nbsp;1633.88&nbsp;&nbsp;&=
nbsp;&nbsp;1633.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;44&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LGDVYVNDAFGTAHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1740.020016 from(581.014497,3+) title(Elution%20from%3a%2024=
%2e41%20to%2024%2e41%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(991)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h20_q991; if (NS4 || IE4) activateEl(=
'Q991', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D991&amp;hit=3D1&amp;index=3DIPI%3aIPI0002182=
6&amp;px=3D1"=20=0D
      target=3D_blank>991</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>581.01&nbsp;&nbsp;&nbsp;&nbsp;1740.02&nbsp;&nbsp;&=
nbsp;&nbsp;1739.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;36&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VSHVSTGGGASLELLEGK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B=
>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00018315&amp;px=3D1">IPI:IPI00018315</A>=
  <B>Mass:</B> 44967   <B>Total score:</B> 95  <B>Peptides matched:</B> 3 =20=0D
    SWISS-PROT:P00558|REFSEQ_NP:NP_000282|REFSEQ_XP:XP_041155|ENSEMBL:ENSP0=
0000218265 Phosphoglycerate=20=0D
=0D
<HR>=0D
<A name=3DHit21><B>21.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00017216&=
amp;px=3D1">IPI:IPI00017216</A>  <B>Mass:</B> 50159   <B>Total score:</B> 8=
9  <B>Peptides matched:</B> 4 =20=0D
    REFSEQ_XP:XP_047083 hypothetical protein XP_047083=20=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D21 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h21_q225; if (NS4 || IE4) activateEl(=
'Q225', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D225&amp;hit=3D1&amp;index=3DIPI%3aIPI0001721=
6&amp;px=3D1"=20=0D
      target=3D_blank>225</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>572.34&nbsp;&nbsp;&nbsp;&nbsp;1142.66&nbsp;&nbsp;&nbs=
p;&nbsp;1142.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;LAVNMVPFPR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h21_q468; if (NS4 || IE4) activateEl(=
'Q468', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D468&amp;hit=3D1&amp;index=3DIPI%3aIPI0001721=
6&amp;px=3D1"=20=0D
      target=3D_blank>468</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>660.40&nbsp;&nbsp;&nbsp;&nbsp;1318.78&nbsp;&nbsp;&nbs=
p;&nbsp;1318.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;IMNTFSVVPSPK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1858.049811 from(620.357762,3+) title(Elution%20from%3a%2098=
%2e1%20to%2098%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1140)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h21_q1140; if (NS4 || IE4) activateEl=
('Q1140', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1140&amp;hit=3D1&amp;index=3DIPI%3aIPI000172=
16&amp;px=3D1"=20=0D
      target=3D_blank>1140</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>620.36&nbsp;&nbsp;&nbsp;&nbsp;1858.05&nbsp;&nbsp;&=
nbsp;&nbsp;1857.95&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MAVTFIGSSTAIQELFK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h21_q1262; if (NS4 || IE4) activateEl=
('Q1262', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1262&amp;hit=3D1&amp;index=3DIPI%3aIPI000172=
16&amp;px=3D1"=20=0D
      target=3D_blank>1262</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>653.70&nbsp;&nbsp;&nbsp;&nbsp;1958.09&nbsp;&nbsp;&nbs=
p;&nbsp;1957.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;GHYTEGAELVDSVLDVVR</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit22><B>22.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00027214&=
amp;px=3D1">IPI:IPI00027214</A>  <B>Mass:</B> 58280   <B>Total score:</B> 8=
8  <B>Peptides matched:</B> 8 =20=0D
    SWISS-PROT:P14618 Pyruvate kinase, M1 isozyme=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D22 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1018.560694 from(510.288172,2+) title(Elution%20from%3a%208%=
2e01%20to%208%2e01%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(128)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h22_q128; if (NS4 || IE4) activateEl(=
'Q128', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D128&amp;hit=3D1&amp;index=3DIPI%3aIPI0002721=
4&amp;px=3D1"=20=0D
      target=3D_blank>128</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>510.29&nbsp;&nbsp;&nbsp;&nbsp;1018.56&nbsp;&nbsp;&=
nbsp;&nbsp;1018.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GDYPLEAVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1140.667314 from(571.341482,2+) title(Elution%20from%3a%2013=
%2e67%20to%2013%2e67%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(222)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h22_q222; if (NS4 || IE4) activateEl(=
'Q222', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D222&amp;hit=3D1&amp;index=3DIPI%3aIPI0002721=
4&amp;px=3D1"=20=0D
      target=3D_blank>222</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>571.34&nbsp;&nbsp;&nbsp;&nbsp;1140.67&nbsp;&nbsp;&=
nbsp;&nbsp;1140.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GDLGIEIPAEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h22_q1009; if (NS4 || IE4) activateEl=
('Q1009', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1009&amp;hit=3D3&amp;index=3DIPI%3aIPI000272=
14&amp;px=3D1"=20=0D
      target=3D_blank>1009</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>589.04&nbsp;=
&nbsp;&nbsp;&nbsp;1764.09&nbsp;&nbsp;&nbsp;&nbsp;1763.98&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;KGVNLPGAAVDLPAVSEK</B></=
TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1858.990672 from(930.503161,2+) title(Elution%20from%3a%2016=
0%2e72%20to%20160%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1141)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h22_q1141; if (NS4 || IE4) activateEl=
('Q1141', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1141&amp;hit=3D1&amp;index=3DIPI%3aIPI000272=
14&amp;px=3D1"=20=0D
      target=3D_blank>1141</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>930.50&nbsp;&nbsp;&nbsp;&nbsp;1858.99&nbsp;&nbsp;&=
nbsp;&nbsp;1858.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FGVEQDVDMVFASFIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1859.001585 from(620.675020,3+) title(Elution%20from%3a%2015=
8%2e86%20to%20158%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1142)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h22_q1142; if (NS4 || IE4) activateEl=
('Q1142', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1142&amp;hit=3D1&amp;index=3DIPI%3aIPI000272=
14&amp;px=3D1"=20=0D
      target=3D_blank>1142</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>620.68&nbsp;&nbsp;&nbsp;&nbsp;1859.00&nbsp;&nbsp;&=
nbsp;&nbsp;1858.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(17)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;FG=
VEQDVDMVFASFIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1859.004843 from(620.676106,3+) title(Elution%20from%3a%2016=
1%2e91%20to%20161%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1143)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h22_q1143; if (NS4 || IE4) activateEl=
('Q1143', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1143&amp;hit=3D1&amp;index=3DIPI%3aIPI000272=
14&amp;px=3D1"=20=0D
      target=3D_blank>1143</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>620.68&nbsp;&nbsp;&nbsp;&nbsp;1859.00&nbsp;&nbsp;&=
nbsp;&nbsp;1858.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(19)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;FG=
VEQDVDMVFASFIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1931.108280 from(644.710585,3+) title(Elution%20from%3a%2096=
%2e85%20to%2096%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1244)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h22_q1244; if (NS4 || IE4) activateEl=
('Q1244', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1244&amp;hit=3D1&amp;index=3DIPI%3aIPI000272=
14&amp;px=3D1"=20=0D
      target=3D_blank>1244</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>644.71&nbsp;&nbsp;&nbsp;&nbsp;1931.11&nbsp;&nbsp;&=
nbsp;&nbsp;1930.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EAEAAIYHLQLFEELR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2087.225388 from(696.749621,3+) title(Elution%20from%3a%2094=
%2e7%20to%2094%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1403)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h22_q1403; if (NS4 || IE4) activateEl=
('Q1403', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1403&amp;hit=3D1&amp;index=3DIPI%3aIPI000272=
14&amp;px=3D1"=20=0D
      target=3D_blank>1403</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>696.75&nbsp;&nbsp;&nbsp;&nbsp;2087.23&nbsp;&nbsp;&=
nbsp;&nbsp;2087.08&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EAEAAIYHLQLFEELRR</B></FONT></TT></TD></TR></TBODY></TABLE><PR=
E><B>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00027513&amp;px=3D1">IPI:IPI00027513</A>=
  <B>Mass:</B> 58316   <B>Total score:</B> 88  <B>Peptides matched:</B> 8 =20=0D
    SWISS-PROT:P14786|REFSEQ_NP:NP_002645|TREMBL:Q9UKK4;Q9BWB5|REFSEQ_XP:XP=
_037768;XP_007659|ENSEMBL:EN=0D
=0D
<HR>=0D
<A name=3DHit23><B>23.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00015344&=
amp;px=3D1">IPI:IPI00015344</A>  <B>Mass:</B> 43139   <B>Total score:</B> 8=
3  <B>Peptides matched:</B> 4 =20=0D
    REFSEQ_NP:NP_001394|TREMBL:Q16577 ONCOGENE=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D23 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"913.589050 from(457.802350,2+) title(Elution%20from%3a%205%2=
e45%20to%205%2e45%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(50)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h23_q50; if (NS4 || IE4) activateEl('=
Q50', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D50&amp;hit=3D1&amp;index=3DIPI%3aIPI00015344=
&amp;px=3D1"=20=0D
      target=3D_blank>50</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>457.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;913.59&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;913.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;QTVAVGVIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1024.659056 from(513.337353,2+) title(Elution%20from%3a%209%=
2e01%20to%209%2e01%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(131)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h23_q131; if (NS4 || IE4) activateEl(=
'Q131', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D131&amp;hit=3D1&amp;index=3DIPI%3aIPI0001534=
4&amp;px=3D1"=20=0D
      target=3D_blank>131</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>513.34&nbsp;&nbsp;&nbsp;&nbsp;1024.66&nbsp;&nbsp;&=
nbsp;&nbsp;1024.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IGGIGTVPVGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1403.762874 from(468.928783,3+) title(Elution%20from%3a%2018=
%2e6%20to%2018%2e6%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(594)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h23_q594; if (NS4 || IE4) activateEl(=
'Q594', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D594&amp;hit=3D1&amp;index=3DIPI%3aIPI0001534=
4&amp;px=3D1"=20=0D
      target=3D_blank>594</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>468.93&nbsp;&nbsp;&nbsp;&nbsp;1403.76&nbsp;&nbsp;&=
nbsp;&nbsp;1403.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;YYVTIIDAPGHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1403.815518 from(702.915584,2+) title(Elution%20from%3a%2020=
%2e09%20to%2020%2e09%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(596)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h23_q596; if (NS4 || IE4) activateEl(=
'Q596', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D596&amp;hit=3D1&amp;index=3DIPI%3aIPI0001534=
4&amp;px=3D1"=20=0D
      target=3D_blank>596</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>702.92&nbsp;&nbsp;&nbsp;&nbsp;1403.82&nbsp;&nbsp;&=
nbsp;&nbsp;1403.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;YYVTIIDAPGHR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Prote=
ins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00021516&amp;px=3D1">IPI:IPI00021516</A>=
  <B>Total score:</B> 83  <B>Peptides matched:</B> 4 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00025447&amp;px=3D1">IPI:IPI00025447</A>=
  <B>Total score:</B> 83  <B>Peptides matched:</B> 4 =20=0D
=0D
<HR>=0D
<A name=3DHit24><B>24.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00003362&=
amp;px=3D1">IPI:IPI00003362</A>  <B>Mass:</B> 72403   <B>Total score:</B> 7=
9  <B>Peptides matched:</B> 6 =20=0D
    SWISS-PROT:P11021|TREMBL:Q9UK02|REFSEQ_XP:XP_044201;XP_044200;XP_044202=
|ENSEMBL:ENSP00000265959 78 kDa glucose-regulated protein precursor=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D24 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1396.875864 from(699.445757,2+) title(Elution%20from%3a%2019=
%2e58%20to%2019%2e58%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(588)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h24_q588; if (NS4 || IE4) activateEl(=
'Q588', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D588&amp;hit=3D1&amp;index=3DIPI%3aIPI0000336=
2&amp;px=3D1"=20=0D
      target=3D_blank>588</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>699.45&nbsp;&nbsp;&nbsp;&nbsp;1396.88&nbsp;&nbsp;&=
nbsp;&nbsp;1396.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ELEEIVQPIISK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1429.817458 from(715.916554,2+) title(Elution%20from%3a%207%=
2e29%20to%207%2e29%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(622)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h24_q622; if (NS4 || IE4) activateEl(=
'Q622', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D622&amp;hit=3D1&amp;index=3DIPI%3aIPI0000336=
2&amp;px=3D1"=20=0D
      target=3D_blank>622</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>715.92&nbsp;&nbsp;&nbsp;&nbsp;1429.82&nbsp;&nbsp;&=
nbsp;&nbsp;1429.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TWNDPSVQQDIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1459.858600 from(730.937125,2+) title(Elution%20from%3a%2023=
%2e22%20to%2023%2e22%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(661)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h24_q661; if (NS4 || IE4) activateEl(=
'Q661', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D661&amp;hit=3D1&amp;index=3DIPI%3aIPI0000336=
2&amp;px=3D1"=20=0D
      target=3D_blank>661</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>730.94&nbsp;&nbsp;&nbsp;&nbsp;1459.86&nbsp;&nbsp;&=
nbsp;&nbsp;1459.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;31&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SDIDEIVLVGGSTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h24_q913; if (NS4 || IE4) activateEl(=
'Q913', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D913&amp;hit=3D1&amp;index=3DIPI%3aIPI0000336=
2&amp;px=3D1"=20=0D
      target=3D_blank>913</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>554.01&nbsp;&nbsp;&nbsp;&nbsp;1658.99&nbsp;&nbsp;&nbs=
p;&nbsp;1658.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(4)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
IINEPTAAAIAYGLDK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h24_q914; if (NS4 || IE4) activateEl(=
'Q914', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D914&amp;hit=3D1&amp;index=3DIPI%3aIPI0000336=
2&amp;px=3D1"=20=0D
      target=3D_blank>914</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>830.51&nbsp;&nbsp;&nbsp;&nbsp;1659.01&nbsp;&nbsp;&nbs=
p;&nbsp;1658.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;IINEPTAAAIAYGLDK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h24_q915; if (NS4 || IE4) activateEl(=
'Q915', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D915&amp;hit=3D1&amp;index=3DIPI%3aIPI0000336=
2&amp;px=3D1"=20=0D
      target=3D_blank>915</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>554.01&nbsp;&nbsp;&nbsp;&nbsp;1659.01&nbsp;&nbsp;&nbs=
p;&nbsp;1658.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IINEP=
TAAAIAYGLDK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit25><B>25.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00002965&=
amp;px=3D1">IPI:IPI00002965</A>  <B>Mass:</B> 70755   <B>Total score:</B> 7=
6  <B>Peptides matched:</B> 5 =20=0D
    SWISS-PROT:P34931|REFSEQ_NP:NP_005518|TREMBL:O75634|REFSEQ_XP:XP_004187=
|ENSEMBL:ENSP00000259871 Heat shock 70 kDa protein 1-HOM=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D25 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h25_q231; if (NS4 || IE4) activateEl(=
'Q231', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D231&amp;hit=3D3&amp;index=3DIPI%3aIPI0000296=
5&amp;px=3D1"=20=0D
      target=3D_blank>231</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>573.32&nbsp;&=
nbsp;&nbsp;&nbsp;1144.62&nbsp;&nbsp;&nbsp;&nbsp;1144.65&nbsp;&nbsp;&nbsp;&n=
bsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;VNKITITNDK</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h25_q689; if (NS4 || IE4) activateEl(=
'Q689', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D689&amp;hit=3D1&amp;index=3DIPI%3aIPI0000296=
5&amp;px=3D1"=20=0D
      target=3D_blank>689</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>744.41&nbsp;&nbsp;&nbsp;&nbsp;1486.81&nbsp;&nbsp;&nbs=
p;&nbsp;1486.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;43&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;TTPSYVAFTDTER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h25_q913; if (NS4 || IE4) activateEl(=
'Q913', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D913&amp;hit=3D1&amp;index=3DIPI%3aIPI0000296=
5&amp;px=3D1"=20=0D
      target=3D_blank>913</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>554.01&nbsp;&nbsp;&nbsp;&nbsp;1658.99&nbsp;&nbsp;&nbs=
p;&nbsp;1658.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(4)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
IINEPTAAAIAYGLDK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h25_q914; if (NS4 || IE4) activateEl(=
'Q914', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D914&amp;hit=3D1&amp;index=3DIPI%3aIPI0000296=
5&amp;px=3D1"=20=0D
      target=3D_blank>914</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>830.51&nbsp;&nbsp;&nbsp;&nbsp;1659.01&nbsp;&nbsp;&nbs=
p;&nbsp;1658.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;IINEPTAAAIAYGLDK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h25_q915; if (NS4 || IE4) activateEl(=
'Q915', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D915&amp;hit=3D1&amp;index=3DIPI%3aIPI0000296=
5&amp;px=3D1"=20=0D
      target=3D_blank>915</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>554.01&nbsp;&nbsp;&nbsp;&nbsp;1659.01&nbsp;&nbsp;&nbs=
p;&nbsp;1658.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(12)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IINEP=
TAAAIAYGLDK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit26><B>26.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00011335&=
amp;px=3D1">IPI:IPI00011335</A>  <B>Mass:</B> 28164   <B>Total score:</B> 7=
2  <B>Peptides matched:</B> 4 =20=0D
    REFSEQ_XP:XP_051219 hypothetical protein XP_051219=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D26 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h26_q206; if (NS4 || IE4) activateEl(=
'Q206', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D206&amp;hit=3D2&amp;index=3DIPI%3aIPI0001133=
5&amp;px=3D1"=20=0D
      target=3D_blank>206</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>566.34&nbsp;&nbsp;&nbsp;&nbsp;1130.66&nbsp;&nbsp;&nbs=
p;&nbsp;1130.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;MELQELQLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1143.607284 from(572.811467,2+) title(Elution%20from%3a%2019=
%2e91%20to%2019%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(228)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h26_q228; if (NS4 || IE4) activateEl(=
'Q228', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D228&amp;hit=3D2&amp;index=3DIPI%3aIPI0001133=
5&amp;px=3D1"=20=0D
      target=3D_blank>228</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>572.81&nbsp;&nbsp;&nbsp;&nbsp;1143.61&nbsp;&nbsp;&=
nbsp;&nbsp;1143.61&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LVTIEGDLER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h26_q866; if (NS4 || IE4) activateEl(=
'Q866', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D866&amp;hit=3D1&amp;index=3DIPI%3aIPI0001133=
5&amp;px=3D1"=20=0D
      target=3D_blank>866</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>548.31&nbsp;&nbsp;&nbsp;&nbsp;1641.90&nbsp;&nbsp;&nbs=
p;&nbsp;1641.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(29)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IQVLQ=
QQADDAEER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h26_q868; if (NS4 || IE4) activateEl(=
'Q868', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D868&amp;hit=3D1&amp;index=3DIPI%3aIPI0001133=
5&amp;px=3D1"=20=0D
      target=3D_blank>868</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>821.96&nbsp;&nbsp;&nbsp;&nbsp;1641.91&nbsp;&nbsp;&nbs=
p;&nbsp;1641.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;39&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;IQVLQQQADDAEER</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit27><B>27.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00013921&=
amp;px=3D1">IPI:IPI00013921</A>  <B>Mass:</B> 84889   <B>Total score:</B> 7=
0  <B>Peptides matched:</B> 5 =20=0D
    SWISS-PROT:P07900|REFSEQ_NP:NP_005339|TREMBL:Q9BVQ5|REFSEQ_XP:XP_056565=
;XP_040944|ENSEMBL:ENSP00000216281 Heat shock protein HSP 90-alpha=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D27 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1290.713856 from(646.364753,2+) title(Elution%20from%3a%200%=
2e8%20to%200%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3=
a%20%201%20%20) query(426)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h27_q426; if (NS4 || IE4) activateEl(=
'Q426', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D426&amp;hit=3D1&amp;index=3DIPI%3aIPI0001392=
1&amp;px=3D1"=20=0D
      target=3D_blank>426</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>646.36&nbsp;&nbsp;&nbsp;&nbsp;1290.71&nbsp;&nbsp;&=
nbsp;&nbsp;1290.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ELISNSSDALDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h27_q511; if (NS4 || IE4) activateEl(=
'Q511', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D511&amp;hit=3D1&amp;index=3DIPI%3aIPI0001392=
1&amp;px=3D1"=20=0D
      target=3D_blank>511</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>675.41&nbsp;&nbsp;&nbsp;&nbsp;1348.81&nbsp;&nbsp;&nbs=
p;&nbsp;1348.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;TLTIVDTGIGMTK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h27_q512; if (NS4 || IE4) activateEl(=
'Q512', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D512&amp;hit=3D1&amp;index=3DIPI%3aIPI0001392=
1&amp;px=3D1"=20=0D
      target=3D_blank>512</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>675.42&nbsp;&nbsp;&nbsp;&nbsp;1348.83&nbsp;&nbsp;&nbs=
p;&nbsp;1348.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(36)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;TLTIV=
DTGIGMTK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h27_q612; if (NS4 || IE4) activateEl(=
'Q612', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D612&amp;hit=3D1&amp;index=3DIPI%3aIPI0001392=
1&amp;px=3D1"=20=0D
      target=3D_blank>612</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>708.89&nbsp;&nbsp;&nbsp;&nbsp;1415.76&nbsp;&nbsp;&nbs=
p;&nbsp;1415.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;EGLELPEDEEEK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h27_q710; if (NS4 || IE4) activateEl(=
'Q710', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D710&amp;hit=3D4&amp;index=3DIPI%3aIPI0001392=
1&amp;px=3D1"=20=0D
      target=3D_blank>710</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;505.31&nbsp;&nbs=
p;&nbsp;&nbsp;1512.92&nbsp;&nbsp;&nbsp;&nbsp;1512.78&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;GVVDSEDLPLNISR</TT></TD></TR=
></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit28><B>28.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00034297&=
amp;px=3D1">IPI:IPI00034297</A>  <B>Mass:</B> 13664   <B>Total score:</B> 6=
7  <B>Peptides matched:</B> 2 =20=0D
    REFSEQ_XP:XP_038141 hypothetical protein XP_038141=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D28 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1074.662484 from(538.339067,2+) title(Elution%20from%3a%2019=
%2e06%20to%2019%2e06%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(168)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h28_q168; if (NS4 || IE4) activateEl(=
'Q168', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D168&amp;hit=3D1&amp;index=3DIPI%3aIPI0003429=
7&amp;px=3D1"=20=0D
      target=3D_blank>168</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>538.34&nbsp;&nbsp;&nbsp;&nbsp;1074.66&nbsp;&nbsp;&=
nbsp;&nbsp;1074.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LNNLVLFDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1083.680978 from(542.848314,2+) title(Elution%20from%3a%2011=
%2e22%20to%2011%2e22%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(175)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h28_q175; if (NS4 || IE4) activateEl(=
'Q175', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D175&amp;hit=3D1&amp;index=3DIPI%3aIPI0003429=
7&amp;px=3D1"=20=0D
      target=3D_blank>175</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>542.85&nbsp;&nbsp;&nbsp;&nbsp;1083.68&nbsp;&nbsp;&=
nbsp;&nbsp;1083.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;43&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LITPAVVSER</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Protein=
s matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00026511&amp;px=3D1">IPI:IPI00026511</A>=
  <B>Total score:</B> 67  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00012750&amp;px=3D1">IPI:IPI00012750</A>=
  <B>Total score:</B> 67  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit29><B>29.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00007188&=
amp;px=3D1">IPI:IPI00007188</A>  <B>Mass:</B> 33102   <B>Total score:</B> 6=
2  <B>Peptides matched:</B> 3 =20=0D
    SWISS-PROT:P05141|REFSEQ_NP:NP_001143|REFSEQ_XP:XP_010362|ENSEMBL:ENSP0=
0000005593 ADP,ATP carrier protein, fibroblast isoform=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D29 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h29_q25; if (NS4 || IE4) activateEl('=
Q25', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D25&amp;hit=3D5&amp;index=3DIPI%3aIPI00007188=
&amp;px=3D1"=20=0D
      target=3D_blank>25</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>428.78&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;855.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;855.49&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;GNLANVIR</B></TT=
></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1135.730358 from(568.873004,2+) title(Elution%20from%3a%2016=
%2e79%20to%2016%2e79%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(213)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h29_q213; if (NS4 || IE4) activateEl(=
'Q213', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D213&amp;hit=3D1&amp;index=3DIPI%3aIPI0000718=
8&amp;px=3D1"=20=0D
      target=3D_blank>213</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>568.87&nbsp;&nbsp;&nbsp;&nbsp;1135.73&nbsp;&nbsp;&=
nbsp;&nbsp;1135.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LLLQVQHASK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1218.739004 from(610.377327,2+) title(Elution%20from%3a%2029=
%2e76%20to%2029%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(341)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h29_q341; if (NS4 || IE4) activateEl(=
'Q341', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D341&amp;hit=3D1&amp;index=3DIPI%3aIPI0000718=
8&amp;px=3D1"=20=0D
      target=3D_blank>341</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>610.38&nbsp;&nbsp;&nbsp;&nbsp;1218.74&nbsp;&nbsp;&=
nbsp;&nbsp;1218.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;38&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DFLAGGVAAAISK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit30><B>30.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00018158&=
amp;px=3D1">IPI:IPI00018158</A>  <B>Mass:</B> 150286   <B>Total score:</B> =
59  <B>Peptides matched:</B> 4 =20=0D
    TREMBL:Q9NSN1;Q9NTK4;Q9ULQ2;Q9UN29|REFSEQ_XP:XP_056964;XP_056963;XP_029=
755|ENSEMBL:ENSP00000265227=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D30 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"947.617792 from(474.816721,2+) title(Elution%20from%3a%2031%=
2e71%20to%2031%2e71%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(74)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h30_q74; if (NS4 || IE4) activateEl('=
Q74', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D74&amp;hit=3D1&amp;index=3DIPI%3aIPI00018158=
&amp;px=3D1"=20=0D
      target=3D_blank>74</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>474.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;947.62&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;947.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;NAFVTGIAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1166.741166 from(584.378408,2+) title(Elution%20from%3a%209%=
2e4%20to%209%2e4%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3=
a%20%201%20%20) query(249)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h30_q249; if (NS4 || IE4) activateEl(=
'Q249', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D249&amp;hit=3D1&amp;index=3DIPI%3aIPI0001815=
8&amp;px=3D1"=20=0D
      target=3D_blank>249</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>584.38&nbsp;&nbsp;&nbsp;&nbsp;1166.74&nbsp;&nbsp;&=
nbsp;&nbsp;1166.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LGTPQQIAIAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1242.756988 from(622.386319,2+) title(Elution%20from%3a%2010=
%2e09%20to%2010%2e09%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(380)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h30_q380; if (NS4 || IE4) activateEl(=
'Q380', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D380&amp;hit=3D1&amp;index=3DIPI%3aIPI0001815=
8&amp;px=3D1"=20=0D
      target=3D_blank>380</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>622.39&nbsp;&nbsp;&nbsp;&nbsp;1242.76&nbsp;&nbsp;&=
nbsp;&nbsp;1242.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TVEVLEPEVTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1438.842514 from(720.429082,2+) title(Elution%20from%3a%2015=
6%2e04%20to%20156%2e04%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(634)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h30_q634; if (NS4 || IE4) activateEl(=
'Q634', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D634&amp;hit=3D1&amp;index=3DIPI%3aIPI0001815=
8&amp;px=3D1"=20=0D
      target=3D_blank>634</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>720.43&nbsp;&nbsp;&nbsp;&nbsp;1438.84&nbsp;&nbsp;&=
nbsp;&nbsp;1438.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FINMFAVLDELK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit31><B>31.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00021266&=
amp;px=3D1">IPI:IPI00021266</A>  <B>Mass:</B> 17684   <B>Total score:</B> 5=
9  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P29316|REFSEQ_NP:NP_000975|REFSEQ_XP:XP_017356;XP_031454|ENS=
EMBL:ENSP00000237694 60S ribosomal protein L23a=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D31 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1123.629522 from(562.822586,2+) title(Elution%20from%3a%2011=
%2e64%20to%2011%2e64%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(202)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h31_q202; if (NS4 || IE4) activateEl(=
'Q202', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D202&amp;hit=3D1&amp;index=3DIPI%3aIPI0002126=
6&amp;px=3D1"=20=0D
      target=3D_blank>202</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>562.82&nbsp;&nbsp;&nbsp;&nbsp;1123.63&nbsp;&nbsp;&=
nbsp;&nbsp;1123.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FPLTTESAMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1403.786470 from(702.901060,2+) title(Elution%20from%3a%2012=
%2e28%20to%2012%2e28%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(595)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h31_q595; if (NS4 || IE4) activateEl(=
'Q595', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D595&amp;hit=3D1&amp;index=3DIPI%3aIPI0002126=
6&amp;px=3D1"=20=0D
      target=3D_blank>595</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>702.90&nbsp;&nbsp;&nbsp;&nbsp;1403.79&nbsp;&nbsp;&=
nbsp;&nbsp;1403.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;40&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LAPDYDALDVANK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit32><B>32.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00030960&=
amp;px=3D1">IPI:IPI00030960</A>  <B>Mass:</B> 148695   <B>Total score:</B> =
59  <B>Peptides matched:</B> 5 =20=0D
    TREMBL:Q9BSD9;Q14467;Q9BVC7|REFSEQ_XP:XP_039225|ENSEMBL:ENSP00000261611=
 KIAA0068 PROTEIN (FRAGMENT)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D32 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h32_q74; if (NS4 || IE4) activateEl('=
Q74', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D74&amp;hit=3D1&amp;index=3DIPI%3aIPI00030960=
&amp;px=3D1"=20=0D
      target=3D_blank>74</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>474.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;947.62&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;947.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbs=
p;&nbsp;&nbsp;&nbsp;NAFVTGIAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h32_q249; if (NS4 || IE4) activateEl(=
'Q249', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D249&amp;hit=3D1&amp;index=3DIPI%3aIPI0003096=
0&amp;px=3D1"=20=0D
      target=3D_blank>249</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>584.38&nbsp;&nbsp;&nbsp;&nbsp;1166.74&nbsp;&nbsp;&nbs=
p;&nbsp;1166.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;LGTPQQIAIAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h32_q380; if (NS4 || IE4) activateEl(=
'Q380', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D380&amp;hit=3D1&amp;index=3DIPI%3aIPI0003096=
0&amp;px=3D1"=20=0D
      target=3D_blank>380</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>622.39&nbsp;&nbsp;&nbsp;&nbsp;1242.76&nbsp;&nbsp;&nbs=
p;&nbsp;1242.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;TVEVLEPEVTK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h32_q514; if (NS4 || IE4) activateEl(=
'Q514', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D514&amp;hit=3D10&amp;index=3DIPI%3aIPI000309=
60&amp;px=3D1"=20=0D
      target=3D_blank>514</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>676.36&nbsp;&=
nbsp;&nbsp;&nbsp;1350.70&nbsp;&nbsp;&nbsp;&nbsp;1350.69&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp=
;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;TVLPFSQEFQR</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h32_q634; if (NS4 || IE4) activateEl(=
'Q634', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D634&amp;hit=3D1&amp;index=3DIPI%3aIPI0003096=
0&amp;px=3D1"=20=0D
      target=3D_blank>634</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>720.43&nbsp;&nbsp;&nbsp;&nbsp;1438.84&nbsp;&nbsp;&nbs=
p;&nbsp;1438.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;FINMFAVLDELK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit33><B>33.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00011253&=
amp;px=3D1">IPI:IPI00011253</A>  <B>Mass:</B> 26843   <B>Total score:</B> 5=
9  <B>Peptides matched:</B> 3 =20=0D
    SWISS-PROT:P23396|REFSEQ_NP:NP_000996|TREMBL:Q9NQS8|REFSEQ_XP:XP_035076=
;XP_015852|ENSEMBL:ENSP00000228012 40S ribosomal protein S3=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D33 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1091.614380 from(546.815015,2+) title(Elution%20from%3a%2014=
%2e86%20to%2014%2e99%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(180)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h33_q180; if (NS4 || IE4) activateEl(=
'Q180', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D180&amp;hit=3D1&amp;index=3DIPI%3aIPI0001125=
3&amp;px=3D1"=20=0D
      target=3D_blank>180</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>546.82&nbsp;&nbsp;&nbsp;&nbsp;1091.61&nbsp;&nbsp;&=
nbsp;&nbsp;1091.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;36&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;AELNEFLTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h33_q319; if (NS4 || IE4) activateEl(=
'Q319', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D319&amp;hit=3D10&amp;index=3DIPI%3aIPI000112=
53&amp;px=3D1"=20=0D
      target=3D_blank>319</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>602.34&nbsp;&=
nbsp;&nbsp;&nbsp;1202.67&nbsp;&nbsp;&nbsp;&nbsp;1202.66&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;GCEVVVSGKLR</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1469.867740 from(735.941695,2+) title(Elution%20from%3a%2011=
%2e79%20to%2011%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(670)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h33_q670; if (NS4 || IE4) activateEl(=
'Q670', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D670&amp;hit=3D1&amp;index=3DIPI%3aIPI0001125=
3&amp;px=3D1"=20=0D
      target=3D_blank>670</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>735.94&nbsp;&nbsp;&nbsp;&nbsp;1469.87&nbsp;&nbsp;&=
nbsp;&nbsp;1469.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DEILPTTPISEQK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit34><B>34.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00016087&=
amp;px=3D1">IPI:IPI00016087</A>  <B>Mass:</B> 210621   <B>Total score:</B> =
58  <B>Peptides matched:</B> 6 =20=0D
    ENSEMBL:ENSP00000262273=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D34 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h34_q342; if (NS4 || IE4) activateEl(=
'Q342', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D342&amp;hit=3D1&amp;index=3DIPI%3aIPI0001608=
7&amp;px=3D1"=20=0D
      target=3D_blank>342</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>610.87&nbsp;&nbsp;&nbsp;&nbsp;1219.72&nbsp;&nbsp;&nbs=
p;&nbsp;1219.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;KFDQLLAEEK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h34_q436; if (NS4 || IE4) activateEl(=
'Q436', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D436&amp;hit=3D2&amp;index=3DIPI%3aIPI0001608=
7&amp;px=3D1"=20=0D
      target=3D_blank>436</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;653.38&nbsp;&nbs=
p;&nbsp;&nbsp;1304.75&nbsp;&nbsp;&nbsp;&nbsp;1304.66&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nbsp;=
&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;EQADFALEALAK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h34_q437; if (NS4 || IE4) activateEl(=
'Q437', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D437&amp;hit=3D1&amp;index=3DIPI%3aIPI0001608=
7&amp;px=3D1"=20=0D
      target=3D_blank>437</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>653.38&nbsp;&nbsp;&nbsp;&nbsp;1304.75&nbsp;&nbsp;&nbs=
p;&nbsp;1304.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;(18)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;EQADF=
ALEALAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h34_q438; if (NS4 || IE4) activateEl(=
'Q438', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D438&amp;hit=3D1&amp;index=3DIPI%3aIPI0001608=
7&amp;px=3D1"=20=0D
      target=3D_blank>438</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>653.38&nbsp;&nbsp;&nbsp;&nbsp;1304.75&nbsp;&nbsp;&nbs=
p;&nbsp;1304.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(2)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
EQADFALEALAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h34_q439; if (NS4 || IE4) activateEl(=
'Q439', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D439&amp;hit=3D1&amp;index=3DIPI%3aIPI0001608=
7&amp;px=3D1"=20=0D
      target=3D_blank>439</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>653.38&nbsp;&nbsp;&nbsp;&nbsp;1304.75&nbsp;&nbsp;&nbs=
p;&nbsp;1304.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;EQADFALEALAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h34_q971; if (NS4 || IE4) activateEl(=
'Q971', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D971&amp;hit=3D1&amp;index=3DIPI%3aIPI0001608=
7&amp;px=3D1"=20=0D
      target=3D_blank>971</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>576.36&nbsp;&nbsp;&nbsp;&nbsp;1726.05&nbsp;&nbsp;&nbs=
p;&nbsp;1725.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;QLLQANPILEAFGNAK</FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Pro=
teins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00016072&amp;px=3D1">IPI:IPI00016072</A>=
  <B>Total score:</B> 58  <B>Peptides matched:</B> 6 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00016081&amp;px=3D1">IPI:IPI00016081</A>=
  <B>Total score:</B> 58  <B>Peptides matched:</B> 6 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00016090&amp;px=3D1">IPI:IPI00016090</A>=
  <B>Total score:</B> 58  <B>Peptides matched:</B> 6 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00016083&amp;px=3D1">IPI:IPI00016083</A>=
  <B>Total score:</B> 58  <B>Peptides matched:</B> 6 =20=0D
=0D
<HR>=0D
<A name=3DHit35><B>35.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00007805&=
amp;px=3D1">IPI:IPI00007805</A>  <B>Mass:</B> 17882   <B>Total score:</B> 5=
7  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:P38663|REFSEQ_NP:NP_000977|REFSEQ_XP:XP_040555|ENSEMBL:ENSP0=
0000265264 60S ribosomal protein L24=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D35 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1260.722274 from(631.368962,2+) title(Elution%20from%3a%2021=
%2e24%20to%2021%2e24%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(392)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h35_q392; if (NS4 || IE4) activateEl(=
'Q392', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D392&amp;hit=3D1&amp;index=3DIPI%3aIPI0000780=
5&amp;px=3D1"=20=0D
      target=3D_blank>392</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>631.37&nbsp;&nbsp;&nbsp;&nbsp;1260.72&nbsp;&nbsp;&=
nbsp;&nbsp;1260.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;57&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;AITGASLADIMAK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Prot=
eins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00026593&amp;px=3D1">IPI:IPI00026593</A>=
  <B>Total score:</B> 57  <B>Peptides matched:</B> 1 =20=0D
=0D
<HR>=0D
<A name=3DHit36><B>36.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00030575&=
amp;px=3D1">IPI:IPI00030575</A>  <B>Mass:</B> 19225   <B>Total score:</B> 5=
6  <B>Peptides matched:</B> 3 =20=0D
    REFSEQ_NP:NP_066953|TREMBL:Q9BTY9;Q9BVG1|REFSEQ_XP:XP_039526;XP_057291;=
XP_016175|ENSEMBL:ENSP00000248768 Unknown (Fragment)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D36 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1054.591804 from(528.303727,2+) title(Elution%20from%3a%2033=
%2e63%20to%2033%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(155)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h36_q155; if (NS4 || IE4) activateEl(=
'Q155', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D155&amp;hit=3D1&amp;index=3DIPI%3aIPI0003057=
5&amp;px=3D1"=20=0D
      target=3D_blank>155</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>528.30&nbsp;&nbsp;&nbsp;&nbsp;1054.59&nbsp;&nbsp;&=
nbsp;&nbsp;1054.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VSFELFADK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1153.624416 from(577.820033,2+) title(Elution%20from%3a%2015=
%2e91%20to%2015%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(236)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h36_q236; if (NS4 || IE4) activateEl(=
'Q236', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D236&amp;hit=3D1&amp;index=3DIPI%3aIPI0003057=
5&amp;px=3D1"=20=0D
      target=3D_blank>236</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>577.82&nbsp;&nbsp;&nbsp;&nbsp;1153.62&nbsp;&nbsp;&=
nbsp;&nbsp;1153.57&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FEDENFILK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1277.667772 from(639.841711,2+) title(Elution%20from%3a%2017=
%2e85%20to%2017%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(407)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h36_q407; if (NS4 || IE4) activateEl(=
'Q407', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D407&amp;hit=3D1&amp;index=3DIPI%3aIPI0003057=
5&amp;px=3D1"=20=0D
      target=3D_blank>407</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>639.84&nbsp;&nbsp;&nbsp;&nbsp;1277.67&nbsp;&nbsp;&=
nbsp;&nbsp;1277.57&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EGMNIVEAMER</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Protei=
ns matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00006664&amp;px=3D1">IPI:IPI00006664</A>=
  <B>Total score:</B> 56  <B>Peptides matched:</B> 3 =20=0D
=0D
<HR>=0D
<A name=3DHit37><B>37.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00012815&=
amp;px=3D1">IPI:IPI00012815</A>  <B>Mass:</B> 47467   <B>Total score:</B> 5=
4  <B>Peptides matched:</B> 3 =20=0D
    SWISS-PROT:P09104|REFSEQ_NP:NP_001966|REFSEQ_XP:XP_032595;XP_032594|ENS=
EMBL:ENSP00000229277 Gamma enolase=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D37 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h37_q600; if (NS4 || IE4) activateEl(=
'Q600', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D600&amp;hit=3D1&amp;index=3DIPI%3aIPI0001281=
5&amp;px=3D1"=20=0D
      target=3D_blank>600</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>703.91&nbsp;&nbsp;&nbsp;&nbsp;1405.81&nbsp;&nbsp;&nbs=
p;&nbsp;1405.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;GNPTVEVDLYTAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h37_q1078; if (NS4 || IE4) activateEl=
('Q1078', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1078&amp;hit=3D1&amp;index=3DIPI%3aIPI000128=
15&amp;px=3D1"=20=0D
      target=3D_blank>1078</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>602.37&nbsp;&nbsp;&nbsp;&nbsp;1804.07&nbsp;&nbsp;&nbs=
p;&nbsp;1803.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
AAVPSGASTGIYEALELR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h37_q1079; if (NS4 || IE4) activateEl=
('Q1079', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1079&amp;hit=3D1&amp;index=3DIPI%3aIPI000128=
15&amp;px=3D1"=20=0D
      target=3D_blank>1079</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>602.37&nbsp;&nbsp;&nbsp;&nbsp;1804.07&nbsp;&nbsp;&nbs=
p;&nbsp;1803.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;AAVPSGASTGIYEALELR</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit38><B>38.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00022753&=
amp;px=3D1">IPI:IPI00022753</A>  <B>Mass:</B> 20337   <B>Total score:</B> 5=
3  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P39026|REFSEQ_NP:NP_000966|TREMBL:Q9Y674|REFSEQ_XP:XP_054368=
;XP_055632|ENSEMBL:ENSP00000166266 60S ribosomal protein L11=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D38 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"974.588218 from(488.301934,2+) title(Elution%20from%3a%2012%=
2e61%20to%2012%2e61%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(94)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h38_q94; if (NS4 || IE4) activateEl('=
Q94', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D94&amp;hit=3D1&amp;index=3DIPI%3aIPI00022753=
&amp;px=3D1"=20=0D
      target=3D_blank>94</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>488.30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;974.59&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;974.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;YDGIILPGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1545.951614 from(773.983632,2+) title(Elution%20from%3a%2016=
%2e12%20to%2016%2e12%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(750)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h38_q750; if (NS4 || IE4) activateEl(=
'Q750', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D750&amp;hit=3D1&amp;index=3DIPI%3aIPI0002275=
3&amp;px=3D1"=20=0D
      target=3D_blank>750</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>773.98&nbsp;&nbsp;&nbsp;&nbsp;1545.95&nbsp;&nbsp;&=
nbsp;&nbsp;1545.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;39&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VLEQLTGQTPVFSK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit39><B>39.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00016742&=
amp;px=3D1">IPI:IPI00016742</A>  <B>Mass:</B> 36819   <B>Total score:</B> 5=
0  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:P00338|REFSEQ_NP:NP_005557|REFSEQ_XP:XP_036327;XP_036326|ENS=
EMBL:ENSP00000227157 L-lactate dehydrogenase M chain=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D39 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2111.200284 from(704.741253,3+) title(Elution%20from%3a%2017=
5%2e78%20to%20175%2e78%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1437)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h39_q1437; if (NS4 || IE4) activateEl=
('Q1437', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1437&amp;hit=3D1&amp;index=3DIPI%3aIPI000167=
42&amp;px=3D1"=20=0D
      target=3D_blank>1437</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>704.74&nbsp;&nbsp;&nbsp;&nbsp;2111.20&nbsp;&nbsp;&=
nbsp;&nbsp;2111.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;50&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GYTSWAIGLSVADLAESIMK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE>=
<HR>=0D
<A name=3DHit40><B>40.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00027230&=
amp;px=3D1">IPI:IPI00027230</A>  <B>Mass:</B> 92697   <B>Total score:</B> 5=
0  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P14625|REFSEQ_NP:NP_003290|REFSEQ_XP:XP_049132;XP_049131;XP_=
006604|ENSEMBL:ENSP00000258490 Endoplasmin precursor=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D40 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h40_q54; if (NS4 || IE4) activateEl('=
Q54', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D54&amp;hit=3D3&amp;index=3DIPI%3aIPI00027230=
&amp;px=3D1"=20=0D
      target=3D_blank>54</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>460.28&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;918.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;918.53&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;NKEIFLR</B></TT>=
</TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h40_q402; if (NS4 || IE4) activateEl(=
'Q402', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D402&amp;hit=3D1&amp;index=3DIPI%3aIPI0002723=
0&amp;px=3D1"=20=0D
      target=3D_blank>402</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>638.37&nbsp;&nbsp;&nbsp;&nbsp;1274.73&nbsp;&nbsp;&nbs=
p;&nbsp;1274.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;44&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;ELISNASDALDK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit41><B>41.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00010796&=
amp;px=3D1">IPI:IPI00010796</A>  <B>Mass:</B> 57480   <B>Total score:</B> 5=
0  <B>Peptides matched:</B> 5 =20=0D
    SWISS-PROT:P07237|REFSEQ_NP:NP_000909|REFSEQ_XP:XP_046432;XP_046433;XP_=
008588;XP_056183;XP_053104 Protein disulfide isomerase precursor=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D41 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1201.687830 from(601.851740,2+) title(Elution%20from%3a%2024=
%2e79%20to%2024%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(317)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h41_q317; if (NS4 || IE4) activateEl(=
'Q317', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D317&amp;hit=3D1&amp;index=3DIPI%3aIPI0001079=
6&amp;px=3D1"=20=0D
      target=3D_blank>317</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>601.85&nbsp;&nbsp;&nbsp;&nbsp;1201.69&nbsp;&nbsp;&=
nbsp;&nbsp;1201.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EADDIVNWLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1205.700994 from(603.858322,2+) title(Elution%20from%3a%2020=
%2e2%20to%2020%2e2%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(324)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h41_q324; if (NS4 || IE4) activateEl(=
'Q324', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D324&amp;hit=3D1&amp;index=3DIPI%3aIPI0001079=
6&amp;px=3D1"=20=0D
      target=3D_blank>324</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>603.86&nbsp;&nbsp;&nbsp;&nbsp;1205.70&nbsp;&nbsp;&=
nbsp;&nbsp;1205.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LITLEEEMTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1833.033579 from(612.019018,3+) title(Elution%20from%3a%2081=
%2e03%20to%2081%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1112)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h41_q1112; if (NS4 || IE4) activateEl=
('Q1112', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1112&amp;hit=3D1&amp;index=3DIPI%3aIPI000107=
96&amp;px=3D1"=20=0D
      target=3D_blank>1112</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>612.02&nbsp;&nbsp;&nbsp;&nbsp;1833.03&nbsp;&nbsp;&=
nbsp;&nbsp;1832.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ILFIFIDSDHTDNQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1964.138148 from(655.720541,3+) title(Elution%20from%3a%2074=
%2e35%20to%2074%2e35%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1278)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h41_q1278; if (NS4 || IE4) activateEl=
('Q1278', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1278&amp;hit=3D1&amp;index=3DIPI%3aIPI000107=
96&amp;px=3D1"=20=0D
      target=3D_blank>1278</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>655.72&nbsp;&nbsp;&nbsp;&nbsp;1964.14&nbsp;&nbsp;&=
nbsp;&nbsp;1964.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(10)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;HN=
QLPLVIEFTEQTAPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1964.175933 from(655.733136,3+) title(Elution%20from%3a%2077=
%2e35%20to%2077%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1279)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h41_q1279; if (NS4 || IE4) activateEl=
('Q1279', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1279&amp;hit=3D1&amp;index=3DIPI%3aIPI000107=
96&amp;px=3D1"=20=0D
      target=3D_blank>1279</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>655.73&nbsp;&nbsp;&nbsp;&nbsp;1964.18&nbsp;&nbsp;&=
nbsp;&nbsp;1964.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HNQLPLVIEFTEQTAPK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR=
>=0D
<A name=3DHit42><B>42.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00024093&=
amp;px=3D1">IPI:IPI00024093</A>  <B>Mass:</B> 36070   <B>Total score:</B> 4=
9  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P04406|REFSEQ_NP:NP_002037|REFSEQ_XP:XP_033263;XP_033260|ENS=
EMBL:ENSP00000229239 Glyceraldehyde 3-phosphate dehydrogenase, liver=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D42 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h42_q29; if (NS4 || IE4) activateEl('=
Q29', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D29&amp;hit=3D2&amp;index=3DIPI%3aIPI00024093=
&amp;px=3D1"=20=0D
      target=3D_blank>29</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>435.27&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;868.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;868.50&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;10&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;VIPELNGK</B></TT></TD=
></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2594.483718 from(865.835731,3+) title(Elution%20from%3a%2015=
0%2e21%20to%20150%2e21%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1756)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h42_q1756; if (NS4 || IE4) activateEl=
('Q1756', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1756&amp;hit=3D1&amp;index=3DIPI%3aIPI000240=
93&amp;px=3D1"=20=0D
      target=3D_blank>1756</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>865.84&nbsp;&nbsp;&nbsp;&nbsp;2594.48&nbsp;&nbsp;&=
nbsp;&nbsp;2594.35&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;39&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VIHDNFGIVEGLMTTVHAITATQK</B></FONT></TT></TD></TR></TBODY></TABLE><=
PRE><HR>=0D
<A name=3DHit43><B>43.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00029137&=
amp;px=3D1">IPI:IPI00029137</A>  <B>Mass:</B> 16610   <B>Total score:</B> 4=
6  <B>Peptides matched:</B> 2 =20=0D
    TREMBL:Q9BRL5|REFSEQ_XP:XP_028276 Similar to calmodulin 2=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D43 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"955.503728 from(478.759689,2+) title(Elution%20from%3a%2017%=
2e41%20to%2017%2e41%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycle=
s%3a%20%201%20%20) query(84)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h43_q84; if (NS4 || IE4) activateEl('=
Q84', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D84&amp;hit=3D1&amp;index=3DIPI%3aIPI00029137=
&amp;px=3D1"=20=0D
      target=3D_blank>84</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>478.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;955.50&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;955.47&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;EAFSLFDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1264.691534 from(633.353592,2+) title(Elution%20from%3a%208%=
2e65%20to%208%2e65%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(396)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h43_q396; if (NS4 || IE4) activateEl(=
'Q396', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D396&amp;hit=3D1&amp;index=3DIPI%3aIPI0002913=
7&amp;px=3D1"=20=0D
      target=3D_blank>396</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>633.35&nbsp;&nbsp;&nbsp;&nbsp;1264.69&nbsp;&nbsp;&=
nbsp;&nbsp;1264.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;27&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DGNGYISAAELR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Prote=
ins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00021474&amp;px=3D1">IPI:IPI00021474</A>=
  <B>Total score:</B> 46  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00001906&amp;px=3D1">IPI:IPI00001906</A>=
  <B>Total score:</B> 46  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00021470&amp;px=3D1">IPI:IPI00021470</A>=
  <B>Total score:</B> 46  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit44><B>44.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00013991&=
amp;px=3D1">IPI:IPI00013991</A>  <B>Mass:</B> 32945   <B>Total score:</B> 4=
1  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P07951|REFSEQ_XP:XP_048482 Tropomyosin beta chain, skeletal =
muscle=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D44 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h44_q379; if (NS4 || IE4) activateEl(=
'Q379', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D379&amp;hit=3D1&amp;index=3DIPI%3aIPI0001399=
1&amp;px=3D1"=20=0D
      target=3D_blank>379</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>622.37&nbsp;&nbsp;&nbsp;&nbsp;1242.72&nbsp;&nbsp;&nbs=
p;&nbsp;1242.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;40&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;IQLVEEELDR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h44_q930; if (NS4 || IE4) activateEl(=
'Q930', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D930&amp;hit=3D4&amp;index=3DIPI%3aIPI0001399=
1&amp;px=3D1"=20=0D
      target=3D_blank>930</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;558.01&nbsp;&nbs=
p;&nbsp;&nbsp;1671.00&nbsp;&nbsp;&nbsp;&nbsp;1670.88&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;LVILEGELERSEER</TT></TD></TR=
></TBODY></TABLE><PRE><B>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00026677&amp;px=3D1">IPI:IPI00026677</A>=
  <B>Total score:</B> 41  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit45><B>45.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00026621&=
amp;px=3D1">IPI:IPI00026621</A>  <B>Mass:</B> 18003   <B>Total score:</B> 4=
0  <B>Peptides matched:</B> 4 =20=0D
    TREMBL:Q9NQ02|REFSEQ_XP:XP_016842|ENSEMBL:ENSP00000246019 DJ999L4.1=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D45 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"880.570176 from(441.292913,2+) title(Elution%20from%3a%2012%=
2e51%20to%2012%2e51%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycle=
s%3a%20%201%20%20) query(39)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h45_q39; if (NS4 || IE4) activateEl('=
Q39', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D39&amp;hit=3D1&amp;index=3DIPI%3aIPI00026621=
&amp;px=3D1"=20=0D
      target=3D_blank>39</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>441.29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;880.57&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;880.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;IGPLGLSPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h45_q315; if (NS4 || IE4) activateEl(=
'Q315', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D315&amp;hit=3D5&amp;index=3DIPI%3aIPI0002662=
1&amp;px=3D1"=20=0D
      target=3D_blank>315</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>400.93&nbsp;&=
nbsp;&nbsp;&nbsp;1199.78&nbsp;&nbsp;&nbsp;&nbsp;1199.65&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;LPKFDPNEIK</B></TT></TD><=
/TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1684.963827 from(562.662434,3+) title(Elution%20from%3a%2066=
%2e36%20to%2066%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(948)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h45_q948; if (NS4 || IE4) activateEl(=
'Q948', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D948&amp;hit=3D1&amp;index=3DIPI%3aIPI0002662=
1&amp;px=3D1"=20=0D
      target=3D_blank>948</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>562.66&nbsp;&nbsp;&nbsp;&nbsp;1684.96&nbsp;&nbsp;&=
nbsp;&nbsp;1684.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(2)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;HSGNITFDEIVNIAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1684.988955 from(562.670810,3+) title(Elution%20from%3a%2069=
%2e47%20to%2069%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(949)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h45_q949; if (NS4 || IE4) activateEl(=
'Q949', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D949&amp;hit=3D1&amp;index=3DIPI%3aIPI0002662=
1&amp;px=3D1"=20=0D
      target=3D_blank>949</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>562.67&nbsp;&nbsp;&nbsp;&nbsp;1684.99&nbsp;&nbsp;&=
nbsp;&nbsp;1684.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HSGNITFDEIVNIAR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit46><B>46.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00011269&=
amp;px=3D1">IPI:IPI00011269</A>  <B>Mass:</B> 47168   <B>Total score:</B> 3=
8  <B>Peptides matched:</B> 4 =20=0D
    SWISS-PROT:P13929|REFSEQ_NP:NP_001967|TREMBL:Q9NPL4|REFSEQ_XP:XP_008524=
|ENSEMBL:ENSP00000225652 Beta enolase=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D46 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1540.850391 from(514.624622,3+) title(Elution%20from%3a%2017=
%2e83%20to%2017%2e83%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(741)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h46_q741; if (NS4 || IE4) activateEl(=
'Q741', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D741&amp;hit=3D1&amp;index=3DIPI%3aIPI0001126=
9&amp;px=3D1"=20=0D
      target=3D_blank>741</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>514.62&nbsp;&nbsp;&nbsp;&nbsp;1540.85&nbsp;&nbsp;&=
nbsp;&nbsp;1540.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;(27)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;LA=
QSNGWGVMVSHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1540.869280 from(771.442465,2+) title(Elution%20from%3a%2018=
%2e44%20to%2018%2e44%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(742)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h46_q742; if (NS4 || IE4) activateEl(=
'Q742', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D742&amp;hit=3D1&amp;index=3DIPI%3aIPI0001126=
9&amp;px=3D1"=20=0D
      target=3D_blank>742</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>771.44&nbsp;&nbsp;&nbsp;&nbsp;1540.87&nbsp;&nbsp;&=
nbsp;&nbsp;1540.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;31&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LAQSNGWGVMVSHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h46_q1078; if (NS4 || IE4) activateEl=
('Q1078', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1078&amp;hit=3D1&amp;index=3DIPI%3aIPI000112=
69&amp;px=3D1"=20=0D
      target=3D_blank>1078</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>602.37&nbsp;&nbsp;&nbsp;&nbsp;1804.07&nbsp;&nbsp;&nbs=
p;&nbsp;1803.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
AAVPSGASTGIYEALELR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h46_q1079; if (NS4 || IE4) activateEl=
('Q1079', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1079&amp;hit=3D1&amp;index=3DIPI%3aIPI000112=
69&amp;px=3D1"=20=0D
      target=3D_blank>1079</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>602.37&nbsp;&nbsp;&nbsp;&nbsp;1804.07&nbsp;&nbsp;&nbs=
p;&nbsp;1803.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;AAVPSGASTGIYEALELR</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit47><B>47.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00013485&=
amp;px=3D1">IPI:IPI00013485</A>  <B>Mass:</B> 31590   <B>Total score:</B> 3=
7  <B>Peptides matched:</B> 3 =20=0D
    SWISS-PROT:P15880|REFSEQ_NP:NP_002943|REFSEQ_XP:XP_049955;XP_034464;XP_=
045010|ENSEMBL:ENSP00000248131 40S ribosomal protein S2=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D47 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1024.644072 from(513.329861,2+) title(Elution%20from%3a%200%=
2e62%20to%200%2e62%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(130)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h47_q130; if (NS4 || IE4) activateEl(=
'Q130', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D130&amp;hit=3D1&amp;index=3DIPI%3aIPI0001348=
5&amp;px=3D1"=20=0D
      target=3D_blank>130</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>513.33&nbsp;&nbsp;&nbsp;&nbsp;1024.64&nbsp;&nbsp;&=
nbsp;&nbsp;1024.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GTGIVSAPVPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h47_q577; if (NS4 || IE4) activateEl(=
'Q577', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D577&amp;hit=3D2&amp;index=3DIPI%3aIPI0001348=
5&amp;px=3D1"=20=0D
      target=3D_blank>577</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>693.89&nbsp;&=
nbsp;&nbsp;&nbsp;1385.77&nbsp;&nbsp;&nbsp;&nbsp;1385.69&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;TYSYLTPDLWK</B></TT></TD>=
</TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1567.906776 from(784.961213,2+) title(Elution%20from%3a%2014=
0%2e37%20to%20140%2e37%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(761)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h47_q761; if (NS4 || IE4) activateEl(=
'Q761', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D761&amp;hit=3D1&amp;index=3DIPI%3aIPI0001348=
5&amp;px=3D1"=20=0D
      target=3D_blank>761</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>784.96&nbsp;&nbsp;&nbsp;&nbsp;1567.91&nbsp;&nbsp;&=
nbsp;&nbsp;1567.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ESEIIDFFLGASLK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Pro=
teins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00033867&amp;px=3D1">IPI:IPI00033867</A>=
  <B>Total score:</B> 37  <B>Peptides matched:</B> 3 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00031999&amp;px=3D1">IPI:IPI00031999</A>=
  <B>Total score:</B> 37  <B>Peptides matched:</B> 3 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00012186&amp;px=3D1">IPI:IPI00012186</A>=
  <B>Total score:</B> 37  <B>Peptides matched:</B> 3 =20=0D
=0D
<HR>=0D
<A name=3DHit48><B>48.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00029036&=
amp;px=3D1">IPI:IPI00029036</A>  <B>Mass:</B> 51074   <B>Total score:</B> 3=
7  <B>Peptides matched:</B> 3 =20=0D
    ENSEMBL:ENSP00000219675=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D48 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h48_q34; if (NS4 || IE4) activateEl('=
Q34', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D34&amp;hit=3D3&amp;index=3DIPI%3aIPI00029036=
&amp;px=3D1"=20=0D
      target=3D_blank>34</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>437.79&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;873.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;873.49&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;AAEAGKVTK</B></T=
T></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h48_q50; if (NS4 || IE4) activateEl('=
Q50', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D50&amp;hit=3D1&amp;index=3DIPI%3aIPI00029036=
&amp;px=3D1"=20=0D
      target=3D_blank>50</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>457.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;913.59&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;913.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;QTVAVGVIK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h48_q131; if (NS4 || IE4) activateEl(=
'Q131', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D131&amp;hit=3D1&amp;index=3DIPI%3aIPI0002903=
6&amp;px=3D1"=20=0D
      target=3D_blank>131</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>513.34&nbsp;&nbsp;&nbsp;&nbsp;1024.66&nbsp;&nbsp;&nbs=
p;&nbsp;1024.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;IGGIGTVPVGR</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit49><B>49.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00029286&=
amp;px=3D1">IPI:IPI00029286</A>  <B>Mass:</B> 21958   <B>Total score:</B> 3=
5  <B>Peptides matched:</B> 3 =20=0D
    SWISS-PROT:P08590|REFSEQ_NP:NP_000249|TREMBL:Q14909|REFSEQ_XP:XP_002896=
;XP_033741|ENSEMBL:ENSP00000232341 Myosin light chain 1, slow-twitch muscle=
 B/ventricular isoform=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D49 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h49_q103; if (NS4 || IE4) activateEl(=
'Q103', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D103&amp;hit=3D3&amp;index=3DIPI%3aIPI0002928=
6&amp;px=3D1"=20=0D
      target=3D_blank>103</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;498.32&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;994.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;994.56&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;(12)&nbsp;&=
nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;HVLATLGER</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h49_q104; if (NS4 || IE4) activateEl(=
'Q104', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D104&amp;hit=3D3&amp;index=3DIPI%3aIPI0002928=
6&amp;px=3D1"=20=0D
      target=3D_blank>104</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;498.32&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;994.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;994.56&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;14&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;HVLATLGER</TT></TD></TR=
>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h49_q368; if (NS4 || IE4) activateEl(=
'Q368', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D368&amp;hit=3D1&amp;index=3DIPI%3aIPI0002928=
6&amp;px=3D1"=20=0D
      target=3D_blank>368</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>617.34&nbsp;&nbsp;&nbsp;&nbsp;1232.66&nbsp;&nbsp;&nbs=
p;&nbsp;1232.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;EGNGTVMGAELR</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit50><B>50.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00005762&=
amp;px=3D1">IPI:IPI00005762</A>  <B>Mass:</B> 50804   <B>Total score:</B> 3=
3  <B>Peptides matched:</B> 5 =20=0D
    REFSEQ_NP:NP_006073 tubulin, alpha, ubiquitous=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D50 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1379.733201 from(460.918892,3+) title(Elution%20from%3a%2018=
%2e8%20to%2018%2e8%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(574)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h50_q574; if (NS4 || IE4) activateEl(=
'Q574', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D574&amp;hit=3D1&amp;index=3DIPI%3aIPI0000576=
2&amp;px=3D1"=20=0D
      target=3D_blank>574</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>460.92&nbsp;&nbsp;&nbsp;&nbsp;1379.73&nbsp;&nbsp;&=
nbsp;&nbsp;1379.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LDHKFDLMYAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1486.939536 from(496.654337,3+) title(Elution%20from%3a%2014=
8%2e32%20to%20148%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(690)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h50_q690; if (NS4 || IE4) activateEl(=
'Q690', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D690&amp;hit=3D1&amp;index=3DIPI%3aIPI0000576=
2&amp;px=3D1"=20=0D
      target=3D_blank>690</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>496.65&nbsp;&nbsp;&nbsp;&nbsp;1486.94&nbsp;&nbsp;&=
nbsp;&nbsp;1486.87&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(9)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;LISQIVSSITASLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1486.961762 from(744.488706,2+) title(Elution%20from%3a%2015=
0%2e55%20to%20150%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(692)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h50_q692; if (NS4 || IE4) activateEl(=
'Q692', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D692&amp;hit=3D1&amp;index=3DIPI%3aIPI0000576=
2&amp;px=3D1"=20=0D
      target=3D_blank>692</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>744.49&nbsp;&nbsp;&nbsp;&nbsp;1486.96&nbsp;&nbsp;&=
nbsp;&nbsp;1486.87&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LISQIVSSITASLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1756.069230 from(586.364235,3+) title(Elution%20from%3a%2049=
%2e46%20to%2049%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1007)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h50_q1007; if (NS4 || IE4) activateEl=
('Q1007', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1007&amp;hit=3D1&amp;index=3DIPI%3aIPI000057=
62&amp;px=3D1"=20=0D
      target=3D_blank>1007</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>586.36&nbsp;&nbsp;&nbsp;&nbsp;1756.07&nbsp;&nbsp;&=
nbsp;&nbsp;1755.96&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IHFPLATYAPVISAEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1824.065139 from(609.029538,3+) title(Elution%20from%3a%2015=
%2e99%20to%2015%2e99%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1099)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h50_q1099; if (NS4 || IE4) activateEl=
('Q1099', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1099&amp;hit=3D1&amp;index=3DIPI%3aIPI000057=
62&amp;px=3D1"=20=0D
      target=3D_blank>1099</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>609.03&nbsp;&nbsp;&nbsp;&nbsp;1824.07&nbsp;&nbsp;&=
nbsp;&nbsp;1823.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VGINYQPPTVVPGGDLAK</B></FONT></TT></TD></TR></TBODY></TABLE><P=
RE><B>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00007750&amp;px=3D1">IPI:IPI00007750</A>=
  <B>Total score:</B> 33  <B>Peptides matched:</B> 5 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00013442&amp;px=3D1">IPI:IPI00013442</A>=
  <B>Total score:</B> 33  <B>Peptides matched:</B> 5 =20=0D
=0D
<HR>=0D
<A name=3DHit51><B>51.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00027006&=
amp;px=3D1">IPI:IPI00027006</A>  <B>Mass:</B> 56525   <B>Total score:</B> 3=
3  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P06576|REFSEQ_NP:NP_001677|ENSEMBL:ENSP00000262030 ATP synth=
ase beta chain, mitochondrial precursor=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D51 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1650.013740 from(551.012405,3+) title(Elution%20from%3a%2046=
%20to%2046%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20%2=
01%20%20) query(882)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h51_q882; if (NS4 || IE4) activateEl(=
'Q882', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D882&amp;hit=3D1&amp;index=3DIPI%3aIPI0002700=
6&amp;px=3D1"=20=0D
      target=3D_blank>882</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>551.01&nbsp;&nbsp;&nbsp;&nbsp;1650.01&nbsp;&nbsp;&=
nbsp;&nbsp;1649.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LVLEVAQHLGESTVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1921.083522 from(641.368999,3+) title(Elution%20from%3a%2016=
6%2e99%20to%20166%2e99%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1242)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h51_q1242; if (NS4 || IE4) activateEl=
('Q1242', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1242&amp;hit=3D1&amp;index=3DIPI%3aIPI000270=
06&amp;px=3D1"=20=0D
      target=3D_blank>1242</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>641.37&nbsp;&nbsp;&nbsp;&nbsp;1921.08&nbsp;&nbsp;&=
nbsp;&nbsp;1920.96&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;31&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DQEGQDVLLFIDNIFR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit52><B>52.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00000880&=
amp;px=3D1">IPI:IPI00000880</A>  <B>Mass:</B> 129289   <B>Total score:</B> =
32  <B>Peptides matched:</B> 5 =20=0D
    SWISS-PROT:P42684|REFSEQ_NP:NP_009298|REFSEQ_XP:XP_010616 Tyrosine-prot=
ein kinase ABL2=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D52 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h52_q27; if (NS4 || IE4) activateEl('=
Q27', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D27&amp;hit=3D1&amp;index=3DIPI%3aIPI00000880=
&amp;px=3D1"=20=0D
      target=3D_blank>27</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>432.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;863.51&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;863.45&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbs=
p;&nbsp;&nbsp;&nbsp;VADFGLSR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h52_q37; if (NS4 || IE4) activateEl('=
Q37', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D37&amp;hit=3D2&amp;index=3DIPI%3aIPI00000880=
&amp;px=3D1"=20=0D
      target=3D_blank>37</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;440.78&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;879.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;879.51&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;16&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;YSLTVAVK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h52_q557; if (NS4 || IE4) activateEl(=
'Q557', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D557&amp;hit=3D2&amp;index=3DIPI%3aIPI0000088=
0&amp;px=3D1"=20=0D
      target=3D_blank>557</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;685.37&nbsp;&nbs=
p;&nbsp;&nbsp;1368.73&nbsp;&nbsp;&nbsp;&nbsp;1368.61&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(4)&nbsp;&nbsp;=
&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;EDTMEVEEFLK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h52_q558; if (NS4 || IE4) activateEl(=
'Q558', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D558&amp;hit=3D1&amp;index=3DIPI%3aIPI0000088=
0&amp;px=3D1"=20=0D
      target=3D_blank>558</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>685.38&nbsp;&nbsp;&nbsp;&nbsp;1368.74&nbsp;&nbsp;&nbs=
p;&nbsp;1368.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;EDTMEVEEFLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h52_q570; if (NS4 || IE4) activateEl(=
'Q570', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D570&amp;hit=3D10&amp;index=3DIPI%3aIPI000008=
80&amp;px=3D1"=20=0D
      target=3D_blank>570</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>459.93&nbsp;&=
nbsp;&nbsp;&nbsp;1376.75&nbsp;&nbsp;&nbsp;&nbsp;1376.66&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;MAMTLPRNCQR</B></TT></TD></TR>=
</TBODY></TABLE><PRE><B>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00021424&amp;px=3D1">IPI:IPI00021424</A>=
  <B>Total score:</B> 32  <B>Peptides matched:</B> 5 =20=0D
=0D
<HR>=0D
<A name=3DHit53><B>53.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00001376&=
amp;px=3D1">IPI:IPI00001376</A>  <B>Mass:</B> 14792   <B>Total score:</B> 3=
1  <B>Peptides matched:</B> 1 =20=0D
    REFSEQ_XP:XP_046557 hypothetical protein XP_046557=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D53 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1126.656304 from(564.335977,2+) title(Elution%20from%3a%2012=
%2e38%20to%2012%2e38%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(204)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h53_q204; if (NS4 || IE4) activateEl(=
'Q204', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D204&amp;hit=3D1&amp;index=3DIPI%3aIPI0000137=
6&amp;px=3D1"=20=0D
      target=3D_blank>204</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>564.34&nbsp;&nbsp;&nbsp;&nbsp;1126.66&nbsp;&nbsp;&=
nbsp;&nbsp;1126.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;WQNNLLPSR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Proteins=
 matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00022754&amp;px=3D1">IPI:IPI00022754</A>=
  <B>Total score:</B> 31  <B>Peptides matched:</B> 1 =20=0D
=0D
<HR>=0D
<A name=3DHit54><B>54.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00013296&=
amp;px=3D1">IPI:IPI00013296</A>  <B>Mass:</B> 17708   <B>Total score:</B> 3=
1  <B>Peptides matched:</B> 3 =20=0D
    SWISS-PROT:P25232|REFSEQ_NP:NP_072045|REFSEQ_XP:XP_016854|ENSEMBL:ENSP0=
0000211372 40S ribosomal protein S18=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D54 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h54_q73; if (NS4 || IE4) activateEl('=
Q73', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D73&amp;hit=3D2&amp;index=3DIPI%3aIPI00013296=
&amp;px=3D1"=20=0D
      target=3D_blank>73</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>474.31&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;946.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;946.59&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;11&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;IAFAITAIK</B></TT></T=
D></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1070.637716 from(536.326683,2+) title(Elution%20from%3a%209%=
2e73%20to%209%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(167)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h54_q167; if (NS4 || IE4) activateEl(=
'Q167', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D167&amp;hit=3D1&amp;index=3DIPI%3aIPI0001329=
6&amp;px=3D1"=20=0D
      target=3D_blank>167</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>536.33&nbsp;&nbsp;&nbsp;&nbsp;1070.64&nbsp;&nbsp;&=
nbsp;&nbsp;1070.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VITIMQNPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1320.761954 from(661.388802,2+) title(Elution%20from%3a%206%=
2e56%20to%206%2e56%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(470)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h54_q470; if (NS4 || IE4) activateEl(=
'Q470', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D470&amp;hit=3D1&amp;index=3DIPI%3aIPI0001329=
6&amp;px=3D1"=20=0D
      target=3D_blank>470</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>661.39&nbsp;&nbsp;&nbsp;&nbsp;1320.76&nbsp;&nbsp;&=
nbsp;&nbsp;1320.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YSQVLANGLDNK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR=
>=0D
<A name=3DHit55><B>55.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00029191&=
amp;px=3D1">IPI:IPI00029191</A>  <B>Mass:</B> 15657   <B>Total score:</B> 3=
0  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P08526|REFSEQ_NP:NP_000979|REFSEQ_XP:XP_008208;XP_032124|ENS=
EMBL:ENSP00000253788 60S ribosomal protein L27=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D55 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1048.598520 from(525.307085,2+) title(Elution%20from%3a%2013=
%2e29%20to%2013%2e29%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(153)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h55_q153; if (NS4 || IE4) activateEl(=
'Q153', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D153&amp;hit=3D1&amp;index=3DIPI%3aIPI0002919=
1&amp;px=3D1"=20=0D
      target=3D_blank>153</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>525.31&nbsp;&nbsp;&nbsp;&nbsp;1048.60&nbsp;&nbsp;&=
nbsp;&nbsp;1048.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;YSVDIPLDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h55_q602; if (NS4 || IE4) activateEl(=
'Q602', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D602&amp;hit=3D2&amp;index=3DIPI%3aIPI0002919=
1&amp;px=3D1"=20=0D
      target=3D_blank>602</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>469.92&nbsp;&=
nbsp;&nbsp;&nbsp;1406.74&nbsp;&nbsp;&nbsp;&nbsp;1406.68&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;VYNYNHLMPTR</B></TT></TD>=
</TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit56><B>56.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00000952&=
amp;px=3D1">IPI:IPI00000952</A>  <B>Mass:</B> 28769   <B>Total score:</B> 2=
9  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:P18669|REFSEQ_NP:NP_002620|REFSEQ_XP:XP_050862;XP_017950;XP_=
050863;XP_012219|ENSEMBL:ENSP00000240058;ENSP00000258502 Phosphoglycerate m=
utase, brain form=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D56 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2155.295463 from(719.439646,3+) title(Elution%20from%3a%2019=
6%2e04%20to%20196%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1472)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h56_q1472; if (NS4 || IE4) activateEl=
('Q1472', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1472&amp;hit=3D1&amp;index=3DIPI%3aIPI000009=
52&amp;px=3D1"=20=0D
      target=3D_blank>1472</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>719.44&nbsp;&nbsp;&nbsp;&nbsp;2155.30&nbsp;&nbsp;&=
nbsp;&nbsp;2155.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TLWTVLDAIDQMWLPVVR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B=
>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00032169&amp;px=3D1">IPI:IPI00032169</A>=
  <B>Total score:</B> 29  <B>Peptides matched:</B> 1 =20=0D
=0D
<HR>=0D
<A name=3DHit57><B>57.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00013889&=
amp;px=3D1">IPI:IPI00013889</A>  <B>Mass:</B> 28048   <B>Total score:</B> 2=
8  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P31946|REFSEQ_NP:NP_003395|REFSEQ_XP:XP_029816;XP_009519|ENS=
EMBL:ENSP00000217069 14-3-3 protein beta/alpha=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D57 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h57_q275; if (NS4 || IE4) activateEl(=
'Q275', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D275&amp;hit=3D2&amp;index=3DIPI%3aIPI0001388=
9&amp;px=3D1"=20=0D
      target=3D_blank>275</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>595.37&nbsp;&=
nbsp;&nbsp;&nbsp;1188.72&nbsp;&nbsp;&nbsp;&nbsp;1188.65&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&n=
bsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;DSTLIMQLLR</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1188.728478 from(595.372064,2+) title(Elution%20from%3a%2084=
%20to%2084%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20%2=
01%20%20) query(276)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h57_q276; if (NS4 || IE4) activateEl(=
'Q276', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D276&amp;hit=3D1&amp;index=3DIPI%3aIPI0001388=
9&amp;px=3D1"=20=0D
      target=3D_blank>276</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>595.37&nbsp;&nbsp;&nbsp;&nbsp;1188.73&nbsp;&nbsp;&=
nbsp;&nbsp;1188.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DSTLIMQLLR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Protein=
s matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00013890&amp;px=3D1">IPI:IPI00013890</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00033598&amp;px=3D1">IPI:IPI00033598</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00030286&amp;px=3D1">IPI:IPI00030286</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00018146&amp;px=3D1">IPI:IPI00018146</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00000816&amp;px=3D1">IPI:IPI00000816</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00010705&amp;px=3D1">IPI:IPI00010705</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00021263&amp;px=3D1">IPI:IPI00021263</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00026678&amp;px=3D1">IPI:IPI00026678</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit58><B>58.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00008530&=
amp;px=3D1">IPI:IPI00008530</A>  <B>Mass:</B> 34423   <B>Total score:</B> 2=
8  <B>Peptides matched:</B> 3 =20=0D
    SWISS-PROT:P05388|REFSEQ_NP:NP_000993|ENSEMBL:ENSP00000228306 60S acidi=
c ribosomal protein P0=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D58 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1312.790960 from(657.403305,2+) title(Elution%20from%3a%2066=
%2e28%20to%2066%2e28%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(453)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h58_q453; if (NS4 || IE4) activateEl(=
'Q453', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D453&amp;hit=3D1&amp;index=3DIPI%3aIPI0000853=
0&amp;px=3D1"=20=0D
      target=3D_blank>453</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>657.40&nbsp;&nbsp;&nbsp;&nbsp;1312.79&nbsp;&nbsp;&=
nbsp;&nbsp;1312.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;TSFFQALGITTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1312.796014 from(657.405832,2+) title(Elution%20from%3a%2069=
%2e26%20to%2069%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(454)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h58_q454; if (NS4 || IE4) activateEl(=
'Q454', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D454&amp;hit=3D1&amp;index=3DIPI%3aIPI0000853=
0&amp;px=3D1"=20=0D
      target=3D_blank>454</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>657.41&nbsp;&nbsp;&nbsp;&nbsp;1312.80&nbsp;&nbsp;&=
nbsp;&nbsp;1312.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TSFFQALGITTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1427.935032 from(714.975341,2+) title(Elution%20from%3a%2079=
%2e11%20to%2079%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(620)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h58_q620; if (NS4 || IE4) activateEl(=
'Q620', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D620&amp;hit=3D1&amp;index=3DIPI%3aIPI0000853=
0&amp;px=3D1"=20=0D
      target=3D_blank>620</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>714.98&nbsp;&nbsp;&nbsp;&nbsp;1427.94&nbsp;&nbsp;&=
nbsp;&nbsp;1427.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GTIEILSDVQLIK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B=
>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00031638&amp;px=3D1">IPI:IPI00031638</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 3 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00010718&amp;px=3D1">IPI:IPI00010718</A>=
  <B>Total score:</B> 28  <B>Peptides matched:</B> 3 =20=0D
=0D
<HR>=0D
<A name=3DHit59><B>59.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00016774&=
amp;px=3D1">IPI:IPI00016774</A>  <B>Mass:</B> 36024   <B>Total score:</B> 2=
8  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P00354 Glyceraldehyde 3-phosphate dehydrogenase, muscle=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D59 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h59_q8; if (NS4 || IE4) activateEl('Q=
8', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D8&amp;hit=3D5&amp;index=3DIPI%3aIPI00016774&=
amp;px=3D1"=20=0D
      target=3D_blank>8</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;403.75&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;805.47&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;805.41&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;VGVDGFGR</TT></TD></=
TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1368.835048 from(685.425349,2+) title(Elution%20from%3a%200%=
2e03%20to%200%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(560)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h59_q560; if (NS4 || IE4) activateEl(=
'Q560', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D560&amp;hit=3D1&amp;index=3DIPI%3aIPI0001677=
4&amp;px=3D1"=20=0D
      target=3D_blank>560</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>685.43&nbsp;&nbsp;&nbsp;&nbsp;1368.84&nbsp;&nbsp;&=
nbsp;&nbsp;1368.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;26&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GAAQNLIPASTGAAK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit60><B>60.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00020052&=
amp;px=3D1">IPI:IPI00020052</A>  <B>Mass:</B> 8560   <B>Total score:</B> 27=
  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P02248|REFSEQ_XP:XP_012614|ENSEMBL:ENSP00000075179 Ubiquitin=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D60 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1066.675382 from(534.345516,2+) title(Elution%20from%3a%2022=
%2e99%20to%2022%2e99%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(164)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h60_q164; if (NS4 || IE4) activateEl(=
'Q164', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D164&amp;hit=3D1&amp;index=3DIPI%3aIPI0002005=
2&amp;px=3D1"=20=0D
      target=3D_blank>164</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>534.35&nbsp;&nbsp;&nbsp;&nbsp;1066.68&nbsp;&nbsp;&=
nbsp;&nbsp;1066.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ESTLHLVLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1787.043813 from(596.689096,3+) title(Elution%20from%3a%2022=
%2e73%20to%2022%2e73%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1060)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h60_q1060; if (NS4 || IE4) activateEl=
('Q1060', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1060&amp;hit=3D1&amp;index=3DIPI%3aIPI000200=
52&amp;px=3D1"=20=0D
      target=3D_blank>1060</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>596.69&nbsp;&nbsp;&nbsp;&nbsp;1787.04&nbsp;&nbsp;&=
nbsp;&nbsp;1786.92&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TITLEVEPSDTIENVK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>P=
roteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00024553&amp;px=3D1">IPI:IPI00024553</A>=
  <B>Total score:</B> 27  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00019574&amp;px=3D1">IPI:IPI00019574</A>=
  <B>Total score:</B> 27  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00004411&amp;px=3D1">IPI:IPI00004411</A>=
  <B>Total score:</B> 24  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00033291&amp;px=3D1">IPI:IPI00033291</A>=
  <B>Total score:</B> 24  <B>Peptides matched:</B> 2 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00004099&amp;px=3D1">IPI:IPI00004099</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit61><B>61.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00007781&=
amp;px=3D1">IPI:IPI00007781</A>  <B>Mass:</B> 403030   <B>Total score:</B> =
25  <B>Peptides matched:</B> 3 =20=0D
    REFSEQ_NP:NP_055816|TREMBL:Q9H9A8;Q9NUD0;Q9Y556;Q9UQ01;Q9NWH5|REFSEQ_XP=
:XP_048815;XP_057104;XP_057105|ENSEMBL:ENSP00000241542;ENSP00000241546 SMAR=
T/HDAC1 associated repressor protein=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D61 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1100.676852 from(551.346251,2+) title(Elution%20from%3a%2010=
%2e43%20to%2010%2e43%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(188)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h61_q188; if (NS4 || IE4) activateEl(=
'Q188', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D188&amp;hit=3D1&amp;index=3DIPI%3aIPI0000778=
1&amp;px=3D1"=20=0D
      target=3D_blank>188</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>551.35&nbsp;&nbsp;&nbsp;&nbsp;1100.68&nbsp;&nbsp;&=
nbsp;&nbsp;1100.57&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ESGVVAVSPEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h61_q264; if (NS4 || IE4) activateEl(=
'Q264', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D264&amp;hit=3D7&amp;index=3DIPI%3aIPI0000778=
1&amp;px=3D1"=20=0D
      target=3D_blank>264</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>592.34&nbsp;&=
nbsp;&nbsp;&nbsp;1182.66&nbsp;&nbsp;&nbsp;&nbsp;1182.62&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;GLSSHVEVVEK</B></TT></TD>=
</TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h61_q336; if (NS4 || IE4) activateEl(=
'Q336', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D336&amp;hit=3D8&amp;index=3DIPI%3aIPI0000778=
1&amp;px=3D1"=20=0D
      target=3D_blank>336</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>608.86&nbsp;&=
nbsp;&nbsp;&nbsp;1215.71&nbsp;&nbsp;&nbsp;&nbsp;1215.68&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;GSKEVEVTLVR</B></TT></TD>=
</TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit62><B>62.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00025777&=
amp;px=3D1">IPI:IPI00025777</A>  <B>Mass:</B> 31850   <B>Total score:</B> 2=
5  <B>Peptides matched:</B> 6 =20=0D
    TREMBL:Q9UJD9|REFSEQ_XP:XP_018086;XP_029888|ENSEMBL:ENSP00000244091 DJ6=
88G8.1=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D62 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h62_q130; if (NS4 || IE4) activateEl(=
'Q130', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D130&amp;hit=3D1&amp;index=3DIPI%3aIPI0002577=
7&amp;px=3D1"=20=0D
      target=3D_blank>130</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>513.33&nbsp;&nbsp;&nbsp;&nbsp;1024.64&nbsp;&nbsp;&nbs=
p;&nbsp;1024.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;GTGIVSAPVPK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.225172 from(550.814118,4+) title(Elution%20from%3a%2013=
9%2e8%20to%20139%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1510)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h62_q1510; if (NS4 || IE4) activateEl=
('Q1510', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1510&amp;hit=3D1&amp;index=3DIPI%3aIPI000257=
77&amp;px=3D1"=20=0D
      target=3D_blank>1510</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>550.81&nbsp;&nbsp;&nbsp;&nbsp;2199.23&nbsp;&nbsp;&=
nbsp;&nbsp;2199.11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;(7)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;ETVFTKSLYEEFTDHLIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.227472 from(550.814693,4+) title(Elution%20from%3a%2014=
2%2e89%20to%20142%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1511)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h62_q1511; if (NS4 || IE4) activateEl=
('Q1511', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1511&amp;hit=3D1&amp;index=3DIPI%3aIPI000257=
77&amp;px=3D1"=20=0D
      target=3D_blank>1511</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>550.81&nbsp;&nbsp;&nbsp;&nbsp;2199.23&nbsp;&nbsp;&=
nbsp;&nbsp;2199.11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;(6)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;ETVFTKSLYEEFTDHLIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.229784 from(550.815271,4+) title(Elution%20from%3a%2013=
3%2e19%20to%20133%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1513)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h62_q1513; if (NS4 || IE4) activateEl=
('Q1513', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1513&amp;hit=3D1&amp;index=3DIPI%3aIPI000257=
77&amp;px=3D1"=20=0D
      target=3D_blank>1513</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>550.82&nbsp;&nbsp;&nbsp;&nbsp;2199.23&nbsp;&nbsp;&=
nbsp;&nbsp;2199.11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ETVFTKSLYEEFTDHLIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.235248 from(550.816637,4+) title(Elution%20from%3a%2012=
9%2e27%20to%20129%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1514)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h62_q1514; if (NS4 || IE4) activateEl=
('Q1514', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1514&amp;hit=3D1&amp;index=3DIPI%3aIPI000257=
77&amp;px=3D1"=20=0D
      target=3D_blank>1514</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>550.82&nbsp;&nbsp;&nbsp;&nbsp;2199.24&nbsp;&nbsp;&=
nbsp;&nbsp;2199.11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;(6)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;ETVFTKSLYEEFTDHLIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.241588 from(550.818222,4+) title(Elution%20from%3a%2014=
5%2e98%20to%20145%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1516)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h62_q1516; if (NS4 || IE4) activateEl=
('Q1516', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1516&amp;hit=3D1&amp;index=3DIPI%3aIPI000257=
77&amp;px=3D1"=20=0D
      target=3D_blank>1516</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>550.82&nbsp;&nbsp;&nbsp;&nbsp;2199.24&nbsp;&nbsp;&=
nbsp;&nbsp;2199.11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;(8)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;ETVFTKSLYEEFTDHLIK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit63><B>63.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00020165&=
amp;px=3D1">IPI:IPI00020165</A>  <B>Mass:</B> 52219   <B>Total score:</B> 2=
5  <B>Peptides matched:</B> 1 =20=0D
    REFSEQ_NP:NP_003456|TREMBL:Q13231;Q9H3V8|REFSEQ_XP:XP_001685;XP_046771|=
ENSEMBL:ENSP00000255427 CHITOTRIOSIDASE PRECURSOR=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D63 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h63_q213; if (NS4 || IE4) activateEl(=
'Q213', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D213&amp;hit=3D2&amp;index=3DIPI%3aIPI0002016=
5&amp;px=3D1"=20=0D
      target=3D_blank>213</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;568.87&nbsp;&nbs=
p;&nbsp;&nbsp;1135.73&nbsp;&nbsp;&nbsp;&nbsp;1135.61&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;25&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;LILGMPTYGR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit64><B>64.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00002844&=
amp;px=3D1">IPI:IPI00002844</A>  <B>Mass:</B> 128142   <B>Total score:</B> =
24  <B>Peptides matched:</B> 6 =20=0D
    SWISS-PROT:Q16531|REFSEQ_NP:NP_001914|TREMBL:Q13289|REFSEQ_XP:XP_011977=
;XP_054213;XP_054214|ENSEMBL:ENSP00000252054;ENSP00000257216;ENSP0000025724=
0 DNA damage binding protein 1=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D64 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1005.636638 from(503.826144,2+) title(Elution%20from%3a%2083=
%2e13%20to%2083%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(117)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h64_q117; if (NS4 || IE4) activateEl(=
'Q117', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D117&amp;hit=3D1&amp;index=3DIPI%3aIPI0000284=
4&amp;px=3D1"=20=0D
      target=3D_blank>117</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>503.83&nbsp;&nbsp;&nbsp;&nbsp;1005.64&nbsp;&nbsp;&=
nbsp;&nbsp;1005.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LFMLLLEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1032.679894 from(517.347772,2+) title(Elution%20from%3a%2086=
%2e76%20to%2086%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(141)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h64_q141; if (NS4 || IE4) activateEl(=
'Q141', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D141&amp;hit=3D1&amp;index=3DIPI%3aIPI0000284=
4&amp;px=3D1"=20=0D
      target=3D_blank>141</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>517.35&nbsp;&nbsp;&nbsp;&nbsp;1032.68&nbsp;&nbsp;&=
nbsp;&nbsp;1032.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DLLFILTAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h64_q319; if (NS4 || IE4) activateEl(=
'Q319', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D319&amp;hit=3D8&amp;index=3DIPI%3aIPI0000284=
4&amp;px=3D1"=20=0D
      target=3D_blank>319</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;602.34&nbsp;&nbs=
p;&nbsp;&nbsp;1202.67&nbsp;&nbsp;&nbsp;&nbsp;1202.68&nbsp;&nbsp;&nbsp;&nbsp=
;-0.01&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;IAVMELFRPK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h64_q674; if (NS4 || IE4) activateEl(=
'Q674', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D674&amp;hit=3D4&amp;index=3DIPI%3aIPI0000284=
4&amp;px=3D1"=20=0D
      target=3D_blank>674</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;740.91&nbsp;&nbs=
p;&nbsp;&nbsp;1479.79&nbsp;&nbsp;&nbsp;&nbsp;1479.73&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(5)&nbsp;&nbsp;=
&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;QGQGQLVTCSGAFK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h64_q675; if (NS4 || IE4) activateEl(=
'Q675', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D675&amp;hit=3D4&amp;index=3DIPI%3aIPI0000284=
4&amp;px=3D1"=20=0D
      target=3D_blank>675</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;740.91&nbsp;&nbs=
p;&nbsp;&nbsp;1479.80&nbsp;&nbsp;&nbsp;&nbsp;1479.73&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;QGQGQLVTCSGAFK</TT></TD></TR=
>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h64_q677; if (NS4 || IE4) activateEl(=
'Q677', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D677&amp;hit=3D4&amp;index=3DIPI%3aIPI0000284=
4&amp;px=3D1"=20=0D
      target=3D_blank>677</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;740.91&nbsp;&nbs=
p;&nbsp;&nbsp;1479.81&nbsp;&nbsp;&nbsp;&nbsp;1479.73&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(6)&nbsp;&nbsp;=
&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;QGQGQLVTCSGAFK</TT></TD></TR></TBODY><=
/TABLE><PRE><HR>=0D
<A name=3DHit65><B>65.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00013003&=
amp;px=3D1">IPI:IPI00013003</A>  <B>Mass:</B> 281569   <B>Total score:</B> =
23  <B>Peptides matched:</B> 3 =20=0D
    SWISS-PROT:O00763|REFSEQ_NP:NP_001084 Acetyl-CoA carboxylase 2=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D65 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h65_q51; if (NS4 || IE4) activateEl('=
Q51', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D51&amp;hit=3D4&amp;index=3DIPI%3aIPI00013003=
&amp;px=3D1"=20=0D
      target=3D_blank>51</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>458.29&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;914.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;914.51&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;LVPSKEDK</B></TT=
></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h65_q371; if (NS4 || IE4) activateEl(=
'Q371', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D371&amp;hit=3D5&amp;index=3DIPI%3aIPI0001300=
3&amp;px=3D1"=20=0D
      target=3D_blank>371</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>617.85&nbsp;&=
nbsp;&nbsp;&nbsp;1233.68&nbsp;&nbsp;&nbsp;&nbsp;1233.62&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;MIMTLNVQER</B></TT></TD><=
/TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1953.160884 from(652.061453,3+) title(Elution%20from%3a%2027=
%2e46%20to%2027%2e46%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1253)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h65_q1253; if (NS4 || IE4) activateEl=
('Q1253', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1253&amp;hit=3D1&amp;index=3DIPI%3aIPI000130=
03&amp;px=3D1"=20=0D
      target=3D_blank>1253</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>652.06&nbsp;&nbsp;&nbsp;&nbsp;1953.16&nbsp;&nbsp;&nbs=
p;&nbsp;1953.03&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;HLEPALAFQLELNRMR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit66><B>66.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00022003&=
amp;px=3D1">IPI:IPI00022003</A>  <B>Mass:</B> 14310   <B>Total score:</B> 2=
3  <B>Peptides matched:</B> 1 =20=0D
    ENSEMBL:ENSP00000256620=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D66 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1369.834998 from(685.925324,2+) title(Elution%20from%3a%200%=
2e28%20to%200%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(562)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h66_q562; if (NS4 || IE4) activateEl(=
'Q562', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D562&amp;hit=3D1&amp;index=3DIPI%3aIPI0002200=
3&amp;px=3D1"=20=0D
      target=3D_blank>562</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>685.93&nbsp;&nbsp;&nbsp;&nbsp;1369.83&nbsp;&nbsp;&=
nbsp;&nbsp;1369.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SLQNIIPASTGAAK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit67><B>67.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00023635&=
amp;px=3D1">IPI:IPI00023635</A>  <B>Mass:</B> 31757   <B>Total score:</B> 2=
2  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:O14732|REFSEQ_NP:NP_055029|TREMBL:Q9UJT3|REFSEQ_XP:XP_008727=
 Myo-inositol-1(or 4)-monophosphatase 2=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D67 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h67_q7; if (NS4 || IE4) activateEl('Q=
7', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D7&amp;hit=3D3&amp;index=3DIPI%3aIPI00023635&=
amp;px=3D1"=20=0D
      target=3D_blank>7</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>400.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;799.57&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;799.46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbs=
p;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;RDPATLK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit68><B>68.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00005753&=
amp;px=3D1">IPI:IPI00005753</A>  <B>Mass:</B> 73905   <B>Total score:</B> 2=
2  <B>Peptides matched:</B> 1 =20=0D
    TREMBL:O15271|REFSEQ_XP:XP_042544 SYNAPTOPODIN=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D68 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h68_q396; if (NS4 || IE4) activateEl(=
'Q396', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D396&amp;hit=3D2&amp;index=3DIPI%3aIPI0000575=
3&amp;px=3D1"=20=0D
      target=3D_blank>396</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;633.35&nbsp;&nbs=
p;&nbsp;&nbsp;1264.69&nbsp;&nbsp;&nbsp;&nbsp;1264.57&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;MMGQRSPASER&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</TT></TD></TR></TBODY></TABLE><PRE><B>Proteins matching=
 the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00027258&amp;px=3D1">IPI:IPI00027258</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
=0D
<HR>=0D
<A name=3DHit69><B>69.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00004071&=
amp;px=3D1">IPI:IPI00004071</A>  <B>Mass:</B> 13966   <B>Total score:</B> 2=
2  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:Q93077|REFSEQ_NP:NP_003503|REFSEQ_XP:XP_004416|ENSEMBL:ENSP0=
0000065885;ENSP00000230084;ENSP00000237040 Histone H2A.l=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D69 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"943.557402 from(472.786526,2+) title(Elution%20from%3a%2013%=
2e34%20to%2013%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(68)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h69_q68; if (NS4 || IE4) activateEl('=
Q68', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D68&amp;hit=3D1&amp;index=3DIPI%3aIPI00004071=
&amp;px=3D1"=20=0D
      target=3D_blank>68</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>472.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;943.56&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;943.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;AGLQFPVGR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><=
B>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00003934&amp;px=3D1">IPI:IPI00003934</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00031562&amp;px=3D1">IPI:IPI00031562</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00025228&amp;px=3D1">IPI:IPI00025228</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00027366&amp;px=3D1">IPI:IPI00027366</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00026272&amp;px=3D1">IPI:IPI00026272</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00026225&amp;px=3D1">IPI:IPI00026225</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00034098&amp;px=3D1">IPI:IPI00034098</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00025085&amp;px=3D1">IPI:IPI00025085</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00021066&amp;px=3D1">IPI:IPI00021066</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00013772&amp;px=3D1">IPI:IPI00013772</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00020372&amp;px=3D1">IPI:IPI00020372</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00020085&amp;px=3D1">IPI:IPI00020085</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00018524&amp;px=3D1">IPI:IPI00018524</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00018278&amp;px=3D1">IPI:IPI00018278</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00000654&amp;px=3D1">IPI:IPI00000654</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00017223&amp;px=3D1">IPI:IPI00017223</A>=
  <B>Total score:</B> 22  <B>Peptides matched:</B> 1 =20=0D
=0D
<HR>=0D
<A name=3DHit70><B>70.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00033922&=
amp;px=3D1">IPI:IPI00033922</A>  <B>Mass:</B> 91696   <B>Total score:</B> 2=
1  <B>Peptides matched:</B> 3 =20=0D
    TREMBL:Q9BZ45|REFSEQ_XP:XP_055929 similar to Np95-like ring finger prot=
ein (H. sapiens)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D70 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h70_q196; if (NS4 || IE4) activateEl(=
'Q196', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D196&amp;hit=3D2&amp;index=3DIPI%3aIPI0003392=
2&amp;px=3D1"=20=0D
      target=3D_blank>196</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;558.83&nbsp;&nbs=
p;&nbsp;&nbsp;1115.64&nbsp;&nbsp;&nbsp;&nbsp;1115.59&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;ATIEELRER</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h70_q1305; if (NS4 || IE4) activateEl=
('Q1305', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1305&amp;hit=3D2&amp;index=3DIPI%3aIPI000339=
22&amp;px=3D1"=20=0D
      target=3D_blank>1305</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;666.06&nbsp;&nb=
sp;&nbsp;&nbsp;1995.15&nbsp;&nbsp;&nbsp;&nbsp;1995.05&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;LWDEVLSHLVEGPNFLK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h70_q1307; if (NS4 || IE4) activateEl=
('Q1307', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1307&amp;hit=3D8&amp;index=3DIPI%3aIPI000339=
22&amp;px=3D1"=20=0D
      target=3D_blank>1307</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;666.06&nbsp;&nb=
sp;&nbsp;&nbsp;1995.16&nbsp;&nbsp;&nbsp;&nbsp;1995.05&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&nbsp=
;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;LWDEVLSHLVEGPNFLK</TT></TD></TR></TBO=
DY></TABLE><PRE><HR>=0D
<A name=3DHit71><B>71.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00019567&=
amp;px=3D1">IPI:IPI00019567</A>  <B>Mass:</B> 3011893   <B>Total score:</B>=
 21  <B>Peptides matched:</B> 10=20=0D
    REFSEQ_NP:NP_003310|TREMBL:Q9UP84;Q10466;Q9UD97;Q9Y6L9|REFSEQ_XP:XP_038=
278|ENSEMBL:ENSP00000260934;ENSP00000260982;ENSP00000233127;ENSP00000260932=
 TITIN, HEART ISOFORM N2-B=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D71 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q49; if (NS4 || IE4) activateEl('=
Q49', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D49&amp;hit=3D2&amp;index=3DIPI%3aIPI00019567=
&amp;px=3D1"=20=0D
      target=3D_blank>49</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>455.26&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;908.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;908.43&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;MVCSSVAR</B></TT=
></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q103; if (NS4 || IE4) activateEl(=
'Q103', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D103&amp;hit=3D5&amp;index=3DIPI%3aIPI0001956=
7&amp;px=3D1"=20=0D
      target=3D_blank>103</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;498.32&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;994.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;994.56&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;(2)&n=
bsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;HVQKQIDK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q104; if (NS4 || IE4) activateEl(=
'Q104', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D104&amp;hit=3D4&amp;index=3DIPI%3aIPI0001956=
7&amp;px=3D1"=20=0D
      target=3D_blank>104</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;498.32&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;994.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;994.56&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;HVQKQIDK</TT></TD>=
</TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q145; if (NS4 || IE4) activateEl(=
'Q145', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D145&amp;hit=3D3&amp;index=3DIPI%3aIPI0001956=
7&amp;px=3D1"=20=0D
      target=3D_blank>145</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;520.32&nbsp;&nbs=
p;&nbsp;&nbsp;1038.62&nbsp;&nbsp;&nbsp;&nbsp;1038.54&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;FQWFKAGR</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q382; if (NS4 || IE4) activateEl(=
'Q382', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D382&amp;hit=3D9&amp;index=3DIPI%3aIPI0001956=
7&amp;px=3D1"=20=0D
      target=3D_blank>382</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>622.87&nbsp;&=
nbsp;&nbsp;&nbsp;1243.72&nbsp;&nbsp;&nbsp;&nbsp;1243.71&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;GGIQIMAGKTLR</B></TT></TD=
></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q514; if (NS4 || IE4) activateEl(=
'Q514', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D514&amp;hit=3D3&amp;index=3DIPI%3aIPI0001956=
7&amp;px=3D1"=20=0D
      target=3D_blank>514</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;676.36&nbsp;&nbs=
p;&nbsp;&nbsp;1350.70&nbsp;&nbsp;&nbsp;&nbsp;1350.73&nbsp;&nbsp;&nbsp;&nbsp=
;-0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp=
;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;ITGYLLEMRQK</TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1350.710330 from(676.362990,2+) title(Elution%20from%3a%2069=
%2e17%20to%2069%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(515)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q515; if (NS4 || IE4) activateEl(=
'Q515', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D515&amp;hit=3D1&amp;index=3DIPI%3aIPI0001956=
7&amp;px=3D1"=20=0D
      target=3D_blank>515</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.36&nbsp;&nbsp;&nbsp;&nbsp;1350.71&nbsp;&nbsp;&=
nbsp;&nbsp;1350.73&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;ITGYLLEMRQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1350.710572 from(676.363111,2+) title(Elution%20from%3a%2076=
%2e6%20to%2076%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(516)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q516; if (NS4 || IE4) activateEl(=
'Q516', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D516&amp;hit=3D1&amp;index=3DIPI%3aIPI0001956=
7&amp;px=3D1"=20=0D
      target=3D_blank>516</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.36&nbsp;&nbsp;&nbsp;&nbsp;1350.71&nbsp;&nbsp;&=
nbsp;&nbsp;1350.73&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;(5)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;IT=
GYLLEMRQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1668.868744 from(835.442197,2+) title(Elution%20from%3a%2018=
%2e32%20to%2018%2e32%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(925)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q925; if (NS4 || IE4) activateEl(=
'Q925', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D925&amp;hit=3D1&amp;index=3DIPI%3aIPI0001956=
7&amp;px=3D1"=20=0D
      target=3D_blank>925</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>835.44&nbsp;&nbsp;&nbsp;&nbsp;1668.87&nbsp;&nbsp;&=
nbsp;&nbsp;1668.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ITGYVVEMQTKGSEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h71_q951; if (NS4 || IE4) activateEl(=
'Q951', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D951&amp;hit=3D3&amp;index=3DIPI%3aIPI0001956=
7&amp;px=3D1"=20=0D
      target=3D_blank>951</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>563.01&nbsp;&=
nbsp;&nbsp;&nbsp;1686.02&nbsp;&nbsp;&nbsp;&nbsp;1685.92&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;EVTLDDISQIKAQVK</B></TT><=
/TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit72><B>72.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00017287&=
amp;px=3D1">IPI:IPI00017287</A>  <B>Mass:</B> 34421   <B>Total score:</B> 2=
1  <B>Peptides matched:</B> 1 =20=0D
    REFSEQ_NP:NP_060403|TREMBL:Q9NWP6|REFSEQ_XP:XP_010890|ENSEMBL:ENSP00000=
258401 CDNA FLJ20701 fis, clone KAIA2204=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D72 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h72_q7; if (NS4 || IE4) activateEl('Q=
7', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D7&amp;hit=3D2&amp;index=3DIPI%3aIPI00017287&=
amp;px=3D1"=20=0D
      target=3D_blank>7</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>400.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;799.57&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;799.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;LNVLTLK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit73><B>73.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00005269&=
amp;px=3D1">IPI:IPI00005269</A>  <B>Mass:</B> 130132   <B>Total score:</B> =
21  <B>Peptides matched:</B> 2 =20=0D
    TREMBL:Q9UGE2|ENSEMBL:ENSP00000229445 DJ570F3.1 (FRAGMENT)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D73 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h73_q325; if (NS4 || IE4) activateEl(=
'Q325', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D325&amp;hit=3D2&amp;index=3DIPI%3aIPI0000526=
9&amp;px=3D1"=20=0D
      target=3D_blank>325</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>603.87&nbsp;&=
nbsp;&nbsp;&nbsp;1205.71&nbsp;&nbsp;&nbsp;&nbsp;1205.75&nbsp;&nbsp;&nbsp;&n=
bsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;EALLKLGPLPR</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h73_q570; if (NS4 || IE4) activateEl(=
'Q570', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D570&amp;hit=3D2&amp;index=3DIPI%3aIPI0000526=
9&amp;px=3D1"=20=0D
      target=3D_blank>570</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;459.93&nbsp;&nbs=
p;&nbsp;&nbsp;1376.75&nbsp;&nbsp;&nbsp;&nbsp;1376.70&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;FMEREHLIFR</TT></TD></TR></TBODY>=
</TABLE><PRE><HR>=0D
<A name=3DHit74><B>74.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00019412&=
amp;px=3D1">IPI:IPI00019412</A>  <B>Mass:</B> 24379   <B>Total score:</B> 2=
1  <B>Peptides matched:</B> 1 =20=0D
    REFSEQ_XP:XP_012549 similar to ribosomal protein L13=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D74 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1395.874170 from(698.944910,2+) title(Elution%20from%3a%2018=
%2e19%20to%2018%2e19%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(586)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h74_q586; if (NS4 || IE4) activateEl(=
'Q586', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D586&amp;hit=3D1&amp;index=3DIPI%3aIPI0001941=
2&amp;px=3D1"=20=0D
      target=3D_blank>586</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>698.94&nbsp;&nbsp;&nbsp;&nbsp;1395.87&nbsp;&nbsp;&=
nbsp;&nbsp;1395.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LATQLTGPVMPIR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit75><B>75.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00016856&=
amp;px=3D1">IPI:IPI00016856</A>  <B>Mass:</B> 16743   <B>Total score:</B> 2=
1  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:P17774|REFSEQ_NP:NP_004115|REFSEQ_XP:XP_051673;XP_007329;XP_=
051672 Glia maturation factor beta=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D75 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1243.723268 from(622.869459,2+) title(Elution%20from%3a%2014=
%2e57%20to%2014%2e57%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(382)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h75_q382; if (NS4 || IE4) activateEl(=
'Q382', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D382&amp;hit=3D1&amp;index=3DIPI%3aIPI0001685=
6&amp;px=3D1"=20=0D
      target=3D_blank>382</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>622.87&nbsp;&nbsp;&nbsp;&nbsp;1243.72&nbsp;&nbsp;&nbs=
p;&nbsp;1243.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;NKLVQTAELTK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit76><B>76.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00003918&=
amp;px=3D1">IPI:IPI00003918</A>  <B>Mass:</B> 47958   <B>Total score:</B> 2=
0  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:P36578 60S ribosomal protein L4=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D76 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1267.809076 from(634.912363,2+) title(Elution%20from%3a%2028=
%2e05%20to%2028%2e19%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(398)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h76_q398; if (NS4 || IE4) activateEl(=
'Q398', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D398&amp;hit=3D1&amp;index=3DIPI%3aIPI0000391=
8&amp;px=3D1"=20=0D
      target=3D_blank>398</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>634.91&nbsp;&nbsp;&nbsp;&nbsp;1267.81&nbsp;&nbsp;&=
nbsp;&nbsp;1267.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;NIPGITLLNVSK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Prote=
ins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00000483&amp;px=3D1">IPI:IPI00000483</A>=
  <B>Total score:</B> 20  <B>Peptides matched:</B> 1 =20=0D
=0D
<HR>=0D
<A name=3DHit77><B>77.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00010039&=
amp;px=3D1">IPI:IPI00010039</A>  <B>Mass:</B> 24676   <B>Total score:</B> 2=
0  <B>Peptides matched:</B> 2 =20=0D
    REFSEQ_XP:XP_036938|ENSEMBL:ENSP00000240825=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D77 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1483.869816 from(495.631097,3+) title(Elution%20from%3a%2042=
%2e44%20to%2042%2e44%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(685)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h77_q685; if (NS4 || IE4) activateEl(=
'Q685', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D685&amp;hit=3D1&amp;index=3DIPI%3aIPI0001003=
9&amp;px=3D1"=20=0D
      target=3D_blank>685</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>495.63&nbsp;&nbsp;&nbsp;&nbsp;1483.87&nbsp;&nbsp;&=
nbsp;&nbsp;1483.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;(15)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;KY=
DAFLASESLIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1483.901008 from(742.958329,2+) title(Elution%20from%3a%2042=
%2e22%20to%2042%2e22%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(686)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h77_q686; if (NS4 || IE4) activateEl(=
'Q686', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D686&amp;hit=3D1&amp;index=3DIPI%3aIPI0001003=
9&amp;px=3D1"=20=0D
      target=3D_blank>686</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>742.96&nbsp;&nbsp;&nbsp;&nbsp;1483.90&nbsp;&nbsp;&=
nbsp;&nbsp;1483.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KYDAFLASESLIK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Prot=
eins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00019782&amp;px=3D1">IPI:IPI00019782</A>=
  <B>Total score:</B> 20  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit78><B>78.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00028654&=
amp;px=3D1">IPI:IPI00028654</A>  <B>Mass:</B> 24723   <B>Total score:</B> 2=
0  <B>Peptides matched:</B> 1 =20=0D
    TREMBL:Q9BR19|ENSEMBL:ENSP00000252021 DJ310O13.1.1 (Fragment)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D78 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1422.806766 from(712.411208,2+) title(Elution%20from%3a%2030=
%2e62%20to%2030%2e62%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(615)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h78_q615; if (NS4 || IE4) activateEl(=
'Q615', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D615&amp;hit=3D1&amp;index=3DIPI%3aIPI0002865=
4&amp;px=3D1"=20=0D
      target=3D_blank>615</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>712.41&nbsp;&nbsp;&nbsp;&nbsp;1422.81&nbsp;&nbsp;&=
nbsp;&nbsp;1422.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TTLMNTLMDVLR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit79><B>79.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00012847&=
amp;px=3D1">IPI:IPI00012847</A>  <B>Mass:</B> 13903   <B>Total score:</B> 2=
0  <B>Peptides matched:</B> 1 =20=0D
    REFSEQ_XP:XP_027570 hypothetical protein XP_027570=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D79 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1482.811720 from(742.413685,2+) title(Elution%20from%3a%2026=
%2e68%20to%2026%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(684)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h79_q684; if (NS4 || IE4) activateEl(=
'Q684', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D684&amp;hit=3D2&amp;index=3DIPI%3aIPI0001284=
7&amp;px=3D1"=20=0D
      target=3D_blank>684</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>742.41&nbsp;&nbsp;&nbsp;&nbsp;1482.81&nbsp;&nbsp;&=
nbsp;&nbsp;1482.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;AMVSHCSLLRYF</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit80><B>80.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00008406&=
amp;px=3D1">IPI:IPI00008406</A>  <B>Mass:</B> 16534   <B>Total score:</B> 2=
0  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:P46776|REFSEQ_NP:NP_000981|TREMBL:Q9BQQ5|REFSEQ_XP:XP_017838=
|ENSEMBL:ENSP00000265976 60S ribosomal protein L27A=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D80 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1231.740638 from(616.878144,2+) title(Elution%20from%3a%2022=
%2e58%20to%2022%2e58%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(365)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h80_q365; if (NS4 || IE4) activateEl(=
'Q365', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D365&amp;hit=3D1&amp;index=3DIPI%3aIPI0000840=
6&amp;px=3D1"=20=0D
      target=3D_blank>365</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>616.88&nbsp;&nbsp;&nbsp;&nbsp;1231.74&nbsp;&nbsp;&=
nbsp;&nbsp;1231.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LWTLVSEQTR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Protein=
s matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00011623&amp;px=3D1">IPI:IPI00011623</A>=
  <B>Total score:</B> 20  <B>Peptides matched:</B> 1 =20=0D
=0D
<HR>=0D
<A name=3DHit81><B>81.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00024252&=
amp;px=3D1">IPI:IPI00024252</A>  <B>Mass:</B> 25331   <B>Total score:</B> 2=
0  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:Q92914|REFSEQ_NP:NP_004103|REFSEQ_XP:XP_008660|ENSEMBL:ENSP0=
0000224322;ENSP00000255644 Fibroblast growth factor-11=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D81 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1543.004688 from(515.342721,3+) title(Elution%20from%3a%2023=
%2e89%20to%2023%2e89%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(747)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h81_q747; if (NS4 || IE4) activateEl(=
'Q747', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D747&amp;hit=3D1&amp;index=3DIPI%3aIPI0002425=
2&amp;px=3D1"=20=0D
      target=3D_blank>747</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>515.34&nbsp;&nbsp;&nbsp;&nbsp;1543.00&nbsp;&nbsp;&=
nbsp;&nbsp;1542.93&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SLCQKQLLILLSK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit82><B>82.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00012321&=
amp;px=3D1">IPI:IPI00012321</A>  <B>Mass:</B> 16418   <B>Total score:</B> 2=
0  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P17008|REFSEQ_NP:NP_001011|REFSEQ_XP:XP_053077;XP_046112|ENS=
EMBL:ENSP00000251453;ENSP00000251454 40S ribosomal protein S16=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D82 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1093.857552 from(547.936601,2+) title(Elution%20from%3a%2046=
%2e37%20to%2046%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(183)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h82_q183; if (NS4 || IE4) activateEl(=
'Q183', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D183&amp;hit=3D1&amp;index=3DIPI%3aIPI0001232=
1&amp;px=3D1"=20=0D
      target=3D_blank>183</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>547.94&nbsp;&nbsp;&nbsp;&nbsp;1093.86&nbsp;&nbsp;&=
nbsp;&nbsp;1093.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLEPVLLLGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1186.717314 from(594.366482,2+) title(Elution%20from%3a%2016=
%2e74%20to%2016%2e74%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(271)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h82_q271; if (NS4 || IE4) activateEl(=
'Q271', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D271&amp;hit=3D1&amp;index=3DIPI%3aIPI0001232=
1&amp;px=3D1"=20=0D
      target=3D_blank>271</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>594.37&nbsp;&nbsp;&nbsp;&nbsp;1186.72&nbsp;&nbsp;&=
nbsp;&nbsp;1186.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GPLQSVQVFGR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Protei=
ns matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00026432&amp;px=3D1">IPI:IPI00026432</A>=
  <B>Total score:</B> 20  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit83><B>83.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00030790&=
amp;px=3D1">IPI:IPI00030790</A>  <B>Mass:</B> 182664   <B>Total score:</B> =
19  <B>Peptides matched:</B> 6 =20=0D
    TREMBL:O60303|REFSEQ_XP:XP_044632|ENSEMBL:ENSP00000261588 KIAA0556 prot=
ein (Fragment)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D83 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h83_q127; if (NS4 || IE4) activateEl(=
'Q127', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D127&amp;hit=3D2&amp;index=3DIPI%3aIPI0003079=
0&amp;px=3D1"=20=0D
      target=3D_blank>127</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>508.32&nbsp;&=
nbsp;&nbsp;&nbsp;1014.61&nbsp;&nbsp;&nbsp;&nbsp;1014.51&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;NTATPGELGR</B></TT></TD><=
/TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h83_q517; if (NS4 || IE4) activateEl(=
'Q517', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D517&amp;hit=3D2&amp;index=3DIPI%3aIPI0003079=
0&amp;px=3D1"=20=0D
      target=3D_blank>517</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;451.57&nbsp;&nbs=
p;&nbsp;&nbsp;1351.69&nbsp;&nbsp;&nbsp;&nbsp;1351.66&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;DSLSQLEEYLR</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h83_q518; if (NS4 || IE4) activateEl(=
'Q518', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D518&amp;hit=3D2&amp;index=3DIPI%3aIPI0003079=
0&amp;px=3D1"=20=0D
      target=3D_blank>518</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;451.58&nbsp;&nbs=
p;&nbsp;&nbsp;1351.71&nbsp;&nbsp;&nbsp;&nbsp;1351.66&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;(11)&nbsp;&nbsp;&nbsp=
;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;DSLSQLEEYLR</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h83_q519; if (NS4 || IE4) activateEl(=
'Q519', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D519&amp;hit=3D2&amp;index=3DIPI%3aIPI0003079=
0&amp;px=3D1"=20=0D
      target=3D_blank>519</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;676.87&nbsp;&nbs=
p;&nbsp;&nbsp;1351.72&nbsp;&nbsp;&nbsp;&nbsp;1351.66&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(2)&nbsp;&nbsp;=
&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;DSLSQLEEYLR</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h83_q678; if (NS4 || IE4) activateEl(=
'Q678', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D678&amp;hit=3D2&amp;index=3DIPI%3aIPI0003079=
0&amp;px=3D1"=20=0D
      target=3D_blank>678</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;494.28&nbsp;&nbs=
p;&nbsp;&nbsp;1479.82&nbsp;&nbsp;&nbsp;&nbsp;1479.76&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;KDSLSQLEEYLR</TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1853.085998 from(927.550824,2+) title(Elution%20from%3a%2015=
8%2e17%20to%20158%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1136)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h83_q1136; if (NS4 || IE4) activateEl=
('Q1136', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1136&amp;hit=3D1&amp;index=3DIPI%3aIPI000307=
90&amp;px=3D1"=20=0D
      target=3D_blank>1136</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>927.55&nbsp;&nbsp;&nbsp;&nbsp;1853.09&nbsp;&nbsp;&=
nbsp;&nbsp;1852.99&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EGQALPIHLHQISASPR</B></FONT></TT></TD></TR></TBODY></TABLE><PR=
E><HR>=0D
<A name=3DHit84><B>84.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00030390&=
amp;px=3D1">IPI:IPI00030390</A>  <B>Mass:</B> 15059   <B>Total score:</B> 1=
9  <B>Peptides matched:</B> 2 =20=0D
    REFSEQ_NP:NP_148982|REFSEQ_XP:XP_039576;XP_039577|ENSEMBL:ENSP000002608=
96 ribosomal protein S24, isoform a=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D84 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h84_q589; if (NS4 || IE4) activateEl(=
'Q589', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D589&amp;hit=3D4&amp;index=3DIPI%3aIPI0003039=
0&amp;px=3D1"=20=0D
      target=3D_blank>589</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>699.92&nbsp;&=
nbsp;&nbsp;&nbsp;1397.83&nbsp;&nbsp;&nbsp;&nbsp;1397.73&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;(0)&nbsp;&nb=
sp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;TTPDVIFVFGFR</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1397.882554 from(699.949102,2+) title(Elution%20from%3a%2010=
1%2e73%20to%20101%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(590)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h84_q590; if (NS4 || IE4) activateEl(=
'Q590', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D590&amp;hit=3D1&amp;index=3DIPI%3aIPI0003039=
0&amp;px=3D1"=20=0D
      target=3D_blank>590</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>699.95&nbsp;&nbsp;&nbsp;&nbsp;1397.88&nbsp;&nbsp;&=
nbsp;&nbsp;1397.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TTPDVIFVFGFR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Prote=
ins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00029750&amp;px=3D1">IPI:IPI00029750</A>=
  <B>Total score:</B> 19  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit85><B>85.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00007204&=
amp;px=3D1">IPI:IPI00007204</A>  <B>Mass:</B> 44240   <B>Total score:</B> 1=
9  <B>Peptides matched:</B> 1 =20=0D
    TREMBL:Q9UK57 MESOTHELIN/MEGAKARYOCYTE POTENTIATING FACTOR (FRAGMENT)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D85 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h85_q684; if (NS4 || IE4) activateEl(=
'Q684', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D684&amp;hit=3D1&amp;index=3DIPI%3aIPI0000720=
4&amp;px=3D1"=20=0D
      target=3D_blank>684</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>742.41&nbsp;&nbsp;&nbsp;&nbsp;1482.81&nbsp;&nbsp;&nbs=
p;&nbsp;1482.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;AREIDESLIFYK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit86><B>86.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00025806&=
amp;px=3D1">IPI:IPI00025806</A>  <B>Mass:</B> 891939   <B>Total score:</B> =
19  <B>Peptides matched:</B> 5 =20=0D
    TREMBL:Q10465|REFSEQ_XP:XP_016250|ENSEMBL:ENSP00000249439 TITIN, SKELET=
AL MUSCLE ISOFORM (FRAGMENT)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D86 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h86_q145; if (NS4 || IE4) activateEl(=
'Q145', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D145&amp;hit=3D3&amp;index=3DIPI%3aIPI0002580=
6&amp;px=3D1"=20=0D
      target=3D_blank>145</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;520.32&nbsp;&nbs=
p;&nbsp;&nbsp;1038.62&nbsp;&nbsp;&nbsp;&nbsp;1038.54&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;FQWFKAGR</TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1157.747838 from(579.881744,2+) title(Elution%20from%3a%2020=
%2e51%20to%2020%2e51%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(242)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h86_q242; if (NS4 || IE4) activateEl(=
'Q242', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D242&amp;hit=3D1&amp;index=3DIPI%3aIPI0002580=
6&amp;px=3D1"=20=0D
      target=3D_blank>242</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>579.88&nbsp;&nbsp;&nbsp;&nbsp;1157.75&nbsp;&nbsp;&=
nbsp;&nbsp;1157.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DVLPGSAVCLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h86_q367; if (NS4 || IE4) activateEl(=
'Q367', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D367&amp;hit=3D5&amp;index=3DIPI%3aIPI0002580=
6&amp;px=3D1"=20=0D
      target=3D_blank>367</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>617.32&nbsp;&=
nbsp;&nbsp;&nbsp;1232.62&nbsp;&nbsp;&nbsp;&nbsp;1232.71&nbsp;&nbsp;&nbsp;&n=
bsp;-0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;KAVPEAPTPVPK</B></TT></TD></TR=
>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h86_q368; if (NS4 || IE4) activateEl(=
'Q368', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D368&amp;hit=3D7&amp;index=3DIPI%3aIPI0002580=
6&amp;px=3D1"=20=0D
      target=3D_blank>368</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;617.34&nbsp;&nbs=
p;&nbsp;&nbsp;1232.66&nbsp;&nbsp;&nbsp;&nbsp;1232.71&nbsp;&nbsp;&nbsp;&nbsp=
;-0.05&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp=
;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;KAVPEAPTPVPK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h86_q404; if (NS4 || IE4) activateEl(=
'Q404', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D404&amp;hit=3D7&amp;index=3DIPI%3aIPI0002580=
6&amp;px=3D1"=20=0D
      target=3D_blank>404</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>638.88&nbsp;&=
nbsp;&nbsp;&nbsp;1275.75&nbsp;&nbsp;&nbsp;&nbsp;1275.61&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;VLGSSIHMECK&nbsp;+&nbsp;1=
=20=0D
      Oxidation (M)</B></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit87><B>87.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00004016&=
amp;px=3D1">IPI:IPI00004016</A>  <B>Mass:</B> 87982   <B>Total score:</B> 1=
9  <B>Peptides matched:</B> 2 =20=0D
    REFSEQ_NP:NP_004342|REFSEQ_XP:XP_003004 Cas-Br-M (murine) ectropic retr=
oviral transforming sequence b=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D87 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1500.930069 from(501.317848,3+) title(Elution%20from%3a%2014=
0%2e29%20to%20140%2e29%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(697)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h87_q697; if (NS4 || IE4) activateEl(=
'Q697', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D697&amp;hit=3D1&amp;index=3DIPI%3aIPI0000401=
6&amp;px=3D1"=20=0D
      target=3D_blank>697</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>501.32&nbsp;&nbsp;&nbsp;&nbsp;1500.93&nbsp;&nbsp;&=
nbsp;&nbsp;1500.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LSLIFSHMLAEIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1500.937402 from(751.476526,2+) title(Elution%20from%3a%2014=
0%2e19%20to%20140%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(698)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h87_q698; if (NS4 || IE4) activateEl(=
'Q698', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D698&amp;hit=3D1&amp;index=3DIPI%3aIPI0000401=
6&amp;px=3D1"=20=0D
      target=3D_blank>698</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>751.48&nbsp;&nbsp;&nbsp;&nbsp;1500.94&nbsp;&nbsp;&=
nbsp;&nbsp;1500.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;LSLIFSHMLAEIK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Proteins =
matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00012006&amp;px=3D1">IPI:IPI00012006</A>=
  <B>Total score:</B> 19  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit88><B>88.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00027269&=
amp;px=3D1">IPI:IPI00027269</A>  <B>Mass:</B> 100895   <B>Total score:</B> =
19  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:P22681|REFSEQ_NP:NP_005179|REFSEQ_XP:XP_006078|ENSEMBL:ENSP0=
0000264034;ENSP00000264033 Signal transduction protein CBL=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D88 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h88_q697; if (NS4 || IE4) activateEl(=
'Q697', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D697&amp;hit=3D2&amp;index=3DIPI%3aIPI0002726=
9&amp;px=3D1"=20=0D
      target=3D_blank>697</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>501.32&nbsp;&nbsp;&nbsp;&nbsp;1500.93&nbsp;&nbsp;&nbs=
p;&nbsp;1500.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;LSLIFSHMLAELK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h88_q698; if (NS4 || IE4) activateEl(=
'Q698', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D698&amp;hit=3D2&amp;index=3DIPI%3aIPI0002726=
9&amp;px=3D1"=20=0D
      target=3D_blank>698</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>751.48&nbsp;&nbsp;&nbsp;&nbsp;1500.94&nbsp;&nbsp;&nbs=
p;&nbsp;1500.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;(3)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
LSLIFSHMLAELK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit89><B>89.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00013231&=
amp;px=3D1">IPI:IPI00013231</A>  <B>Mass:</B> 69743   <B>Total score:</B> 1=
9  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:Q13421|REFSEQ_NP:NP_037536|TREMBL:Q9BR17|REFSEQ_XP:XP_027417=
|ENSEMBL:ENSP00000219124;ENSP00000230961 Mesothelin precursor=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D89 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h89_q682; if (NS4 || IE4) activateEl(=
'Q682', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D682&amp;hit=3D7&amp;index=3DIPI%3aIPI0001323=
1&amp;px=3D1"=20=0D
      target=3D_blank>682</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>741.41&nbsp;&=
nbsp;&nbsp;&nbsp;1480.81&nbsp;&nbsp;&nbsp;&nbsp;1480.83&nbsp;&nbsp;&nbsp;&n=
bsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;SIPQGIVAAWRQR</B></TT></TD></T=
R>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h89_q684; if (NS4 || IE4) activateEl(=
'Q684', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D684&amp;hit=3D1&amp;index=3DIPI%3aIPI0001323=
1&amp;px=3D1"=20=0D
      target=3D_blank>684</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>742.41&nbsp;&nbsp;&nbsp;&nbsp;1482.81&nbsp;&nbsp;&nbs=
p;&nbsp;1482.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;AREIDESLIFYK</FONT></TT></TD></TR></TBODY></TABLE><PRE><B>Proteins mat=
ching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00025110&amp;px=3D1">IPI:IPI00025110</A>=
  <B>Total score:</B> 19  <B>Peptides matched:</B> 2 =20=0D
=0D
<HR>=0D
<A name=3DHit90><B>90.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00012587&=
amp;px=3D1">IPI:IPI00012587</A>  <B>Mass:</B> 47706   <B>Total score:</B> 1=
9  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:O00633|REFSEQ_NP:NP_000305|REFSEQ_XP:XP_034849;XP_034845;XP_=
034848|ENSEMBL:ENSP00000238935 Protein-tyrosine phosphatase PTEN=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D90 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1275.705560 from(638.860605,2+) title(Elution%20from%3a%2013=
%2e8%20to%2013%2e8%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(403)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h90_q403; if (NS4 || IE4) activateEl(=
'Q403', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D403&amp;hit=3D1&amp;index=3DIPI%3aIPI0001258=
7&amp;px=3D1"=20=0D
      target=3D_blank>403</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>638.86&nbsp;&nbsp;&nbsp;&nbsp;1275.71&nbsp;&nbsp;&=
nbsp;&nbsp;1275.72&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;MTAIIKEIVSR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit91><B>91.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00002233&=
amp;px=3D1">IPI:IPI00002233</A>  <B>Mass:</B> 89149   <B>Total score:</B> 1=
9  <B>Peptides matched:</B> 3 =20=0D
    REFSEQ_NP:NP_060458|TREMBL:Q9NWE9;Q9H7V5;Q9P2I7;Q9NVH3|REFSEQ_XP:XP_045=
446;XP_045448;XP_045447|ENSEMBL:ENSP00000258507;ENSP00000258506 KIAA1360 pr=
otein (Fragment)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D91 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h91_q98; if (NS4 || IE4) activateEl('=
Q98', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D98&amp;hit=3D2&amp;index=3DIPI%3aIPI00002233=
&amp;px=3D1"=20=0D
      target=3D_blank>98</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>495.31&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;988.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;988.55&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;VNSLVCLGK</B></T=
T></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1067.680534 from(534.848092,2+) title(Elution%20from%3a%2024=
%2e87%20to%2024%2e87%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(165)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h91_q165; if (NS4 || IE4) activateEl(=
'Q165', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D165&amp;hit=3D1&amp;index=3DIPI%3aIPI0000223=
3&amp;px=3D1"=20=0D
      target=3D_blank>165</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>534.85&nbsp;&nbsp;&nbsp;&nbsp;1067.68&nbsp;&nbsp;&=
nbsp;&nbsp;1067.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EDGLQNKHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h91_q188; if (NS4 || IE4) activateEl(=
'Q188', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D188&amp;hit=3D9&amp;index=3DIPI%3aIPI0000223=
3&amp;px=3D1"=20=0D
      target=3D_blank>188</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;551.35&nbsp;&nbs=
p;&nbsp;&nbsp;1100.68&nbsp;&nbsp;&nbsp;&nbsp;1100.58&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;EQEQAQKLK</TT></TD></TR></TBODY><=
/TABLE><PRE><HR>=0D
<A name=3DHit92><B>92.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00009181&=
amp;px=3D1">IPI:IPI00009181</A>  <B>Mass:</B> 104705   <B>Total score:</B> =
19  <B>Peptides matched:</B> 4 =20=0D
    TREMBL:Q9H0K1|REFSEQ_XP:XP_055497;XP_041315;XP_041314 Hypothetical 103.=
9 kDa protein=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D92 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h92_q48; if (NS4 || IE4) activateEl('=
Q48', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D48&amp;hit=3D8&amp;index=3DIPI%3aIPI00009181=
&amp;px=3D1"=20=0D
      target=3D_blank>48</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;454.76&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;907.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;907.39&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;MVMADGPR&nbsp;+&nbs=
p;2=20=0D
      Oxidation (M)</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h92_q410; if (NS4 || IE4) activateEl(=
'Q410', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D410&amp;hit=3D4&amp;index=3DIPI%3aIPI0000918=
1&amp;px=3D1"=20=0D
      target=3D_blank>410</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;640.36&nbsp;&nbs=
p;&nbsp;&nbsp;1278.69&nbsp;&nbsp;&nbsp;&nbsp;1278.66&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;VMADGPRHLQR</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h92_q1125; if (NS4 || IE4) activateEl=
('Q1125', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1125&amp;hit=3D2&amp;index=3DIPI%3aIPI000091=
81&amp;px=3D1"=20=0D
      target=3D_blank>1125</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;616.70&nbsp;&nb=
sp;&nbsp;&nbsp;1847.08&nbsp;&nbsp;&nbsp;&nbsp;1846.98&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;EVQIMKMLDHPHIIK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1847.105724 from(616.709733,3+) title(Elution%20from%3a%2036=
%2e05%20to%2036%2e05%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(1127)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h92_q1127; if (NS4 || IE4) activateEl=
('Q1127', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1127&amp;hit=3D1&amp;index=3DIPI%3aIPI000091=
81&amp;px=3D1"=20=0D
      target=3D_blank>1127</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>616.71&nbsp;&nbsp;&nbsp;&nbsp;1847.11&nbsp;&nbsp;&nbs=
p;&nbsp;1846.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;(7)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
EVQIMKMLDHPHIIK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit93><B>93.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00025320&=
amp;px=3D1">IPI:IPI00025320</A>  <B>Mass:</B> 29445   <B>Total score:</B> 1=
9  <B>Peptides matched:</B> 2 =20=0D
    SWISS-PROT:Q9H7B2|ENSEMBL:ENSP00000243232 Hypothetical protein FLJ21087=
 (Fragment)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D93 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"842.542294 from(422.278972,2+) title(Elution%20from%3a%204%2=
e09%20to%204%2e09%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(19)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h93_q19; if (NS4 || IE4) activateEl('=
Q19', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D19&amp;hit=3D1&amp;index=3DIPI%3aIPI00025320=
&amp;px=3D1"=20=0D
      target=3D_blank>19</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>422.28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;842.54&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;842.46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;GPTVSNIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"842.544748 from(422.280199,2+) title(Elution%20from%3a%207%2=
e18%20to%207%2e18%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(20)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h93_q20; if (NS4 || IE4) activateEl('=
Q20', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D20&amp;hit=3D1&amp;index=3DIPI%3aIPI00025320=
&amp;px=3D1"=20=0D
      target=3D_blank>20</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>422.28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;842.54&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;842.46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;(19)&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GPTVSNIR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit94><B>94.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00010109&=
amp;px=3D1">IPI:IPI00010109</A>  <B>Mass:</B> 143539   <B>Total score:</B> =
19  <B>Peptides matched:</B> 1 =20=0D
    TREMBL:Q9P2C3|REFSEQ_XP:XP_038564|ENSEMBL:ENSP00000224853 KIAA1424 prot=
ein (Fragment)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D94 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h94_q188; if (NS4 || IE4) activateEl(=
'Q188', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D188&amp;hit=3D2&amp;index=3DIPI%3aIPI0001010=
9&amp;px=3D1"=20=0D
      target=3D_blank>188</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;551.35&nbsp;&nbs=
p;&nbsp;&nbsp;1100.68&nbsp;&nbsp;&nbsp;&nbsp;1100.64&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;19&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;DLNVISSLLK</TT></TD></TR></TBODY>=
</TABLE><PRE><HR>=0D
<A name=3DHit95><B>95.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00018290&=
amp;px=3D1">IPI:IPI00018290</A>  <B>Mass:</B> 38366   <B>Total score:</B> 1=
8  <B>Peptides matched:</B> 1 =20=0D
    SWISS-PROT:P00540|REFSEQ_NP:NP_005363|REFSEQ_XP:XP_005179 Proto-oncogen=
e serine/threonine-protein kinase mos=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D95 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"952.625256 from(477.320453,2+) title(Elution%20from%3a%2017%=
2e77%20to%2017%2e77%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(79)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h95_q79; if (NS4 || IE4) activateEl('=
Q79', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D79&amp;hit=3D1&amp;index=3DIPI%3aIPI00018290=
&amp;px=3D1"=20=0D
      target=3D_blank>79</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>477.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;952.63&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;952.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;LLLGATLPR</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><=
HR>=0D
<A name=3DHit96><B>96.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00020647&=
amp;px=3D1">IPI:IPI00020647</A>  <B>Mass:</B> 163311   <B>Total score:</B> =
18  <B>Peptides matched:</B> 2 =20=0D
    REFSEQ_NP:NP_003557|TREMBL:Q15075;Q14221|REFSEQ_XP:XP_034421;XP_018197|=
ENSEMBL:ENSP00000218310 ENDOSOME-ASSOCIATED PROTEIN=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D96 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h96_q37; if (NS4 || IE4) activateEl('=
Q37', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D37&amp;hit=3D9&amp;index=3DIPI%3aIPI00020647=
&amp;px=3D1"=20=0D
      target=3D_blank>37</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;440.78&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;879.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;879.47&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;YLSLEQK</TT></TD></=
TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h96_q375; if (NS4 || IE4) activateEl(=
'Q375', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D375&amp;hit=3D3&amp;index=3DIPI%3aIPI0002064=
7&amp;px=3D1"=20=0D
      target=3D_blank>375</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;619.34&nbsp;&nbs=
p;&nbsp;&nbsp;1236.67&nbsp;&nbsp;&nbsp;&nbsp;1236.63&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;EALMTELSTVK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit97><B>97.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00027824&=
amp;px=3D1">IPI:IPI00027824</A>  <B>Mass:</B> 64936   <B>Total score:</B> 1=
8  <B>Peptides matched:</B> 1 =20=0D
    REFSEQ_NP:NP_113668|TREMBL:Q9H2L9;Q9BRS2|REFSEQ_XP:XP_037873;XP_037872|=
ENSEMBL:ENSP00000264875;ENSP00000264874 Similar to RIKEN cDNA 5430416A05 ge=
ne=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D97 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1101.681618 from(551.848634,2+) title(Elution%20from%3a%2010=
%2e99%20to%2010%2e99%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(192)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h97_q192; if (NS4 || IE4) activateEl(=
'Q192', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D192&amp;hit=3D1&amp;index=3DIPI%3aIPI0002782=
4&amp;px=3D1"=20=0D
      target=3D_blank>192</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>551.85&nbsp;&nbsp;&nbsp;&nbsp;1101.68&nbsp;&nbsp;&=
nbsp;&nbsp;1101.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LNVTDSVINK</B></FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit98><B>98.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00000705&=
amp;px=3D1">IPI:IPI00000705</A>  <B>Mass:</B> 124737   <B>Total score:</B> =
18  <B>Peptides matched:</B> 1 =20=0D
    TREMBL:Q9Y4D1|REFSEQ_XP:XP_050881;XP_050882|ENSEMBL:ENSP00000247170 KIA=
A0666 PROTEIN (FRAGMENT)=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D98 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"948.526210 from(475.270930,2+) title(Elution%20from%3a%2011%=
2e89%20to%2011%2e89%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%201%20%20) query(75)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h98_q75; if (NS4 || IE4) activateEl('=
Q75', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D75&amp;hit=3D1&amp;index=3DIPI%3aIPI00000705=
&amp;px=3D1"=20=0D
      target=3D_blank>75</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>475.27&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;948.53&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;948.46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;VNMTELDK</FONT></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
<A name=3DHit99><B>99.</B></A> <A href=3D"http://pilmascot/mascot/cgi/prote=
in_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI00030246&=
amp;px=3D1">IPI:IPI00030246</A>  <B>Mass:</B> 278843   <B>Total score:</B> =
17  <B>Peptides matched:</B> 4 =20=0D
    SWISS-PROT:Q12923|REFSEQ_XP:XP_031703 Protein tyrosine phosphatase, non=
-receptor type 13=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D99 name=
=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h99_q146; if (NS4 || IE4) activateEl(=
'Q146', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D146&amp;hit=3D10&amp;index=3DIPI%3aIPI000302=
46&amp;px=3D1"=20=0D
      target=3D_blank>146</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;520.33&nbsp;&nbs=
p;&nbsp;&nbsp;1038.64&nbsp;&nbsp;&nbsp;&nbsp;1038.65&nbsp;&nbsp;&nbsp;&nbsp=
;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;LKPGDRLIK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h99_q241; if (NS4 || IE4) activateEl(=
'Q241', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D241&amp;hit=3D10&amp;index=3DIPI%3aIPI000302=
46&amp;px=3D1"=20=0D
      target=3D_blank>241</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>579.37&nbsp;&=
nbsp;&nbsp;&nbsp;1156.72&nbsp;&nbsp;&nbsp;&nbsp;1156.64&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp=
;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;VNIMLLNGQR</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h99_q803; if (NS4 || IE4) activateEl(=
'Q803', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D803&amp;hit=3D2&amp;index=3DIPI%3aIPI0003024=
6&amp;px=3D1"=20=0D
      target=3D_blank>803</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;529.29&nbsp;&nbs=
p;&nbsp;&nbsp;1584.84&nbsp;&nbsp;&nbsp;&nbsp;1584.73&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;ATEKETFTDSNQSK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h99_q804; if (NS4 || IE4) activateEl(=
'Q804', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D804&amp;hit=3D4&amp;index=3DIPI%3aIPI0003024=
6&amp;px=3D1"=20=0D
      target=3D_blank>804</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;793.44&nbsp;&nbs=
p;&nbsp;&nbsp;1584.87&nbsp;&nbsp;&nbsp;&nbsp;1584.73&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;(1)&nbsp;&nbsp;=
&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;ATEKETFTDSNQSK</TT></TD></TR></TBODY><=
/TABLE><PRE><B>Proteins matching the same set of peptides:</B>=0D
<A href=3D"http://pilmascot/mascot/cgi/protein_view.pl?file=3D../data/20011=
120/F001249.dat&amp;hit=3DIPI%3aIPI00006714&amp;px=3D1">IPI:IPI00006714</A>=
  <B>Total score:</B> 17  <B>Peptides matched:</B> 4 =20=0D
=0D
<HR>=0D
<A name=3DHit100><B>100.</B></A> <A href=3D"http://pilmascot/mascot/cgi/pro=
tein_view.pl?file=3D../data/20011120/F001249.dat&amp;hit=3DIPI%3aIPI0002632=
0&amp;px=3D1">IPI:IPI00026320</A>  <B>Mass:</B> 312352   <B>Total score:</B=
> 17  <B>Peptides matched:</B> 2 =20=0D
     REFSEQ_NP:NP_056986|TREMBL:O94970;O95071|REFSEQ_XP:XP_042063;XP_042064=
;XP_053056|ENSEMBL:ENSP00000220959 Progestin induced protein=0D
<INPUT onclick=3DSaveClicks(this,this.form) type=3Dcheckbox value=3D100 nam=
e=3DINCLUDE>Check to include this hit in archive report=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h100_q204; if (NS4 || IE4) activateEl=
('Q204', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D204&amp;hit=3D3&amp;index=3DIPI%3aIPI0002632=
0&amp;px=3D1"=20=0D
      target=3D_blank>204</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;564.34&nbsp;&nbs=
p;&nbsp;&nbsp;1126.66&nbsp;&nbsp;&nbsp;&nbsp;1126.61&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;NNFIPQPIGK</TT></TD></TR>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h100_q1342; if (NS4 || IE4) activateE=
l('Q1342', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1342&amp;hit=3D2&amp;index=3DIPI%3aIPI000263=
20&amp;px=3D1"=20=0D
      target=3D_blank>1342</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>672.39&nbsp;=
&nbsp;&nbsp;&nbsp;2014.15&nbsp;&nbsp;&nbsp;&nbsp;2014.10&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;FAQLALERVLQDWNALK</B></T=
T></TD></TR></TBODY></TABLE><PRE><HR>=0D
<B>Unassigned queries:</B> (no details means no match) <INPUT type=3Dhidden=
 value=3DToggleHere name=3DStopCheckBox>=0D
</PRE>=0D
<TABLE cellSpacing=3D0 border=3D0>=0D
  <TBODY>=0D
  <TR>=0D
    <TD>&nbsp;</TD>=0D
    <TD=20=0D
      noWrap><TT><B>Query&nbsp;&nbsp;&nbsp;Observed&nbsp;&nbsp;&nbsp;Mr(exp=
t)&nbsp;&nbsp;&nbsp;Mr(calc)&nbsp;&nbsp;&nbsp;Delta&nbsp;&nbsp;Miss&nbsp;Sc=
ore&nbsp;&nbsp;Rank&nbsp;&nbsp;&nbsp;Peptide</B></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"403.200648 from(404.208473,1+) title(Elution%20from%3a%200%2=
e36%20to%200%2e36%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(1)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q1; if (NS4 || IE4) activateEl('Q1=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=20=0D
      target=3D_blank>1</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>404.21&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;403.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"546.420601 from(547.428426,1+) title(Elution%20from%3a%20208=
%2e57%20to%20208%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(2)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q2; if (NS4 || IE4) activateEl('Q2=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D2&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=20=0D
      target=3D_blank>2</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>547.43&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;546.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"567.000010 from(568.007835,1+) title(Elution%20from%3a%2065%=
2e68%20to%2065%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(3)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q3; if (NS4 || IE4) activateEl('Q3=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D3&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=20=0D
      target=3D_blank>3</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>568.01&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;567.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"568.290207 from(569.298032,1+) title(Elution%20from%3a%2034%=
2e31%20to%2034%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(4)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q4; if (NS4 || IE4) activateEl('Q4=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D4&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=20=0D
      target=3D_blank>4</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>569.30&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;568.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"569.335770 from(570.343595,1+) title(Elution%20from%3a%2018%=
2e86%20to%2018%2e86%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%201%20%20) query(5)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q5; if (NS4 || IE4) activateEl('Q5=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D5&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=20=0D
      target=3D_blank>5</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>570.34&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;569.34</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"774.669277 from(775.677102,1+) title(Elution%20from%3a%20178=
%2e43%20to%20178%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(6)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q6; if (NS4 || IE4) activateEl('Q6=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D6&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=20=0D
      target=3D_blank>6</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>775.68&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;774.67</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"806.672882 from(404.344266,2+) title(Elution%20from%3a%204%2=
e83%20to%204%2e83%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(9)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q9; if (NS4 || IE4) activateEl('Q9=
', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D9&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=20=0D
      target=3D_blank>9</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>404.34&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;806.67</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"810.459986 from(406.237818,2+) title(Elution%20from%3a%200%2=
e49%20to%200%2e49%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(10)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q10; if (NS4 || IE4) activateEl('Q=
10', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D10&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>10</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>406.24&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;810.46</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"810.490616 from(406.253133,2+) title(Elution%20from%3a%205%2=
e04%20to%205%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(11)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q11; if (NS4 || IE4) activateEl('Q=
11', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D11&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>11</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>406.25&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;810.49</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"811.471338 from(406.743494,2+) title(Elution%20from%3a%201%2=
e11%20to%201%2e11%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(12)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q12; if (NS4 || IE4) activateEl('Q=
12', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D12&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>12</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>406.74&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;811.47</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"811.527660 from(406.771655,2+) title(Elution%20from%3a%205%2=
e56%20to%205%2e56%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(13)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q13; if (NS4 || IE4) activateEl('Q=
13', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D13&amp;hit=3D1&amp;index=3DIPI%3aIPI00004787=
&amp;px=3D1"=20=0D
      target=3D_blank>13</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>406.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;811.53&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;811.40&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;TYQCIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"823.524302 from(412.769976,2+) title(Elution%20from%3a%204%2=
e86%20to%204%2e86%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(14)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q14; if (NS4 || IE4) activateEl('Q=
14', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D14&amp;hit=3D1&amp;index=3DIPI%3aIPI00001582=
&amp;px=3D1"=20=0D
      target=3D_blank>14</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>412.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;823.52&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;823.41&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;VLNYCR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"826.525424 from(414.270537,2+) title(Elution%20from%3a%206%2=
e97%20to%206%2e97%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%=
3a%20%201%20%20) query(15)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q15; if (NS4 || IE4) activateEl('Q=
15', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D15&amp;hit=3D1&amp;index=3DIPI%3aIPI00030505=
&amp;px=3D1"=20=0D
      target=3D_blank>15</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>414.27&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;826.53&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;826.48&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;IIEVPEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"832.503322 from(417.259486,2+) title(Elution%20from%3a%205%2=
e38%20to%205%2e38%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(16)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q16; if (NS4 || IE4) activateEl('Q=
16', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D16&amp;hit=3D1&amp;index=3DIPI%3aIPI00033528=
&amp;px=3D1"=20=0D
      target=3D_blank>16</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>417.26&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;832.50&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;832.43&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;GSSLSAPSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"841.541026 from(421.778338,2+) title(Elution%20from%3a%207%2=
0to%207%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20%201%=
20%20) query(17)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q17; if (NS4 || IE4) activateEl('Q=
17', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D17&amp;hit=3D1&amp;index=3DIPI%3aIPI00028534=
&amp;px=3D1"=20=0D
      target=3D_blank>17</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>421.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;841.54&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;841.50&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;VAGAATPKK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"841.552656 from(421.784153,2+) title(Elution%20from%3a%203%2=
e85%20to%203%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(18)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q18; if (NS4 || IE4) activateEl('Q=
18', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D18&amp;hit=3D1&amp;index=3DIPI%3aIPI00002740=
&amp;px=3D1"=20=0D
      target=3D_blank>18</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>421.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;841.55&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;841.49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;GISLLPDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"843.552652 from(422.784151,2+) title(Elution%20from%3a%204%2=
e94%20to%204%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(21)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q21; if (NS4 || IE4) activateEl('Q=
21', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D21&amp;hit=3D1&amp;index=3DIPI%3aIPI00009657=
&amp;px=3D1"=20=0D
      target=3D_blank>21</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>422.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;843.55&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;843.49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;TAQAKVAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"854.482618 from(428.249134,2+) title(Elution%20from%3a%205%2=
e2%20to%205%2e2%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3a=
%20%201%20%20) query(22)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q22; if (NS4 || IE4) activateEl('Q=
22', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D22&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>22</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>428.25&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;854.48</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"854.545732 from(428.280691,2+) title(Elution%20from%3a%208%2=
e19%20to%208%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(23)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q23; if (NS4 || IE4) activateEl('Q=
23', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D23&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>23</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>428.28&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;854.55</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"855.497682 from(428.756666,2+) title(Elution%20from%3a%205%2=
e82%20to%205%2e82%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(24)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q24; if (NS4 || IE4) activateEl('Q=
24', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D24&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>24</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>428.76&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;855.50</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"855.543856 from(428.779753,2+) title(Elution%20from%3a%209%2=
e06%20to%209%2e06%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%=
3a%20%201%20%20) query(25)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q25; if (NS4 || IE4) activateEl('Q=
25', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D25&amp;hit=3D1&amp;index=3DIPI%3aIPI00019534=
&amp;px=3D1"=20=0D
      target=3D_blank>25</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>428.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;855.54&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;855.55&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nb=
sp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;LGLTIAIR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"856.537126 from(429.276388,2+) title(Elution%20from%3a%208%2=
e42%20to%208%2e42%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%=
3a%20%201%20%20) query(26)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q26; if (NS4 || IE4) activateEl('Q=
26', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D26&amp;hit=3D1&amp;index=3DIPI%3aIPI00007554=
&amp;px=3D1"=20=0D
      target=3D_blank>26</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>429.28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;856.54&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;856.49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;GGGNAVKVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"864.538440 from(433.277045,2+) title(Elution%20from%3a%205%2=
e09%20to%205%2e09%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(28)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q28; if (NS4 || IE4) activateEl('Q=
28', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D28&amp;hit=3D1&amp;index=3DIPI%3aIPI00026186=
&amp;px=3D1"=20=0D
      target=3D_blank>28</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>433.28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;864.54&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;864.47&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;VLGTGAYGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"868.531068 from(435.273359,2+) title(Elution%20from%3a%200%2=
e1%20to%200%2e1%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%3a=
%20%201%20%20) query(29)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q29; if (NS4 || IE4) activateEl('Q=
29', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D29&amp;hit=3D1&amp;index=3DIPI%3aIPI00000867=
&amp;px=3D1"=20=0D
      target=3D_blank>29</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>435.27&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;868.53&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;868.59&nbsp;&nbsp;&nbsp;&nbsp;-0.05&nbsp;&nbsp;&nbsp;&nb=
sp;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;VLQRLIK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"869.542224 from(435.778937,2+) title(Elution%20from%3a%200%2=
e46%20to%200%2e46%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(30)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q30; if (NS4 || IE4) activateEl('Q=
30', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D30&amp;hit=3D1&amp;index=3DIPI%3aIPI00000778=
&amp;px=3D1"=20=0D
      target=3D_blank>30</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>435.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;869.54&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;869.47&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;VNKAPEGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"871.571076 from(436.793363,2+) title(Elution%20from%3a%208%2=
e5%20to%208%2e5%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3a=
%20%201%20%20) query(31)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q31; if (NS4 || IE4) activateEl('Q=
31', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D31&amp;hit=3D1&amp;index=3DIPI%3aIPI00007382=
&amp;px=3D1"=20=0D
      target=3D_blank>31</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>436.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;871.57&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;871.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;KQSQLLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"872.512944 from(437.264297,2+) title(Elution%20from%3a%203%2=
e77%20to%203%2e77%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(32)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q32; if (NS4 || IE4) activateEl('Q=
32', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D32&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>32</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>437.26&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;872.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"872.515378 from(437.265514,2+) title(Elution%20from%3a%200%2=
e74%20to%200%2e74%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(33)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q33; if (NS4 || IE4) activateEl('Q=
33', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D33&amp;hit=3D1&amp;index=3DIPI%3aIPI00013111=
&amp;px=3D1"=20=0D
      target=3D_blank>33</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>437.27&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;872.52&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;872.47&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;DRSSLPAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"873.559020 from(437.787335,2+) title(Elution%20from%3a%201%2=
e08%20to%201%2e08%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(34)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q34; if (NS4 || IE4) activateEl('Q=
34', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D34&amp;hit=3D1&amp;index=3DIPI%3aIPI00031697=
&amp;px=3D1"=20=0D
      target=3D_blank>34</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>437.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;873.56&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;873.46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbs=
p;&nbsp;&nbsp;&nbsp;ASGAQLEAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"873.585444 from(437.800547,2+) title(Elution%20from%3a%2030%=
2e39%20to%2030%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(35)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q35; if (NS4 || IE4) activateEl('Q=
35', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D35&amp;hit=3D1&amp;index=3DIPI%3aIPI00004344=
&amp;px=3D1"=20=0D
      target=3D_blank>35</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>437.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;873.59&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;873.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;LTVLCLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"877.534468 from(439.775059,2+) title(Elution%20from%3a%208%2=
e44%20to%208%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(36)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q36; if (NS4 || IE4) activateEl('Q=
36', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D36&amp;hit=3D1&amp;index=3DIPI%3aIPI00012465=
&amp;px=3D1"=20=0D
      target=3D_blank>36</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>439.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;877.53&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;877.42&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;MDDAAVLK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"879.547672 from(440.781661,2+) title(Elution%20from%3a%2015%=
2e24%20to%2015%2e37%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%202%20%20) query(37)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q37; if (NS4 || IE4) activateEl('Q=
37', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D37&amp;hit=3D1&amp;index=3DIPI%3aIPI00025862=
&amp;px=3D1"=20=0D
      target=3D_blank>37</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>440.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;879.55&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;879.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbs=
p;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;YSLELKK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"880.555634 from(441.285642,2+) title(Elution%20from%3a%2017%=
2e52%20to%2017%2e52%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(38)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q38; if (NS4 || IE4) activateEl('Q=
38', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D38&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>38</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>441.29&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;880.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"884.514900 from(443.265275,2+) title(Elution%20from%3a%207%2=
e31%20to%207%2e31%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(40)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q40; if (NS4 || IE4) activateEl('Q=
40', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D40&amp;hit=3D1&amp;index=3DIPI%3aIPI00013618=
&amp;px=3D1"=20=0D
      target=3D_blank>40</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>443.27&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;884.51&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;884.48&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;RLSPEQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"897.681806 from(449.848728,2+) title(Elution%20from%3a%20196=
%2e68%20to%20196%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(42)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q42; if (NS4 || IE4) activateEl('Q=
42', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D42&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>42</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>449.85&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;897.68</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"898.674998 from(450.345324,2+) title(Elution%20from%3a%20196=
%2e6%20to%20196%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(43)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q43; if (NS4 || IE4) activateEl('Q=
43', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D43&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>43</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>450.35&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;898.67</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"899.508426 from(450.762038,2+) title(Elution%20from%3a%208%2=
e37%20to%208%2e37%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(44)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q44; if (NS4 || IE4) activateEl('Q=
44', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D44&amp;hit=3D1&amp;index=3DIPI%3aIPI00018803=
&amp;px=3D1"=20=0D
      target=3D_blank>44</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>450.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;899.51&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;899.41&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;YDYAGVGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"899.584072 from(450.799861,2+) title(Elution%20from%3a%204%2=
e78%20to%204%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(45)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q45; if (NS4 || IE4) activateEl('Q=
45', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D45&amp;hit=3D1&amp;index=3DIPI%3aIPI00003945=
&amp;px=3D1"=20=0D
      target=3D_blank>45</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>450.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;899.58&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;899.48&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;QSALTQPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"900.557098 from(451.286374,2+) title(Elution%20from%3a%209%2=
e32%20to%209%2e32%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%=
3a%20%201%20%20) query(46)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q46; if (NS4 || IE4) activateEl('Q=
46', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D46&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>46</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>451.29&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;900.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"902.578414 from(452.297032,2+) title(Elution%20from%3a%20196=
%2e73%20to%20196%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(47)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q47; if (NS4 || IE4) activateEl('Q=
47', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D47&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>47</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>452.30&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;902.58</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"908.512268 from(455.263959,2+) title(Elution%20from%3a%2015%=
2e97%20to%2015%2e97%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(49)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q49; if (NS4 || IE4) activateEl('Q=
49', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D49&amp;hit=3D1&amp;index=3DIPI%3aIPI00032338=
&amp;px=3D1"=20=0D
      target=3D_blank>49</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>455.26&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;908.51&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;908.46&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbs=
p;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbs=
p;&nbsp;&nbsp;&nbsp;MVASMSKR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"914.555474 from(458.285562,2+) title(Elution%20from%3a%2011%=
2e33%20to%2011%2e33%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(51)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q51; if (NS4 || IE4) activateEl('Q=
51', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D51&amp;hit=3D1&amp;index=3DIPI%3aIPI00005655=
&amp;px=3D1"=20=0D
      target=3D_blank>51</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>458.29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;914.56&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;914.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbs=
p;&nbsp;&nbsp;&nbsp;IVWLQEK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"915.591842 from(458.803746,2+) title(Elution%20from%3a%209%2=
e78%20to%209%2e78%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%=
3a%20%201%20%20) query(52)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q52; if (NS4 || IE4) activateEl('Q=
52', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D52&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>52</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>458.80&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;915.59</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"918.541606 from(460.278628,2+) title(Elution%20from%3a%208%2=
e26%20to%208%2e26%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(54)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q54; if (NS4 || IE4) activateEl('Q=
54', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D54&amp;hit=3D1&amp;index=3DIPI%3aIPI00006683=
&amp;px=3D1"=20=0D
      target=3D_blank>54</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>460.28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;918.54&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;918.55&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nb=
sp;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;VSFTIKPK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"920.537444 from(461.276547,2+) title(Elution%20from%3a%2010%=
2e22%20to%2010%2e22%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%201%20%20) query(55)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q55; if (NS4 || IE4) activateEl('Q=
55', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D55&amp;hit=3D1&amp;index=3DIPI%3aIPI00006029=
&amp;px=3D1"=20=0D
      target=3D_blank>55</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>461.28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;920.54&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;920.49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;DLHAPGRR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"924.529638 from(463.272644,2+) title(Elution%20from%3a%2013%=
2e16%20to%2013%2e16%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycle=
s%3a%20%201%20%20) query(57)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q57; if (NS4 || IE4) activateEl('Q=
57', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D57&amp;hit=3D1&amp;index=3DIPI%3aIPI00015829=
&amp;px=3D1"=20=0D
      target=3D_blank>57</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>463.27&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;924.53&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;924.48&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;QAGPPQATR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"924.618898 from(463.317274,2+) title(Elution%20from%3a%20195=
%2e68%20to%20195%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(58)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q58; if (NS4 || IE4) activateEl('Q=
58', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D58&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>58</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>463.32&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;924.62</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"924.622254 from(463.318952,2+) title(Elution%20from%3a%20198=
%2e71%20to%20198%2e71%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(59)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q59; if (NS4 || IE4) activateEl('Q=
59', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D59&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>59</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>463.32&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;924.62</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"924.622640 from(463.319145,2+) title(Elution%20from%3a%20183=
%2e64%20to%20183%2e64%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(60)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q60; if (NS4 || IE4) activateEl('Q=
60', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D60&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>60</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>463.32&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;924.62</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"938.544862 from(470.280256,2+) title(Elution%20from%3a%207%2=
e77%20to%207%2e77%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(62)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q62; if (NS4 || IE4) activateEl('Q=
62', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D62&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>62</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>470.28&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;938.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"941.655622 from(471.835636,2+) title(Elution%20from%3a%20196=
%2e09%20to%20196%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(63)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q63; if (NS4 || IE4) activateEl('Q=
63', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D63&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>63</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>471.84&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;941.66</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"942.541842 from(472.278746,2+) title(Elution%20from%3a%209%2=
e68%20to%209%2e68%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(64)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q64; if (NS4 || IE4) activateEl('Q=
64', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D64&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>64</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>472.28&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;942.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"942.612408 from(472.314029,2+) title(Elution%20from%3a%2027%=
2e56%20to%2027%2e56%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(65)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q65; if (NS4 || IE4) activateEl('Q=
65', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D65&amp;hit=3D1&amp;index=3DIPI%3aIPI00007869=
&amp;px=3D1"=20=0D
      target=3D_blank>65</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>472.31&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;942.61&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;942.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;ETIKDLPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"942.662238 from(472.338944,2+) title(Elution%20from%3a%20195=
%2e96%20to%20195%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(66)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q66; if (NS4 || IE4) activateEl('Q=
66', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D66&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>66</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>472.34&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;942.66</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"943.537442 from(472.776546,2+) title(Elution%20from%3a%209%2=
e83%20to%209%2e83%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%=
3a%20%201%20%20) query(67)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q67; if (NS4 || IE4) activateEl('Q=
67', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D67&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>67</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>472.78&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;943.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"944.539928 from(473.277789,2+) title(Elution%20from%3a%203%2=
e62%20to%203%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(69)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q69; if (NS4 || IE4) activateEl('Q=
69', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D69&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>69</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>473.28&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;944.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"944.569064 from(473.292357,2+) title(Elution%20from%3a%2015%=
2e32%20to%2015%2e32%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(70)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q70; if (NS4 || IE4) activateEl('Q=
70', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D70&amp;hit=3D1&amp;index=3DIPI%3aIPI00032746=
&amp;px=3D1"=20=0D
      target=3D_blank>70</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>473.29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;944.57&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;944.49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;SGTLLPSDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"944.588312 from(473.301981,2+) title(Elution%20from%3a%2011%=
2e15%20to%2011%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(71)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q71; if (NS4 || IE4) activateEl('Q=
71', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D71&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>71</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>473.30&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;944.59</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"945.557802 from(473.786726,2+) title(Elution%20from%3a%205%2=
e12%20to%205%2e12%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(72)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q72; if (NS4 || IE4) activateEl('Q=
72', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D72&amp;hit=3D1&amp;index=3DIPI%3aIPI00026887=
&amp;px=3D1"=20=0D
      target=3D_blank>72</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>473.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;945.56&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;945.50&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;GLSSAARER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"946.611036 from(474.313343,2+) title(Elution%20from%3a%2030%=
2e88%20to%2030%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(73)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q73; if (NS4 || IE4) activateEl('Q=
73', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D73&amp;hit=3D1&amp;index=3DIPI%3aIPI00014555=
&amp;px=3D1"=20=0D
      target=3D_blank>73</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>474.31&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;946.61&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;946.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbs=
p;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nb=
sp;&nbsp;&nbsp;LAMGIWIK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"948.578588 from(475.297119,2+) title(Elution%20from%3a%2022%=
2e76%20to%2022%2e76%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%201%20%20) query(76)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q76; if (NS4 || IE4) activateEl('Q=
76', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D76&amp;hit=3D1&amp;index=3DIPI%3aIPI00002461=
&amp;px=3D1"=20=0D
      target=3D_blank>76</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>475.30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;948.58&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;948.50&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;SFLVGEAAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"949.654374 from(475.835012,2+) title(Elution%20from%3a%204%2=
e24%20to%204%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(77)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q77; if (NS4 || IE4) activateEl('Q=
77', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D77&amp;hit=3D1&amp;index=3DIPI%3aIPI00020117=
&amp;px=3D1"=20=0D
      target=3D_blank>77</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>475.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;949.65&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;949.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;AFAKASDLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"950.628808 from(476.322229,2+) title(Elution%20from%3a%204%2=
e5%20to%204%2e5%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3a=
%20%201%20%20) query(78)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q78; if (NS4 || IE4) activateEl('Q=
78', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D78&amp;hit=3D1&amp;index=3DIPI%3aIPI00021699=
&amp;px=3D1"=20=0D
      target=3D_blank>78</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>476.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;950.63&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;950.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;VKEPPILR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"953.534996 from(477.775323,2+) title(Elution%20from%3a%200%2=
e64%20to%200%2e64%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%=
3a%20%201%20%20) query(80)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q80; if (NS4 || IE4) activateEl('Q=
80', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D80&amp;hit=3D1&amp;index=3DIPI%3aIPI00006575=
&amp;px=3D1"=20=0D
      target=3D_blank>80</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>477.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;953.53&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;953.49&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;GHWTAARR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"954.577700 from(478.296675,2+) title(Elution%20from%3a%2054%=
2e98%20to%2054%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(83)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q83; if (NS4 || IE4) activateEl('Q=
83', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D83&amp;hit=3D1&amp;index=3DIPI%3aIPI00006861=
&amp;px=3D1"=20=0D
      target=3D_blank>83</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>478.30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;954.58&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;954.48&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;MFKLDTGK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"960.540492 from(481.278071,2+) title(Elution%20from%3a%202%2=
e26%20to%202%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(85)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q85; if (NS4 || IE4) activateEl('Q=
85', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D85&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>85</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>481.28&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;960.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"960.570246 from(481.292948,2+) title(Elution%20from%3a%205%2=
e61%20to%205%2e61%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%=
3a%20%201%20%20) query(86)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q86; if (NS4 || IE4) activateEl('Q=
86', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D86&amp;hit=3D1&amp;index=3DIPI%3aIPI00003833=
&amp;px=3D1"=20=0D
      target=3D_blank>86</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>481.29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;960.57&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;960.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;GLFTGLTPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"960.613734 from(481.314692,2+) title(Elution%20from%3a%2011%=
2e12%20to%2011%2e12%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%201%20%20) query(87)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q87; if (NS4 || IE4) activateEl('Q=
87', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D87&amp;hit=3D1&amp;index=3DIPI%3aIPI00020153=
&amp;px=3D1"=20=0D
      target=3D_blank>87</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>481.31&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;960.61&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;960.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;QAQFALQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"961.537058 from(481.776354,2+) title(Elution%20from%3a%202%2=
e65%20to%202%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(88)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q88; if (NS4 || IE4) activateEl('Q=
88', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D88&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>88</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>481.78&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;961.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"962.534194 from(482.274922,2+) title(Elution%20from%3a%202%2=
e8%20to%202%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a=
%20%201%20%20) query(89)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q89; if (NS4 || IE4) activateEl('Q=
89', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D89&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>89</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>482.27&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;962.53</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"964.566328 from(483.290989,2+) title(Elution%20from%3a%208%2=
e55%20to%208%2e68%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%=
3a%20%202%20%20) query(90)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q90; if (NS4 || IE4) activateEl('Q=
90', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D90&amp;hit=3D1&amp;index=3DIPI%3aIPI00026843=
&amp;px=3D1"=20=0D
      target=3D_blank>90</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>483.29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;964.57&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;964.50&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;ADYEKALR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"968.655134 from(485.335392,2+) title(Elution%20from%3a%20199=
%2e28%20to%20199%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(91)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q91; if (NS4 || IE4) activateEl('Q=
91', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D91&amp;hit=3D1&amp;index=3DIPI%3aIPI00012934=
&amp;px=3D1"=20=0D
      target=3D_blank>91</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>485.34&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;968.66&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;968.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;QMLIHLAK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"968.657586 from(485.336618,2+) title(Elution%20from%3a%20196=
%2e3%20to%20196%2e3%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(92)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q92; if (NS4 || IE4) activateEl('Q=
92', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D92&amp;hit=3D1&amp;index=3DIPI%3aIPI00009175=
&amp;px=3D1"=20=0D
      target=3D_blank>92</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>485.34&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;968.66&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;968.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;ELAPAGRAGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"968.659068 from(485.337359,2+) title(Elution%20from%3a%20184=
%2e66%20to%20184%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(93)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q93; if (NS4 || IE4) activateEl('Q=
93', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D93&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>93</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>485.34&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;968.66</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"985.681676 from(493.848663,2+) title(Elution%20from%3a%20196=
%2e78%20to%20196%2e78%20%20%20period%3a%200%20%20%20experiment%3a%202%20cyc=
les%3a%20%201%20%20) query(95)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q95; if (NS4 || IE4) activateEl('Q=
95', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D95&amp;hit=3D1&amp;index=3DIPI%3aIPI00006158=
&amp;px=3D1"=20=0D
      target=3D_blank>95</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>493.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;985.68&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;985.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;LRHNGPPPV</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"986.571808 from(494.293729,2+) title(Elution%20from%3a%2010%=
2e94%20to%2010%2e94%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(96)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q96; if (NS4 || IE4) activateEl('Q=
96', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D96&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1"=
=20=0D
      target=3D_blank>96</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>494.29&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;986.57</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"986.685204 from(494.350427,2+) title(Elution%20from%3a%20196=
%2e8%20to%20196%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(97)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q97; if (NS4 || IE4) activateEl('Q=
97', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D97&amp;hit=3D1&amp;index=3DIPI%3aIPI00028297=
&amp;px=3D1"=20=0D
      target=3D_blank>97</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>494.35&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;986.69&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;986.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;DTLWLALR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"988.599944 from(495.307797,2+) title(Elution%20from%3a%2019%=
2e32%20to%2019%2e32%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycle=
s%3a%20%201%20%20) query(98)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q98; if (NS4 || IE4) activateEl('Q=
98', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D98&amp;hit=3D1&amp;index=3DIPI%3aIPI00014712=
&amp;px=3D1"=20=0D
      target=3D_blank>98</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>495.31&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;988.60&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;988.64&nbsp;&nbsp;&nbsp;&nbsp;-0.04&nbsp;&nbsp;&nbsp;&nb=
sp;0&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;IPILGVHLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"988.633832 from(495.324741,2+) title(Elution%20from%3a%2012%=
2e05%20to%2012%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(99)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q99; if (NS4 || IE4) activateEl('Q=
99', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D99&amp;hit=3D1&amp;index=3DIPI%3aIPI00021046=
&amp;px=3D1"=20=0D
      target=3D_blank>99</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>495.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;988.63&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;988.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;RLELEMAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"989.639866 from(495.827758,2+) title(Elution%20from%3a%2028%=
2e52%20to%2028%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycle=
s%3a%20%201%20%20) query(100)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q100; if (NS4 || IE4) activateEl('=
Q100', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D100&amp;hit=3D1&amp;index=3DIPI%3aIPI0002545=
9&amp;px=3D1"=20=0D
      target=3D_blank>100</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>495.83&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;989.64&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;989.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;LSNIFVIGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"990.683018 from(496.349334,2+) title(Elution%20from%3a%20198=
%2e54%20to%20198%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(101)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q101; if (NS4 || IE4) activateEl('=
Q101', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D101&amp;hit=3D1&amp;index=3DIPI%3aIPI0000877=
4&amp;px=3D1"=20=0D
      target=3D_blank>101</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>496.35&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;990.68&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;990.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&=
nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;KIHHDLTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"995.618782 from(498.817216,2+) title(Elution%20from%3a%2015%=
2e22%20to%2015%2e22%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycle=
s%3a%20%201%20%20) query(105)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q105; if (NS4 || IE4) activateEl('=
Q105', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D105&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>105</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>498.82&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;995.62</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"996.626874 from(499.321262,2+) title(Elution%20from%3a%2016%=
2e3%20to%2016%2e3%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(106)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q106; if (NS4 || IE4) activateEl('=
Q106', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D106&amp;hit=3D1&amp;index=3DIPI%3aIPI0002725=
5&amp;px=3D1"=20=0D
      target=3D_blank>106</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>499.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;996.63&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;996.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;HVLTTLGEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"998.519990 from(500.267820,2+) title(Elution%20from%3a%2015%=
2e4%20to%2015%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%=
3a%20%201%20%20) query(108)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q108; if (NS4 || IE4) activateEl('=
Q108', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D108&amp;hit=3D1&amp;index=3DIPI%3aIPI0001097=
0&amp;px=3D1"=20=0D
      target=3D_blank>108</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>500.27&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;998.52&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;998.55&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;=
&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;VLMPPDAIK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"999.582198 from(500.798924,2+) title(Elution%20from%3a%209%2=
e29%20to%209%2e29%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%=
3a%20%201%20%20) query(109)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q109; if (NS4 || IE4) activateEl('=
Q109', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D109&amp;hit=3D1&amp;index=3DIPI%3aIPI0001818=
0&amp;px=3D1"=20=0D
      target=3D_blank>109</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>500.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;999.58&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;999.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&=
nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;NDLAVVDVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1002.590960 from(502.303305,2+) title(Elution%20from%3a%2015=
%2e84%20to%2015%2e84%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(110)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q110; if (NS4 || IE4) activateEl('=
Q110', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D110&amp;hit=3D1&amp;index=3DIPI%3aIPI0001193=
6&amp;px=3D1"=20=0D
      target=3D_blank>110</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>502.30&nbsp;&nbsp;&nbsp;&nbsp;1002.59&nbsp;&nbsp;&=
nbsp;&nbsp;1002.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EPGVFNGKR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1003.588004 from(502.801827,2+) title(Elution%20from%3a%2010=
%2e32%20to%2010%2e32%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(111)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q111; if (NS4 || IE4) activateEl('=
Q111', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D111&amp;hit=3D1&amp;index=3DIPI%3aIPI0000179=
9&amp;px=3D1"=20=0D
      target=3D_blank>111</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>502.80&nbsp;&nbsp;&nbsp;&nbsp;1003.59&nbsp;&nbsp;&=
nbsp;&nbsp;1003.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ASTAGMILPK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1004.641554 from(503.328602,2+) title(Elution%20from%3a%2012=
%2e12%20to%2012%2e12%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(112)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q112; if (NS4 || IE4) activateEl('=
Q112', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D112&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>112</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>503.33&nbsp;&=
nbsp;&nbsp;&nbsp;1004.64</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1006.601794 from(504.308722,2+) title(Elution%20from%3a%205%=
2e63%20to%205%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(119)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q119; if (NS4 || IE4) activateEl('=
Q119', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D119&amp;hit=3D1&amp;index=3DIPI%3aIPI0002068=
3&amp;px=3D1"=20=0D
      target=3D_blank>119</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>504.31&nbsp;&nbsp;&nbsp;&nbsp;1006.60&nbsp;&nbsp;&nbs=
p;&nbsp;1006.53&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;KGGNHIPER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1006.625080 from(504.320365,2+) title(Elution%20from%3a%2039=
%2e73%20to%2039%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(120)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q120; if (NS4 || IE4) activateEl('=
Q120', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D120&amp;hit=3D1&amp;index=3DIPI%3aIPI0000971=
8&amp;px=3D1"=20=0D
      target=3D_blank>120</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>504.32&nbsp;&nbsp;&nbsp;&nbsp;1006.63&nbsp;&nbsp;&=
nbsp;&nbsp;1006.63&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;KAIFIFIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1006.625812 from(504.320731,2+) title(Elution%20from%3a%2064=
%2e53%20to%2064%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(121)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q121; if (NS4 || IE4) activateEl('=
Q121', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D121&amp;hit=3D1&amp;index=3DIPI%3aIPI0000971=
8&amp;px=3D1"=20=0D
      target=3D_blank>121</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>504.32&nbsp;&nbsp;&nbsp;&nbsp;1006.63&nbsp;&nbsp;&=
nbsp;&nbsp;1006.63&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;KAIFIFIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1006.633188 from(504.324419,2+) title(Elution%20from%3a%2061=
%2e49%20to%2061%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(122)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q122; if (NS4 || IE4) activateEl('=
Q122', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D122&amp;hit=3D1&amp;index=3DIPI%3aIPI0000971=
8&amp;px=3D1"=20=0D
      target=3D_blank>122</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>504.32&nbsp;&nbsp;&nbsp;&nbsp;1006.63&nbsp;&nbsp;&=
nbsp;&nbsp;1006.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KAIFIFIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1008.615404 from(505.315527,2+) title(Elution%20from%3a%2012=
%2e25%20to%2012%2e25%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(123)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q123; if (NS4 || IE4) activateEl('=
Q123', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D123&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>123</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>505.32&nbsp;&=
nbsp;&nbsp;&nbsp;1008.62</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1012.676474 from(507.346062,2+) title(Elution%20from%3a%2020=
0%2e01%20to%20200%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(124)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q124; if (NS4 || IE4) activateEl('=
Q124', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D124&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>124</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>507.35&nbsp;&=
nbsp;&nbsp;&nbsp;1012.68</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1012.685638 from(507.350644,2+) title(Elution%20from%3a%2018=
4%2e48%20to%20184%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(125)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q125; if (NS4 || IE4) activateEl('=
Q125', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D125&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>125</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>507.35&nbsp;&=
nbsp;&nbsp;&nbsp;1012.69</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1012.706728 from(507.361189,2+) title(Elution%20from%3a%2019=
6%2e96%20to%20196%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(126)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q126; if (NS4 || IE4) activateEl('=
Q126', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D126&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>126</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>507.36&nbsp;&=
nbsp;&nbsp;&nbsp;1012.71</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1014.614562 from(508.315106,2+) title(Elution%20from%3a%208%=
2e52%20to%208%2e52%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(127)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q127; if (NS4 || IE4) activateEl('=
Q127', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D127&amp;hit=3D1&amp;index=3DIPI%3aIPI0002886=
3&amp;px=3D1"=20=0D
      target=3D_blank>127</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>508.32&nbsp;&nbsp;&nbsp;&nbsp;1014.61&nbsp;&nbsp;&nbs=
p;&nbsp;1014.51&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;MLCPLPER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1019.568354 from(510.792002,2+) title(Elution%20from%3a%208%=
2e11%20to%208%2e11%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(129)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q129; if (NS4 || IE4) activateEl('=
Q129', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D129&amp;hit=3D1&amp;index=3DIPI%3aIPI0002773=
4&amp;px=3D1"=20=0D
      target=3D_blank>129</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>510.79&nbsp;&nbsp;&nbsp;&nbsp;1019.57&nbsp;&nbsp;&=
nbsp;&nbsp;1019.50&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YRPPQGMR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1025.556302 from(513.785976,2+) title(Elution%20from%3a%2017=
%2e46%20to%2017%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(132)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q132; if (NS4 || IE4) activateEl('=
Q132', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D132&amp;hit=3D1&amp;index=3DIPI%3aIPI0001892=
8&amp;px=3D1"=20=0D
      target=3D_blank>132</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>513.79&nbsp;&nbsp;&nbsp;&nbsp;1025.56&nbsp;&nbsp;&=
nbsp;&nbsp;1025.63&nbsp;&nbsp;&nbsp;&nbsp;-0.08&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;IRVLLQER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1025.658018 from(513.836834,2+) title(Elution%20from%3a%209%=
2e14%20to%209%2e14%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(133)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q133; if (NS4 || IE4) activateEl('=
Q133', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D133&amp;hit=3D1&amp;index=3DIPI%3aIPI0001779=
3&amp;px=3D1"=20=0D
      target=3D_blank>133</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>513.84&nbsp;&nbsp;&nbsp;&nbsp;1025.66&nbsp;&nbsp;&=
nbsp;&nbsp;1025.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VDLATVPRR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1026.658888 from(514.337269,2+) title(Elution%20from%3a%209%=
2e27%20to%209%2e27%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(134)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q134; if (NS4 || IE4) activateEl('=
Q134', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D134&amp;hit=3D1&amp;index=3DIPI%3aIPI0000828=
3&amp;px=3D1"=20=0D
      target=3D_blank>134</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>514.34&nbsp;&nbsp;&nbsp;&nbsp;1026.66&nbsp;&nbsp;&=
nbsp;&nbsp;1026.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DARNGLLLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1027.640676 from(514.828163,2+) title(Elution%20from%3a%2017=
%2e59%20to%2017%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(135)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q135; if (NS4 || IE4) activateEl('=
Q135', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D135&amp;hit=3D1&amp;index=3DIPI%3aIPI0002331=
2&amp;px=3D1"=20=0D
      target=3D_blank>135</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>514.83&nbsp;&nbsp;&nbsp;&nbsp;1027.64&nbsp;&nbsp;&=
nbsp;&nbsp;1027.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FPSIMVYR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1028.603282 from(515.309466,2+) title(Elution%20from%3a%202%=
2e75%20to%202%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(136)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q136; if (NS4 || IE4) activateEl('=
Q136', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D136&amp;hit=3D1&amp;index=3DIPI%3aIPI0000362=
8&amp;px=3D1"=20=0D
      target=3D_blank>136</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>515.31&nbsp;&nbsp;&nbsp;&nbsp;1028.60&nbsp;&nbsp;&=
nbsp;&nbsp;1028.61&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EVPLFRLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1029.720936 from(515.868293,2+) title(Elution%20from%3a%2019=
8%2e33%20to%20198%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(137)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q137; if (NS4 || IE4) activateEl('=
Q137', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D137&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>137</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>515.87&nbsp;&=
nbsp;&nbsp;&nbsp;1029.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1030.604156 from(516.309903,2+) title(Elution%20from%3a%2011=
%2e97%20to%2011%2e97%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(138)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q138; if (NS4 || IE4) activateEl('=
Q138', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D138&amp;hit=3D1&amp;index=3DIPI%3aIPI0000588=
0&amp;px=3D1"=20=0D
      target=3D_blank>138</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>516.31&nbsp;&nbsp;&nbsp;&nbsp;1030.60&nbsp;&nbsp;&=
nbsp;&nbsp;1030.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KMTGKPEPK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1030.720452 from(516.368051,2+) title(Elution%20from%3a%2019=
8%2e21%20to%20198%2e21%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(139)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q139; if (NS4 || IE4) activateEl('=
Q139', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D139&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>139</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>516.37&nbsp;&=
nbsp;&nbsp;&nbsp;1030.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1031.665888 from(516.840769,2+) title(Elution%20from%3a%2012=
%2e82%20to%2012%2e82%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(140)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q140; if (NS4 || IE4) activateEl('=
Q140', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D140&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>140</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>516.84&nbsp;&=
nbsp;&nbsp;&nbsp;1031.67</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1035.567970 from(518.791810,2+) title(Elution%20from%3a%208%=
2e32%20to%208%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(143)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q143; if (NS4 || IE4) activateEl('=
Q143', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D143&amp;hit=3D1&amp;index=3DIPI%3aIPI0001918=
5&amp;px=3D1"=20=0D
      target=3D_blank>143</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>518.79&nbsp;&nbsp;&nbsp;&nbsp;1035.57&nbsp;&nbsp;&=
nbsp;&nbsp;1035.50&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;NELTEMKR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1036.298734 from(519.157192,2+) title(Elution%20from%3a%2015=
3%2e94%20to%20153%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(144)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q144; if (NS4 || IE4) activateEl('=
Q144', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D144&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>144</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>519.16&nbsp;&=
nbsp;&nbsp;&nbsp;1036.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1038.659660 from(520.337655,2+) title(Elution%20from%3a%2019=
%2e14%20to%2019%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(147)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q147; if (NS4 || IE4) activateEl('=
Q147', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D147&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>147</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>520.34&nbsp;&=
nbsp;&nbsp;&nbsp;1038.66</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1039.648094 from(520.831872,2+) title(Elution%20from%3a%2042=
%2e46%20to%2042%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(149)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q149; if (NS4 || IE4) activateEl('=
Q149', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D149&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>149</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>520.83&nbsp;&=
nbsp;&nbsp;&nbsp;1039.65</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1042.661028 from(522.338339,2+) title(Elution%20from%3a%2014=
%2e55%20to%2014%2e55%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(150)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q150; if (NS4 || IE4) activateEl('=
Q150', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D150&amp;hit=3D1&amp;index=3DIPI%3aIPI0001270=
3&amp;px=3D1"=20=0D
      target=3D_blank>150</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>522.34&nbsp;&nbsp;&nbsp;&nbsp;1042.66&nbsp;&nbsp;&=
nbsp;&nbsp;1042.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KIVAELQDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1046.485992 from(524.250821,2+) title(Elution%20from%3a%200%=
2e85%20to%200%2e85%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(151)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q151; if (NS4 || IE4) activateEl('=
Q151', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D151&amp;hit=3D1&amp;index=3DIPI%3aIPI0000570=
2&amp;px=3D1"=20=0D
      target=3D_blank>151</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>524.25&nbsp;&nbsp;&nbsp;&nbsp;1046.49&nbsp;&nbsp;&=
nbsp;&nbsp;1046.57&nbsp;&nbsp;&nbsp;&nbsp;-0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LKSATGSEVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1047.674244 from(524.844947,2+) title(Elution%20from%3a%2012=
%2e87%20to%2012%2e87%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(152)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q152; if (NS4 || IE4) activateEl('=
Q152', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D152&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>152</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>524.84&nbsp;&=
nbsp;&nbsp;&nbsp;1047.67</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1053.651058 from(527.833354,2+) title(Elution%20from%3a%2012=
%2e9%20to%2012%2e9%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(154)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q154; if (NS4 || IE4) activateEl('=
Q154', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D154&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>154</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>527.83&nbsp;&=
nbsp;&nbsp;&nbsp;1053.65</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1055.617856 from(528.816753,2+) title(Elution%20from%3a%2033=
%2e24%20to%2033%2e24%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(156)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q156; if (NS4 || IE4) activateEl('=
Q156', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D156&amp;hit=3D1&amp;index=3DIPI%3aIPI0001219=
6&amp;px=3D1"=20=0D
      target=3D_blank>156</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>528.82&nbsp;&nbsp;&nbsp;&nbsp;1055.62&nbsp;&nbsp;&=
nbsp;&nbsp;1055.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AVGHFELRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1056.609080 from(529.312365,2+) title(Elution%20from%3a%2022=
%2e45%20to%2022%2e45%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(157)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q157; if (NS4 || IE4) activateEl('=
Q157', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D157&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>157</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>529.31&nbsp;&=
nbsp;&nbsp;&nbsp;1056.61</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1056.719168 from(529.367409,2+) title(Elution%20from%3a%2018=
5%2e09%20to%20185%2e09%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(158)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q158; if (NS4 || IE4) activateEl('=
Q158', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D158&amp;hit=3D1&amp;index=3DIPI%3aIPI0000101=
6&amp;px=3D1"=20=0D
      target=3D_blank>158</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.37&nbsp;&nbsp;&nbsp;&nbsp;1056.72&nbsp;&nbsp;&=
nbsp;&nbsp;1056.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RLSTLQLVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1056.734792 from(529.375221,2+) title(Elution%20from%3a%2020=
0%2e32%20to%20200%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(159)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q159; if (NS4 || IE4) activateEl('=
Q159', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D159&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>159</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>529.38&nbsp;&=
nbsp;&nbsp;&nbsp;1056.73</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1056.739664 from(529.377657,2+) title(Elution%20from%3a%2019=
7%2e39%20to%20197%2e39%20%20%20period%3a%200%20%20%20experiment%3a%203%20cy=
cles%3a%20%201%20%20) query(160)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q160; if (NS4 || IE4) activateEl('=
Q160', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D160&amp;hit=3D1&amp;index=3DIPI%3aIPI0002764=
6&amp;px=3D1"=20=0D
      target=3D_blank>160</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.38&nbsp;&nbsp;&nbsp;&nbsp;1056.74&nbsp;&nbsp;&=
nbsp;&nbsp;1056.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IATEAGRLAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1056.762104 from(529.388877,2+) title(Elution%20from%3a%2018=
8%2e09%20to%20188%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(161)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q161; if (NS4 || IE4) activateEl('=
Q161', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D161&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>161</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>529.39&nbsp;&=
nbsp;&nbsp;&nbsp;1056.76</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1057.730140 from(529.872895,2+) title(Elution%20from%3a%2018=
7%2e07%20to%20187%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(162)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q162; if (NS4 || IE4) activateEl('=
Q162', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D162&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>162</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>529.87&nbsp;&=
nbsp;&nbsp;&nbsp;1057.73</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1066.669726 from(534.342688,2+) title(Elution%20from%3a%2025=
%2e96%20to%2025%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(163)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q163; if (NS4 || IE4) activateEl('=
Q163', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D163&amp;hit=3D1&amp;index=3DIPI%3aIPI0001670=
5&amp;px=3D1"=20=0D
      target=3D_blank>163</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>534.34&nbsp;&nbsp;&nbsp;&nbsp;1066.67&nbsp;&nbsp;&=
nbsp;&nbsp;1066.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KVWLHQTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1069.609934 from(535.812792,2+) title(Elution%20from%3a%204%=
2e68%20to%204%2e68%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(166)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q166; if (NS4 || IE4) activateEl('=
Q166', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D166&amp;hit=3D1&amp;index=3DIPI%3aIPI0003059=
9&amp;px=3D1"=20=0D
      target=3D_blank>166</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>535.81&nbsp;&nbsp;&nbsp;&nbsp;1069.61&nbsp;&nbsp;&=
nbsp;&nbsp;1069.62&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;LEIKQLGNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1074.688286 from(538.351968,2+) title(Elution%20from%3a%2013=
%2e54%20to%2013%2e54%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(169)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q169; if (NS4 || IE4) activateEl('=
Q169', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D169&amp;hit=3D1&amp;index=3DIPI%3aIPI0001239=
5&amp;px=3D1"=20=0D
      target=3D_blank>169</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>538.35&nbsp;&nbsp;&nbsp;&nbsp;1074.69&nbsp;&nbsp;&=
nbsp;&nbsp;1074.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DPFQKATLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1075.692674 from(538.854162,2+) title(Elution%20from%3a%2013=
%2e6%20to%2013%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(170)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q170; if (NS4 || IE4) activateEl('=
Q170', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D170&amp;hit=3D1&amp;index=3DIPI%3aIPI0001289=
1&amp;px=3D1"=20=0D
      target=3D_blank>170</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>538.85&nbsp;&nbsp;&nbsp;&nbsp;1075.69&nbsp;&nbsp;&=
nbsp;&nbsp;1075.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DPYALRSVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1080.586974 from(541.301312,2+) title(Elution%20from%3a%2020=
%2e56%20to%2020%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(171)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q171; if (NS4 || IE4) activateEl('=
Q171', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D171&amp;hit=3D1&amp;index=3DIPI%3aIPI0002789=
9&amp;px=3D1"=20=0D
      target=3D_blank>171</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>541.30&nbsp;&nbsp;&nbsp;&nbsp;1080.59&nbsp;&nbsp;&=
nbsp;&nbsp;1080.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SSYADKAPSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1081.576292 from(541.795971,2+) title(Elution%20from%3a%2012=
%2e77%20to%2012%2e77%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(172)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q172; if (NS4 || IE4) activateEl('=
Q172', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D172&amp;hit=3D1&amp;index=3DIPI%3aIPI0000556=
8&amp;px=3D1"=20=0D
      target=3D_blank>172</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>541.80&nbsp;&nbsp;&nbsp;&nbsp;1081.58&nbsp;&nbsp;&=
nbsp;&nbsp;1081.52&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FNPFVTSDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1081.627940 from(541.821795,2+) title(Elution%20from%3a%2021=
%20to%2021%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%3a%20%2=
01%20%20) query(173)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q173; if (NS4 || IE4) activateEl('=
Q173', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D173&amp;hit=3D1&amp;index=3DIPI%3aIPI0000684=
0&amp;px=3D1"=20=0D
      target=3D_blank>173</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>541.82&nbsp;&nbsp;&nbsp;&nbsp;1081.63&nbsp;&nbsp;&=
nbsp;&nbsp;1081.65&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LLEDPVIKR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1082.650142 from(542.332896,2+) title(Elution%20from%3a%2017=
%2e54%20to%2017%2e54%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(174)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q174; if (NS4 || IE4) activateEl('=
Q174', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D174&amp;hit=3D1&amp;index=3DIPI%3aIPI0000144=
4&amp;px=3D1"=20=0D
      target=3D_blank>174</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>542.33&nbsp;&nbsp;&nbsp;&nbsp;1082.65&nbsp;&nbsp;&=
nbsp;&nbsp;1082.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DTLRQWHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1084.602458 from(543.309054,2+) title(Elution%20from%3a%2017=
%2e67%20to%2017%2e67%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(176)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q176; if (NS4 || IE4) activateEl('=
Q176', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D176&amp;hit=3D1&amp;index=3DIPI%3aIPI0000497=
8&amp;px=3D1"=20=0D
      target=3D_blank>176</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>543.31&nbsp;&nbsp;&nbsp;&nbsp;1084.60&nbsp;&nbsp;&=
nbsp;&nbsp;1084.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GFSHQAGLIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1084.607046 from(543.311348,2+) title(Elution%20from%3a%204%=
2e42%20to%204%2e42%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(177)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q177; if (NS4 || IE4) activateEl('=
Q177', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D177&amp;hit=3D1&amp;index=3DIPI%3aIPI0001832=
8&amp;px=3D1"=20=0D
      target=3D_blank>177</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>543.31&nbsp;&nbsp;&nbsp;&nbsp;1084.61&nbsp;&nbsp;&=
nbsp;&nbsp;1084.50&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;APQLPVCEGD</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1084.688898 from(543.352274,2+) title(Elution%20from%3a%2011=
%2e51%20to%2011%2e51%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(178)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q178; if (NS4 || IE4) activateEl('=
Q178', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D178&amp;hit=3D1&amp;index=3DIPI%3aIPI0002853=
5&amp;px=3D1"=20=0D
      target=3D_blank>178</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>543.35&nbsp;&nbsp;&nbsp;&nbsp;1084.69&nbsp;&nbsp;&=
nbsp;&nbsp;1084.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AKKPAAATVTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1090.608870 from(546.312260,2+) title(Elution%20from%3a%203%=
2e9%20to%203%2e9%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3=
a%20%201%20%20) query(179)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q179; if (NS4 || IE4) activateEl('=
Q179', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D179&amp;hit=3D1&amp;index=3DIPI%3aIPI0002667=
6&amp;px=3D1"=20=0D
      target=3D_blank>179</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>546.31&nbsp;&nbsp;&nbsp;&nbsp;1090.61&nbsp;&nbsp;&=
nbsp;&nbsp;1090.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HTGVGKSLHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1091.633554 from(546.824602,2+) title(Elution%20from%3a%204%=
2e11%20to%204%2e11%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(181)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q181; if (NS4 || IE4) activateEl('=
Q181', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D181&amp;hit=3D1&amp;index=3DIPI%3aIPI0003126=
4&amp;px=3D1"=20=0D
      target=3D_blank>181</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>546.82&nbsp;&nbsp;&nbsp;&nbsp;1091.63&nbsp;&nbsp;&=
nbsp;&nbsp;1091.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GSDLPELFSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1092.831686 from(547.423668,2+) title(Elution%20from%3a%2020=
5%2e52%20to%20205%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(182)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q182; if (NS4 || IE4) activateEl('=
Q182', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D182&amp;hit=3D1&amp;index=3DIPI%3aIPI0000177=
1&amp;px=3D1"=20=0D
      target=3D_blank>182</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>547.42&nbsp;&nbsp;&nbsp;&nbsp;1092.83&nbsp;&nbsp;&=
nbsp;&nbsp;1092.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KIIAVATLHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1093.922706 from(547.969178,2+) title(Elution%20from%3a%2020=
8%2e49%20to%20208%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(184)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q184; if (NS4 || IE4) activateEl('=
Q184', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D184&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>184</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>547.97&nbsp;&=
nbsp;&nbsp;&nbsp;1093.92</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1096.584598 from(549.300124,2+) title(Elution%20from%3a%201%=
2e16%20to%201%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(187)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q187; if (NS4 || IE4) activateEl('=
Q187', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D187&amp;hit=3D1&amp;index=3DIPI%3aIPI0001465=
2&amp;px=3D1"=20=0D
      target=3D_blank>187</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>549.30&nbsp;&nbsp;&nbsp;&nbsp;1096.58&nbsp;&nbsp;&=
nbsp;&nbsp;1096.60&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;RATVDVPPSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1100.739518 from(551.377584,2+) title(Elution%20from%3a%2019=
7%2e8%20to%20197%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(189)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q189; if (NS4 || IE4) activateEl('=
Q189', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D189&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>189</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.38&nbsp;&=
nbsp;&nbsp;&nbsp;1100.74</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1100.750588 from(551.383119,2+) title(Elution%20from%3a%2018=
5%2e7%20to%20185%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(190)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q190; if (NS4 || IE4) activateEl('=
Q190', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D190&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>190</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.38&nbsp;&=
nbsp;&nbsp;&nbsp;1100.75</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1100.751410 from(551.383530,2+) title(Elution%20from%3a%2020=
0%2e88%20to%20200%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(191)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q191; if (NS4 || IE4) activateEl('=
Q191', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D191&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>191</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.38&nbsp;&=
nbsp;&nbsp;&nbsp;1100.75</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1101.758768 from(551.887209,2+) title(Elution%20from%3a%2018=
7%2e02%20to%20187%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(193)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q193; if (NS4 || IE4) activateEl('=
Q193', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D193&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>193</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.89&nbsp;&=
nbsp;&nbsp;&nbsp;1101.76</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1101.764836 from(551.890243,2+) title(Elution%20from%3a%2020=
1%2e26%20to%20201%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(194)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q194; if (NS4 || IE4) activateEl('=
Q194', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D194&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>194</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.89&nbsp;&=
nbsp;&nbsp;&nbsp;1101.76</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1108.726598 from(555.371124,2+) title(Elution%20from%3a%2010=
7%2e68%20to%20107%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(195)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q195; if (NS4 || IE4) activateEl('=
Q195', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D195&amp;hit=3D1&amp;index=3DIPI%3aIPI0001528=
0&amp;px=3D1"=20=0D
      target=3D_blank>195</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>555.37&nbsp;&nbsp;&nbsp;&nbsp;1108.73&nbsp;&nbsp;&=
nbsp;&nbsp;1108.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LALHWKLTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1116.637480 from(559.326565,2+) title(Elution%20from%3a%2019=
%2e01%20to%2019%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(197)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q197; if (NS4 || IE4) activateEl('=
Q197', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D197&amp;hit=3D1&amp;index=3DIPI%3aIPI0000783=
8&amp;px=3D1"=20=0D
      target=3D_blank>197</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>559.33&nbsp;&nbsp;&nbsp;&nbsp;1116.64&nbsp;&nbsp;&=
nbsp;&nbsp;1116.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DNETLREIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1118.643260 from(560.329455,2+) title(Elution%20from%3a%2013=
%2e13%20to%2013%2e13%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(198)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q198; if (NS4 || IE4) activateEl('=
Q198', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D198&amp;hit=3D1&amp;index=3DIPI%3aIPI0000963=
0&amp;px=3D1"=20=0D
      target=3D_blank>198</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>560.33&nbsp;&nbsp;&nbsp;&nbsp;1118.64&nbsp;&nbsp;&=
nbsp;&nbsp;1118.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LGFLLNLDSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1119.648950 from(560.832300,2+) title(Elution%20from%3a%205%=
2e32%20to%205%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(199)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q199; if (NS4 || IE4) activateEl('=
Q199', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D199&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>199</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>560.83&nbsp;&=
nbsp;&nbsp;&nbsp;1119.65</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1120.635496 from(561.325573,2+) title(Elution%20from%3a%2025=
%2e47%20to%2025%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(200)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q200; if (NS4 || IE4) activateEl('=
Q200', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D200&amp;hit=3D1&amp;index=3DIPI%3aIPI0001550=
9&amp;px=3D1"=20=0D
      target=3D_blank>200</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>561.33&nbsp;&nbsp;&nbsp;&nbsp;1120.64&nbsp;&nbsp;&=
nbsp;&nbsp;1120.65&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SLELKVAFSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1122.628522 from(562.322086,2+) title(Elution%20from%3a%2015=
%2e89%20to%2016%2e02%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(201)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q201; if (NS4 || IE4) activateEl('=
Q201', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D201&amp;hit=3D1&amp;index=3DIPI%3aIPI0002531=
4&amp;px=3D1"=20=0D
      target=3D_blank>201</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>562.32&nbsp;&nbsp;&nbsp;&nbsp;1122.63&nbsp;&nbsp;&=
nbsp;&nbsp;1122.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ETIQPFMNK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1124.621570 from(563.318610,2+) title(Elution%20from%3a%2011=
%2e48%20to%2011%2e48%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(203)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q203; if (NS4 || IE4) activateEl('=
Q203', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D203&amp;hit=3D1&amp;index=3DIPI%3aIPI0000935=
2&amp;px=3D1"=20=0D
      target=3D_blank>203</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>563.32&nbsp;&nbsp;&nbsp;&nbsp;1124.62&nbsp;&nbsp;&=
nbsp;&nbsp;1124.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QNVSPAPEGQV</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1127.669400 from(564.842525,2+) title(Elution%20from%3a%2013=
%2e03%20to%2013%2e03%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(205)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q205; if (NS4 || IE4) activateEl('=
Q205', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D205&amp;hit=3D1&amp;index=3DIPI%3aIPI0000169=
7&amp;px=3D1"=20=0D
      target=3D_blank>205</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>564.84&nbsp;&nbsp;&nbsp;&nbsp;1127.67&nbsp;&nbsp;&=
nbsp;&nbsp;1127.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VLLNWEQVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1131.658424 from(566.837037,2+) title(Elution%20from%3a%2014=
%2e93%20to%2014%2e93%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(208)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q208; if (NS4 || IE4) activateEl('=
Q208', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D208&amp;hit=3D1&amp;index=3DIPI%3aIPI0001793=
6&amp;px=3D1"=20=0D
      target=3D_blank>208</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>566.84&nbsp;&nbsp;&nbsp;&nbsp;1131.66&nbsp;&nbsp;&=
nbsp;&nbsp;1131.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ATQTDIKLSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1132.665298 from(567.340474,2+) title(Elution%20from%3a%2015=
%2e53%20to%2015%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(209)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q209; if (NS4 || IE4) activateEl('=
Q209', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D209&amp;hit=3D1&amp;index=3DIPI%3aIPI0000064=
7&amp;px=3D1"=20=0D
      target=3D_blank>209</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>567.34&nbsp;&nbsp;&nbsp;&nbsp;1132.67&nbsp;&nbsp;&=
nbsp;&nbsp;1132.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DMEQLLALGK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1134.515180 from(568.265415,2+) title(Elution%20from%3a%208%=
2e39%20to%208%2e39%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(211)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q211; if (NS4 || IE4) activateEl('=
Q211', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D211&amp;hit=3D1&amp;index=3DIPI%3aIPI0000975=
5&amp;px=3D1"=20=0D
      target=3D_blank>211</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>568.27&nbsp;&nbsp;&nbsp;&nbsp;1134.52&nbsp;&nbsp;&=
nbsp;&nbsp;1134.60&nbsp;&nbsp;&nbsp;&nbsp;-0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EQSIVEKFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1134.731000 from(568.373325,2+) title(Elution%20from%3a%2061=
%2e31%20to%2061%2e31%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(212)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q212; if (NS4 || IE4) activateEl('=
Q212', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D212&amp;hit=3D1&amp;index=3DIPI%3aIPI0000734=
2&amp;px=3D1"=20=0D
      target=3D_blank>212</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>568.37&nbsp;&nbsp;&nbsp;&nbsp;1134.73&nbsp;&nbsp;&=
nbsp;&nbsp;1134.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ETNFVREIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1137.629856 from(569.822753,2+) title(Elution%20from%3a%2034=
%2e95%20to%2034%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(214)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q214; if (NS4 || IE4) activateEl('=
Q214', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D214&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>214</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>569.82&nbsp;&=
nbsp;&nbsp;&nbsp;1137.63</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1137.749038 from(569.882344,2+) title(Elution%20from%3a%2031=
%2e74%20to%2031%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(217)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q217; if (NS4 || IE4) activateEl('=
Q217', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D217&amp;hit=3D1&amp;index=3DIPI%3aIPI0001388=
8&amp;px=3D1"=20=0D
      target=3D_blank>217</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>569.88&nbsp;&nbsp;&nbsp;&nbsp;1137.75&nbsp;&nbsp;&nbs=
p;&nbsp;1137.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;YLPQTYVVR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1138.712242 from(570.363946,2+) title(Elution%20from%3a%2031=
%2e92%20to%2031%2e92%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(218)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q218; if (NS4 || IE4) activateEl('=
Q218', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D218&amp;hit=3D1&amp;index=3DIPI%3aIPI0001611=
2&amp;px=3D1"=20=0D
      target=3D_blank>218</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>570.36&nbsp;&nbsp;&nbsp;&nbsp;1138.71&nbsp;&nbsp;&=
nbsp;&nbsp;1138.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GLLRQGIVQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1138.754440 from(570.385045,2+) title(Elution%20from%3a%2051=
%2e45%20to%2051%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(219)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q219; if (NS4 || IE4) activateEl('=
Q219', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D219&amp;hit=3D1&amp;index=3DIPI%3aIPI0001611=
2&amp;px=3D1"=20=0D
      target=3D_blank>219</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>570.39&nbsp;&nbsp;&nbsp;&nbsp;1138.75&nbsp;&nbsp;&=
nbsp;&nbsp;1138.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GLLRQGIVQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1138.755166 from(570.385408,2+) title(Elution%20from%3a%2048=
%2e42%20to%2048%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(220)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q220; if (NS4 || IE4) activateEl('=
Q220', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D220&amp;hit=3D1&amp;index=3DIPI%3aIPI0001611=
2&amp;px=3D1"=20=0D
      target=3D_blank>220</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>570.39&nbsp;&nbsp;&nbsp;&nbsp;1138.76&nbsp;&nbsp;&=
nbsp;&nbsp;1138.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GLLRQGIVQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1139.755360 from(570.885505,2+) title(Elution%20from%3a%2050=
%2e44%20to%2050%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(221)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q221; if (NS4 || IE4) activateEl('=
Q221', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D221&amp;hit=3D1&amp;index=3DIPI%3aIPI0000301=
1&amp;px=3D1"=20=0D
      target=3D_blank>221</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>570.89&nbsp;&nbsp;&nbsp;&nbsp;1139.76&nbsp;&nbsp;&=
nbsp;&nbsp;1139.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EPQLKGIVTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1142.619286 from(572.317468,2+) title(Elution%20from%3a%2031=
%2e22%20to%2031%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(223)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q223; if (NS4 || IE4) activateEl('=
Q223', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D223&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>223</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>572.32&nbsp;&=
nbsp;&nbsp;&nbsp;1142.62</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1142.718064 from(572.366857,2+) title(Elution%20from%3a%201%=
2e64%20to%201%2e64%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(227)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q227; if (NS4 || IE4) activateEl('=
Q227', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D227&amp;hit=3D1&amp;index=3DIPI%3aIPI0000154=
0&amp;px=3D1"=20=0D
      target=3D_blank>227</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>572.37&nbsp;&nbsp;&nbsp;&nbsp;1142.72&nbsp;&nbsp;&=
nbsp;&nbsp;1142.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VLTVINQTQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1143.679400 from(572.847525,2+) title(Elution%20from%3a%209%=
2e65%20to%209%2e65%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(229)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q229; if (NS4 || IE4) activateEl('=
Q229', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D229&amp;hit=3D1&amp;index=3DIPI%3aIPI0001574=
9&amp;px=3D1"=20=0D
      target=3D_blank>229</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>572.85&nbsp;&nbsp;&nbsp;&nbsp;1143.68&nbsp;&nbsp;&=
nbsp;&nbsp;1143.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NKDLVEWLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1143.686152 from(572.850901,2+) title(Elution%20from%3a%202%=
2e34%20to%202%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(230)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q230; if (NS4 || IE4) activateEl('=
Q230', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D230&amp;hit=3D1&amp;index=3DIPI%3aIPI0003073=
8&amp;px=3D1"=20=0D
      target=3D_blank>230</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>572.85&nbsp;&nbsp;&nbsp;&nbsp;1143.69&nbsp;&nbsp;&=
nbsp;&nbsp;1143.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VEKDYSYLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1144.618004 from(573.316827,2+) title(Elution%20from%3a%2020=
%2e25%20to%2020%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(231)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q231; if (NS4 || IE4) activateEl('=
Q231', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D231&amp;hit=3D1&amp;index=3DIPI%3aIPI0003344=
8&amp;px=3D1"=20=0D
      target=3D_blank>231</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>573.32&nbsp;&nbsp;&nbsp;&nbsp;1144.62&nbsp;&nbsp;&nbs=
p;&nbsp;1144.57&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;EALKDEANQK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1144.784232 from(573.399941,2+) title(Elution%20from%3a%2018=
6%2e72%20to%20186%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(232)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q232; if (NS4 || IE4) activateEl('=
Q232', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D232&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>232</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>573.40&nbsp;&=
nbsp;&nbsp;&nbsp;1144.78</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1144.797700 from(573.406675,2+) title(Elution%20from%3a%2019=
8%2e97%20to%20198%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(233)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q233; if (NS4 || IE4) activateEl('=
Q233', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D233&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>233</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>573.41&nbsp;&=
nbsp;&nbsp;&nbsp;1144.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1144.813568 from(573.414609,2+) title(Elution%20from%3a%2020=
2%20to%20202%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20=
%201%20%20) query(234)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q234; if (NS4 || IE4) activateEl('=
Q234', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D234&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>234</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>573.41&nbsp;&=
nbsp;&nbsp;&nbsp;1144.81</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1145.792218 from(573.903934,2+) title(Elution%20from%3a%2018=
7%2e89%20to%20187%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(235)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q235; if (NS4 || IE4) activateEl('=
Q235', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D235&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>235</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>573.90&nbsp;&=
nbsp;&nbsp;&nbsp;1145.79</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1154.640436 from(578.328043,2+) title(Elution%20from%3a%2016=
%2e04%20to%2016%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(237)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q237; if (NS4 || IE4) activateEl('=
Q237', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D237&amp;hit=3D1&amp;index=3DIPI%3aIPI0001865=
7&amp;px=3D1"=20=0D
      target=3D_blank>237</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>578.33&nbsp;&nbsp;&nbsp;&nbsp;1154.64&nbsp;&nbsp;&=
nbsp;&nbsp;1154.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MLCVCVVFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1156.704416 from(579.360033,2+) title(Elution%20from%3a%2018=
%2e16%20to%2018%2e16%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(240)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q240; if (NS4 || IE4) activateEl('=
Q240', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D240&amp;hit=3D1&amp;index=3DIPI%3aIPI0001817=
9&amp;px=3D1"=20=0D
      target=3D_blank>240</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>579.36&nbsp;&nbsp;&nbsp;&nbsp;1156.70&nbsp;&nbsp;&=
nbsp;&nbsp;1156.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RYNEATLYK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1156.719066 from(579.367358,2+) title(Elution%20from%3a%2021=
%2e26%20to%2021%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(241)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q241; if (NS4 || IE4) activateEl('=
Q241', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D241&amp;hit=3D1&amp;index=3DIPI%3aIPI0002245=
3&amp;px=3D1"=20=0D
      target=3D_blank>241</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>579.37&nbsp;&nbsp;&nbsp;&nbsp;1156.72&nbsp;&nbsp;&nbs=
p;&nbsp;1156.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;DSEFKQIYK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1158.710100 from(580.362875,2+) title(Elution%20from%3a%2017=
%2e13%20to%2017%2e13%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(243)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q243; if (NS4 || IE4) activateEl('=
Q243', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D243&amp;hit=3D1&amp;index=3DIPI%3aIPI0002497=
5&amp;px=3D1"=20=0D
      target=3D_blank>243</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>580.36&nbsp;&nbsp;&nbsp;&nbsp;1158.71&nbsp;&nbsp;&=
nbsp;&nbsp;1158.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VTQLEDLTLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1161.678320 from(581.846985,2+) title(Elution%20from%3a%2010=
%2e5%20to%2010%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(245)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q245; if (NS4 || IE4) activateEl('=
Q245', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D245&amp;hit=3D1&amp;index=3DIPI%3aIPI0002251=
0&amp;px=3D1"=20=0D
      target=3D_blank>245</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>581.85&nbsp;&nbsp;&nbsp;&nbsp;1161.68&nbsp;&nbsp;&=
nbsp;&nbsp;1161.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ARHATPPSTPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1162.679854 from(582.347752,2+) title(Elution%20from%3a%2010=
%2e68%20to%2010%2e68%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(246)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q246; if (NS4 || IE4) activateEl('=
Q246', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D246&amp;hit=3D1&amp;index=3DIPI%3aIPI0000475=
3&amp;px=3D1"=20=0D
      target=3D_blank>246</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>582.35&nbsp;&nbsp;&nbsp;&nbsp;1162.68&nbsp;&nbsp;&=
nbsp;&nbsp;1162.56&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YPSATNNTPAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1162.754012 from(582.384831,2+) title(Elution%20from%3a%2014=
%2e88%20to%2014%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(247)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q247; if (NS4 || IE4) activateEl('=
Q247', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D247&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>247</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>582.38&nbsp;&=
nbsp;&nbsp;&nbsp;1162.75</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1163.755650 from(582.885650,2+) title(Elution%20from%3a%2015=
%2e06%20to%2015%2e06%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(248)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q248; if (NS4 || IE4) activateEl('=
Q248', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D248&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>248</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>582.89&nbsp;&=
nbsp;&nbsp;&nbsp;1163.76</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1171.640596 from(586.828123,2+) title(Elution%20from%3a%207%=
2e13%20to%207%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(254)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q254; if (NS4 || IE4) activateEl('=
Q254', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D254&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>254</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>586.83&nbsp;&=
nbsp;&nbsp;&nbsp;1171.64</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1171.648462 from(586.832056,2+) title(Elution%20from%3a%2010=
%2e37%20to%2010%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(255)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q255; if (NS4 || IE4) activateEl('=
Q255', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D255&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>255</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>586.83&nbsp;&=
nbsp;&nbsp;&nbsp;1171.65</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1171.656554 from(586.836102,2+) title(Elution%20from%3a%203%=
2e95%20to%203%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(256)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q256; if (NS4 || IE4) activateEl('=
Q256', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D256&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>256</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>586.84&nbsp;&=
nbsp;&nbsp;&nbsp;1171.66</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1172.638908 from(587.327279,2+) title(Elution%20from%3a%204%=
2e29%20to%204%2e29%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(257)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q257; if (NS4 || IE4) activateEl('=
Q257', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D257&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>257</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>587.33&nbsp;&=
nbsp;&nbsp;&nbsp;1172.64</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1172.642384 from(587.329017,2+) title(Elution%20from%3a%2010=
%2e84%20to%2010%2e84%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(258)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q258; if (NS4 || IE4) activateEl('=
Q258', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D258&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>258</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>587.33&nbsp;&=
nbsp;&nbsp;&nbsp;1172.64</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1172.643730 from(587.329690,2+) title(Elution%20from%3a%207%=
2e34%20to%207%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(259)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q259; if (NS4 || IE4) activateEl('=
Q259', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D259&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>259</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>587.33&nbsp;&=
nbsp;&nbsp;&nbsp;1172.64</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1177.962908 from(589.989279,2+) title(Elution%20from%3a%2021=
1%2e12%20to%20211%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(260)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q260; if (NS4 || IE4) activateEl('=
Q260', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D260&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>260</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>589.99&nbsp;&=
nbsp;&nbsp;&nbsp;1177.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1178.542220 from(590.278935,2+) title(Elution%20from%3a%209%=
2e81%20to%209%2e81%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(261)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q261; if (NS4 || IE4) activateEl('=
Q261', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D261&amp;hit=3D1&amp;index=3DIPI%3aIPI0000502=
6&amp;px=3D1"=20=0D
      target=3D_blank>261</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>590.28&nbsp;&nbsp;&nbsp;&nbsp;1178.54&nbsp;&nbsp;&=
nbsp;&nbsp;1178.65&nbsp;&nbsp;&nbsp;&nbsp;-0.11&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LGTDLEYLKK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1180.728378 from(591.372014,2+) title(Elution%20from%3a%202%=
2e21%20to%202%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(262)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q262; if (NS4 || IE4) activateEl('=
Q262', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D262&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>262</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>591.37&nbsp;&=
nbsp;&nbsp;&nbsp;1180.73</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1181.716878 from(591.866264,2+) title(Elution%20from%3a%202%=
2e52%20to%202%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(263)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q263; if (NS4 || IE4) activateEl('=
Q263', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D263&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>263</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>591.87&nbsp;&=
nbsp;&nbsp;&nbsp;1181.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1182.663804 from(592.339727,2+) title(Elution%20from%3a%209%=
2e91%20to%209%2e91%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(264)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q264; if (NS4 || IE4) activateEl('=
Q264', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D264&amp;hit=3D1&amp;index=3DIPI%3aIPI0000885=
9&amp;px=3D1"=20=0D
      target=3D_blank>264</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>592.34&nbsp;&nbsp;&nbsp;&nbsp;1182.66&nbsp;&nbsp;&nbs=
p;&nbsp;1182.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;EYVKCLESR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1184.263198 from(593.139424,2+) title(Elution%20from%3a%2065=
%2e57%20to%2065%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(265)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q265; if (NS4 || IE4) activateEl('=
Q265', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D265&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>265</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>593.14&nbsp;&=
nbsp;&nbsp;&nbsp;1184.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1184.355954 from(593.185802,2+) title(Elution%20from%3a%2088=
%2e76%20to%2088%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(266)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q266; if (NS4 || IE4) activateEl('=
Q266', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D266&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>266</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>593.19&nbsp;&=
nbsp;&nbsp;&nbsp;1184.36</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1184.371538 from(593.193594,2+) title(Elution%20from%3a%2077=
%2e8%20to%2077%2e8%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(267)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q267; if (NS4 || IE4) activateEl('=
Q267', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D267&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>267</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>593.19&nbsp;&=
nbsp;&nbsp;&nbsp;1184.37</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1185.739466 from(593.877558,2+) title(Elution%20from%3a%2014=
%2e7%20to%2014%2e7%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(269)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q269; if (NS4 || IE4) activateEl('=
Q269', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D269&amp;hit=3D1&amp;index=3DIPI%3aIPI0000731=
7&amp;px=3D1"=20=0D
      target=3D_blank>269</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>593.88&nbsp;&nbsp;&nbsp;&nbsp;1185.74&nbsp;&nbsp;&=
nbsp;&nbsp;1185.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LALNLHQHLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1186.732500 from(594.374075,2+) title(Elution%20from%3a%2019=
%2e99%20to%2019%2e99%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(272)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q272; if (NS4 || IE4) activateEl('=
Q272', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D272&amp;hit=3D1&amp;index=3DIPI%3aIPI0000264=
9&amp;px=3D1"=20=0D
      target=3D_blank>272</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>594.37&nbsp;&nbsp;&nbsp;&nbsp;1186.73&nbsp;&nbsp;&=
nbsp;&nbsp;1186.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TLQEQLEKAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1187.722866 from(594.869258,2+) title(Elution%20from%3a%2016=
%2e89%20to%2016%2e89%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(273)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q273; if (NS4 || IE4) activateEl('=
Q273', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D273&amp;hit=3D1&amp;index=3DIPI%3aIPI0003206=
2&amp;px=3D1"=20=0D
      target=3D_blank>273</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>594.87&nbsp;&nbsp;&nbsp;&nbsp;1187.72&nbsp;&nbsp;&=
nbsp;&nbsp;1187.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LKNQVTDTNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1187.723138 from(594.869394,2+) title(Elution%20from%3a%2020=
%2e46%20to%2020%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(274)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q274; if (NS4 || IE4) activateEl('=
Q274', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D274&amp;hit=3D1&amp;index=3DIPI%3aIPI0001416=
9&amp;px=3D1"=20=0D
      target=3D_blank>274</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>594.87&nbsp;&nbsp;&nbsp;&nbsp;1187.72&nbsp;&nbsp;&=
nbsp;&nbsp;1187.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QAQLRNFLAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1188.719918 from(595.367784,2+) title(Elution%20from%3a%2080=
%2e97%20to%2080%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(275)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q275; if (NS4 || IE4) activateEl('=
Q275', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D275&amp;hit=3D1&amp;index=3DIPI%3aIPI0003294=
2&amp;px=3D1"=20=0D
      target=3D_blank>275</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>595.37&nbsp;&nbsp;&nbsp;&nbsp;1188.72&nbsp;&nbsp;&nbs=
p;&nbsp;1188.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;VFGLLVELSGR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1188.810148 from(595.412899,2+) title(Elution%20from%3a%2020=
1%2e31%20to%20201%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(277)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q277; if (NS4 || IE4) activateEl('=
Q277', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D277&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>277</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>595.41&nbsp;&=
nbsp;&nbsp;&nbsp;1188.81</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1188.833764 from(595.424707,2+) title(Elution%20from%3a%2018=
7%2e27%20to%20187%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(278)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q278; if (NS4 || IE4) activateEl('=
Q278', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D278&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>278</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>595.42&nbsp;&=
nbsp;&nbsp;&nbsp;1188.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1189.705584 from(595.860617,2+) title(Elution%20from%3a%2082=
%2e62%20to%2082%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(281)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q281; if (NS4 || IE4) activateEl('=
Q281', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D281&amp;hit=3D1&amp;index=3DIPI%3aIPI0001121=
0&amp;px=3D1"=20=0D
      target=3D_blank>281</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>595.86&nbsp;&nbsp;&nbsp;&nbsp;1189.71&nbsp;&nbsp;&=
nbsp;&nbsp;1189.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LLSDKMLENK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1189.768412 from(595.892031,2+) title(Elution%20from%3a%2037=
%2e59%20to%2037%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(282)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q282; if (NS4 || IE4) activateEl('=
Q282', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D282&amp;hit=3D1&amp;index=3DIPI%3aIPI0002275=
6&amp;px=3D1"=20=0D
      target=3D_blank>282</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>595.89&nbsp;&nbsp;&nbsp;&nbsp;1189.77&nbsp;&nbsp;&=
nbsp;&nbsp;1189.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VANVSLLALYK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1189.824370 from(595.920010,2+) title(Elution%20from%3a%2018=
8%2e93%20to%20188%2e93%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(283)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q283; if (NS4 || IE4) activateEl('=
Q283', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D283&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>283</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>595.92&nbsp;&=
nbsp;&nbsp;&nbsp;1189.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1190.693684 from(596.354667,2+) title(Elution%20from%3a%208%=
2e96%20to%208%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(284)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q284; if (NS4 || IE4) activateEl('=
Q284', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D284&amp;hit=3D1&amp;index=3DIPI%3aIPI0001725=
1&amp;px=3D1"=20=0D
      target=3D_blank>284</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>596.35&nbsp;&nbsp;&nbsp;&nbsp;1190.69&nbsp;&nbsp;&=
nbsp;&nbsp;1190.70&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LGVLHPDVITK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1190.709506 from(596.362578,2+) title(Elution%20from%3a%2012=
%2e36%20to%2012%2e36%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(285)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q285; if (NS4 || IE4) activateEl('=
Q285', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D285&amp;hit=3D1&amp;index=3DIPI%3aIPI0000928=
4&amp;px=3D1"=20=0D
      target=3D_blank>285</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>596.36&nbsp;&nbsp;&nbsp;&nbsp;1190.71&nbsp;&nbsp;&=
nbsp;&nbsp;1190.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LIRSVFMGLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1190.779632 from(596.397641,2+) title(Elution%20from%3a%2038=
%2e08%20to%2038%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(286)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q286; if (NS4 || IE4) activateEl('=
Q286', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D286&amp;hit=3D1&amp;index=3DIPI%3aIPI0001500=
7&amp;px=3D1"=20=0D
      target=3D_blank>286</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>596.40&nbsp;&nbsp;&nbsp;&nbsp;1190.78&nbsp;&nbsp;&=
nbsp;&nbsp;1190.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DAVVRLIHLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1191.667710 from(596.841680,2+) title(Elution%20from%3a%207%=
2e9%20to%207%2e9%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%3=
a%20%201%20%20) query(287)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q287; if (NS4 || IE4) activateEl('=
Q287', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D287&amp;hit=3D1&amp;index=3DIPI%3aIPI0000162=
6&amp;px=3D1"=20=0D
      target=3D_blank>287</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>596.84&nbsp;&nbsp;&nbsp;&nbsp;1191.67&nbsp;&nbsp;&=
nbsp;&nbsp;1191.70&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;KLVLSVYSAGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1191.707182 from(596.861416,2+) title(Elution%20from%3a%2011=
%2e87%20to%2011%2e87%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(288)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q288; if (NS4 || IE4) activateEl('=
Q288', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D288&amp;hit=3D1&amp;index=3DIPI%3aIPI0003318=
1&amp;px=3D1"=20=0D
      target=3D_blank>288</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>596.86&nbsp;&nbsp;&nbsp;&nbsp;1191.71&nbsp;&nbsp;&=
nbsp;&nbsp;1191.58&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DREFGQWVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.674354 from(597.345002,2+) title(Elution%20from%3a%207%=
2e93%20to%207%2e93%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(289)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q289; if (NS4 || IE4) activateEl('=
Q289', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D289&amp;hit=3D1&amp;index=3DIPI%3aIPI0002370=
9&amp;px=3D1"=20=0D
      target=3D_blank>289</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.35&nbsp;&nbsp;&nbsp;&nbsp;1192.67&nbsp;&nbsp;&=
nbsp;&nbsp;1192.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ARDVVMDMIK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.740126 from(597.377888,2+) title(Elution%20from%3a%2037=
%2e69%20to%2037%2e69%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(291)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q291; if (NS4 || IE4) activateEl('=
Q291', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D291&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>291</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>597.38&nbsp;&=
nbsp;&nbsp;&nbsp;1192.74</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.746492 from(597.381071,2+) title(Elution%20from%3a%2044=
%2e97%20to%2044%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(293)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q293; if (NS4 || IE4) activateEl('=
Q293', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D293&amp;hit=3D1&amp;index=3DIPI%3aIPI0002836=
3&amp;px=3D1"=20=0D
      target=3D_blank>293</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.38&nbsp;&nbsp;&nbsp;&nbsp;1192.75&nbsp;&nbsp;&=
nbsp;&nbsp;1192.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IFMLAASVGIR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.752750 from(597.384200,2+) title(Elution%20from%3a%2057=
%2e81%20to%2057%2e81%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(294)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q294; if (NS4 || IE4) activateEl('=
Q294', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D294&amp;hit=3D1&amp;index=3DIPI%3aIPI0000267=
7&amp;px=3D1"=20=0D
      target=3D_blank>294</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.38&nbsp;&nbsp;&nbsp;&nbsp;1192.75&nbsp;&nbsp;&=
nbsp;&nbsp;1192.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MTIQSPCTKK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1192.754114 from(597.384882,2+) title(Elution%20from%3a%2073=
%2e24%20to%2073%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(295)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q295; if (NS4 || IE4) activateEl('=
Q295', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D295&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>295</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>597.38&nbsp;&=
nbsp;&nbsp;&nbsp;1192.75</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1193.763430 from(597.889540,2+) title(Elution%20from%3a%2066=
%2e47%20to%2066%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(301)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q301; if (NS4 || IE4) activateEl('=
Q301', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D301&amp;hit=3D1&amp;index=3DIPI%3aIPI0000825=
4&amp;px=3D1"=20=0D
      target=3D_blank>301</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.89&nbsp;&nbsp;&nbsp;&nbsp;1193.76&nbsp;&nbsp;&=
nbsp;&nbsp;1193.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DIYQKSTVLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1193.764446 from(597.890048,2+) title(Elution%20from%3a%2063=
%2e31%20to%2063%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(302)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q302; if (NS4 || IE4) activateEl('=
Q302', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D302&amp;hit=3D1&amp;index=3DIPI%3aIPI0002333=
9&amp;px=3D1"=20=0D
      target=3D_blank>302</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.89&nbsp;&nbsp;&nbsp;&nbsp;1193.76&nbsp;&nbsp;&=
nbsp;&nbsp;1193.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RMENLVAYAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1193.766242 from(597.890946,2+) title(Elution%20from%3a%2045=
%2e34%20to%2045%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(303)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q303; if (NS4 || IE4) activateEl('=
Q303', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D303&amp;hit=3D1&amp;index=3DIPI%3aIPI0003141=
0&amp;px=3D1"=20=0D
      target=3D_blank>303</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.89&nbsp;&nbsp;&nbsp;&nbsp;1193.77&nbsp;&nbsp;&=
nbsp;&nbsp;1193.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MLGHLVSNAPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1193.767390 from(597.891520,2+) title(Elution%20from%3a%2060=
%2e27%20to%2060%2e27%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(304)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q304; if (NS4 || IE4) activateEl('=
Q304', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D304&amp;hit=3D1&amp;index=3DIPI%3aIPI0000825=
4&amp;px=3D1"=20=0D
      target=3D_blank>304</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.89&nbsp;&nbsp;&nbsp;&nbsp;1193.77&nbsp;&nbsp;&=
nbsp;&nbsp;1193.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DIYQKSTVLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1193.768656 from(597.892153,2+) title(Elution%20from%3a%2069=
%2e53%20to%2069%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(305)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q305; if (NS4 || IE4) activateEl('=
Q305', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D305&amp;hit=3D1&amp;index=3DIPI%3aIPI0000825=
4&amp;px=3D1"=20=0D
      target=3D_blank>305</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.89&nbsp;&nbsp;&nbsp;&nbsp;1193.77&nbsp;&nbsp;&=
nbsp;&nbsp;1193.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DIYQKSTVLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1194.758136 from(598.386893,2+) title(Elution%20from%3a%2069=
%2e86%20to%2069%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(306)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q306; if (NS4 || IE4) activateEl('=
Q306', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D306&amp;hit=3D1&amp;index=3DIPI%3aIPI0001193=
6&amp;px=3D1"=20=0D
      target=3D_blank>306</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>598.39&nbsp;&nbsp;&nbsp;&nbsp;1194.76&nbsp;&nbsp;&=
nbsp;&nbsp;1194.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IQEYIIAFAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1194.774592 from(598.395121,2+) title(Elution%20from%3a%2066=
%2e23%20to%2066%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(307)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q307; if (NS4 || IE4) activateEl('=
Q307', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D307&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>307</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>598.40&nbsp;&=
nbsp;&nbsp;&nbsp;1194.77</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1195.769508 from(598.892579,2+) title(Elution%20from%3a%2068=
%2e12%20to%2068%2e12%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(308)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q308; if (NS4 || IE4) activateEl('=
Q308', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D308&amp;hit=3D1&amp;index=3DIPI%3aIPI0000992=
0&amp;px=3D1"=20=0D
      target=3D_blank>308</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>598.89&nbsp;&nbsp;&nbsp;&nbsp;1195.77&nbsp;&nbsp;&=
nbsp;&nbsp;1195.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VMKVLNFTTK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1198.766544 from(600.391097,2+) title(Elution%20from%3a%2017=
%2e98%20to%2017%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(313)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q313; if (NS4 || IE4) activateEl('=
Q313', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D313&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>313</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>600.39&nbsp;&=
nbsp;&nbsp;&nbsp;1198.77</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1198.766712 from(400.596729,3+) title(Elution%20from%3a%2017=
%2e65%20to%2017%2e65%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(314)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q314; if (NS4 || IE4) activateEl('=
Q314', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D314&amp;hit=3D1&amp;index=3DIPI%3aIPI0001564=
6&amp;px=3D1"=20=0D
      target=3D_blank>314</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>400.60&nbsp;&nbsp;&nbsp;&nbsp;1198.77&nbsp;&nbsp;&=
nbsp;&nbsp;1198.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LENARISQLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1199.779371 from(400.934282,3+) title(Elution%20from%3a%2017=
%2e8%20to%2017%2e8%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(315)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q315; if (NS4 || IE4) activateEl('=
Q315', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D315&amp;hit=3D1&amp;index=3DIPI%3aIPI0002256=
4&amp;px=3D1"=20=0D
      target=3D_blank>315</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>400.93&nbsp;&nbsp;&nbsp;&nbsp;1199.78&nbsp;&nbsp;&nbs=
p;&nbsp;1199.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;ESAKSPVIVDR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1200.735666 from(601.375658,2+) title(Elution%20from%3a%2020=
%2e64%20to%2020%2e64%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(316)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q316; if (NS4 || IE4) activateEl('=
Q316', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D316&amp;hit=3D1&amp;index=3DIPI%3aIPI0002469=
6&amp;px=3D1"=20=0D
      target=3D_blank>316</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>601.38&nbsp;&nbsp;&nbsp;&nbsp;1200.74&nbsp;&nbsp;&=
nbsp;&nbsp;1200.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QLILLAQQMK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1201.731174 from(601.873412,2+) title(Elution%20from%3a%2020=
%2e79%20to%2020%2e79%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(318)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q318; if (NS4 || IE4) activateEl('=
Q318', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D318&amp;hit=3D1&amp;index=3DIPI%3aIPI0001015=
0&amp;px=3D1"=20=0D
      target=3D_blank>318</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>601.87&nbsp;&nbsp;&nbsp;&nbsp;1201.73&nbsp;&nbsp;&=
nbsp;&nbsp;1201.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ELILQQIAFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1202.671640 from(602.343645,2+) title(Elution%20from%3a%2024=
%2e98%20to%2024%2e98%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(319)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q319; if (NS4 || IE4) activateEl('=
Q319', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D319&amp;hit=3D1&amp;index=3DIPI%3aIPI0002101=
0&amp;px=3D1"=20=0D
      target=3D_blank>319</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>602.34&nbsp;&nbsp;&nbsp;&nbsp;1202.67&nbsp;&nbsp;&nbs=
p;&nbsp;1202.59&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;SPCSARLPCR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1203.710012 from(602.862831,2+) title(Elution%20from%3a%2011=
%2e76%20to%2011%2e76%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(321)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q321; if (NS4 || IE4) activateEl('=
Q321', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D321&amp;hit=3D1&amp;index=3DIPI%3aIPI0000508=
7&amp;px=3D1"=20=0D
      target=3D_blank>321</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>602.86&nbsp;&nbsp;&nbsp;&nbsp;1203.71&nbsp;&nbsp;&=
nbsp;&nbsp;1203.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MLEENTNILK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1204.677626 from(603.346638,2+) title(Elution%20from%3a%205%=
2e84%20to%205%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(322)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q322; if (NS4 || IE4) activateEl('=
Q322', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D322&amp;hit=3D1&amp;index=3DIPI%3aIPI0000944=
0&amp;px=3D1"=20=0D
      target=3D_blank>322</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>603.35&nbsp;&nbsp;&nbsp;&nbsp;1204.68&nbsp;&nbsp;&=
nbsp;&nbsp;1204.54&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EQGVPSAMQDK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1205.714568 from(603.865109,2+) title(Elution%20from%3a%2014=
%2e5%20to%2014%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(325)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q325; if (NS4 || IE4) activateEl('=
Q325', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D325&amp;hit=3D1&amp;index=3DIPI%3aIPI0001669=
9&amp;px=3D1"=20=0D
      target=3D_blank>325</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>603.87&nbsp;&nbsp;&nbsp;&nbsp;1205.71&nbsp;&nbsp;&nbs=
p;&nbsp;1205.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;MKALIENVSDS</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1206.786610 from(604.401130,2+) title(Elution%20from%3a%2015=
%2e58%20to%2015%2e58%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(326)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q326; if (NS4 || IE4) activateEl('=
Q326', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D326&amp;hit=3D1&amp;index=3DIPI%3aIPI0001203=
4&amp;px=3D1"=20=0D
      target=3D_blank>326</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>604.40&nbsp;&nbsp;&nbsp;&nbsp;1206.79&nbsp;&nbsp;&=
nbsp;&nbsp;1206.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AVHQIDQLQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1207.700074 from(604.857862,2+) title(Elution%20from%3a%2019=
%2e19%20to%2019%2e19%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(327)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q327; if (NS4 || IE4) activateEl('=
Q327', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D327&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>327</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>604.86&nbsp;&=
nbsp;&nbsp;&nbsp;1207.70</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1207.788388 from(604.902019,2+) title(Elution%20from%3a%2015=
%2e73%20to%2015%2e73%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(328)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q328; if (NS4 || IE4) activateEl('=
Q328', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D328&amp;hit=3D1&amp;index=3DIPI%3aIPI0000487=
2&amp;px=3D1"=20=0D
      target=3D_blank>328</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>604.90&nbsp;&nbsp;&nbsp;&nbsp;1207.79&nbsp;&nbsp;&=
nbsp;&nbsp;1207.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YRQFPQLTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1208.697668 from(605.356659,2+) title(Elution%20from%3a%2019=
%2e73%20to%2019%2e73%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(329)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q329; if (NS4 || IE4) activateEl('=
Q329', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D329&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>329</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>605.36&nbsp;&=
nbsp;&nbsp;&nbsp;1208.70</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1210.636946 from(606.326298,2+) title(Elution%20from%3a%200%=
2e33%20to%200%2e33%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(330)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q330; if (NS4 || IE4) activateEl('=
Q330', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D330&amp;hit=3D1&amp;index=3DIPI%3aIPI0001172=
3&amp;px=3D1"=20=0D
      target=3D_blank>330</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>606.33&nbsp;&nbsp;&nbsp;&nbsp;1210.64&nbsp;&nbsp;&=
nbsp;&nbsp;1210.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HLGGITEEDLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1211.652514 from(606.834082,2+) title(Elution%20from%3a%200%=
2e54%20to%200%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(331)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q331; if (NS4 || IE4) activateEl('=
Q331', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D331&amp;hit=3D1&amp;index=3DIPI%3aIPI0001382=
1&amp;px=3D1"=20=0D
      target=3D_blank>331</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>606.83&nbsp;&nbsp;&nbsp;&nbsp;1211.65&nbsp;&nbsp;&=
nbsp;&nbsp;1211.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ETFVVSSSKTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1213.732596 from(607.874123,2+) title(Elution%20from%3a%2011=
%2e25%20to%2011%2e38%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(333)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q333; if (NS4 || IE4) activateEl('=
Q333', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D333&amp;hit=3D1&amp;index=3DIPI%3aIPI0003342=
3&amp;px=3D1"=20=0D
      target=3D_blank>333</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>607.87&nbsp;&nbsp;&nbsp;&nbsp;1213.73&nbsp;&nbsp;&=
nbsp;&nbsp;1213.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLLICDVALGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1214.686006 from(608.350828,2+) title(Elution%20from%3a%2016=
%2e35%20to%2016%2e35%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(334)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q334; if (NS4 || IE4) activateEl('=
Q334', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D334&amp;hit=3D1&amp;index=3DIPI%3aIPI0000052=
7&amp;px=3D1"=20=0D
      target=3D_blank>334</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>608.35&nbsp;&nbsp;&nbsp;&nbsp;1214.69&nbsp;&nbsp;&=
nbsp;&nbsp;1214.69&nbsp;&nbsp;&nbsp;&nbsp;-0.00&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LLSSPNSASVLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1214.720428 from(608.368039,2+) title(Elution%20from%3a%203%=
2e44%20to%203%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(335)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q335; if (NS4 || IE4) activateEl('=
Q335', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D335&amp;hit=3D1&amp;index=3DIPI%3aIPI0000184=
2&amp;px=3D1"=20=0D
      target=3D_blank>335</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>608.37&nbsp;&nbsp;&nbsp;&nbsp;1214.72&nbsp;&nbsp;&=
nbsp;&nbsp;1214.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KLTGGSNWQPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1215.713098 from(608.864374,2+) title(Elution%20from%3a%2011=
%2e46%20to%2011%2e46%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(336)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q336; if (NS4 || IE4) activateEl('=
Q336', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D336&amp;hit=3D1&amp;index=3DIPI%3aIPI0000606=
2&amp;px=3D1"=20=0D
      target=3D_blank>336</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>608.86&nbsp;&nbsp;&nbsp;&nbsp;1215.71&nbsp;&nbsp;&nbs=
p;&nbsp;1215.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;NFGIGQDIQPK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1217.680220 from(609.847935,2+) title(Elution%20from%3a%2034=
%2e41%20to%2034%2e41%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(337)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q337; if (NS4 || IE4) activateEl('=
Q337', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D337&amp;hit=3D1&amp;index=3DIPI%3aIPI0000787=
7&amp;px=3D1"=20=0D
      target=3D_blank>337</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>609.85&nbsp;&nbsp;&nbsp;&nbsp;1217.68&nbsp;&nbsp;&=
nbsp;&nbsp;1217.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IEVIEIMTDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1217.757892 from(609.886771,2+) title(Elution%20from%3a%2021=
%2e18%20to%2021%2e18%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(338)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q338; if (NS4 || IE4) activateEl('=
Q338', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D338&amp;hit=3D1&amp;index=3DIPI%3aIPI0000214=
6&amp;px=3D1"=20=0D
      target=3D_blank>338</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>609.89&nbsp;&nbsp;&nbsp;&nbsp;1217.76&nbsp;&nbsp;&=
nbsp;&nbsp;1217.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ELESQVSGLEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1218.716752 from(610.366201,2+) title(Elution%20from%3a%2020=
%2e66%20to%2020%2e66%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(340)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q340; if (NS4 || IE4) activateEl('=
Q340', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D340&amp;hit=3D1&amp;index=3DIPI%3aIPI0001927=
2&amp;px=3D1"=20=0D
      target=3D_blank>340</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>610.37&nbsp;&nbsp;&nbsp;&nbsp;1218.72&nbsp;&nbsp;&=
nbsp;&nbsp;1218.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DFGTEAARPQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1219.729502 from(610.872576,2+) title(Elution%20from%3a%2036=
%2e44%20to%2036%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(343)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q343; if (NS4 || IE4) activateEl('=
Q343', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D343&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>343</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>610.87&nbsp;&=
nbsp;&nbsp;&nbsp;1219.73</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1219.740260 from(610.877955,2+) title(Elution%20from%3a%2029=
%2e01%20to%2029%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(344)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q344; if (NS4 || IE4) activateEl('=
Q344', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D344&amp;hit=3D1&amp;index=3DIPI%3aIPI0000806=
4&amp;px=3D1"=20=0D
      target=3D_blank>344</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>610.88&nbsp;&nbsp;&nbsp;&nbsp;1219.74&nbsp;&nbsp;&=
nbsp;&nbsp;1219.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QKNMPSATISK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1219.744106 from(610.879878,2+) title(Elution%20from%3a%2025=
%2e91%20to%2025%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(345)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q345; if (NS4 || IE4) activateEl('=
Q345', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D345&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>345</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>610.88&nbsp;&=
nbsp;&nbsp;&nbsp;1219.74</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1219.787822 from(610.901736,2+) title(Elution%20from%3a%2032=
%2e07%20to%2032%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(346)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q346; if (NS4 || IE4) activateEl('=
Q346', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D346&amp;hit=3D1&amp;index=3DIPI%3aIPI0000699=
3&amp;px=3D1"=20=0D
      target=3D_blank>346</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>610.90&nbsp;&nbsp;&nbsp;&nbsp;1219.79&nbsp;&nbsp;&=
nbsp;&nbsp;1219.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VFKDLGTPSEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1220.742638 from(611.379144,2+) title(Elution%20from%3a%2029=
%2e33%20to%2029%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(347)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q347; if (NS4 || IE4) activateEl('=
Q347', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D347&amp;hit=3D1&amp;index=3DIPI%3aIPI0000491=
9&amp;px=3D1"=20=0D
      target=3D_blank>347</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>611.38&nbsp;&nbsp;&nbsp;&nbsp;1220.74&nbsp;&nbsp;&=
nbsp;&nbsp;1220.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLKPYTGSKSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1222.583482 from(612.299566,2+) title(Elution%20from%3a%2011=
%2e02%20to%2011%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(348)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q348; if (NS4 || IE4) activateEl('=
Q348', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D348&amp;hit=3D1&amp;index=3DIPI%3aIPI0000206=
0&amp;px=3D1"=20=0D
      target=3D_blank>348</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>612.30&nbsp;&nbsp;&nbsp;&nbsp;1222.58&nbsp;&nbsp;&=
nbsp;&nbsp;1222.63&nbsp;&nbsp;&nbsp;&nbsp;-0.05&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EQHVLAELER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1223.705036 from(612.860343,2+) title(Elution%20from%3a%2020=
%2e23%20to%2020%2e23%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(351)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q351; if (NS4 || IE4) activateEl('=
Q351', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D351&amp;hit=3D1&amp;index=3DIPI%3aIPI0001530=
1&amp;px=3D1"=20=0D
      target=3D_blank>351</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>612.86&nbsp;&nbsp;&nbsp;&nbsp;1223.71&nbsp;&nbsp;&=
nbsp;&nbsp;1223.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ARPAMQIFFK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1226.683788 from(614.349719,2+) title(Elution%20from%3a%2042=
%2e35%20to%2042%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(352)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q352; if (NS4 || IE4) activateEl('=
Q352', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D352&amp;hit=3D1&amp;index=3DIPI%3aIPI0001439=
1&amp;px=3D1"=20=0D
      target=3D_blank>352</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>614.35&nbsp;&nbsp;&nbsp;&nbsp;1226.68&nbsp;&nbsp;&=
nbsp;&nbsp;1226.72&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KPASLMAPLKR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1226.697370 from(614.356510,2+) title(Elution%20from%3a%2039=
%2e26%20to%2039%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(353)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q353; if (NS4 || IE4) activateEl('=
Q353', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D353&amp;hit=3D1&amp;index=3DIPI%3aIPI0002626=
5&amp;px=3D1"=20=0D
      target=3D_blank>353</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>614.36&nbsp;&nbsp;&nbsp;&nbsp;1226.70&nbsp;&nbsp;&=
nbsp;&nbsp;1226.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LQQGGLTAARGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1226.881004 from(614.448327,2+) title(Elution%20from%3a%2036=
%2e18%20to%2036%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(354)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q354; if (NS4 || IE4) activateEl('=
Q354', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D354&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>354</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>614.45&nbsp;&=
nbsp;&nbsp;&nbsp;1226.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1227.686060 from(614.850855,2+) title(Elution%20from%3a%2039=
%2e15%20to%2039%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(355)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q355; if (NS4 || IE4) activateEl('=
Q355', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D355&amp;hit=3D1&amp;index=3DIPI%3aIPI0000181=
3&amp;px=3D1"=20=0D
      target=3D_blank>355</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>614.85&nbsp;&nbsp;&nbsp;&nbsp;1227.69&nbsp;&nbsp;&=
nbsp;&nbsp;1227.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LTGREGTGQPGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1227.696260 from(614.855955,2+) title(Elution%20from%3a%2042=
%2e25%20to%2042%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(357)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q357; if (NS4 || IE4) activateEl('=
Q357', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D357&amp;hit=3D1&amp;index=3DIPI%3aIPI0001489=
8&amp;px=3D1"=20=0D
      target=3D_blank>357</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>614.86&nbsp;&nbsp;&nbsp;&nbsp;1227.70&nbsp;&nbsp;&=
nbsp;&nbsp;1227.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;WQLKANEALR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1227.735738 from(614.875694,2+) title(Elution%20from%3a%2012=
%2e56%20to%2012%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(358)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q358; if (NS4 || IE4) activateEl('=
Q358', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D358&amp;hit=3D1&amp;index=3DIPI%3aIPI0000517=
5&amp;px=3D1"=20=0D
      target=3D_blank>358</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>614.88&nbsp;&nbsp;&nbsp;&nbsp;1227.74&nbsp;&nbsp;&=
nbsp;&nbsp;1227.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VFLNGNKLPVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1227.736058 from(614.875854,2+) title(Elution%20from%3a%2032=
%2e78%20to%2032%2e78%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(359)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q359; if (NS4 || IE4) activateEl('=
Q359', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D359&amp;hit=3D1&amp;index=3DIPI%3aIPI0001156=
3&amp;px=3D1"=20=0D
      target=3D_blank>359</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>614.88&nbsp;&nbsp;&nbsp;&nbsp;1227.74&nbsp;&nbsp;&=
nbsp;&nbsp;1227.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YLYTLVITDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1228.691468 from(615.353559,2+) title(Elution%20from%3a%206%=
2e08%20to%206%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(360)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q360; if (NS4 || IE4) activateEl('=
Q360', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D360&amp;hit=3D1&amp;index=3DIPI%3aIPI0002711=
1&amp;px=3D1"=20=0D
      target=3D_blank>360</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>615.35&nbsp;&nbsp;&nbsp;&nbsp;1228.69&nbsp;&nbsp;&=
nbsp;&nbsp;1228.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DLPLAQGIKFQ</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1228.701588 from(615.358619,2+) title(Elution%20from%3a%2042=
%2e19%20to%2042%2e19%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(361)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q361; if (NS4 || IE4) activateEl('=
Q361', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D361&amp;hit=3D1&amp;index=3DIPI%3aIPI0002251=
8&amp;px=3D1"=20=0D
      target=3D_blank>361</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>615.36&nbsp;&nbsp;&nbsp;&nbsp;1228.70&nbsp;&nbsp;&=
nbsp;&nbsp;1228.60&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EADLGPQKDTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1228.730200 from(615.372925,2+) title(Elution%20from%3a%2034=
%2e14%20to%2034%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(362)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q362; if (NS4 || IE4) activateEl('=
Q362', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D362&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>362</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>615.37&nbsp;&=
nbsp;&nbsp;&nbsp;1228.73</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1229.696558 from(615.856104,2+) title(Elution%20from%3a%207%=
2e42%20to%207%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(363)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q363; if (NS4 || IE4) activateEl('=
Q363', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D363&amp;hit=3D1&amp;index=3DIPI%3aIPI0002180=
8&amp;px=3D1"=20=0D
      target=3D_blank>363</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>615.86&nbsp;&nbsp;&nbsp;&nbsp;1229.70&nbsp;&nbsp;&=
nbsp;&nbsp;1229.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LVSELWDAGIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1229.724948 from(615.870299,2+) title(Elution%20from%3a%2031=
%2e56%20to%2031%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(364)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q364; if (NS4 || IE4) activateEl('=
Q364', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D364&amp;hit=3D1&amp;index=3DIPI%3aIPI0001451=
8&amp;px=3D1"=20=0D
      target=3D_blank>364</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>615.87&nbsp;&nbsp;&nbsp;&nbsp;1229.72&nbsp;&nbsp;&=
nbsp;&nbsp;1229.57&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NYIMDFQVGK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1232.571062 from(617.293356,2+) title(Elution%20from%3a%204%=
2e7%20to%204%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3=
a%20%201%20%20) query(366)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q366; if (NS4 || IE4) activateEl('=
Q366', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D366&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>366</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>617.29&nbsp;&=
nbsp;&nbsp;&nbsp;1232.57</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1232.624418 from(617.320034,2+) title(Elution%20from%3a%209%=
2e04%20to%209%2e04%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(367)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q367; if (NS4 || IE4) activateEl('=
Q367', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D367&amp;hit=3D1&amp;index=3DIPI%3aIPI0001922=
5&amp;px=3D1"=20=0D
      target=3D_blank>367</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>617.32&nbsp;&nbsp;&nbsp;&nbsp;1232.62&nbsp;&nbsp;&nbs=
p;&nbsp;1232.64&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;=
IRMDIDVVEK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1232.868042 from(617.441846,2+) title(Elution%20from%3a%2018=
7%2e94%20to%20187%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(369)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q369; if (NS4 || IE4) activateEl('=
Q369', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D369&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>369</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>617.44&nbsp;&=
nbsp;&nbsp;&nbsp;1232.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1232.879304 from(617.447477,2+) title(Elution%20from%3a%2020=
1%2e16%20to%20201%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(370)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q370; if (NS4 || IE4) activateEl('=
Q370', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D370&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>370</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>617.45&nbsp;&=
nbsp;&nbsp;&nbsp;1232.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1233.683298 from(617.849474,2+) title(Elution%20from%3a%200%=
2e23%20to%200%2e23%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(371)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q371; if (NS4 || IE4) activateEl('=
Q371', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D371&amp;hit=3D1&amp;index=3DIPI%3aIPI0000150=
1&amp;px=3D1"=20=0D
      target=3D_blank>371</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>617.85&nbsp;&nbsp;&nbsp;&nbsp;1233.68&nbsp;&nbsp;&nbs=
p;&nbsp;1233.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;NFPEAMLKER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1233.853792 from(617.934721,2+) title(Elution%20from%3a%2018=
9%2e79%20to%20189%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(372)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q372; if (NS4 || IE4) activateEl('=
Q372', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D372&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>372</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>617.93&nbsp;&=
nbsp;&nbsp;&nbsp;1233.85</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1235.665228 from(618.840439,2+) title(Elution%20from%3a%2030=
%2e07%20to%2030%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(374)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q374; if (NS4 || IE4) activateEl('=
Q374', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D374&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>374</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>618.84&nbsp;&=
nbsp;&nbsp;&nbsp;1235.67</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1237.644324 from(619.829987,2+) title(Elution%20from%3a%209%=
2e17%20to%209%2e17%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(376)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q376; if (NS4 || IE4) activateEl('=
Q376', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D376&amp;hit=3D1&amp;index=3DIPI%3aIPI0000644=
5&amp;px=3D1"=20=0D
      target=3D_blank>376</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>619.83&nbsp;&nbsp;&nbsp;&nbsp;1237.64&nbsp;&nbsp;&=
nbsp;&nbsp;1237.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KYLDGLDVCR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1240.750742 from(621.383196,2+) title(Elution%20from%3a%204%=
2e88%20to%204%2e88%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(377)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q377; if (NS4 || IE4) activateEl('=
Q377', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D377&amp;hit=3D1&amp;index=3DIPI%3aIPI0000601=
3&amp;px=3D1"=20=0D
      target=3D_blank>377</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>621.38&nbsp;&nbsp;&nbsp;&nbsp;1240.75&nbsp;&nbsp;&=
nbsp;&nbsp;1240.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;WAREADQPLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1241.736582 from(621.876116,2+) title(Elution%20from%3a%2016=
%2e43%20to%2016%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(378)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q378; if (NS4 || IE4) activateEl('=
Q378', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D378&amp;hit=3D1&amp;index=3DIPI%3aIPI0000605=
9&amp;px=3D1"=20=0D
      target=3D_blank>378</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>621.88&nbsp;&nbsp;&nbsp;&nbsp;1241.74&nbsp;&nbsp;&=
nbsp;&nbsp;1241.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IIEVGDTPKDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1242.764772 from(622.390211,2+) title(Elution%20from%3a%2018=
%2e24%20to%2018%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(381)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q381; if (NS4 || IE4) activateEl('=
Q381', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D381&amp;hit=3D1&amp;index=3DIPI%3aIPI0001988=
4&amp;px=3D1"=20=0D
      target=3D_blank>381</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>622.39&nbsp;&nbsp;&nbsp;&nbsp;1242.76&nbsp;&nbsp;&=
nbsp;&nbsp;1242.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HRPDLIDYSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1243.755622 from(622.885636,2+) title(Elution%20from%3a%2018=
%2e55%20to%2018%2e55%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(383)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q383; if (NS4 || IE4) activateEl('=
Q383', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D383&amp;hit=3D1&amp;index=3DIPI%3aIPI0003291=
2&amp;px=3D1"=20=0D
      target=3D_blank>383</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>622.89&nbsp;&nbsp;&nbsp;&nbsp;1243.76&nbsp;&nbsp;&=
nbsp;&nbsp;1243.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LETANKQLAEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1248.065424 from(625.040537,2+) title(Elution%20from%3a%2017=
0%2e62%20to%20170%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(384)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q384; if (NS4 || IE4) activateEl('=
Q384', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D384&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>384</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>625.04&nbsp;&=
nbsp;&nbsp;&nbsp;1248.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1248.799460 from(625.407555,2+) title(Elution%20from%3a%2016=
9%2e78%20to%20169%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(385)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q385; if (NS4 || IE4) activateEl('=
Q385', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D385&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>385</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>625.41&nbsp;&=
nbsp;&nbsp;&nbsp;1248.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1249.736072 from(625.875861,2+) title(Elution%20from%3a%2011=
%2e58%20to%2011%2e58%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(386)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q386; if (NS4 || IE4) activateEl('=
Q386', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D386&amp;hit=3D1&amp;index=3DIPI%3aIPI0000448=
4&amp;px=3D1"=20=0D
      target=3D_blank>386</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>625.88&nbsp;&nbsp;&nbsp;&nbsp;1249.74&nbsp;&nbsp;&=
nbsp;&nbsp;1249.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FLPEFAGTQLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1250.745454 from(626.380552,2+) title(Elution%20from%3a%2011=
%2e66%20to%2011%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(387)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q387; if (NS4 || IE4) activateEl('=
Q387', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D387&amp;hit=3D1&amp;index=3DIPI%3aIPI0001238=
5&amp;px=3D1"=20=0D
      target=3D_blank>387</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>626.38&nbsp;&nbsp;&nbsp;&nbsp;1250.75&nbsp;&nbsp;&=
nbsp;&nbsp;1250.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LTPLSHEVISR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1251.778634 from(626.897142,2+) title(Elution%20from%3a%2054=
%2e49%20to%2054%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(388)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q388; if (NS4 || IE4) activateEl('=
Q388', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D388&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>388</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>626.90&nbsp;&=
nbsp;&nbsp;&nbsp;1251.78</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1256.693416 from(629.354533,2+) title(Elution%20from%3a%204%=
2e32%20to%204%2e32%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(389)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q389; if (NS4 || IE4) activateEl('=
Q389', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D389&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>389</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>629.35&nbsp;&=
nbsp;&nbsp;&nbsp;1256.69</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1259.697108 from(630.856379,2+) title(Elution%20from%3a%2028=
%2e03%20to%2028%2e03%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(390)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q390; if (NS4 || IE4) activateEl('=
Q390', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D390&amp;hit=3D1&amp;index=3DIPI%3aIPI0000738=
6&amp;px=3D1"=20=0D
      target=3D_blank>390</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>630.86&nbsp;&nbsp;&nbsp;&nbsp;1259.70&nbsp;&nbsp;&=
nbsp;&nbsp;1259.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LMMDPLTGLNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1260.706776 from(631.361213,2+) title(Elution%20from%3a%2028=
%2e13%20to%2028%2e13%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(391)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q391; if (NS4 || IE4) activateEl('=
Q391', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D391&amp;hit=3D1&amp;index=3DIPI%3aIPI0000574=
1&amp;px=3D1"=20=0D
      target=3D_blank>391</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>631.36&nbsp;&nbsp;&nbsp;&nbsp;1260.71&nbsp;&nbsp;&=
nbsp;&nbsp;1260.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VTGVPGTEFVQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1260.723510 from(631.369580,2+) title(Elution%20from%3a%2031=
%2e11%20to%2031%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(393)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q393; if (NS4 || IE4) activateEl('=
Q393', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D393&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>393</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>631.37&nbsp;&=
nbsp;&nbsp;&nbsp;1260.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1261.716784 from(631.866217,2+) title(Elution%20from%3a%2028=
%2e32%20to%2028%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(394)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q394; if (NS4 || IE4) activateEl('=
Q394', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D394&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>394</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>631.87&nbsp;&=
nbsp;&nbsp;&nbsp;1261.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1264.684668 from(633.350159,2+) title(Elution%20from%3a%2044=
%2e42%20to%2044%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(395)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q395; if (NS4 || IE4) activateEl('=
Q395', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D395&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>395</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>633.35&nbsp;&=
nbsp;&nbsp;&nbsp;1264.68</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1266.609332 from(634.312491,2+) title(Elution%20from%3a%2012=
%2e02%20to%2012%2e15%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(397)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q397; if (NS4 || IE4) activateEl('=
Q397', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D397&amp;hit=3D1&amp;index=3DIPI%3aIPI0000945=
6&amp;px=3D1"=20=0D
      target=3D_blank>397</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>634.31&nbsp;&nbsp;&nbsp;&nbsp;1266.61&nbsp;&nbsp;&=
nbsp;&nbsp;1266.61&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LDNYSTQELGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1268.735422 from(635.375536,2+) title(Elution%20from%3a%2032=
%2e02%20to%2032%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(399)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q399; if (NS4 || IE4) activateEl('=
Q399', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D399&amp;hit=3D1&amp;index=3DIPI%3aIPI0000805=
0&amp;px=3D1"=20=0D
      target=3D_blank>399</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>635.38&nbsp;&nbsp;&nbsp;&nbsp;1268.74&nbsp;&nbsp;&=
nbsp;&nbsp;1268.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LHQQDIKLMK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1274.699470 from(638.357560,2+) title(Elution%20from%3a%2014=
%2e16%20to%2014%2e16%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(401)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q401; if (NS4 || IE4) activateEl('=
Q401', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D401&amp;hit=3D1&amp;index=3DIPI%3aIPI0001518=
1&amp;px=3D1"=20=0D
      target=3D_blank>401</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>638.36&nbsp;&nbsp;&nbsp;&nbsp;1274.70&nbsp;&nbsp;&=
nbsp;&nbsp;1274.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LNDEVIMNRR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1275.745850 from(638.880750,2+) title(Elution%20from%3a%2010=
%2e07%20to%2010%2e07%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(404)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q404; if (NS4 || IE4) activateEl('=
Q404', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D404&amp;hit=3D1&amp;index=3DIPI%3aIPI0001996=
1&amp;px=3D1"=20=0D
      target=3D_blank>404</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>638.88&nbsp;&nbsp;&nbsp;&nbsp;1275.75&nbsp;&nbsp;&nbs=
p;&nbsp;1275.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;MSPRCANLALK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1276.867428 from(639.441539,2+) title(Elution%20from%3a%2020=
1%2e51%20to%20201%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(405)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q405; if (NS4 || IE4) activateEl('=
Q405', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D405&amp;hit=3D1&amp;index=3DIPI%3aIPI0002961=
9&amp;px=3D1"=20=0D
      target=3D_blank>405</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>639.44&nbsp;&nbsp;&nbsp;&nbsp;1276.87&nbsp;&nbsp;&=
nbsp;&nbsp;1276.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RPSIPVKQKPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1276.874626 from(639.445138,2+) title(Elution%20from%3a%2018=
8%2e7%20to%20188%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(406)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q406; if (NS4 || IE4) activateEl('=
Q406', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D406&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>406</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>639.45&nbsp;&=
nbsp;&nbsp;&nbsp;1276.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1278.691628 from(640.353639,2+) title(Elution%20from%3a%203%=
2e36%20to%203%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(409)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q409; if (NS4 || IE4) activateEl('=
Q409', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D409&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>409</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.35&nbsp;&=
nbsp;&nbsp;&nbsp;1278.69</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1279.712348 from(640.863999,2+) title(Elution%20from%3a%2011=
%2e28%20to%2011%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(412)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q412; if (NS4 || IE4) activateEl('=
Q412', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D412&amp;hit=3D1&amp;index=3DIPI%3aIPI0001935=
4&amp;px=3D1"=20=0D
      target=3D_blank>412</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>640.86&nbsp;&nbsp;&nbsp;&nbsp;1279.71&nbsp;&nbsp;&=
nbsp;&nbsp;1279.72&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GVVLKEYLTMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1279.721838 from(640.868744,2+) title(Elution%20from%3a%203%=
2e57%20to%203%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(413)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q413; if (NS4 || IE4) activateEl('=
Q413', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D413&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>413</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.87&nbsp;&=
nbsp;&nbsp;&nbsp;1279.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1280.702132 from(641.358891,2+) title(Elution%20from%3a%2011=
%2e2%20to%2011%2e2%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(414)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q414; if (NS4 || IE4) activateEl('=
Q414', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D414&amp;hit=3D1&amp;index=3DIPI%3aIPI0003027=
1&amp;px=3D1"=20=0D
      target=3D_blank>414</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>641.36&nbsp;&nbsp;&nbsp;&nbsp;1280.70&nbsp;&nbsp;&=
nbsp;&nbsp;1280.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GNTALHEAVIEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1280.703634 from(641.359642,2+) title(Elution%20from%3a%204%=
2e14%20to%204%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(415)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q415; if (NS4 || IE4) activateEl('=
Q415', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D415&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>415</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>641.36&nbsp;&=
nbsp;&nbsp;&nbsp;1280.70</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1284.733338 from(643.374494,2+) title(Elution%20from%3a%2018=
%2e99%20to%2019%2e11%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(417)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q417; if (NS4 || IE4) activateEl('=
Q417', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D417&amp;hit=3D1&amp;index=3DIPI%3aIPI0001660=
1&amp;px=3D1"=20=0D
      target=3D_blank>417</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>643.37&nbsp;&nbsp;&nbsp;&nbsp;1284.73&nbsp;&nbsp;&=
nbsp;&nbsp;1284.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ILHLPTYSVDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1284.800684 from(643.408167,2+) title(Elution%20from%3a%2011=
%2e53%20to%2011%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(418)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q418; if (NS4 || IE4) activateEl('=
Q418', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D418&amp;hit=3D1&amp;index=3DIPI%3aIPI0002439=
7&amp;px=3D1"=20=0D
      target=3D_blank>418</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>643.41&nbsp;&nbsp;&nbsp;&nbsp;1284.80&nbsp;&nbsp;&=
nbsp;&nbsp;1284.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AVEELQSIIKR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1285.727004 from(643.871327,2+) title(Elution%20from%3a%2019=
%2e24%20to%2019%2e24%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(419)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q419; if (NS4 || IE4) activateEl('=
Q419', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D419&amp;hit=3D1&amp;index=3DIPI%3aIPI0000109=
0&amp;px=3D1"=20=0D
      target=3D_blank>419</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>643.87&nbsp;&nbsp;&nbsp;&nbsp;1285.73&nbsp;&nbsp;&=
nbsp;&nbsp;1285.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IKAIGNEVTVDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1285.802756 from(643.909203,2+) title(Elution%20from%3a%2011=
%2e74%20to%2011%2e74%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(420)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q420; if (NS4 || IE4) activateEl('=
Q420', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D420&amp;hit=3D1&amp;index=3DIPI%3aIPI0000567=
1&amp;px=3D1"=20=0D
      target=3D_blank>420</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>643.91&nbsp;&nbsp;&nbsp;&nbsp;1285.80&nbsp;&nbsp;&=
nbsp;&nbsp;1285.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ETAQLREQVGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1286.760078 from(644.387864,2+) title(Elution%20from%3a%205%=
2e5%20to%205%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3=
a%20%201%20%20) query(421)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q421; if (NS4 || IE4) activateEl('=
Q421', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D421&amp;hit=3D1&amp;index=3DIPI%3aIPI0000011=
0&amp;px=3D1"=20=0D
      target=3D_blank>421</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>644.39&nbsp;&nbsp;&nbsp;&nbsp;1286.76&nbsp;&nbsp;&=
nbsp;&nbsp;1286.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLSPAQRALYR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1286.776780 from(644.396215,2+) title(Elution%20from%3a%2027=
%2e38%20to%2027%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(422)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q422; if (NS4 || IE4) activateEl('=
Q422', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D422&amp;hit=3D1&amp;index=3DIPI%3aIPI0001663=
8&amp;px=3D1"=20=0D
      target=3D_blank>422</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>644.40&nbsp;&nbsp;&nbsp;&nbsp;1286.78&nbsp;&nbsp;&=
nbsp;&nbsp;1286.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HALIIYDDLSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1287.780766 from(644.898208,2+) title(Elution%20from%3a%2028=
%2e05%20to%2028%2e05%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(423)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q423; if (NS4 || IE4) activateEl('=
Q423', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D423&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>423</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>644.90&nbsp;&=
nbsp;&nbsp;&nbsp;1287.78</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1287.788214 from(644.901932,2+) title(Elution%20from%3a%205%=
2e71%20to%205%2e71%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(424)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q424; if (NS4 || IE4) activateEl('=
Q424', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D424&amp;hit=3D1&amp;index=3DIPI%3aIPI0001022=
8&amp;px=3D1"=20=0D
      target=3D_blank>424</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>644.90&nbsp;&nbsp;&nbsp;&nbsp;1287.79&nbsp;&nbsp;&=
nbsp;&nbsp;1287.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IGDLGAVQAAAMR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1288.684044 from(645.349847,2+) title(Elution%20from%3a%2010=
%2e71%20to%2010%2e71%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(425)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q425; if (NS4 || IE4) activateEl('=
Q425', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D425&amp;hit=3D1&amp;index=3DIPI%3aIPI0001407=
9&amp;px=3D1"=20=0D
      target=3D_blank>425</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>645.35&nbsp;&nbsp;&nbsp;&nbsp;1288.68&nbsp;&nbsp;&=
nbsp;&nbsp;1288.72&nbsp;&nbsp;&nbsp;&nbsp;-0.04&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ASKVIPVMLMGK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1290.874482 from(646.445066,2+) title(Elution%20from%3a%2014=
8%2e04%20to%20148%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(427)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q427; if (NS4 || IE4) activateEl('=
Q427', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D427&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>427</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>646.45&nbsp;&=
nbsp;&nbsp;&nbsp;1290.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1291.879942 from(646.947796,2+) title(Elution%20from%3a%2014=
8%2e55%20to%20148%2e55%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(428)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q428; if (NS4 || IE4) activateEl('=
Q428', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D428&amp;hit=3D1&amp;index=3DIPI%3aIPI0001557=
3&amp;px=3D1"=20=0D
      target=3D_blank>428</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>646.95&nbsp;&nbsp;&nbsp;&nbsp;1291.88&nbsp;&nbsp;&=
nbsp;&nbsp;1291.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AVQIVLHSLGQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1296.175440 from(649.095545,2+) title(Elution%20from%3a%2016=
0%2e51%20to%20160%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(429)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q429; if (NS4 || IE4) activateEl('=
Q429', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D429&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>429</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.10&nbsp;&=
nbsp;&nbsp;&nbsp;1296.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1297.272560 from(649.644105,2+) title(Elution%20from%3a%2015=
0%2e01%20to%20150%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(430)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q430; if (NS4 || IE4) activateEl('=
Q430', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D430&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>430</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.64&nbsp;&=
nbsp;&nbsp;&nbsp;1297.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1297.773214 from(649.894432,2+) title(Elution%20from%3a%2016=
4%2e85%20to%20164%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(431)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q431; if (NS4 || IE4) activateEl('=
Q431', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D431&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>431</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.89&nbsp;&=
nbsp;&nbsp;&nbsp;1297.77</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1303.832038 from(652.923844,2+) title(Elution%20from%3a%206%=
2e33%20to%206%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(435)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q435; if (NS4 || IE4) activateEl('=
Q435', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D435&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>435</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>652.92&nbsp;&=
nbsp;&nbsp;&nbsp;1303.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1304.748874 from(653.382262,2+) title(Elution%20from%3a%2024=
%2e07%20to%2024%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(436)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q436; if (NS4 || IE4) activateEl('=
Q436', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D436&amp;hit=3D1&amp;index=3DIPI%3aIPI0002801=
9&amp;px=3D1"=20=0D
      target=3D_blank>436</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>653.38&nbsp;&nbsp;&nbsp;&nbsp;1304.75&nbsp;&nbsp;&nbs=
p;&nbsp;1304.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;ISHLPLVEELR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1304.791281 from(435.938252,3+) title(Elution%20from%3a%206%=
2e28%20to%206%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(440)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q440; if (NS4 || IE4) activateEl('=
Q440', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D440&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>440</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>435.94&nbsp;&=
nbsp;&nbsp;&nbsp;1304.79</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1304.821012 from(653.418331,2+) title(Elution%20from%3a%206%=
2e61%20to%206%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(441)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q441; if (NS4 || IE4) activateEl('=
Q441', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D441&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>441</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>653.42&nbsp;&=
nbsp;&nbsp;&nbsp;1304.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1305.749984 from(653.882817,2+) title(Elution%20from%3a%2018=
%2e7%20to%2018%2e7%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(442)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q442; if (NS4 || IE4) activateEl('=
Q442', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D442&amp;hit=3D1&amp;index=3DIPI%3aIPI0000423=
7&amp;px=3D1"=20=0D
      target=3D_blank>442</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>653.88&nbsp;&nbsp;&nbsp;&nbsp;1305.75&nbsp;&nbsp;&=
nbsp;&nbsp;1305.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AQPSLFVEMLR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1305.758022 from(653.886836,2+) title(Elution%20from%3a%2022=
%2e24%20to%2022%2e37%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(443)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q443; if (NS4 || IE4) activateEl('=
Q443', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D443&amp;hit=3D1&amp;index=3DIPI%3aIPI0001912=
6&amp;px=3D1"=20=0D
      target=3D_blank>443</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>653.89&nbsp;&nbsp;&nbsp;&nbsp;1305.76&nbsp;&nbsp;&=
nbsp;&nbsp;1305.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EGTEASASKGLEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1305.758378 from(653.887014,2+) title(Elution%20from%3a%2025=
%2e39%20to%2025%2e39%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(444)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q444; if (NS4 || IE4) activateEl('=
Q444', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D444&amp;hit=3D1&amp;index=3DIPI%3aIPI0002569=
5&amp;px=3D1"=20=0D
      target=3D_blank>444</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>653.89&nbsp;&nbsp;&nbsp;&nbsp;1305.76&nbsp;&nbsp;&=
nbsp;&nbsp;1305.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SKFLDALISLLS</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1306.709856 from(654.362753,2+) title(Elution%20from%3a%2032=
%2e31%20to%2032%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(445)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q445; if (NS4 || IE4) activateEl('=
Q445', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D445&amp;hit=3D1&amp;index=3DIPI%3aIPI0002358=
6&amp;px=3D1"=20=0D
      target=3D_blank>445</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>654.36&nbsp;&nbsp;&nbsp;&nbsp;1306.71&nbsp;&nbsp;&=
nbsp;&nbsp;1306.72&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TVSFESKIQLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1306.735018 from(654.375334,2+) title(Elution%20from%3a%2026=
%2e11%20to%2026%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(446)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q446; if (NS4 || IE4) activateEl('=
Q446', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D446&amp;hit=3D1&amp;index=3DIPI%3aIPI0002729=
6&amp;px=3D1"=20=0D
      target=3D_blank>446</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>654.38&nbsp;&nbsp;&nbsp;&nbsp;1306.74&nbsp;&nbsp;&=
nbsp;&nbsp;1306.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NQYKLIQCLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1307.728212 from(436.917229,3+) title(Elution%20from%3a%208%=
2e91%20to%208%2e91%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(447)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q447; if (NS4 || IE4) activateEl('=
Q447', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D447&amp;hit=3D1&amp;index=3DIPI%3aIPI0001087=
3&amp;px=3D1"=20=0D
      target=3D_blank>447</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>436.92&nbsp;&nbsp;&nbsp;&nbsp;1307.73&nbsp;&nbsp;&nbs=
p;&nbsp;1307.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;YYSVPVAVVPSK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1308.768546 from(655.392098,2+) title(Elution%20from%3a%209%=
2e19%20to%209%2e19%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(449)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q449; if (NS4 || IE4) activateEl('=
Q449', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D449&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>449</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>655.39&nbsp;&=
nbsp;&nbsp;&nbsp;1308.77</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1309.785896 from(655.900773,2+) title(Elution%20from%3a%2053=
%2e02%20to%2053%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(450)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q450; if (NS4 || IE4) activateEl('=
Q450', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D450&amp;hit=3D1&amp;index=3DIPI%3aIPI0002046=
3&amp;px=3D1"=20=0D
      target=3D_blank>450</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>655.90&nbsp;&nbsp;&nbsp;&nbsp;1309.79&nbsp;&nbsp;&=
nbsp;&nbsp;1309.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TVTAMDVVYALK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1309.865826 from(655.940738,2+) title(Elution%20from%3a%2049=
%2e91%20to%2049%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(451)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q451; if (NS4 || IE4) activateEl('=
Q451', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D451&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>451</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>655.94&nbsp;&=
nbsp;&nbsp;&nbsp;1309.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1310.809658 from(656.412654,2+) title(Elution%20from%3a%2052=
%2e48%20to%2052%2e48%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(452)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q452; if (NS4 || IE4) activateEl('=
Q452', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D452&amp;hit=3D1&amp;index=3DIPI%3aIPI0002994=
8&amp;px=3D1"=20=0D
      target=3D_blank>452</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>656.41&nbsp;&nbsp;&nbsp;&nbsp;1310.81&nbsp;&nbsp;&=
nbsp;&nbsp;1310.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RVPSAVVISQQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1313.764014 from(657.889832,2+) title(Elution%20from%3a%2010=
%2e76%20to%2010%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(455)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q455; if (NS4 || IE4) activateEl('=
Q455', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D455&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>455</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>657.89&nbsp;&=
nbsp;&nbsp;&nbsp;1313.76</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1313.803080 from(657.909365,2+) title(Elution%20from%3a%2066=
%2e31%20to%2066%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(456)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q456; if (NS4 || IE4) activateEl('=
Q456', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D456&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>456</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>657.91&nbsp;&=
nbsp;&nbsp;&nbsp;1313.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1313.809894 from(657.912772,2+) title(Elution%20from%3a%2069=
%2e34%20to%2069%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(457)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q457; if (NS4 || IE4) activateEl('=
Q457', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D457&amp;hit=3D1&amp;index=3DIPI%3aIPI0001656=
7&amp;px=3D1"=20=0D
      target=3D_blank>457</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>657.91&nbsp;&nbsp;&nbsp;&nbsp;1313.81&nbsp;&nbsp;&=
nbsp;&nbsp;1313.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLGGTRTPINDAS</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1313.820418 from(657.918034,2+) title(Elution%20from%3a%2060=
%2e03%20to%2060%2e03%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(458)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q458; if (NS4 || IE4) activateEl('=
Q458', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D458&amp;hit=3D1&amp;index=3DIPI%3aIPI0001792=
5&amp;px=3D1"=20=0D
      target=3D_blank>458</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>657.92&nbsp;&nbsp;&nbsp;&nbsp;1313.82&nbsp;&nbsp;&nbs=
p;&nbsp;1313.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;QALRTAELSLGR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1313.821662 from(657.918656,2+) title(Elution%20from%3a%2026=
%2e19%20to%2026%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(459)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q459; if (NS4 || IE4) activateEl('=
Q459', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D459&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>459</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>657.92&nbsp;&=
nbsp;&nbsp;&nbsp;1313.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1313.827494 from(657.921572,2+) title(Elution%20from%3a%2063=
%2e2%20to%2063%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(460)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q460; if (NS4 || IE4) activateEl('=
Q460', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D460&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>460</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>657.92&nbsp;&=
nbsp;&nbsp;&nbsp;1313.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1313.837384 from(657.926517,2+) title(Elution%20from%3a%2056=
%2e76%20to%2056%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(461)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q461; if (NS4 || IE4) activateEl('=
Q461', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D461&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>461</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>657.93&nbsp;&=
nbsp;&nbsp;&nbsp;1313.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1313.908274 from(657.961962,2+) title(Elution%20from%3a%2016=
3%2e58%20to%20163%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(462)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q462; if (NS4 || IE4) activateEl('=
Q462', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D462&amp;hit=3D1&amp;index=3DIPI%3aIPI0002127=
1&amp;px=3D1"=20=0D
      target=3D_blank>462</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>657.96&nbsp;&nbsp;&nbsp;&nbsp;1313.91&nbsp;&nbsp;&=
nbsp;&nbsp;1313.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SNQLLLVKGSQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1314.791050 from(658.403350,2+) title(Elution%20from%3a%2067=
%2e49%20to%2067%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(463)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q463; if (NS4 || IE4) activateEl('=
Q463', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D463&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>463</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>658.40&nbsp;&=
nbsp;&nbsp;&nbsp;1314.79</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1314.818894 from(658.417272,2+) title(Elution%20from%3a%2026=
%2e24%20to%2026%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(464)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q464; if (NS4 || IE4) activateEl('=
Q464', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D464&amp;hit=3D1&amp;index=3DIPI%3aIPI0001460=
0&amp;px=3D1"=20=0D
      target=3D_blank>464</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>658.42&nbsp;&nbsp;&nbsp;&nbsp;1314.82&nbsp;&nbsp;&=
nbsp;&nbsp;1314.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AEIEALAALKMR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1315.866926 from(658.941288,2+) title(Elution%20from%3a%2024=
%2e38%20to%2024%2e38%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(465)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q465; if (NS4 || IE4) activateEl('=
Q465', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D465&amp;hit=3D1&amp;index=3DIPI%3aIPI0001663=
8&amp;px=3D1"=20=0D
      target=3D_blank>465</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>658.94&nbsp;&nbsp;&nbsp;&nbsp;1315.87&nbsp;&nbsp;&=
nbsp;&nbsp;1315.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TSIAIDTIINQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1317.731770 from(659.873710,2+) title(Elution%20from%3a%2024=
%2e67%20to%2024%2e67%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(466)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q466; if (NS4 || IE4) activateEl('=
Q466', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D466&amp;hit=3D1&amp;index=3DIPI%3aIPI0003310=
0&amp;px=3D1"=20=0D
      target=3D_blank>466</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>659.87&nbsp;&nbsp;&nbsp;&nbsp;1317.73&nbsp;&nbsp;&=
nbsp;&nbsp;1317.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DISTILDEERK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1317.854836 from(659.935243,2+) title(Elution%20from%3a%2028=
%2e63%20to%2028%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(467)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q467; if (NS4 || IE4) activateEl('=
Q467', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D467&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>467</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.94&nbsp;&=
nbsp;&nbsp;&nbsp;1317.85</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1319.725928 from(660.870789,2+) title(Elution%20from%3a%2013=
%2e52%20to%2013%2e52%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(469)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q469; if (NS4 || IE4) activateEl('=
Q469', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D469&amp;hit=3D1&amp;index=3DIPI%3aIPI0001580=
9&amp;px=3D1"=20=0D
      target=3D_blank>469</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>660.87&nbsp;&nbsp;&nbsp;&nbsp;1319.73&nbsp;&nbsp;&=
nbsp;&nbsp;1319.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MPAVLGFEGSANK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1320.944156 from(661.479903,2+) title(Elution%20from%3a%2019=
0%2e35%20to%20190%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(471)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q471; if (NS4 || IE4) activateEl('=
Q471', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D471&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>471</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>661.48&nbsp;&=
nbsp;&nbsp;&nbsp;1320.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1324.752207 from(442.591894,3+) title(Elution%20from%3a%207%=
2e54%20to%207%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(474)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q474; if (NS4 || IE4) activateEl('=
Q474', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D474&amp;hit=3D1&amp;index=3DIPI%3aIPI0003103=
3&amp;px=3D1"=20=0D
      target=3D_blank>474</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>442.59&nbsp;&nbsp;&nbsp;&nbsp;1324.75&nbsp;&nbsp;&=
nbsp;&nbsp;1324.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MAPAAASPPEVIR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1324.782968 from(663.399309,2+) title(Elution%20from%3a%206%=
2e95%20to%206%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(475)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q475; if (NS4 || IE4) activateEl('=
Q475', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D475&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>475</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>663.40&nbsp;&=
nbsp;&nbsp;&nbsp;1324.78</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1325.774379 from(442.932618,3+) title(Elution%20from%3a%207%=
2e21%20to%207%2e21%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(476)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q476; if (NS4 || IE4) activateEl('=
Q476', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D476&amp;hit=3D1&amp;index=3DIPI%3aIPI0000251=
1&amp;px=3D1"=20=0D
      target=3D_blank>476</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>442.93&nbsp;&nbsp;&nbsp;&nbsp;1325.77&nbsp;&nbsp;&=
nbsp;&nbsp;1325.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MNPSVGPANQRR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1325.785998 from(663.900824,2+) title(Elution%20from%3a%207%=
2e06%20to%207%2e06%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(477)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q477; if (NS4 || IE4) activateEl('=
Q477', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D477&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>477</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>663.90&nbsp;&=
nbsp;&nbsp;&nbsp;1325.79</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1326.713028 from(664.364339,2+) title(Elution%20from%3a%2030=
%2e8%20to%2030%2e8%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(478)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q478; if (NS4 || IE4) activateEl('=
Q478', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D478&amp;hit=3D1&amp;index=3DIPI%3aIPI0000198=
9&amp;px=3D1"=20=0D
      target=3D_blank>478</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>664.36&nbsp;&nbsp;&nbsp;&nbsp;1326.71&nbsp;&nbsp;&=
nbsp;&nbsp;1326.63&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MFVGGLSWDTSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1329.854100 from(665.934875,2+) title(Elution%20from%3a%2094=
%2e19%20to%2094%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(479)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q479; if (NS4 || IE4) activateEl('=
Q479', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D479&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>479</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>665.93&nbsp;&=
nbsp;&nbsp;&nbsp;1329.85</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1330.796402 from(666.406026,2+) title(Elution%20from%3a%2012=
%2e79%20to%2012%2e79%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(480)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q480; if (NS4 || IE4) activateEl('=
Q480', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D480&amp;hit=3D1&amp;index=3DIPI%3aIPI0001664=
2&amp;px=3D1"=20=0D
      target=3D_blank>480</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.41&nbsp;&nbsp;&nbsp;&nbsp;1330.80&nbsp;&nbsp;&=
nbsp;&nbsp;1330.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IGSLRVGDPVYR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1330.846410 from(666.431030,2+) title(Elution%20from%3a%2094=
%2e86%20to%2094%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(481)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q481; if (NS4 || IE4) activateEl('=
Q481', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D481&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>481</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>666.43&nbsp;&=
nbsp;&nbsp;&nbsp;1330.85</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1331.706886 from(666.861268,2+) title(Elution%20from%3a%207%=
2e62%20to%207%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(482)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q482; if (NS4 || IE4) activateEl('=
Q482', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D482&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>482</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>666.86&nbsp;&=
nbsp;&nbsp;&nbsp;1331.71</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1331.797172 from(666.906411,2+) title(Elution%20from%3a%2013=
%2e31%20to%2013%2e31%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(483)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q483; if (NS4 || IE4) activateEl('=
Q483', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D483&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>483</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>666.91&nbsp;&=
nbsp;&nbsp;&nbsp;1331.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1332.800066 from(667.407858,2+) title(Elution%20from%3a%209%=
2e71%20to%209%2e71%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(484)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q484; if (NS4 || IE4) activateEl('=
Q484', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D484&amp;hit=3D1&amp;index=3DIPI%3aIPI0002721=
2&amp;px=3D1"=20=0D
      target=3D_blank>484</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>667.41&nbsp;&nbsp;&nbsp;&nbsp;1332.80&nbsp;&nbsp;&=
nbsp;&nbsp;1332.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LGEEATVLCVSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1335.753028 from(668.884339,2+) title(Elution%20from%3a%2088=
%2e71%20to%2088%2e71%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(485)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q485; if (NS4 || IE4) activateEl('=
Q485', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D485&amp;hit=3D1&amp;index=3DIPI%3aIPI0001164=
1&amp;px=3D1"=20=0D
      target=3D_blank>485</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>668.88&nbsp;&nbsp;&nbsp;&nbsp;1335.75&nbsp;&nbsp;&=
nbsp;&nbsp;1335.86&nbsp;&nbsp;&nbsp;&nbsp;-0.11&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TVPLAVLQLRVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1336.726312 from(669.370981,2+) title(Elution%20from%3a%208%=
2e57%20to%208%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(486)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q486; if (NS4 || IE4) activateEl('=
Q486', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D486&amp;hit=3D1&amp;index=3DIPI%3aIPI0001201=
1&amp;px=3D1"=20=0D
      target=3D_blank>486</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>669.37&nbsp;&nbsp;&nbsp;&nbsp;1336.73&nbsp;&nbsp;&=
nbsp;&nbsp;1336.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;YALYDATYETK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1340.775387 from(447.932954,3+) title(Elution%20from%3a%2043=
%2e75%20to%2043%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(487)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q487; if (NS4 || IE4) activateEl('=
Q487', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D487&amp;hit=3D1&amp;index=3DIPI%3aIPI0002268=
3&amp;px=3D1"=20=0D
      target=3D_blank>487</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>447.93&nbsp;&nbsp;&nbsp;&nbsp;1340.78&nbsp;&nbsp;&=
nbsp;&nbsp;1340.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GSFRYAWVLDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1340.790894 from(671.403272,2+) title(Elution%20from%3a%2042=
%2e14%20to%2042%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(488)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q488; if (NS4 || IE4) activateEl('=
Q488', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D488&amp;hit=3D1&amp;index=3DIPI%3aIPI0002268=
3&amp;px=3D1"=20=0D
      target=3D_blank>488</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>671.40&nbsp;&nbsp;&nbsp;&nbsp;1340.79&nbsp;&nbsp;&=
nbsp;&nbsp;1340.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GSFRYAWVLDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1340.791308 from(447.938261,3+) title(Elution%20from%3a%2040=
%2e73%20to%2040%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(489)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q489; if (NS4 || IE4) activateEl('=
Q489', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D489&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>489</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>447.94&nbsp;&=
nbsp;&nbsp;&nbsp;1340.79</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1340.800890 from(447.941455,3+) title(Elution%20from%3a%2027=
%2e23%20to%2027%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(490)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q490; if (NS4 || IE4) activateEl('=
Q490', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D490&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>490</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>447.94&nbsp;&=
nbsp;&nbsp;&nbsp;1340.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1340.803042 from(671.409346,2+) title(Elution%20from%3a%2039=
%2e13%20to%2039%2e13%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(491)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q491; if (NS4 || IE4) activateEl('=
Q491', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D491&amp;hit=3D1&amp;index=3DIPI%3aIPI0002342=
2&amp;px=3D1"=20=0D
      target=3D_blank>491</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>671.41&nbsp;&nbsp;&nbsp;&nbsp;1340.80&nbsp;&nbsp;&=
nbsp;&nbsp;1340.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EENVPEILDRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1340.834248 from(671.424949,2+) title(Elution%20from%3a%2027=
%2e33%20to%2027%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(492)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q492; if (NS4 || IE4) activateEl('=
Q492', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D492&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>492</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>671.42&nbsp;&=
nbsp;&nbsp;&nbsp;1340.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1341.761238 from(448.261571,3+) title(Elution%20from%3a%2013=
%2e78%20to%2013%2e78%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(493)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q493; if (NS4 || IE4) activateEl('=
Q493', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D493&amp;hit=3D1&amp;index=3DIPI%3aIPI0002182=
0&amp;px=3D1"=20=0D
      target=3D_blank>493</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>448.26&nbsp;&nbsp;&nbsp;&nbsp;1341.76&nbsp;&nbsp;&=
nbsp;&nbsp;1341.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ADDGRPFPQVIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1341.780783 from(448.268086,3+) title(Elution%20from%3a%2041=
%2e27%20to%2041%2e27%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(494)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q494; if (NS4 || IE4) activateEl('=
Q494', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D494&amp;hit=3D1&amp;index=3DIPI%3aIPI0000684=
9&amp;px=3D1"=20=0D
      target=3D_blank>494</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>448.27&nbsp;&nbsp;&nbsp;&nbsp;1341.78&nbsp;&nbsp;&=
nbsp;&nbsp;1341.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LRLDALPFQAAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1341.786972 from(671.901311,2+) title(Elution%20from%3a%2013=
%2e85%20to%2013%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(495)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q495; if (NS4 || IE4) activateEl('=
Q495', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D495&amp;hit=3D1&amp;index=3DIPI%3aIPI0002182=
0&amp;px=3D1"=20=0D
      target=3D_blank>495</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>671.90&nbsp;&nbsp;&nbsp;&nbsp;1341.79&nbsp;&nbsp;&=
nbsp;&nbsp;1341.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ADDGRPFPQVIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1341.795502 from(671.905576,2+) title(Elution%20from%3a%2040=
%2e83%20to%2040%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(496)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q496; if (NS4 || IE4) activateEl('=
Q496', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D496&amp;hit=3D1&amp;index=3DIPI%3aIPI0000155=
6&amp;px=3D1"=20=0D
      target=3D_blank>496</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>671.91&nbsp;&nbsp;&nbsp;&nbsp;1341.80&nbsp;&nbsp;&=
nbsp;&nbsp;1341.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LISNFSKVSGYK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1341.830872 from(671.923261,2+) title(Elution%20from%3a%2043=
%2e94%20to%2043%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(497)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q497; if (NS4 || IE4) activateEl('=
Q497', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D497&amp;hit=3D1&amp;index=3DIPI%3aIPI0000155=
6&amp;px=3D1"=20=0D
      target=3D_blank>497</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>671.92&nbsp;&nbsp;&nbsp;&nbsp;1341.83&nbsp;&nbsp;&=
nbsp;&nbsp;1341.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LISNFSKVSGYK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1341.842658 from(448.288711,3+) title(Elution%20from%3a%2027=
%2e28%20to%2027%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(498)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q498; if (NS4 || IE4) activateEl('=
Q498', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D498&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>498</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>448.29&nbsp;&=
nbsp;&nbsp;&nbsp;1341.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1341.845310 from(671.930480,2+) title(Elution%20from%3a%2027=
%2e67%20to%2027%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(499)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q499; if (NS4 || IE4) activateEl('=
Q499', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D499&amp;hit=3D1&amp;index=3DIPI%3aIPI0000432=
1&amp;px=3D1"=20=0D
      target=3D_blank>499</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>671.93&nbsp;&nbsp;&nbsp;&nbsp;1341.85&nbsp;&nbsp;&=
nbsp;&nbsp;1341.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LIPGAGATEMALAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1342.752660 from(448.592045,3+) title(Elution%20from%3a%2014=
%2e08%20to%2014%2e08%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(500)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q500; if (NS4 || IE4) activateEl('=
Q500', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D500&amp;hit=3D1&amp;index=3DIPI%3aIPI0003175=
8&amp;px=3D1"=20=0D
      target=3D_blank>500</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>448.59&nbsp;&nbsp;&nbsp;&nbsp;1342.75&nbsp;&nbsp;&=
nbsp;&nbsp;1342.76&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LEQYIPSRPLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1342.779778 from(672.397714,2+) title(Elution%20from%3a%2042=
%2e7%20to%2042%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(501)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q501; if (NS4 || IE4) activateEl('=
Q501', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D501&amp;hit=3D1&amp;index=3DIPI%3aIPI0003333=
2&amp;px=3D1"=20=0D
      target=3D_blank>501</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>672.40&nbsp;&nbsp;&nbsp;&nbsp;1342.78&nbsp;&nbsp;&=
nbsp;&nbsp;1342.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MACPWKFLFK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1342.785114 from(672.400382,2+) title(Elution%20from%3a%2014=
%2e06%20to%2014%2e06%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(502)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q502; if (NS4 || IE4) activateEl('=
Q502', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D502&amp;hit=3D1&amp;index=3DIPI%3aIPI0002675=
9&amp;px=3D1"=20=0D
      target=3D_blank>502</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>672.40&nbsp;&nbsp;&nbsp;&nbsp;1342.79&nbsp;&nbsp;&=
nbsp;&nbsp;1342.64&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MTLMTKSMNVR&nbsp;+&nbsp;2=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1344.775620 from(673.395635,2+) title(Elution%20from%3a%2013=
%2e42%20to%2013%2e42%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(503)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q503; if (NS4 || IE4) activateEl('=
Q503', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D503&amp;hit=3D1&amp;index=3DIPI%3aIPI0000480=
3&amp;px=3D1"=20=0D
      target=3D_blank>503</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>673.40&nbsp;&nbsp;&nbsp;&nbsp;1344.78&nbsp;&nbsp;&=
nbsp;&nbsp;1344.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;CSQAIPQVDISK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1345.700350 from(673.858000,2+) title(Elution%20from%3a%2025=
%2e13%20to%2025%2e13%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(504)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q504; if (NS4 || IE4) activateEl('=
Q504', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D504&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>504</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>673.86&nbsp;&=
nbsp;&nbsp;&nbsp;1345.70</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1346.690426 from(674.353038,2+) title(Elution%20from%3a%2025=
%2e21%20to%2025%2e21%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(505)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q505; if (NS4 || IE4) activateEl('=
Q505', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D505&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>505</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>674.35&nbsp;&=
nbsp;&nbsp;&nbsp;1346.69</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1346.756712 from(674.386181,2+) title(Elution%20from%3a%2018=
%2e47%20to%2018%2e47%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(506)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q506; if (NS4 || IE4) activateEl('=
Q506', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D506&amp;hit=3D1&amp;index=3DIPI%3aIPI0000300=
2&amp;px=3D1"=20=0D
      target=3D_blank>506</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>674.39&nbsp;&nbsp;&nbsp;&nbsp;1346.76&nbsp;&nbsp;&=
nbsp;&nbsp;1346.77&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LLVRLSDVYNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1347.708462 from(674.862056,2+) title(Elution%20from%3a%204%=
2e58%20to%204%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(507)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q507; if (NS4 || IE4) activateEl('=
Q507', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D507&amp;hit=3D1&amp;index=3DIPI%3aIPI0000767=
4&amp;px=3D1"=20=0D
      target=3D_blank>507</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>674.86&nbsp;&nbsp;&nbsp;&nbsp;1347.71&nbsp;&nbsp;&=
nbsp;&nbsp;1347.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TGGAVDRLTDTSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1347.799524 from(450.274333,3+) title(Elution%20from%3a%208%=
2e03%20to%208%2e03%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(509)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q509; if (NS4 || IE4) activateEl('=
Q509', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D509&amp;hit=3D1&amp;index=3DIPI%3aIPI0001537=
6&amp;px=3D1"=20=0D
      target=3D_blank>509</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>450.27&nbsp;&nbsp;&nbsp;&nbsp;1347.80&nbsp;&nbsp;&=
nbsp;&nbsp;1347.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HVTLGPGQSPLSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1348.699866 from(675.357758,2+) title(Elution%20from%3a%201%=
2e87%20to%201%2e87%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(510)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q510; if (NS4 || IE4) activateEl('=
Q510', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D510&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>510</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>675.36&nbsp;&=
nbsp;&nbsp;&nbsp;1348.70</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1349.815760 from(675.915705,2+) title(Elution%20from%3a%2023=
%2e76%20to%2023%2e76%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(513)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q513; if (NS4 || IE4) activateEl('=
Q513', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D513&amp;hit=3D1&amp;index=3DIPI%3aIPI0001533=
3&amp;px=3D1"=20=0D
      target=3D_blank>513</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>675.92&nbsp;&nbsp;&nbsp;&nbsp;1349.82&nbsp;&nbsp;&=
nbsp;&nbsp;1349.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LEGIVNKMFQR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1350.702348 from(676.358999,2+) title(Elution%20from%3a%2052=
%2e3%20to%2052%2e3%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(514)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q514; if (NS4 || IE4) activateEl('=
Q514', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D514&amp;hit=3D1&amp;index=3DIPI%3aIPI0000221=
6&amp;px=3D1"=20=0D
      target=3D_blank>514</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>676.36&nbsp;&nbsp;&nbsp;&nbsp;1350.70&nbsp;&nbsp;&nbs=
p;&nbsp;1350.71&nbsp;&nbsp;&nbsp;&nbsp;-0.00&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;MITSVLEKEASK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1352.706228 from(451.909901,3+) title(Elution%20from%3a%2058=
%2e96%20to%2058%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(521)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q521; if (NS4 || IE4) activateEl('=
Q521', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D521&amp;hit=3D1&amp;index=3DIPI%3aIPI0000563=
1&amp;px=3D1"=20=0D
      target=3D_blank>521</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>451.91&nbsp;&nbsp;&nbsp;&nbsp;1352.71&nbsp;&nbsp;&=
nbsp;&nbsp;1352.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KYECELENLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1352.720055 from(451.914510,3+) title(Elution%20from%3a%2062=
%2e01%20to%2062%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(522)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q522; if (NS4 || IE4) activateEl('=
Q522', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D522&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>522</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>451.91&nbsp;&=
nbsp;&nbsp;&nbsp;1352.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1352.737596 from(677.376623,2+) title(Elution%20from%3a%2051=
%2e08%20to%2051%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(523)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q523; if (NS4 || IE4) activateEl('=
Q523', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D523&amp;hit=3D1&amp;index=3DIPI%3aIPI0000563=
1&amp;px=3D1"=20=0D
      target=3D_blank>523</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.38&nbsp;&nbsp;&nbsp;&nbsp;1352.74&nbsp;&nbsp;&=
nbsp;&nbsp;1352.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KYECELENLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1352.737818 from(677.376734,2+) title(Elution%20from%3a%2063=
%2e42%20to%2063%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(524)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q524; if (NS4 || IE4) activateEl('=
Q524', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D524&amp;hit=3D1&amp;index=3DIPI%3aIPI0000563=
1&amp;px=3D1"=20=0D
      target=3D_blank>524</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.38&nbsp;&nbsp;&nbsp;&nbsp;1352.74&nbsp;&nbsp;&=
nbsp;&nbsp;1352.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KYECELENLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1352.740832 from(677.378241,2+) title(Elution%20from%3a%2054=
%2e2%20to%2054%2e2%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(525)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q525; if (NS4 || IE4) activateEl('=
Q525', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D525&amp;hit=3D1&amp;index=3DIPI%3aIPI0000563=
1&amp;px=3D1"=20=0D
      target=3D_blank>525</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.38&nbsp;&nbsp;&nbsp;&nbsp;1352.74&nbsp;&nbsp;&=
nbsp;&nbsp;1352.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KYECELENLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1352.742686 from(677.379168,2+) title(Elution%20from%3a%2066=
%2e52%20to%2066%2e52%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(526)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q526; if (NS4 || IE4) activateEl('=
Q526', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D526&amp;hit=3D1&amp;index=3DIPI%3aIPI0000563=
1&amp;px=3D1"=20=0D
      target=3D_blank>526</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.38&nbsp;&nbsp;&nbsp;&nbsp;1352.74&nbsp;&nbsp;&=
nbsp;&nbsp;1352.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KYECELENLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1352.744514 from(677.380082,2+) title(Elution%20from%3a%2060=
%2e38%20to%2060%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(527)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q527; if (NS4 || IE4) activateEl('=
Q527', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D527&amp;hit=3D1&amp;index=3DIPI%3aIPI0000563=
1&amp;px=3D1"=20=0D
      target=3D_blank>527</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.38&nbsp;&nbsp;&nbsp;&nbsp;1352.74&nbsp;&nbsp;&=
nbsp;&nbsp;1352.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KYECELENLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1352.752998 from(677.384324,2+) title(Elution%20from%3a%2069=
%2e67%20to%2069%2e67%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(528)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q528; if (NS4 || IE4) activateEl('=
Q528', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D528&amp;hit=3D1&amp;index=3DIPI%3aIPI0000563=
1&amp;px=3D1"=20=0D
      target=3D_blank>528</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.38&nbsp;&nbsp;&nbsp;&nbsp;1352.75&nbsp;&nbsp;&=
nbsp;&nbsp;1352.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KYECELENLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1352.783572 from(677.399611,2+) title(Elution%20from%3a%2026=
%2e37%20to%2026%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(529)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q529; if (NS4 || IE4) activateEl('=
Q529', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D529&amp;hit=3D1&amp;index=3DIPI%3aIPI0002819=
6&amp;px=3D1"=20=0D
      target=3D_blank>529</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.40&nbsp;&nbsp;&nbsp;&nbsp;1352.78&nbsp;&nbsp;&=
nbsp;&nbsp;1352.80&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DLVSRLLVVDPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1353.736992 from(677.876321,2+) title(Elution%20from%3a%2060=
%2e85%20to%2060%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(530)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q530; if (NS4 || IE4) activateEl('=
Q530', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D530&amp;hit=3D1&amp;index=3DIPI%3aIPI0001634=
5&amp;px=3D1"=20=0D
      target=3D_blank>530</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.88&nbsp;&nbsp;&nbsp;&nbsp;1353.74&nbsp;&nbsp;&=
nbsp;&nbsp;1353.80&nbsp;&nbsp;&nbsp;&nbsp;-0.06&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VGLELSPKVAVSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1353.785424 from(452.269633,3+) title(Elution%20from%3a%2041=
%2e8%20to%2041%2e8%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(531)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q531; if (NS4 || IE4) activateEl('=
Q531', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D531&amp;hit=3D1&amp;index=3DIPI%3aIPI0000282=
1&amp;px=3D1"=20=0D
      target=3D_blank>531</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>452.27&nbsp;&nbsp;&nbsp;&nbsp;1353.79&nbsp;&nbsp;&=
nbsp;&nbsp;1353.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LVAIVDVIDQNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1353.795040 from(677.905345,2+) title(Elution%20from%3a%2057=
%2e87%20to%2057%2e87%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(532)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q532; if (NS4 || IE4) activateEl('=
Q532', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D532&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>532</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>677.91&nbsp;&=
nbsp;&nbsp;&nbsp;1353.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1353.805884 from(452.276453,3+) title(Elution%20from%3a%204%=
2e42%20to%204%2e55%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%202%20%20) query(533)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q533; if (NS4 || IE4) activateEl('=
Q533', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D533&amp;hit=3D1&amp;index=3DIPI%3aIPI0001222=
0&amp;px=3D1"=20=0D
      target=3D_blank>533</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>452.28&nbsp;&nbsp;&nbsp;&nbsp;1353.81&nbsp;&nbsp;&nbs=
p;&nbsp;1353.83&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;AVLTPAVTKVISR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1353.818954 from(677.917302,2+) title(Elution%20from%3a%203%=
2e67%20to%203%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(534)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q534; if (NS4 || IE4) activateEl('=
Q534', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D534&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>534</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>677.92&nbsp;&=
nbsp;&nbsp;&nbsp;1353.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1353.825132 from(677.920391,2+) title(Elution%20from%3a%206%=
2e72%20to%206%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(535)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q535; if (NS4 || IE4) activateEl('=
Q535', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D535&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>535</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>677.92&nbsp;&=
nbsp;&nbsp;&nbsp;1353.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1353.847130 from(677.931390,2+) title(Elution%20from%3a%2040=
%2e81%20to%2040%2e81%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(536)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q536; if (NS4 || IE4) activateEl('=
Q536', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D536&amp;hit=3D1&amp;index=3DIPI%3aIPI0000282=
1&amp;px=3D1"=20=0D
      target=3D_blank>536</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.93&nbsp;&nbsp;&nbsp;&nbsp;1353.85&nbsp;&nbsp;&=
nbsp;&nbsp;1353.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LVAIVDVIDQNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1354.798520 from(678.407085,2+) title(Elution%20from%3a%2038=
%2e55%20to%2038%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(537)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q537; if (NS4 || IE4) activateEl('=
Q537', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D537&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>537</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>678.41&nbsp;&=
nbsp;&nbsp;&nbsp;1354.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1354.798982 from(678.407316,2+) title(Elution%20from%3a%2044=
%2e65%20to%2044%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(538)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q538; if (NS4 || IE4) activateEl('=
Q538', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D538&amp;hit=3D1&amp;index=3DIPI%3aIPI0000578=
9&amp;px=3D1"=20=0D
      target=3D_blank>538</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>678.41&nbsp;&nbsp;&nbsp;&nbsp;1354.80&nbsp;&nbsp;&=
nbsp;&nbsp;1354.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LCPLPGYLPPTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1354.824714 from(678.420182,2+) title(Elution%20from%3a%2041=
%2e59%20to%2041%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(539)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q539; if (NS4 || IE4) activateEl('=
Q539', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D539&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>539</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>678.42&nbsp;&=
nbsp;&nbsp;&nbsp;1354.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1354.830164 from(678.422907,2+) title(Elution%20from%3a%203%=
2e72%20to%203%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(540)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q540; if (NS4 || IE4) activateEl('=
Q540', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D540&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>540</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>678.42&nbsp;&=
nbsp;&nbsp;&nbsp;1354.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1355.740370 from(678.878010,2+) title(Elution%20from%3a%2045=
%2e28%20to%2045%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(541)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q541; if (NS4 || IE4) activateEl('=
Q541', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D541&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>541</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>678.88&nbsp;&=
nbsp;&nbsp;&nbsp;1355.74</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1355.744610 from(678.880130,2+) title(Elution%20from%3a%2042=
%2e33%20to%2042%2e33%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(542)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q542; if (NS4 || IE4) activateEl('=
Q542', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D542&amp;hit=3D1&amp;index=3DIPI%3aIPI0000091=
5&amp;px=3D1"=20=0D
      target=3D_blank>542</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>678.88&nbsp;&nbsp;&nbsp;&nbsp;1355.74&nbsp;&nbsp;&=
nbsp;&nbsp;1355.78&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GNLNVLKTELQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1355.824580 from(678.920115,2+) title(Elution%20from%3a%204%=
2e04%20to%204%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(543)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q543; if (NS4 || IE4) activateEl('=
Q543', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D543&amp;hit=3D1&amp;index=3DIPI%3aIPI0003240=
5&amp;px=3D1"=20=0D
      target=3D_blank>543</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>678.92&nbsp;&nbsp;&nbsp;&nbsp;1355.82&nbsp;&nbsp;&=
nbsp;&nbsp;1355.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VSGGAPLHLGRHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1357.770036 from(679.892843,2+) title(Elution%20from%3a%2045=
%2e56%20to%2045%2e56%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(544)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q544; if (NS4 || IE4) activateEl('=
Q544', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D544&amp;hit=3D1&amp;index=3DIPI%3aIPI0002703=
7&amp;px=3D1"=20=0D
      target=3D_blank>544</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>679.89&nbsp;&nbsp;&nbsp;&nbsp;1357.77&nbsp;&nbsp;&=
nbsp;&nbsp;1357.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KTSLLANCQAPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1360.739820 from(454.587765,3+) title(Elution%20from%3a%2010=
%2e19%20to%2010%2e19%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(547)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q547; if (NS4 || IE4) activateEl('=
Q547', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D547&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>547</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>454.59&nbsp;&=
nbsp;&nbsp;&nbsp;1360.74</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1360.791112 from(681.403381,2+) title(Elution%20from%3a%207%=
2e47%20to%207%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(548)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q548; if (NS4 || IE4) activateEl('=
Q548', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D548&amp;hit=3D1&amp;index=3DIPI%3aIPI0000296=
4&amp;px=3D1"=20=0D
      target=3D_blank>548</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>681.40&nbsp;&nbsp;&nbsp;&nbsp;1360.79&nbsp;&nbsp;&=
nbsp;&nbsp;1360.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LAKEEMLQMIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1361.789002 from(681.902326,2+) title(Elution%20from%3a%207%=
2e6%20to%207%2e6%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3=
a%20%201%20%20) query(549)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q549; if (NS4 || IE4) activateEl('=
Q549', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D549&amp;hit=3D1&amp;index=3DIPI%3aIPI0003154=
5&amp;px=3D1"=20=0D
      target=3D_blank>549</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>681.90&nbsp;&nbsp;&nbsp;&nbsp;1361.79&nbsp;&nbsp;&=
nbsp;&nbsp;1361.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EIETFVSLLRR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1361.853237 from(454.958904,3+) title(Elution%20from%3a%207%=
2e98%20to%207%2e98%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(550)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q550; if (NS4 || IE4) activateEl('=
Q550', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D550&amp;hit=3D1&amp;index=3DIPI%3aIPI0001037=
0&amp;px=3D1"=20=0D
      target=3D_blank>550</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>454.96&nbsp;&nbsp;&nbsp;&nbsp;1361.85&nbsp;&nbsp;&=
nbsp;&nbsp;1361.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LSSFIGAGSPSLVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1365.797682 from(456.273719,3+) title(Elution%20from%3a%2012=
%2e1%20to%2012%2e1%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(551)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q551; if (NS4 || IE4) activateEl('=
Q551', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D551&amp;hit=3D1&amp;index=3DIPI%3aIPI0000570=
3&amp;px=3D1"=20=0D
      target=3D_blank>551</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>456.27&nbsp;&nbsp;&nbsp;&nbsp;1365.80&nbsp;&nbsp;&=
nbsp;&nbsp;1365.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IIAPANMERPVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1366.751892 from(684.383771,2+) title(Elution%20from%3a%209%=
2e09%20to%209%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(552)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q552; if (NS4 || IE4) activateEl('=
Q552', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D552&amp;hit=3D1&amp;index=3DIPI%3aIPI0003026=
7&amp;px=3D1"=20=0D
      target=3D_blank>552</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.38&nbsp;&nbsp;&nbsp;&nbsp;1366.75&nbsp;&nbsp;&=
nbsp;&nbsp;1366.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MKDAAEELSFAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1366.764498 from(684.390074,2+) title(Elution%20from%3a%2012=
%2e23%20to%2012%2e23%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(553)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q553; if (NS4 || IE4) activateEl('=
Q553', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D553&amp;hit=3D1&amp;index=3DIPI%3aIPI0002854=
1&amp;px=3D1"=20=0D
      target=3D_blank>553</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.39&nbsp;&nbsp;&nbsp;&nbsp;1366.76&nbsp;&nbsp;&=
nbsp;&nbsp;1366.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LHPSSVPGPDFSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1367.741499 from(456.921658,3+) title(Elution%20from%3a%2011=
%2e84%20to%2011%2e84%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(554)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q554; if (NS4 || IE4) activateEl('=
Q554', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D554&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>554</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>456.92&nbsp;&=
nbsp;&nbsp;&nbsp;1367.74</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1367.764120 from(684.889885,2+) title(Elution%20from%3a%2012=
%2e43%20to%2012%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(555)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q555; if (NS4 || IE4) activateEl('=
Q555', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D555&amp;hit=3D1&amp;index=3DIPI%3aIPI0001601=
3&amp;px=3D1"=20=0D
      target=3D_blank>555</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.89&nbsp;&nbsp;&nbsp;&nbsp;1367.76&nbsp;&nbsp;&=
nbsp;&nbsp;1367.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TIMGWTLDFLR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1367.768562 from(684.892106,2+) title(Elution%20from%3a%209%=
2e22%20to%209%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(556)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q556; if (NS4 || IE4) activateEl('=
Q556', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D556&amp;hit=3D1&amp;index=3DIPI%3aIPI0001601=
3&amp;px=3D1"=20=0D
      target=3D_blank>556</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.89&nbsp;&nbsp;&nbsp;&nbsp;1367.77&nbsp;&nbsp;&=
nbsp;&nbsp;1367.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TIMGWTLDFLR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1368.732842 from(685.374246,2+) title(Elution%20from%3a%2028=
%2e29%20to%2028%2e29%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(557)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q557; if (NS4 || IE4) activateEl('=
Q557', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D557&amp;hit=3D1&amp;index=3DIPI%3aIPI0002440=
0&amp;px=3D1"=20=0D
      target=3D_blank>557</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>685.37&nbsp;&nbsp;&nbsp;&nbsp;1368.73&nbsp;&nbsp;&nbs=
p;&nbsp;1368.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;KGTISFFEIDGR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1368.776176 from(685.395913,2+) title(Elution%20from%3a%209%=
2e42%20to%209%2e42%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(559)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q559; if (NS4 || IE4) activateEl('=
Q559', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D559&amp;hit=3D1&amp;index=3DIPI%3aIPI0000161=
1&amp;px=3D1"=20=0D
      target=3D_blank>559</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>685.40&nbsp;&nbsp;&nbsp;&nbsp;1368.78&nbsp;&nbsp;&=
nbsp;&nbsp;1368.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GHVLAKELEAFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1369.709006 from(685.862328,2+) title(Elution%20from%3a%2019=
%2e78%20to%2019%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(561)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q561; if (NS4 || IE4) activateEl('=
Q561', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D561&amp;hit=3D1&amp;index=3DIPI%3aIPI0001167=
5&amp;px=3D1"=20=0D
      target=3D_blank>561</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>685.86&nbsp;&nbsp;&nbsp;&nbsp;1369.71&nbsp;&nbsp;&=
nbsp;&nbsp;1369.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;CSETWKTIFAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1370.760552 from(457.928009,3+) title(Elution%20from%3a%2016=
%2e22%20to%2016%2e22%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(563)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q563; if (NS4 || IE4) activateEl('=
Q563', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D563&amp;hit=3D1&amp;index=3DIPI%3aIPI0002868=
4&amp;px=3D1"=20=0D
      target=3D_blank>563</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>457.93&nbsp;&nbsp;&nbsp;&nbsp;1370.76&nbsp;&nbsp;&=
nbsp;&nbsp;1370.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LTICGWDFGFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1370.779924 from(686.397787,2+) title(Elution%20from%3a%2019=
%2e63%20to%2019%2e76%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(564)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q564; if (NS4 || IE4) activateEl('=
Q564', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D564&amp;hit=3D1&amp;index=3DIPI%3aIPI0002908=
5&amp;px=3D1"=20=0D
      target=3D_blank>564</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>686.40&nbsp;&nbsp;&nbsp;&nbsp;1370.78&nbsp;&nbsp;&=
nbsp;&nbsp;1370.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MAYGIKETMLAK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1370.792836 from(686.404243,2+) title(Elution%20from%3a%2016=
%2e53%20to%2016%2e53%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(565)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q565; if (NS4 || IE4) activateEl('=
Q565', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D565&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>565</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>686.40&nbsp;&=
nbsp;&nbsp;&nbsp;1370.79</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1371.782043 from(458.268506,3+) title(Elution%20from%3a%2017=
%2e21%20to%2017%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(566)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q566; if (NS4 || IE4) activateEl('=
Q566', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D566&amp;hit=3D1&amp;index=3DIPI%3aIPI0000769=
2&amp;px=3D1"=20=0D
      target=3D_blank>566</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>458.27&nbsp;&nbsp;&nbsp;&nbsp;1371.78&nbsp;&nbsp;&=
nbsp;&nbsp;1371.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DAPAFYELQYR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1371.815354 from(686.915502,2+) title(Elution%20from%3a%2017=
%2e05%20to%2017%2e18%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(567)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q567; if (NS4 || IE4) activateEl('=
Q567', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D567&amp;hit=3D1&amp;index=3DIPI%3aIPI0002440=
7&amp;px=3D1"=20=0D
      target=3D_blank>567</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>686.92&nbsp;&nbsp;&nbsp;&nbsp;1371.82&nbsp;&nbsp;&=
nbsp;&nbsp;1371.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KQLAEQEELER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1372.769829 from(458.597768,3+) title(Elution%20from%3a%2017=
%2e96%20to%2018%2e08%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(568)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q568; if (NS4 || IE4) activateEl('=
Q568', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D568&amp;hit=3D1&amp;index=3DIPI%3aIPI0003334=
7&amp;px=3D1"=20=0D
      target=3D_blank>568</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>458.60&nbsp;&nbsp;&nbsp;&nbsp;1372.77&nbsp;&nbsp;&=
nbsp;&nbsp;1372.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SELLCLWLPSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1375.804644 from(688.910147,2+) title(Elution%20from%3a%204%=
2e52%20to%204%2e52%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(569)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q569; if (NS4 || IE4) activateEl('=
Q569', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D569&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>569</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>688.91&nbsp;&=
nbsp;&nbsp;&nbsp;1375.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1376.752635 from(459.925370,3+) title(Elution%20from%3a%208%=
2e88%20to%208%2e88%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(570)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q570; if (NS4 || IE4) activateEl('=
Q570', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D570&amp;hit=3D1&amp;index=3DIPI%3aIPI0002169=
6&amp;px=3D1"=20=0D
      target=3D_blank>570</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>459.93&nbsp;&nbsp;&nbsp;&nbsp;1376.75&nbsp;&nbsp;&nbs=
p;&nbsp;1376.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;TLTFLQLYHNK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1376.799088 from(689.407369,2+) title(Elution%20from%3a%208%=
2e75%20to%208%2e75%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(571)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q571; if (NS4 || IE4) activateEl('=
Q571', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D571&amp;hit=3D1&amp;index=3DIPI%3aIPI0000745=
4&amp;px=3D1"=20=0D
      target=3D_blank>571</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>689.41&nbsp;&nbsp;&nbsp;&nbsp;1376.80&nbsp;&nbsp;&=
nbsp;&nbsp;1376.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IQSSLSVNSDISK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1377.803784 from(689.909717,2+) title(Elution%20from%3a%208%=
2e81%20to%208%2e93%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%202%20%20) query(572)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q572; if (NS4 || IE4) activateEl('=
Q572', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D572&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>572</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>689.91&nbsp;&=
nbsp;&nbsp;&nbsp;1377.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1377.856242 from(689.935946,2+) title(Elution%20from%3a%2014=
7%2e58%20to%20147%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(573)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q573; if (NS4 || IE4) activateEl('=
Q573', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D573&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>573</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>689.94&nbsp;&=
nbsp;&nbsp;&nbsp;1377.86</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1382.873445 from(461.965640,3+) title(Elution%20from%3a%2019=
%2e09%20to%2019%2e09%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(575)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q575; if (NS4 || IE4) activateEl('=
Q575', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D575&amp;hit=3D1&amp;index=3DIPI%3aIPI0001262=
2&amp;px=3D1"=20=0D
      target=3D_blank>575</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>461.97&nbsp;&nbsp;&nbsp;&nbsp;1382.87&nbsp;&nbsp;&=
nbsp;&nbsp;1382.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SAPSLILDKALQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1384.848978 from(693.432314,2+) title(Elution%20from%3a%207%=
2e08%20to%207%2e08%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(576)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q576; if (NS4 || IE4) activateEl('=
Q576', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D576&amp;hit=3D1&amp;index=3DIPI%3aIPI0000666=
3&amp;px=3D1"=20=0D
      target=3D_blank>576</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>693.43&nbsp;&nbsp;&nbsp;&nbsp;1384.85&nbsp;&nbsp;&=
nbsp;&nbsp;1384.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LGPALATGNVVVMK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1385.772616 from(693.894133,2+) title(Elution%20from%3a%2025=
%2e42%20to%2025%2e42%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(577)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q577; if (NS4 || IE4) activateEl('=
Q577', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D577&amp;hit=3D1&amp;index=3DIPI%3aIPI0002340=
7&amp;px=3D1"=20=0D
      target=3D_blank>577</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>693.89&nbsp;&nbsp;&nbsp;&nbsp;1385.77&nbsp;&nbsp;&nbs=
p;&nbsp;1385.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;ALFAFMALSFIR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1387.644534 from(694.830092,2+) title(Elution%20from%3a%2035=
%2e16%20to%2035%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(578)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q578; if (NS4 || IE4) activateEl('=
Q578', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D578&amp;hit=3D1&amp;index=3DIPI%3aIPI0003349=
5&amp;px=3D1"=20=0D
      target=3D_blank>578</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>694.83&nbsp;&nbsp;&nbsp;&nbsp;1387.64&nbsp;&nbsp;&nbs=
p;&nbsp;1387.74&nbsp;&nbsp;&nbsp;&nbsp;-0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;WSLLQQQKMAR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1388.674416 from(695.345033,2+) title(Elution%20from%3a%2035=
%2e76%20to%2035%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(582)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q582; if (NS4 || IE4) activateEl('=
Q582', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D582&amp;hit=3D1&amp;index=3DIPI%3aIPI0001479=
9&amp;px=3D1"=20=0D
      target=3D_blank>582</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>695.35&nbsp;&nbsp;&nbsp;&nbsp;1388.67&nbsp;&nbsp;&=
nbsp;&nbsp;1388.70&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FPFNQWGLQPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1388.675380 from(695.345515,2+) title(Elution%20from%3a%2023=
%2e04%20to%2023%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(583)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q583; if (NS4 || IE4) activateEl('=
Q583', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D583&amp;hit=3D1&amp;index=3DIPI%3aIPI0000577=
2&amp;px=3D1"=20=0D
      target=3D_blank>583</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>695.35&nbsp;&nbsp;&nbsp;&nbsp;1388.68&nbsp;&nbsp;&=
nbsp;&nbsp;1388.69&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ATGANATPLDFPSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1388.731914 from(463.918463,3+) title(Elution%20from%3a%2023=
%2e27%20to%2023%2e4%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%202%20%20) query(584)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q584; if (NS4 || IE4) activateEl('=
Q584', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D584&amp;hit=3D1&amp;index=3DIPI%3aIPI0003299=
7&amp;px=3D1"=20=0D
      target=3D_blank>584</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>463.92&nbsp;&nbsp;&nbsp;&nbsp;1388.73&nbsp;&nbsp;&=
nbsp;&nbsp;1388.66&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;CSSASSLQEHRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1395.863904 from(698.939777,2+) title(Elution%20from%3a%2021=
%2e57%20to%2021%2e57%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(585)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q585; if (NS4 || IE4) activateEl('=
Q585', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D585&amp;hit=3D1&amp;index=3DIPI%3aIPI0002491=
6&amp;px=3D1"=20=0D
      target=3D_blank>585</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>698.94&nbsp;&nbsp;&nbsp;&nbsp;1395.86&nbsp;&nbsp;&=
nbsp;&nbsp;1395.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ELALGQDRILIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1396.717356 from(466.580277,3+) title(Elution%20from%3a%2017=
%2e7%20to%2017%2e7%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20) query(587)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q587; if (NS4 || IE4) activateEl('=
Q587', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D587&amp;hit=3D1&amp;index=3DIPI%3aIPI0000410=
1&amp;px=3D1"=20=0D
      target=3D_blank>587</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>466.58&nbsp;&nbsp;&nbsp;&nbsp;1396.72&nbsp;&nbsp;&=
nbsp;&nbsp;1396.74&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VFLQQLEVFMK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1397.832164 from(699.923907,2+) title(Elution%20from%3a%2010=
4%2e8%20to%20104%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(589)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q589; if (NS4 || IE4) activateEl('=
Q589', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D589&amp;hit=3D1&amp;index=3DIPI%3aIPI0002012=
3&amp;px=3D1"=20=0D
      target=3D_blank>589</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>699.92&nbsp;&nbsp;&nbsp;&nbsp;1397.83&nbsp;&nbsp;&nbs=
p;&nbsp;1397.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;IQFHQYLGKHK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1398.802798 from(700.409224,2+) title(Elution%20from%3a%207%=
2e85%20to%207%2e85%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(591)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q591; if (NS4 || IE4) activateEl('=
Q591', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D591&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>591</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>700.41&nbsp;&=
nbsp;&nbsp;&nbsp;1398.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1398.838634 from(700.427142,2+) title(Elution%20from%3a%2010=
5%2e03%20to%20105%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(592)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q592; if (NS4 || IE4) activateEl('=
Q592', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D592&amp;hit=3D1&amp;index=3DIPI%3aIPI0001893=
4&amp;px=3D1"=20=0D
      target=3D_blank>592</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>700.43&nbsp;&nbsp;&nbsp;&nbsp;1398.84&nbsp;&nbsp;&=
nbsp;&nbsp;1398.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KQEEVSAVIIQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1398.844392 from(700.430021,2+) title(Elution%20from%3a%2010=
1%2e78%20to%20101%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(593)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q593; if (NS4 || IE4) activateEl('=
Q593', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D593&amp;hit=3D1&amp;index=3DIPI%3aIPI0003269=
8&amp;px=3D1"=20=0D
      target=3D_blank>593</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>700.43&nbsp;&nbsp;&nbsp;&nbsp;1398.84&nbsp;&nbsp;&=
nbsp;&nbsp;1398.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GDIDPLNFLPGNK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1404.792570 from(469.272015,3+) title(Elution%20from%3a%2018=
%2e96%20to%2018%2e96%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(597)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q597; if (NS4 || IE4) activateEl('=
Q597', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D597&amp;hit=3D1&amp;index=3DIPI%3aIPI0003213=
4&amp;px=3D1"=20=0D
      target=3D_blank>597</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>469.27&nbsp;&nbsp;&nbsp;&nbsp;1404.79&nbsp;&nbsp;&=
nbsp;&nbsp;1404.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HKTNCILFCGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1404.816424 from(703.416037,2+) title(Elution%20from%3a%2020=
%2e15%20to%2020%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(598)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q598; if (NS4 || IE4) activateEl('=
Q598', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D598&amp;hit=3D1&amp;index=3DIPI%3aIPI0002249=
5&amp;px=3D1"=20=0D
      target=3D_blank>598</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>703.42&nbsp;&nbsp;&nbsp;&nbsp;1404.82&nbsp;&nbsp;&=
nbsp;&nbsp;1404.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLDIEGLYSKVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1405.790724 from(469.604733,3+) title(Elution%20from%3a%2020=
%2e61%20to%2020%2e61%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(599)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q599; if (NS4 || IE4) activateEl('=
Q599', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D599&amp;hit=3D1&amp;index=3DIPI%3aIPI0002194=
7&amp;px=3D1"=20=0D
      target=3D_blank>599</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>469.60&nbsp;&nbsp;&nbsp;&nbsp;1405.79&nbsp;&nbsp;&=
nbsp;&nbsp;1405.68&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SPFLHSGMKMQK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1405.862032 from(703.938841,2+) title(Elution%20from%3a%2021=
%2e21%20to%2021%2e21%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(601)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q601; if (NS4 || IE4) activateEl('=
Q601', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D601&amp;hit=3D1&amp;index=3DIPI%3aIPI0003240=
7&amp;px=3D1"=20=0D
      target=3D_blank>601</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>703.94&nbsp;&nbsp;&nbsp;&nbsp;1405.86&nbsp;&nbsp;&=
nbsp;&nbsp;1405.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GLYMANDLKLLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1406.739630 from(469.921035,3+) title(Elution%20from%3a%2013=
%2e08%20to%2013%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(602)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q602; if (NS4 || IE4) activateEl('=
Q602', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D602&amp;hit=3D1&amp;index=3DIPI%3aIPI0002635=
9&amp;px=3D1"=20=0D
      target=3D_blank>602</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>469.92&nbsp;&nbsp;&nbsp;&nbsp;1406.74&nbsp;&nbsp;&nbs=
p;&nbsp;1406.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;ASEEVSKSLQAMK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1406.788724 from(704.402187,2+) title(Elution%20from%3a%2013=
%2e18%20to%2013%2e18%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(603)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q603; if (NS4 || IE4) activateEl('=
Q603', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D603&amp;hit=3D1&amp;index=3DIPI%3aIPI0003259=
0&amp;px=3D1"=20=0D
      target=3D_blank>603</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>704.40&nbsp;&nbsp;&nbsp;&nbsp;1406.79&nbsp;&nbsp;&=
nbsp;&nbsp;1406.69&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;QELLEEYEQVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1410.756368 from(706.386009,2+) title(Elution%20from%3a%2011=
%2e1%20to%2011%2e1%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(605)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q605; if (NS4 || IE4) activateEl('=
Q605', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D605&amp;hit=3D1&amp;index=3DIPI%3aIPI0002051=
4&amp;px=3D1"=20=0D
      target=3D_blank>605</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>706.39&nbsp;&nbsp;&nbsp;&nbsp;1410.76&nbsp;&nbsp;&=
nbsp;&nbsp;1410.80&nbsp;&nbsp;&nbsp;&nbsp;-0.05&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SFFAALVAAFVLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1412.843448 from(471.955641,3+) title(Elution%20from%3a%2014=
%2e03%20to%2014%2e03%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(608)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q608; if (NS4 || IE4) activateEl('=
Q608', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D608&amp;hit=3D1&amp;index=3DIPI%3aIPI0002089=
8&amp;px=3D1"=20=0D
      target=3D_blank>608</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>471.96&nbsp;&nbsp;&nbsp;&nbsp;1412.84&nbsp;&nbsp;&=
nbsp;&nbsp;1412.71&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MPLAQLADPWQK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1414.268036 from(708.141843,2+) title(Elution%20from%3a%2012=
3%2e38%20to%20123%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(609)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q609; if (NS4 || IE4) activateEl('=
Q609', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D609&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>609</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.14&nbsp;&=
nbsp;&nbsp;&nbsp;1414.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1415.730172 from(708.872911,2+) title(Elution%20from%3a%2013=
%20to%2013%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3a%20%2=
01%20%20) query(611)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q611; if (NS4 || IE4) activateEl('=
Q611', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D611&amp;hit=3D1&amp;index=3DIPI%3aIPI0000694=
1&amp;px=3D1"=20=0D
      target=3D_blank>611</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>708.87&nbsp;&nbsp;&nbsp;&nbsp;1415.73&nbsp;&nbsp;&=
nbsp;&nbsp;1415.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EPWNVNTEKTAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1416.742644 from(709.379147,2+) title(Elution%20from%3a%207%=
2e24%20to%207%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(613)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q613; if (NS4 || IE4) activateEl('=
Q613', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D613&amp;hit=3D1&amp;index=3DIPI%3aIPI0001166=
4&amp;px=3D1"=20=0D
      target=3D_blank>613</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>709.38&nbsp;&nbsp;&nbsp;&nbsp;1416.74&nbsp;&nbsp;&=
nbsp;&nbsp;1416.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SLEAEALAEDIEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1421.806150 from(711.910900,2+) title(Elution%20from%3a%2030=
%2e26%20to%2030%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(614)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q614; if (NS4 || IE4) activateEl('=
Q614', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D614&amp;hit=3D1&amp;index=3DIPI%3aIPI0000963=
9&amp;px=3D1"=20=0D
      target=3D_blank>614</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>711.91&nbsp;&nbsp;&nbsp;&nbsp;1421.81&nbsp;&nbsp;&=
nbsp;&nbsp;1421.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GKEFEFSQLPLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1422.841548 from(475.288341,3+) title(Elution%20from%3a%2018=
%2e11%20to%2018%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(616)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q616; if (NS4 || IE4) activateEl('=
Q616', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D616&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>616</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>475.29&nbsp;&=
nbsp;&nbsp;&nbsp;1422.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1426.921431 from(476.648302,3+) title(Elution%20from%3a%2020=
%2e54%20to%2020%2e54%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(617)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q617; if (NS4 || IE4) activateEl('=
Q617', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D617&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>617</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>476.65&nbsp;&=
nbsp;&nbsp;&nbsp;1426.92</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1427.904093 from(476.975856,3+) title(Elution%20from%3a%2077=
%2e49%20to%2077%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(618)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q618; if (NS4 || IE4) activateEl('=
Q618', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D618&amp;hit=3D1&amp;index=3DIPI%3aIPI0001624=
4&amp;px=3D1"=20=0D
      target=3D_blank>618</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>476.98&nbsp;&nbsp;&nbsp;&nbsp;1427.90&nbsp;&nbsp;&=
nbsp;&nbsp;1427.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DEVIAVSEKVIVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1427.921992 from(714.968821,2+) title(Elution%20from%3a%2076=
%2e05%20to%2076%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(619)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q619; if (NS4 || IE4) activateEl('=
Q619', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D619&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>619</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>714.97&nbsp;&=
nbsp;&nbsp;&nbsp;1427.92</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1428.920334 from(715.467992,2+) title(Elution%20from%3a%2079=
%2e27%20to%2079%2e27%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(621)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q621; if (NS4 || IE4) activateEl('=
Q621', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D621&amp;hit=3D1&amp;index=3DIPI%3aIPI0001728=
8&amp;px=3D1"=20=0D
      target=3D_blank>621</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>715.47&nbsp;&nbsp;&nbsp;&nbsp;1428.92&nbsp;&nbsp;&=
nbsp;&nbsp;1428.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;CKLLILSNSLLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1429.918350 from(715.967000,2+) title(Elution%20from%3a%2077=
%2e83%20to%2077%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(623)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q623; if (NS4 || IE4) activateEl('=
Q623', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D623&amp;hit=3D1&amp;index=3DIPI%3aIPI0000810=
1&amp;px=3D1"=20=0D
      target=3D_blank>623</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>715.97&nbsp;&nbsp;&nbsp;&nbsp;1429.92&nbsp;&nbsp;&=
nbsp;&nbsp;1429.83&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AVSKLSAALSSLQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1430.814420 from(716.415035,2+) title(Elution%20from%3a%207%=
2e39%20to%207%2e39%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(624)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q624; if (NS4 || IE4) activateEl('=
Q624', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D624&amp;hit=3D1&amp;index=3DIPI%3aIPI0002684=
3&amp;px=3D1"=20=0D
      target=3D_blank>624</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>716.42&nbsp;&nbsp;&nbsp;&nbsp;1430.81&nbsp;&nbsp;&=
nbsp;&nbsp;1430.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FLGHAQTFGGIKR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1434.765338 from(718.390494,2+) title(Elution%20from%3a%2037=
%2e95%20to%2037%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(625)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q625; if (NS4 || IE4) activateEl('=
Q625', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D625&amp;hit=3D1&amp;index=3DIPI%3aIPI0000029=
8&amp;px=3D1"=20=0D
      target=3D_blank>625</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>718.39&nbsp;&nbsp;&nbsp;&nbsp;1434.77&nbsp;&nbsp;&=
nbsp;&nbsp;1434.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GEKPNECKECGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1435.785420 from(718.900535,2+) title(Elution%20from%3a%2038=
%2e26%20to%2038%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(626)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q626; if (NS4 || IE4) activateEl('=
Q626', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D626&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>626</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>718.90&nbsp;&=
nbsp;&nbsp;&nbsp;1435.79</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1437.779846 from(719.897748,2+) title(Elution%20from%3a%2013=
%2e39%20to%2013%2e39%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(630)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q630; if (NS4 || IE4) activateEl('=
Q630', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D630&amp;hit=3D1&amp;index=3DIPI%3aIPI0003103=
5&amp;px=3D1"=20=0D
      target=3D_blank>630</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>719.90&nbsp;&nbsp;&nbsp;&nbsp;1437.78&nbsp;&nbsp;&=
nbsp;&nbsp;1437.86&nbsp;&nbsp;&nbsp;&nbsp;-0.08&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LKILPEEITNLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1437.780820 from(719.898235,2+) title(Elution%20from%3a%2010=
%2e25%20to%2010%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(631)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q631; if (NS4 || IE4) activateEl('=
Q631', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D631&amp;hit=3D1&amp;index=3DIPI%3aIPI0001142=
9&amp;px=3D1"=20=0D
      target=3D_blank>631</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>719.90&nbsp;&nbsp;&nbsp;&nbsp;1437.78&nbsp;&nbsp;&=
nbsp;&nbsp;1437.84&nbsp;&nbsp;&nbsp;&nbsp;-0.06&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;AASSRLAAIPAALAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1437.792660 from(480.272045,3+) title(Elution%20from%3a%2010=
%2e45%20to%2010%2e45%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(632)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q632; if (NS4 || IE4) activateEl('=
Q632', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D632&amp;hit=3D1&amp;index=3DIPI%3aIPI0002180=
5&amp;px=3D1"=20=0D
      target=3D_blank>632</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>480.27&nbsp;&nbsp;&nbsp;&nbsp;1437.79&nbsp;&nbsp;&=
nbsp;&nbsp;1437.65&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MMLMSTATAFYR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1438.819172 from(720.417411,2+) title(Elution%20from%3a%2022=
%2e7%20to%2022%2e7%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(633)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q633; if (NS4 || IE4) activateEl('=
Q633', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D633&amp;hit=3D1&amp;index=3DIPI%3aIPI0003363=
9&amp;px=3D1"=20=0D
      target=3D_blank>633</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>720.42&nbsp;&nbsp;&nbsp;&nbsp;1438.82&nbsp;&nbsp;&=
nbsp;&nbsp;1438.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AEPLAVGKEDPVSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1439.833178 from(720.924414,2+) title(Elution%20from%3a%2015=
6%2e6%20to%20156%2e6%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(635)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q635; if (NS4 || IE4) activateEl('=
Q635', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D635&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>635</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>720.92&nbsp;&=
nbsp;&nbsp;&nbsp;1439.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1439.834294 from(720.924972,2+) title(Elution%20from%3a%2022=
%2e86%20to%2022%2e86%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(636)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q636; if (NS4 || IE4) activateEl('=
Q636', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D636&amp;hit=3D1&amp;index=3DIPI%3aIPI0002898=
0&amp;px=3D1"=20=0D
      target=3D_blank>636</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>720.92&nbsp;&nbsp;&nbsp;&nbsp;1439.83&nbsp;&nbsp;&=
nbsp;&nbsp;1439.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SLDSSTPLPIVRR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1440.830114 from(721.422882,2+) title(Elution%20from%3a%2023=
%2e09%20to%2023%2e09%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(637)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q637; if (NS4 || IE4) activateEl('=
Q637', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D637&amp;hit=3D1&amp;index=3DIPI%3aIPI0001020=
5&amp;px=3D1"=20=0D
      target=3D_blank>637</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>721.42&nbsp;&nbsp;&nbsp;&nbsp;1440.83&nbsp;&nbsp;&=
nbsp;&nbsp;1440.83&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ILEQRQVVLSEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1443.907456 from(722.961553,2+) title(Elution%20from%3a%2015=
8%2e56%20to%20158%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(638)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q638; if (NS4 || IE4) activateEl('=
Q638', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D638&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>638</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>722.96&nbsp;&=
nbsp;&nbsp;&nbsp;1443.91</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1444.908650 from(723.462150,2+) title(Elution%20from%3a%2015=
8%2e66%20to%20158%2e66%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(639)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q639; if (NS4 || IE4) activateEl('=
Q639', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D639&amp;hit=3D1&amp;index=3DIPI%3aIPI0001769=
3&amp;px=3D1"=20=0D
      target=3D_blank>639</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>723.46&nbsp;&nbsp;&nbsp;&nbsp;1444.91&nbsp;&nbsp;&=
nbsp;&nbsp;1444.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IAFAVMIVLALIR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1445.783252 from(723.899451,2+) title(Elution%20from%3a%201%=
2e95%20to%201%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(640)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q640; if (NS4 || IE4) activateEl('=
Q640', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D640&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>640</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>723.90&nbsp;&=
nbsp;&nbsp;&nbsp;1445.78</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1446.790796 from(724.403223,2+) title(Elution%20from%3a%202%=
2e47%20to%202%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(641)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q641; if (NS4 || IE4) activateEl('=
Q641', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D641&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>641</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>724.40&nbsp;&=
nbsp;&nbsp;&nbsp;1446.79</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1451.881344 from(484.968273,3+) title(Elution%20from%3a%2018=
%2e73%20to%2018%2e73%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(644)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q644; if (NS4 || IE4) activateEl('=
Q644', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D644&amp;hit=3D1&amp;index=3DIPI%3aIPI0001556=
5&amp;px=3D1"=20=0D
      target=3D_blank>644</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>484.97&nbsp;&nbsp;&nbsp;&nbsp;1451.88&nbsp;&nbsp;&=
nbsp;&nbsp;1451.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RVLPDVAVLMALR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1452.785338 from(727.400494,2+) title(Elution%20from%3a%2012=
%2e31%20to%2012%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(646)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q646; if (NS4 || IE4) activateEl('=
Q646', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D646&amp;hit=3D1&amp;index=3DIPI%3aIPI0001916=
1&amp;px=3D1"=20=0D
      target=3D_blank>646</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>727.40&nbsp;&nbsp;&nbsp;&nbsp;1452.79&nbsp;&nbsp;&=
nbsp;&nbsp;1452.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ALGAHSSLCPAELK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1452.867696 from(485.297057,3+) title(Elution%20from%3a%2021=
%2e44%20to%2021%2e44%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(647)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q647; if (NS4 || IE4) activateEl('=
Q647', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D647&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>647</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>485.30&nbsp;&=
nbsp;&nbsp;&nbsp;1452.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1452.885746 from(727.450698,2+) title(Elution%20from%3a%2022=
%2e14%20to%2022%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(648)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q648; if (NS4 || IE4) activateEl('=
Q648', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D648&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>648</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>727.45&nbsp;&=
nbsp;&nbsp;&nbsp;1452.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1453.077532 from(727.546591,2+) title(Elution%20from%3a%2012=
4%2e1%20to%20124%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(649)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q649; if (NS4 || IE4) activateEl('=
Q649', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D649&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>649</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>727.55&nbsp;&=
nbsp;&nbsp;&nbsp;1453.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1453.853994 from(485.625823,3+) title(Elution%20from%3a%2022=
%2e06%20to%2022%2e06%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(650)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q650; if (NS4 || IE4) activateEl('=
Q650', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D650&amp;hit=3D1&amp;index=3DIPI%3aIPI0000829=
7&amp;px=3D1"=20=0D
      target=3D_blank>650</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>485.63&nbsp;&nbsp;&nbsp;&nbsp;1453.85&nbsp;&nbsp;&=
nbsp;&nbsp;1453.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ELVEEGLLIQALK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1454.823069 from(485.948848,3+) title(Elution%20from%3a%2015=
%2e76%20to%2015%2e76%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(651)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q651; if (NS4 || IE4) activateEl('=
Q651', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D651&amp;hit=3D1&amp;index=3DIPI%3aIPI0000449=
6&amp;px=3D1"=20=0D
      target=3D_blank>651</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>485.95&nbsp;&nbsp;&nbsp;&nbsp;1454.82&nbsp;&nbsp;&=
nbsp;&nbsp;1454.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;CGAQAGIKISSVHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1454.869928 from(728.442789,2+) title(Elution%20from%3a%2078=
%2e23%20to%2078%2e23%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(652)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q652; if (NS4 || IE4) activateEl('=
Q652', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D652&amp;hit=3D1&amp;index=3DIPI%3aIPI0000597=
4&amp;px=3D1"=20=0D
      target=3D_blank>652</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>728.44&nbsp;&nbsp;&nbsp;&nbsp;1454.87&nbsp;&nbsp;&=
nbsp;&nbsp;1454.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLFEYLCQLEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1456.924866 from(729.470258,2+) title(Elution%20from%3a%2014=
0%2e01%20to%20140%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(653)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q653; if (NS4 || IE4) activateEl('=
Q653', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D653&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>653</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>729.47&nbsp;&=
nbsp;&nbsp;&nbsp;1456.92</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1457.905437 from(486.976304,3+) title(Elution%20from%3a%2078=
%20to%2078%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3a%20%2=
01%20%20) query(654)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q654; if (NS4 || IE4) activateEl('=
Q654', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D654&amp;hit=3D1&amp;index=3DIPI%3aIPI0001929=
0&amp;px=3D1"=20=0D
      target=3D_blank>654</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>486.98&nbsp;&nbsp;&nbsp;&nbsp;1457.91&nbsp;&nbsp;&=
nbsp;&nbsp;1457.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;RADPEAGLLLYLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1457.941466 from(729.978558,2+) title(Elution%20from%3a%2014=
0%2e16%20to%20140%2e16%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(655)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q655; if (NS4 || IE4) activateEl('=
Q655', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D655&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>655</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>729.98&nbsp;&=
nbsp;&nbsp;&nbsp;1457.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1457.953536 from(729.984593,2+) title(Elution%20from%3a%2077=
%2e4%20to%2077%2e4%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(656)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q656; if (NS4 || IE4) activateEl('=
Q656', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D656&amp;hit=3D1&amp;index=3DIPI%3aIPI0001929=
0&amp;px=3D1"=20=0D
      target=3D_blank>656</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>729.98&nbsp;&nbsp;&nbsp;&nbsp;1457.95&nbsp;&nbsp;&=
nbsp;&nbsp;1457.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RADPEAGLLLYLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1458.913708 from(730.464679,2+) title(Elution%20from%3a%2014=
1%2e02%20to%20141%2e02%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(657)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q657; if (NS4 || IE4) activateEl('=
Q657', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D657&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>657</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>730.46&nbsp;&=
nbsp;&nbsp;&nbsp;1458.91</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1458.935532 from(487.319669,3+) title(Elution%20from%3a%2078=
%2e06%20to%2078%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(658)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q658; if (NS4 || IE4) activateEl('=
Q658', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D658&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>658</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>487.32&nbsp;&=
nbsp;&nbsp;&nbsp;1458.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1458.957706 from(730.486678,2+) title(Elution%20from%3a%2077=
%2e74%20to%2077%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(659)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q659; if (NS4 || IE4) activateEl('=
Q659', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D659&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>659</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>730.49&nbsp;&=
nbsp;&nbsp;&nbsp;1458.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1459.843636 from(730.929643,2+) title(Elution%20from%3a%2096=
%2e46%20to%2096%2e46%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(660)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q660; if (NS4 || IE4) activateEl('=
Q660', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D660&amp;hit=3D1&amp;index=3DIPI%3aIPI0001154=
6&amp;px=3D1"=20=0D
      target=3D_blank>660</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>730.93&nbsp;&nbsp;&nbsp;&nbsp;1459.84&nbsp;&nbsp;&=
nbsp;&nbsp;1459.75&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LMKEESPVVSWR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1459.861700 from(730.938675,2+) title(Elution%20from%3a%2091=
%2e5%20to%2091%2e5%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(662)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q662; if (NS4 || IE4) activateEl('=
Q662', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D662&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>662</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>730.94&nbsp;&=
nbsp;&nbsp;&nbsp;1459.86</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1459.898336 from(730.956993,2+) title(Elution%20from%3a%2099=
%2e46%20to%2099%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(663)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q663; if (NS4 || IE4) activateEl('=
Q663', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D663&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>663</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>730.96&nbsp;&=
nbsp;&nbsp;&nbsp;1459.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1459.929460 from(730.972555,2+) title(Elution%20from%3a%2079=
%2e05%20to%2079%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(664)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q664; if (NS4 || IE4) activateEl('=
Q664', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D664&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>664</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>730.97&nbsp;&=
nbsp;&nbsp;&nbsp;1459.93</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1460.010420 from(731.013035,2+) title(Elution%20from%3a%2015=
6%2e5%20to%20156%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(665)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q665; if (NS4 || IE4) activateEl('=
Q665', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D665&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>665</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>731.01&nbsp;&=
nbsp;&nbsp;&nbsp;1460.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1466.856318 from(734.435984,2+) title(Elution%20from%3a%2017=
4%2e64%20to%20174%2e64%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(668)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q668; if (NS4 || IE4) activateEl('=
Q668', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D668&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>668</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.44&nbsp;&=
nbsp;&nbsp;&nbsp;1466.86</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1467.896919 from(490.306798,3+) title(Elution%20from%3a%2019=
%2e22%20to%2019%2e22%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(669)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q669; if (NS4 || IE4) activateEl('=
Q669', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D669&amp;hit=3D1&amp;index=3DIPI%3aIPI0000696=
7&amp;px=3D1"=20=0D
      target=3D_blank>669</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>490.31&nbsp;&nbsp;&nbsp;&nbsp;1467.90&nbsp;&nbsp;&=
nbsp;&nbsp;1467.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YTIVSGNNKGLFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1471.807062 from(491.610179,3+) title(Elution%20from%3a%205%=
2e15%20to%205%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(671)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q671; if (NS4 || IE4) activateEl('=
Q671', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D671&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>671</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>491.61&nbsp;&=
nbsp;&nbsp;&nbsp;1471.81</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1472.824350 from(491.949275,3+) title(Elution%20from%3a%205%=
2e25%20to%205%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(672)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q672; if (NS4 || IE4) activateEl('=
Q672', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D672&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>672</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>491.95&nbsp;&=
nbsp;&nbsp;&nbsp;1472.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1473.911882 from(737.963766,2+) title(Elution%20from%3a%2030=
%2e83%20to%2030%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(673)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q673; if (NS4 || IE4) activateEl('=
Q673', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D673&amp;hit=3D1&amp;index=3DIPI%3aIPI0002470=
9&amp;px=3D1"=20=0D
      target=3D_blank>673</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>737.96&nbsp;&nbsp;&nbsp;&nbsp;1473.91&nbsp;&nbsp;&=
nbsp;&nbsp;1473.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ELWNLLKIACSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1479.821517 from(494.281664,3+) title(Elution%20from%3a%2067=
%2e16%20to%2067%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(679)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q679; if (NS4 || IE4) activateEl('=
Q679', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D679&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>679</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>494.28&nbsp;&=
nbsp;&nbsp;&nbsp;1479.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1480.797904 from(741.406777,2+) title(Elution%20from%3a%2025=
%2e34%20to%2025%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(680)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q680; if (NS4 || IE4) activateEl('=
Q680', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D680&amp;hit=3D1&amp;index=3DIPI%3aIPI0002423=
6&amp;px=3D1"=20=0D
      target=3D_blank>680</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>741.41&nbsp;&nbsp;&nbsp;&nbsp;1480.80&nbsp;&nbsp;&=
nbsp;&nbsp;1480.85&nbsp;&nbsp;&nbsp;&nbsp;-0.06&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;MNGLSRPLIKPQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1480.802846 from(741.409248,2+) title(Elution%20from%3a%2021=
%2e73%20to%2021%2e85%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(681)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q681; if (NS4 || IE4) activateEl('=
Q681', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D681&amp;hit=3D1&amp;index=3DIPI%3aIPI0002423=
6&amp;px=3D1"=20=0D
      target=3D_blank>681</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>741.41&nbsp;&nbsp;&nbsp;&nbsp;1480.80&nbsp;&nbsp;&=
nbsp;&nbsp;1480.85&nbsp;&nbsp;&nbsp;&nbsp;-0.05&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MNGLSRPLIKPQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1480.805826 from(741.410738,2+) title(Elution%20from%3a%2028=
%2e45%20to%2028%2e45%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(682)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q682; if (NS4 || IE4) activateEl('=
Q682', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D682&amp;hit=3D1&amp;index=3DIPI%3aIPI0001037=
5&amp;px=3D1"=20=0D
      target=3D_blank>682</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>741.41&nbsp;&nbsp;&nbsp;&nbsp;1480.81&nbsp;&nbsp;&nbs=
p;&nbsp;1480.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;TTDDYLSNLIKAK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1481.805696 from(741.910673,2+) title(Elution%20from%3a%2024=
%2e95%20to%2024%2e95%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(683)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q683; if (NS4 || IE4) activateEl('=
Q683', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D683&amp;hit=3D1&amp;index=3DIPI%3aIPI0002437=
5&amp;px=3D1"=20=0D
      target=3D_blank>683</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>741.91&nbsp;&nbsp;&nbsp;&nbsp;1481.81&nbsp;&nbsp;&=
nbsp;&nbsp;1481.90&nbsp;&nbsp;&nbsp;&nbsp;-0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;ELKLLLLGEWLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1484.857563 from(495.960346,3+) title(Elution%20from%3a%2042=
%2e88%20to%2042%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(687)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q687; if (NS4 || IE4) activateEl('=
Q687', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D687&amp;hit=3D1&amp;index=3DIPI%3aIPI0002997=
3&amp;px=3D1"=20=0D
      target=3D_blank>687</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>495.96&nbsp;&nbsp;&nbsp;&nbsp;1484.86&nbsp;&nbsp;&=
nbsp;&nbsp;1484.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MLFPHISPCEVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1484.902444 from(743.459047,2+) title(Elution%20from%3a%2042=
%2e52%20to%2042%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(688)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q688; if (NS4 || IE4) activateEl('=
Q688', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D688&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>688</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>743.46&nbsp;&=
nbsp;&nbsp;&nbsp;1484.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1486.940488 from(744.478069,2+) title(Elution%20from%3a%2014=
7%2e51%20to%20147%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(691)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q691; if (NS4 || IE4) activateEl('=
Q691', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D691&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>691</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>744.48&nbsp;&=
nbsp;&nbsp;&nbsp;1486.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1487.798936 from(744.907293,2+) title(Elution%20from%3a%2010=
%2e86%20to%2010%2e86%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(693)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q693; if (NS4 || IE4) activateEl('=
Q693', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D693&amp;hit=3D1&amp;index=3DIPI%3aIPI0000610=
9&amp;px=3D1"=20=0D
      target=3D_blank>693</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>744.91&nbsp;&nbsp;&nbsp;&nbsp;1487.80&nbsp;&nbsp;&=
nbsp;&nbsp;1487.86&nbsp;&nbsp;&nbsp;&nbsp;-0.06&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LIPLKTMTSDILK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1487.960337 from(496.994604,3+) title(Elution%20from%3a%2014=
8%2e5%20to%20148%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(694)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q694; if (NS4 || IE4) activateEl('=
Q694', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D694&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>694</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>496.99&nbsp;&=
nbsp;&nbsp;&nbsp;1487.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1487.977446 from(744.996548,2+) title(Elution%20from%3a%2014=
8%2e09%20to%20148%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(695)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q695; if (NS4 || IE4) activateEl('=
Q695', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D695&amp;hit=3D1&amp;index=3DIPI%3aIPI0002872=
3&amp;px=3D1"=20=0D
      target=3D_blank>695</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>745.00&nbsp;&nbsp;&nbsp;&nbsp;1487.98&nbsp;&nbsp;&=
nbsp;&nbsp;1487.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LNLGEEVPVIIHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1487.985706 from(745.000678,2+) title(Elution%20from%3a%2015=
1%2e13%20to%20151%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(696)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q696; if (NS4 || IE4) activateEl('=
Q696', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D696&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>696</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>745.00&nbsp;&=
nbsp;&nbsp;&nbsp;1487.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1501.930248 from(501.651241,3+) title(Elution%20from%3a%2014=
0%2e32%20to%20140%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(699)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q699; if (NS4 || IE4) activateEl('=
Q699', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D699&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>699</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>501.65&nbsp;&=
nbsp;&nbsp;&nbsp;1501.93</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1501.948554 from(751.982102,2+) title(Elution%20from%3a%2014=
0%2e24%20to%20140%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(700)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q700; if (NS4 || IE4) activateEl('=
Q700', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D700&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>700</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>751.98&nbsp;&=
nbsp;&nbsp;&nbsp;1501.95</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1502.900355 from(501.974610,3+) title(Elution%20from%3a%2014=
0%2e66%20to%20140%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(701)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q701; if (NS4 || IE4) activateEl('=
Q701', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D701&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>701</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>501.97&nbsp;&=
nbsp;&nbsp;&nbsp;1502.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1502.951934 from(752.483792,2+) title(Elution%20from%3a%2014=
0%2e48%20to%20140%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(702)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q702; if (NS4 || IE4) activateEl('=
Q702', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D702&amp;hit=3D1&amp;index=3DIPI%3aIPI0003307=
1&amp;px=3D1"=20=0D
      target=3D_blank>702</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>752.48&nbsp;&nbsp;&nbsp;&nbsp;1502.95&nbsp;&nbsp;&=
nbsp;&nbsp;1502.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VAASTLTLSLLCSAP</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1503.888873 from(502.304116,3+) title(Elution%20from%3a%2012=
3%2e94%20to%20123%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(703)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q703; if (NS4 || IE4) activateEl('=
Q703', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D703&amp;hit=3D1&amp;index=3DIPI%3aIPI0002277=
0&amp;px=3D1"=20=0D
      target=3D_blank>703</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>502.30&nbsp;&nbsp;&nbsp;&nbsp;1503.89&nbsp;&nbsp;&=
nbsp;&nbsp;1503.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FFEVILIDPFHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1504.884564 from(502.636013,3+) title(Elution%20from%3a%2012=
4%2e32%20to%20124%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(704)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q704; if (NS4 || IE4) activateEl('=
Q704', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D704&amp;hit=3D1&amp;index=3DIPI%3aIPI0000409=
6&amp;px=3D1"=20=0D
      target=3D_blank>704</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>502.64&nbsp;&nbsp;&nbsp;&nbsp;1504.88&nbsp;&nbsp;&=
nbsp;&nbsp;1504.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SNIDVNINSQVFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1505.866958 from(753.941304,2+) title(Elution%20from%3a%2019=
%2e6%20to%2019%2e6%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(706)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q706; if (NS4 || IE4) activateEl('=
Q706', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D706&amp;hit=3D1&amp;index=3DIPI%3aIPI0001249=
6&amp;px=3D1"=20=0D
      target=3D_blank>706</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>753.94&nbsp;&nbsp;&nbsp;&nbsp;1505.87&nbsp;&nbsp;&nbs=
p;&nbsp;1505.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;ISSLLEEQFQQGK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1506.831369 from(503.284948,3+) title(Elution%20from%3a%2028=
%2e83%20to%2028%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(708)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q708; if (NS4 || IE4) activateEl('=
Q708', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D708&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>708</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>503.28&nbsp;&=
nbsp;&nbsp;&nbsp;1506.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1506.931785 from(503.318420,3+) title(Elution%20from%3a%2019=
%2e37%20to%2019%2e5%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%202%20%20) query(709)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q709; if (NS4 || IE4) activateEl('=
Q709', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D709&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>709</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>503.32&nbsp;&=
nbsp;&nbsp;&nbsp;1506.93</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1512.919527 from(505.314334,3+) title(Elution%20from%3a%2016=
%2e92%20to%2016%2e92%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(710)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q710; if (NS4 || IE4) activateEl('=
Q710', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D710&amp;hit=3D1&amp;index=3DIPI%3aIPI0003186=
2&amp;px=3D1"=20=0D
      target=3D_blank>710</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>505.31&nbsp;&nbsp;&nbsp;&nbsp;1512.92&nbsp;&nbsp;&nbs=
p;&nbsp;1512.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;AAANGDVAKVEDLLK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1513.890066 from(757.952858,2+) title(Elution%20from%3a%2017=
%2e07%20to%2017%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(711)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q711; if (NS4 || IE4) activateEl('=
Q711', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D711&amp;hit=3D1&amp;index=3DIPI%3aIPI0000514=
2&amp;px=3D1"=20=0D
      target=3D_blank>711</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>757.95&nbsp;&nbsp;&nbsp;&nbsp;1513.89&nbsp;&nbsp;&=
nbsp;&nbsp;1513.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LRDDVQSINWLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1514.806662 from(505.943379,3+) title(Elution%20from%3a%2031=
%2e16%20to%2031%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(714)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q714; if (NS4 || IE4) activateEl('=
Q714', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D714&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>714</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>505.94&nbsp;&=
nbsp;&nbsp;&nbsp;1514.81</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1514.891352 from(505.971609,3+) title(Elution%20from%3a%2026=
%2e16%20to%2026%2e16%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(717)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q717; if (NS4 || IE4) activateEl('=
Q717', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D717&amp;hit=3D1&amp;index=3DIPI%3aIPI0001988=
1&amp;px=3D1"=20=0D
      target=3D_blank>717</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>505.97&nbsp;&nbsp;&nbsp;&nbsp;1514.89&nbsp;&nbsp;&=
nbsp;&nbsp;1514.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VDACLELLIRTGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1515.820752 from(506.281409,3+) title(Elution%20from%3a%2043=
%2e86%20to%2043%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(720)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q720; if (NS4 || IE4) activateEl('=
Q720', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D720&amp;hit=3D1&amp;index=3DIPI%3aIPI0000704=
0&amp;px=3D1"=20=0D
      target=3D_blank>720</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>506.28&nbsp;&nbsp;&nbsp;&nbsp;1515.82&nbsp;&nbsp;&=
nbsp;&nbsp;1515.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GYISKSGLDFHHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1515.825189 from(506.282888,3+) title(Elution%20from%3a%2040=
%2e91%20to%2040%2e91%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(721)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q721; if (NS4 || IE4) activateEl('=
Q721', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D721&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>721</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>506.28&nbsp;&=
nbsp;&nbsp;&nbsp;1515.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1515.832551 from(506.285342,3+) title(Elution%20from%3a%2021=
%2e36%20to%2021%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(722)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q722; if (NS4 || IE4) activateEl('=
Q722', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D722&amp;hit=3D1&amp;index=3DIPI%3aIPI0000472=
1&amp;px=3D1"=20=0D
      target=3D_blank>722</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>506.29&nbsp;&nbsp;&nbsp;&nbsp;1515.83&nbsp;&nbsp;&=
nbsp;&nbsp;1515.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MMGKVDTFLDSLK&nbsp;+&nbsp;2=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1515.841005 from(506.288160,3+) title(Elution%20from%3a%2033=
%2e01%20to%2033%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(723)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q723; if (NS4 || IE4) activateEl('=
Q723', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D723&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>723</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>506.29&nbsp;&=
nbsp;&nbsp;&nbsp;1515.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1515.878232 from(758.946941,2+) title(Elution%20from%3a%2021=
%2e67%20to%2021%2e67%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(724)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q724; if (NS4 || IE4) activateEl('=
Q724', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D724&amp;hit=3D1&amp;index=3DIPI%3aIPI0002496=
6&amp;px=3D1"=20=0D
      target=3D_blank>724</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>758.95&nbsp;&nbsp;&nbsp;&nbsp;1515.88&nbsp;&nbsp;&=
nbsp;&nbsp;1515.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FGFLQEFSKEER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1516.784349 from(506.602608,3+) title(Elution%20from%3a%200%=
2e41%20to%200%2e41%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(725)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q725; if (NS4 || IE4) activateEl('=
Q725', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D725&amp;hit=3D1&amp;index=3DIPI%3aIPI0001829=
8&amp;px=3D1"=20=0D
      target=3D_blank>725</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>506.60&nbsp;&nbsp;&nbsp;&nbsp;1516.78&nbsp;&nbsp;&=
nbsp;&nbsp;1516.91&nbsp;&nbsp;&nbsp;&nbsp;-0.12&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ELTPVAKQLLHLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1516.818330 from(506.613935,3+) title(Elution%20from%3a%2042=
%2e41%20to%2042%2e41%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(726)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q726; if (NS4 || IE4) activateEl('=
Q726', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D726&amp;hit=3D1&amp;index=3DIPI%3aIPI0000239=
7&amp;px=3D1"=20=0D
      target=3D_blank>726</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>506.61&nbsp;&nbsp;&nbsp;&nbsp;1516.82&nbsp;&nbsp;&=
nbsp;&nbsp;1516.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IYNANYLKMLMK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1524.935757 from(509.319744,3+) title(Elution%20from%3a%2022=
%2e65%20to%2022%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(730)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q730; if (NS4 || IE4) activateEl('=
Q730', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D730&amp;hit=3D1&amp;index=3DIPI%3aIPI0001030=
2&amp;px=3D1"=20=0D
      target=3D_blank>730</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>509.32&nbsp;&nbsp;&nbsp;&nbsp;1524.94&nbsp;&nbsp;&=
nbsp;&nbsp;1524.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MHTAVRLNEVIVK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1526.982303 from(510.001926,3+) title(Elution%20from%3a%2012=
5%2e63%20to%20125%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(731)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q731; if (NS4 || IE4) activateEl('=
Q731', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D731&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>731</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>510.00&nbsp;&=
nbsp;&nbsp;&nbsp;1526.98</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1528.012809 from(510.345428,3+) title(Elution%20from%3a%2012=
6%2e39%20to%20126%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(732)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q732; if (NS4 || IE4) activateEl('=
Q732', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D732&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>732</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>510.35&nbsp;&=
nbsp;&nbsp;&nbsp;1528.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1535.901528 from(512.975001,3+) title(Elution%20from%3a%2063=
%2e55%20to%2063%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(736)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q736; if (NS4 || IE4) activateEl('=
Q736', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D736&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>736</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>512.98&nbsp;&=
nbsp;&nbsp;&nbsp;1535.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1535.903448 from(768.959549,2+) title(Elution%20from%3a%2063=
%2e77%20to%2063%2e77%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(737)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q737; if (NS4 || IE4) activateEl('=
Q737', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D737&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>737</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>768.96&nbsp;&=
nbsp;&nbsp;&nbsp;1535.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1538.869068 from(513.964181,3+) title(Elution%20from%3a%2038=
%2e4%20to%2038%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(738)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q738; if (NS4 || IE4) activateEl('=
Q738', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D738&amp;hit=3D1&amp;index=3DIPI%3aIPI0002311=
7&amp;px=3D1"=20=0D
      target=3D_blank>738</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>513.96&nbsp;&nbsp;&nbsp;&nbsp;1538.87&nbsp;&nbsp;&=
nbsp;&nbsp;1538.88&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;QEVVELLLARGANK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1538.889636 from(770.452643,2+) title(Elution%20from%3a%2039=
%2e23%20to%2039%2e23%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(739)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q739; if (NS4 || IE4) activateEl('=
Q739', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D739&amp;hit=3D1&amp;index=3DIPI%3aIPI0001954=
3&amp;px=3D1"=20=0D
      target=3D_blank>739</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>770.45&nbsp;&nbsp;&nbsp;&nbsp;1538.89&nbsp;&nbsp;&=
nbsp;&nbsp;1538.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AQGQLLDVVLTINR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1539.867774 from(514.297083,3+) title(Elution%20from%3a%2038=
%2e32%20to%2038%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(740)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q740; if (NS4 || IE4) activateEl('=
Q740', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D740&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>740</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>514.30&nbsp;&=
nbsp;&nbsp;&nbsp;1539.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1540.879386 from(514.634287,3+) title(Elution%20from%3a%2039=
%2e34%20to%2039%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(743)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q743; if (NS4 || IE4) activateEl('=
Q743', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D743&amp;hit=3D1&amp;index=3DIPI%3aIPI0000546=
7&amp;px=3D1"=20=0D
      target=3D_blank>743</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>514.63&nbsp;&nbsp;&nbsp;&nbsp;1540.88&nbsp;&nbsp;&=
nbsp;&nbsp;1540.87&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SWVEKIVQGVQLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1541.852760 from(514.958745,3+) title(Elution%20from%3a%2018=
%2e06%20to%2018%2e06%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(744)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q744; if (NS4 || IE4) activateEl('=
Q744', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D744&amp;hit=3D1&amp;index=3DIPI%3aIPI0002051=
4&amp;px=3D1"=20=0D
      target=3D_blank>744</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>514.96&nbsp;&nbsp;&nbsp;&nbsp;1541.85&nbsp;&nbsp;&=
nbsp;&nbsp;1541.94&nbsp;&nbsp;&nbsp;&nbsp;-0.09&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TITLVLAVASGLSLGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1542.959442 from(515.327639,3+) title(Elution%20from%3a%2017=
%2e72%20to%2017%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(746)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q746; if (NS4 || IE4) activateEl('=
Q746', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D746&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>746</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>515.33&nbsp;&=
nbsp;&nbsp;&nbsp;1542.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1544.796204 from(773.405927,2+) title(Elution%20from%3a%2012=
%2e67%20to%2012%2e67%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(749)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q749; if (NS4 || IE4) activateEl('=
Q749', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D749&amp;hit=3D1&amp;index=3DIPI%3aIPI0001005=
8&amp;px=3D1"=20=0D
      target=3D_blank>749</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>773.41&nbsp;&nbsp;&nbsp;&nbsp;1544.80&nbsp;&nbsp;&=
nbsp;&nbsp;1544.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QVPREQAQAYAER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1546.949420 from(774.482535,2+) title(Elution%20from%3a%2024=
%2e59%20to%2024%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(752)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q752; if (NS4 || IE4) activateEl('=
Q752', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D752&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>752</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>774.48&nbsp;&=
nbsp;&nbsp;&nbsp;1546.95</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1547.926272 from(516.983249,3+) title(Elution%20from%3a%2024=
%2e33%20to%2024%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(753)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q753; if (NS4 || IE4) activateEl('=
Q753', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D753&amp;hit=3D1&amp;index=3DIPI%3aIPI0000974=
0&amp;px=3D1"=20=0D
      target=3D_blank>753</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>516.98&nbsp;&nbsp;&nbsp;&nbsp;1547.93&nbsp;&nbsp;&=
nbsp;&nbsp;1547.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DVMLEELSLLTNR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1547.940024 from(774.977837,2+) title(Elution%20from%3a%2024=
%2e74%20to%2024%2e74%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(754)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q754; if (NS4 || IE4) activateEl('=
Q754', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D754&amp;hit=3D1&amp;index=3DIPI%3aIPI0003303=
7&amp;px=3D1"=20=0D
      target=3D_blank>754</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>774.98&nbsp;&nbsp;&nbsp;&nbsp;1547.94&nbsp;&nbsp;&=
nbsp;&nbsp;1547.83&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RPIMAWFKEINK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1558.934118 from(520.652531,3+) title(Elution%20from%3a%2016=
%2e51%20to%2016%2e51%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(756)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q756; if (NS4 || IE4) activateEl('=
Q756', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D756&amp;hit=3D1&amp;index=3DIPI%3aIPI0003190=
5&amp;px=3D1"=20=0D
      target=3D_blank>756</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>520.65&nbsp;&nbsp;&nbsp;&nbsp;1558.93&nbsp;&nbsp;&=
nbsp;&nbsp;1558.94&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LITIITTLFPKGSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1560.770510 from(781.393080,2+) title(Elution%20from%3a%2027=
%2e61%20to%2027%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(757)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q757; if (NS4 || IE4) activateEl('=
Q757', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D757&amp;hit=3D1&amp;index=3DIPI%3aIPI0001818=
0&amp;px=3D1"=20=0D
      target=3D_blank>757</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>781.39&nbsp;&nbsp;&nbsp;&nbsp;1560.77&nbsp;&nbsp;&=
nbsp;&nbsp;1560.67&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GFGFVDFNSEEDAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1561.770834 from(781.893242,2+) title(Elution%20from%3a%2027=
%2e82%20to%2027%2e95%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(758)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q758; if (NS4 || IE4) activateEl('=
Q758', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D758&amp;hit=3D1&amp;index=3DIPI%3aIPI0000653=
0&amp;px=3D1"=20=0D
      target=3D_blank>758</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>781.89&nbsp;&nbsp;&nbsp;&nbsp;1561.77&nbsp;&nbsp;&=
nbsp;&nbsp;1561.80&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;KPPSVFGSTAERMR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1563.857568 from(782.936609,2+) title(Elution%20from%3a%2014=
%2e62%20to%2014%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(759)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q759; if (NS4 || IE4) activateEl('=
Q759', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D759&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>759</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>782.94&nbsp;&=
nbsp;&nbsp;&nbsp;1563.86</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1567.821246 from(523.614907,3+) title(Elution%20from%3a%200%=
2e72%20to%200%2e72%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(760)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q760; if (NS4 || IE4) activateEl('=
Q760', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D760&amp;hit=3D1&amp;index=3DIPI%3aIPI0003307=
9&amp;px=3D1"=20=0D
      target=3D_blank>760</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>523.61&nbsp;&nbsp;&nbsp;&nbsp;1567.82&nbsp;&nbsp;&=
nbsp;&nbsp;1567.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VDNDENEHQLSLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1570.923390 from(524.648955,3+) title(Elution%20from%3a%2045=
%2e63%20to%2045%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(762)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q762; if (NS4 || IE4) activateEl('=
Q762', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D762&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>762</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>524.65&nbsp;&=
nbsp;&nbsp;&nbsp;1570.92</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1570.930758 from(524.651411,3+) title(Elution%20from%3a%2042=
%2e57%20to%2042%2e57%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(764)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q764; if (NS4 || IE4) activateEl('=
Q764', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D764&amp;hit=3D1&amp;index=3DIPI%3aIPI0001222=
7&amp;px=3D1"=20=0D
      target=3D_blank>764</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>524.65&nbsp;&nbsp;&nbsp;&nbsp;1570.93&nbsp;&nbsp;&=
nbsp;&nbsp;1570.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SMLLETPQGRIQAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1571.937075 from(524.986850,3+) title(Elution%20from%3a%2042=
%2e59%20to%2042%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(767)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q767; if (NS4 || IE4) activateEl('=
Q767', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D767&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>767</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>524.99&nbsp;&=
nbsp;&nbsp;&nbsp;1571.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1571.939376 from(524.987617,3+) title(Elution%20from%3a%2065=
%2e54%20to%2065%2e54%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(768)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q768; if (NS4 || IE4) activateEl('=
Q768', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D768&amp;hit=3D1&amp;index=3DIPI%3aIPI0002371=
3&amp;px=3D1"=20=0D
      target=3D_blank>768</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>524.99&nbsp;&nbsp;&nbsp;&nbsp;1571.94&nbsp;&nbsp;&=
nbsp;&nbsp;1571.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HLTNRVLSLGYATK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1571.963913 from(524.995796,3+) title(Elution%20from%3a%2062=
%2e5%20to%2062%2e5%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(769)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q769; if (NS4 || IE4) activateEl('=
Q769', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D769&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>769</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>525.00&nbsp;&=
nbsp;&nbsp;&nbsp;1571.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1571.973660 from(786.994655,2+) title(Elution%20from%3a%2064=
%2e02%20to%2064%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(770)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q770; if (NS4 || IE4) activateEl('=
Q770', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D770&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>770</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>786.99&nbsp;&=
nbsp;&nbsp;&nbsp;1571.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1572.908104 from(787.461877,2+) title(Elution%20from%3a%209%=
2e34%20to%209%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(771)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q771; if (NS4 || IE4) activateEl('=
Q771', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D771&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>771</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>787.46&nbsp;&=
nbsp;&nbsp;&nbsp;1572.91</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1572.932139 from(525.318538,3+) title(Elution%20from%3a%2065=
%2e14%20to%2065%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(772)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q772; if (NS4 || IE4) activateEl('=
Q772', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D772&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>772</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>525.32&nbsp;&=
nbsp;&nbsp;&nbsp;1572.93</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1573.923856 from(787.969753,2+) title(Elution%20from%3a%209%=
2e55%20to%209%2e55%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(773)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q773; if (NS4 || IE4) activateEl('=
Q773', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D773&amp;hit=3D1&amp;index=3DIPI%3aIPI0002103=
4&amp;px=3D1"=20=0D
      target=3D_blank>773</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>787.97&nbsp;&nbsp;&nbsp;&nbsp;1573.92&nbsp;&nbsp;&=
nbsp;&nbsp;1573.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GDPGISGTPGAPGLPGPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1575.987200 from(789.001425,2+) title(Elution%20from%3a%2019=
8%2e23%20to%20198%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(774)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q774; if (NS4 || IE4) activateEl('=
Q774', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D774&amp;hit=3D1&amp;index=3DIPI%3aIPI0002063=
5&amp;px=3D1"=20=0D
      target=3D_blank>774</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>789.00&nbsp;&nbsp;&nbsp;&nbsp;1575.99&nbsp;&nbsp;&=
nbsp;&nbsp;1575.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EIFAQEALAPFRGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1578.931800 from(527.318425,3+) title(Elution%20from%3a%2034=
%2e75%20to%2034%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(775)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q775; if (NS4 || IE4) activateEl('=
Q775', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D775&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>775</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>527.32&nbsp;&=
nbsp;&nbsp;&nbsp;1578.93</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1579.940118 from(790.977884,2+) title(Elution%20from%3a%205%=
2e68%20to%205%2e68%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(776)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q776; if (NS4 || IE4) activateEl('=
Q776', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D776&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>776</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>790.98&nbsp;&=
nbsp;&nbsp;&nbsp;1579.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1579.965153 from(527.662876,3+) title(Elution%20from%3a%2034=
%2e51%20to%2034%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(778)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q778; if (NS4 || IE4) activateEl('=
Q778', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D778&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>778</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>527.66&nbsp;&=
nbsp;&nbsp;&nbsp;1579.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1579.967097 from(527.663524,3+) title(Elution%20from%3a%2039=
%2e99%20to%2039%2e99%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(779)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q779; if (NS4 || IE4) activateEl('=
Q779', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D779&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>779</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>527.66&nbsp;&=
nbsp;&nbsp;&nbsp;1579.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1579.992975 from(527.672150,3+) title(Elution%20from%3a%2026=
%2e55%20to%2026%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(781)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q781; if (NS4 || IE4) activateEl('=
Q781', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D781&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>781</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>527.67&nbsp;&=
nbsp;&nbsp;&nbsp;1579.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1579.993724 from(791.004687,2+) title(Elution%20from%3a%2041=
%2e85%20to%2041%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(782)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q782; if (NS4 || IE4) activateEl('=
Q782', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D782&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>782</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>791.00&nbsp;&=
nbsp;&nbsp;&nbsp;1579.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1580.881995 from(527.968490,3+) title(Elution%20from%3a%205%=
2e58%20to%205%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(783)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q783; if (NS4 || IE4) activateEl('=
Q783', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D783&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>783</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>527.97&nbsp;&=
nbsp;&nbsp;&nbsp;1580.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1580.908320 from(791.461985,2+) title(Elution%20from%3a%2074=
%2e3%20to%2074%2e3%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(784)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q784; if (NS4 || IE4) activateEl('=
Q784', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D784&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>784</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>791.46&nbsp;&=
nbsp;&nbsp;&nbsp;1580.91</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1580.958246 from(527.993907,3+) title(Elution%20from%3a%2026=
%2e65%20to%2026%2e65%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(786)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q786; if (NS4 || IE4) activateEl('=
Q786', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D786&amp;hit=3D1&amp;index=3DIPI%3aIPI0003254=
9&amp;px=3D1"=20=0D
      target=3D_blank>786</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>527.99&nbsp;&nbsp;&nbsp;&nbsp;1580.96&nbsp;&nbsp;&=
nbsp;&nbsp;1580.87&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RPNFKPDIQEIPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1580.960481 from(527.994652,3+) title(Elution%20from%3a%2041=
%2e01%20to%2041%2e01%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(787)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q787; if (NS4 || IE4) activateEl('=
Q787', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D787&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>787</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>527.99&nbsp;&=
nbsp;&nbsp;&nbsp;1580.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1580.963070 from(527.995515,3+) title(Elution%20from%3a%2044=
%2e02%20to%2044%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(788)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q788; if (NS4 || IE4) activateEl('=
Q788', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D788&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>788</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>528.00&nbsp;&=
nbsp;&nbsp;&nbsp;1580.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1581.018810 from(791.517230,2+) title(Elution%20from%3a%2042=
%2e12%20to%2042%2e12%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(789)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q789; if (NS4 || IE4) activateEl('=
Q789', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D789&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>789</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>791.52&nbsp;&=
nbsp;&nbsp;&nbsp;1581.02</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1581.889743 from(528.304406,3+) title(Elution%20from%3a%205%=
2e76%20to%205%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(790)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q790; if (NS4 || IE4) activateEl('=
Q790', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D790&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>790</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>528.30&nbsp;&=
nbsp;&nbsp;&nbsp;1581.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1581.904378 from(791.960014,2+) title(Elution%20from%3a%205%=
2e97%20to%205%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(791)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q791; if (NS4 || IE4) activateEl('=
Q791', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D791&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>791</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>791.96&nbsp;&=
nbsp;&nbsp;&nbsp;1581.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1581.962895 from(528.328790,3+) title(Elution%20from%3a%2026=
%2e81%20to%2026%2e81%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(792)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q792; if (NS4 || IE4) activateEl('=
Q792', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D792&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>792</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>528.33&nbsp;&=
nbsp;&nbsp;&nbsp;1581.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1581.977205 from(528.333560,3+) title(Elution%20from%3a%2041=
%2e22%20to%2041%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(793)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q793; if (NS4 || IE4) activateEl('=
Q793', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D793&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>793</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>528.33&nbsp;&=
nbsp;&nbsp;&nbsp;1581.98</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1582.009572 from(528.344349,3+) title(Elution%20from%3a%2044=
%2e47%20to%2044%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(794)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q794; if (NS4 || IE4) activateEl('=
Q794', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D794&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>794</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>528.34&nbsp;&=
nbsp;&nbsp;&nbsp;1582.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1582.009809 from(528.344428,3+) title(Elution%20from%3a%2030=
%2e54%20to%2030%2e54%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(795)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q795; if (NS4 || IE4) activateEl('=
Q795', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D795&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>795</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>528.34&nbsp;&=
nbsp;&nbsp;&nbsp;1582.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1582.048968 from(528.357481,3+) title(Elution%20from%3a%2047=
%2e52%20to%2047%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(796)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q796; if (NS4 || IE4) activateEl('=
Q796', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D796&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>796</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>528.36&nbsp;&=
nbsp;&nbsp;&nbsp;1582.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1582.937109 from(528.653528,3+) title(Elution%20from%3a%2016=
%2e25%20to%2016%2e25%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(797)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q797; if (NS4 || IE4) activateEl('=
Q797', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D797&amp;hit=3D1&amp;index=3DIPI%3aIPI0000991=
5&amp;px=3D1"=20=0D
      target=3D_blank>797</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>528.65&nbsp;&nbsp;&nbsp;&nbsp;1582.94&nbsp;&nbsp;&=
nbsp;&nbsp;1582.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YRAFITNIPFDVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1582.996629 from(528.673368,3+) title(Elution%20from%3a%2041=
%2e75%20to%2041%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(798)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q798; if (NS4 || IE4) activateEl('=
Q798', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D798&amp;hit=3D1&amp;index=3DIPI%3aIPI0001997=
3&amp;px=3D1"=20=0D
      target=3D_blank>798</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>528.67&nbsp;&nbsp;&nbsp;&nbsp;1583.00&nbsp;&nbsp;&=
nbsp;&nbsp;1582.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MLEKLPELRPVDK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1583.018433 from(528.680636,3+) title(Elution%20from%3a%2038=
%2e21%20to%2038%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(799)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q799; if (NS4 || IE4) activateEl('=
Q799', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D799&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>799</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>528.68&nbsp;&=
nbsp;&nbsp;&nbsp;1583.02</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1583.426784 from(528.816753,3+) title(Elution%20from%3a%2033=
%2e24%20to%2033%2e24%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(800)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q800; if (NS4 || IE4) activateEl('=
Q800', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D800&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>800</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>528.82&nbsp;&=
nbsp;&nbsp;&nbsp;1583.43</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1583.947548 from(528.990341,3+) title(Elution%20from%3a%2016=
%2e38%20to%2016%2e38%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(801)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q801; if (NS4 || IE4) activateEl('=
Q801', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D801&amp;hit=3D1&amp;index=3DIPI%3aIPI0002019=
7&amp;px=3D1"=20=0D
      target=3D_blank>801</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>528.99&nbsp;&nbsp;&nbsp;&nbsp;1583.95&nbsp;&nbsp;&=
nbsp;&nbsp;1583.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EIVQGVLQQGTAWR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1584.014838 from(529.012771,3+) title(Elution%20from%3a%2038=
%2e61%20to%2038%2e61%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(802)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q802; if (NS4 || IE4) activateEl('=
Q802', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D802&amp;hit=3D1&amp;index=3DIPI%3aIPI0000766=
9&amp;px=3D1"=20=0D
      target=3D_blank>802</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.01&nbsp;&nbsp;&nbsp;&nbsp;1584.01&nbsp;&nbsp;&=
nbsp;&nbsp;1583.87&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MEVTPLSLQIPGRK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1585.847052 from(529.623509,3+) title(Elution%20from%3a%2015=
%2e14%20to%2015%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(805)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q805; if (NS4 || IE4) activateEl('=
Q805', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D805&amp;hit=3D1&amp;index=3DIPI%3aIPI0000418=
3&amp;px=3D1"=20=0D
      target=3D_blank>805</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.62&nbsp;&nbsp;&nbsp;&nbsp;1585.85&nbsp;&nbsp;&=
nbsp;&nbsp;1585.74&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EEAMIAYVEEMKK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1585.871408 from(793.943529,2+) title(Elution%20from%3a%2015=
%2e12%20to%2015%2e12%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(806)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q806; if (NS4 || IE4) activateEl('=
Q806', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D806&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>806</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>793.94&nbsp;&=
nbsp;&nbsp;&nbsp;1585.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1585.875261 from(529.632912,3+) title(Elution%20from%3a%2046=
%2e8%20to%2046%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(807)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q807; if (NS4 || IE4) activateEl('=
Q807', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D807&amp;hit=3D1&amp;index=3DIPI%3aIPI0002974=
6&amp;px=3D1"=20=0D
      target=3D_blank>807</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.63&nbsp;&nbsp;&nbsp;&nbsp;1585.88&nbsp;&nbsp;&=
nbsp;&nbsp;1585.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YWAVSRALEYNSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1585.890418 from(793.953034,2+) title(Elution%20from%3a%2046=
%2e72%20to%2046%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(808)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q808; if (NS4 || IE4) activateEl('=
Q808', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D808&amp;hit=3D1&amp;index=3DIPI%3aIPI0001678=
0&amp;px=3D1"=20=0D
      target=3D_blank>808</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>793.95&nbsp;&nbsp;&nbsp;&nbsp;1585.89&nbsp;&nbsp;&=
nbsp;&nbsp;1585.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SLQLAAAADLSENKR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1586.021997 from(529.681824,3+) title(Elution%20from%3a%2072=
%2e28%20to%2072%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(809)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q809; if (NS4 || IE4) activateEl('=
Q809', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D809&amp;hit=3D1&amp;index=3DIPI%3aIPI0000299=
5&amp;px=3D1"=20=0D
      target=3D_blank>809</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.68&nbsp;&nbsp;&nbsp;&nbsp;1586.02&nbsp;&nbsp;&=
nbsp;&nbsp;1585.87&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MELENIVANTVLLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1586.033304 from(529.685593,3+) title(Elution%20from%3a%2081=
%2e65%20to%2081%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(810)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q810; if (NS4 || IE4) activateEl('=
Q810', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D810&amp;hit=3D1&amp;index=3DIPI%3aIPI0000846=
8&amp;px=3D1"=20=0D
      target=3D_blank>810</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.69&nbsp;&nbsp;&nbsp;&nbsp;1586.03&nbsp;&nbsp;&=
nbsp;&nbsp;1585.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IPKVELQISIYGVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1586.042490 from(529.688655,3+) title(Elution%20from%3a%2075=
%2e33%20to%2075%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(811)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q811; if (NS4 || IE4) activateEl('=
Q811', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D811&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>811</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>529.69&nbsp;&=
nbsp;&nbsp;&nbsp;1586.04</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1586.045358 from(529.689611,3+) title(Elution%20from%3a%2084=
%2e73%20to%2084%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(812)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q812; if (NS4 || IE4) activateEl('=
Q812', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D812&amp;hit=3D1&amp;index=3DIPI%3aIPI0000045=
5&amp;px=3D1"=20=0D
      target=3D_blank>812</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.69&nbsp;&nbsp;&nbsp;&nbsp;1586.05&nbsp;&nbsp;&=
nbsp;&nbsp;1585.92&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LAVKERPDVGVYIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1586.068502 from(794.042076,2+) title(Elution%20from%3a%2083=
%2e37%20to%2083%2e37%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(813)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q813; if (NS4 || IE4) activateEl('=
Q813', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D813&amp;hit=3D1&amp;index=3DIPI%3aIPI0000846=
8&amp;px=3D1"=20=0D
      target=3D_blank>813</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>794.04&nbsp;&nbsp;&nbsp;&nbsp;1586.07&nbsp;&nbsp;&=
nbsp;&nbsp;1585.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IPKVELQISIYGVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1586.077352 from(794.046501,2+) title(Elution%20from%3a%2074=
%2e44%20to%2074%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(814)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q814; if (NS4 || IE4) activateEl('=
Q814', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D814&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>814</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>794.05&nbsp;&=
nbsp;&nbsp;&nbsp;1586.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1586.882058 from(529.968511,3+) title(Elution%20from%3a%2047=
%2e27%20to%2047%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(815)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q815; if (NS4 || IE4) activateEl('=
Q815', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D815&amp;hit=3D1&amp;index=3DIPI%3aIPI0002160=
8&amp;px=3D1"=20=0D
      target=3D_blank>815</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>529.97&nbsp;&nbsp;&nbsp;&nbsp;1586.88&nbsp;&nbsp;&=
nbsp;&nbsp;1586.76&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TMEWVGSLVDWHK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1586.896088 from(794.455869,2+) title(Elution%20from%3a%2047=
%2e44%20to%2047%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(816)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q816; if (NS4 || IE4) activateEl('=
Q816', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D816&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>816</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>794.46&nbsp;&=
nbsp;&nbsp;&nbsp;1586.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1587.001014 from(530.008163,3+) title(Elution%20from%3a%2072=
%2e8%20to%2072%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(817)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q817; if (NS4 || IE4) activateEl('=
Q817', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D817&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>817</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>530.01&nbsp;&=
nbsp;&nbsp;&nbsp;1587.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1587.024606 from(530.016027,3+) title(Elution%20from%3a%2081=
%2e73%20to%2081%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(818)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q818; if (NS4 || IE4) activateEl('=
Q818', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D818&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>818</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>530.02&nbsp;&=
nbsp;&nbsp;&nbsp;1587.02</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1587.040761 from(530.021412,3+) title(Elution%20from%3a%2084=
%2e78%20to%2084%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(819)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q819; if (NS4 || IE4) activateEl('=
Q819', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D819&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>819</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>530.02&nbsp;&=
nbsp;&nbsp;&nbsp;1587.04</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1587.059211 from(530.027562,3+) title(Elution%20from%3a%2075=
%2e86%20to%2075%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(820)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q820; if (NS4 || IE4) activateEl('=
Q820', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D820&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>820</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>530.03&nbsp;&=
nbsp;&nbsp;&nbsp;1587.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1587.069330 from(794.542490,2+) title(Elution%20from%3a%2074=
%2e8%20to%2074%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(821)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q821; if (NS4 || IE4) activateEl('=
Q821', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D821&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>821</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>794.54&nbsp;&=
nbsp;&nbsp;&nbsp;1587.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1587.079022 from(794.547336,2+) title(Elution%20from%3a%2083=
%2e56%20to%2083%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(822)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q822; if (NS4 || IE4) activateEl('=
Q822', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D822&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>822</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>794.55&nbsp;&=
nbsp;&nbsp;&nbsp;1587.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1587.939675 from(530.321050,3+) title(Elution%20from%3a%2095=
%2e94%20to%2095%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(823)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q823; if (NS4 || IE4) activateEl('=
Q823', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D823&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>823</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>530.32&nbsp;&=
nbsp;&nbsp;&nbsp;1587.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1588.033680 from(530.352385,3+) title(Elution%20from%3a%2082=
%2e9%20to%2082%2e9%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(824)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q824; if (NS4 || IE4) activateEl('=
Q824', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D824&amp;hit=3D1&amp;index=3DIPI%3aIPI0003022=
9&amp;px=3D1"=20=0D
      target=3D_blank>824</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>530.35&nbsp;&nbsp;&nbsp;&nbsp;1588.03&nbsp;&nbsp;&=
nbsp;&nbsp;1587.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VNLTGTIQLLEIMK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1588.049763 from(530.357746,3+) title(Elution%20from%3a%2073=
%2e58%20to%2073%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(825)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q825; if (NS4 || IE4) activateEl('=
Q825', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D825&amp;hit=3D1&amp;index=3DIPI%3aIPI0002542=
8&amp;px=3D1"=20=0D
      target=3D_blank>825</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>530.36&nbsp;&nbsp;&nbsp;&nbsp;1588.05&nbsp;&nbsp;&=
nbsp;&nbsp;1587.96&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TRPKAAGLPGAALPLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1588.098730 from(795.057190,2+) title(Elution%20from%3a%2015=
4%2e35%20to%20154%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(826)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q826; if (NS4 || IE4) activateEl('=
Q826', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D826&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>826</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.06&nbsp;&=
nbsp;&nbsp;&nbsp;1588.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1588.670302 from(795.342976,2+) title(Elution%20from%3a%2015=
7%2e92%20to%20157%2e92%20%20%20period%3a%200%20%20%20experiment%3a%203%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(827)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q827; if (NS4 || IE4) activateEl('=
Q827', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D827&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>827</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.34&nbsp;&=
nbsp;&nbsp;&nbsp;1588.67</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1588.673268 from(795.344459,2+) title(Elution%20from%3a%2015=
4%2e75%20to%20154%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(828)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q828; if (NS4 || IE4) activateEl('=
Q828', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D828&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>828</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.34&nbsp;&=
nbsp;&nbsp;&nbsp;1588.67</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1588.945770 from(530.656415,3+) title(Elution%20from%3a%2096=
%2e26%20to%2096%2e26%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(829)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q829; if (NS4 || IE4) activateEl('=
Q829', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D829&amp;hit=3D1&amp;index=3DIPI%3aIPI0000870=
2&amp;px=3D1"=20=0D
      target=3D_blank>829</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>530.66&nbsp;&nbsp;&nbsp;&nbsp;1588.95&nbsp;&nbsp;&=
nbsp;&nbsp;1588.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MQALAAISPRGEAMK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1589.246334 from(795.630992,2+) title(Elution%20from%3a%2015=
8%2e61%20to%20158%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(830)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q830; if (NS4 || IE4) activateEl('=
Q830', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D830&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>830</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.63&nbsp;&=
nbsp;&nbsp;&nbsp;1589.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1591.944904 from(796.980277,2+) title(Elution%20from%3a%2091=
%2e2%20to%2091%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(831)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q831; if (NS4 || IE4) activateEl('=
Q831', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D831&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>831</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>796.98&nbsp;&=
nbsp;&nbsp;&nbsp;1591.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1593.961414 from(797.988532,2+) title(Elution%20from%3a%2092=
%2e36%20to%2092%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(832)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q832; if (NS4 || IE4) activateEl('=
Q832', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D832&amp;hit=3D1&amp;index=3DIPI%3aIPI0000645=
8&amp;px=3D1"=20=0D
      target=3D_blank>832</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>797.99&nbsp;&nbsp;&nbsp;&nbsp;1593.96&nbsp;&nbsp;&=
nbsp;&nbsp;1593.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LASSKSCLDPEFLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1600.898061 from(534.640512,3+) title(Elution%20from%3a%2027=
%2e92%20to%2027%2e92%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(833)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q833; if (NS4 || IE4) activateEl('=
Q833', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D833&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>833</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>534.64&nbsp;&=
nbsp;&nbsp;&nbsp;1600.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1600.900294 from(801.457972,2+) title(Elution%20from%3a%2027=
%2e77%20to%2027%2e77%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(834)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q834; if (NS4 || IE4) activateEl('=
Q834', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D834&amp;hit=3D1&amp;index=3DIPI%3aIPI0002428=
4&amp;px=3D1"=20=0D
      target=3D_blank>834</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>801.46&nbsp;&nbsp;&nbsp;&nbsp;1600.90&nbsp;&nbsp;&=
nbsp;&nbsp;1600.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RGSIQVDGEELVSGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1601.892864 from(534.972113,3+) title(Elution%20from%3a%2027=
%2e69%20to%2027%2e69%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(835)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q835; if (NS4 || IE4) activateEl('=
Q835', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D835&amp;hit=3D1&amp;index=3DIPI%3aIPI0002295=
1&amp;px=3D1"=20=0D
      target=3D_blank>835</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>534.97&nbsp;&nbsp;&nbsp;&nbsp;1601.89&nbsp;&nbsp;&=
nbsp;&nbsp;1601.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LPTVFRQMRPVSR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1601.918850 from(801.967250,2+) title(Elution%20from%3a%2027=
%2e9%20to%2027%2e9%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(836)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q836; if (NS4 || IE4) activateEl('=
Q836', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D836&amp;hit=3D1&amp;index=3DIPI%3aIPI0000238=
4&amp;px=3D1"=20=0D
      target=3D_blank>836</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>801.97&nbsp;&nbsp;&nbsp;&nbsp;1601.92&nbsp;&nbsp;&=
nbsp;&nbsp;1601.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IAQETVDETEIAQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1602.925454 from(802.470552,2+) title(Elution%20from%3a%2028=
%2e27%20to%2028%2e27%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(837)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q837; if (NS4 || IE4) activateEl('=
Q837', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D837&amp;hit=3D1&amp;index=3DIPI%3aIPI0002843=
8&amp;px=3D1"=20=0D
      target=3D_blank>837</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>802.47&nbsp;&nbsp;&nbsp;&nbsp;1602.93&nbsp;&nbsp;&=
nbsp;&nbsp;1602.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SMVVIEVFTPVVQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1611.981543 from(538.335006,3+) title(Elution%20from%3a%2030=
%2e7%20to%2030%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(838)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q838; if (NS4 || IE4) activateEl('=
Q838', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D838&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>838</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>538.34&nbsp;&=
nbsp;&nbsp;&nbsp;1611.98</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1611.987054 from(538.336843,3+) title(Elution%20from%3a%2033=
%2e73%20to%2033%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(839)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q839; if (NS4 || IE4) activateEl('=
Q839', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D839&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>839</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>538.34&nbsp;&=
nbsp;&nbsp;&nbsp;1611.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1612.995915 from(538.673130,3+) title(Elution%20from%3a%2032=
%2e88%20to%2032%2e88%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(841)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q841; if (NS4 || IE4) activateEl('=
Q841', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D841&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>841</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>538.67&nbsp;&=
nbsp;&nbsp;&nbsp;1613.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1613.856561 from(538.960012,3+) title(Elution%20from%3a%2025=
%2e6%20to%2025%2e6%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(842)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q842; if (NS4 || IE4) activateEl('=
Q842', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D842&amp;hit=3D1&amp;index=3DIPI%3aIPI0001023=
5&amp;px=3D1"=20=0D
      target=3D_blank>842</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>538.96&nbsp;&nbsp;&nbsp;&nbsp;1613.86&nbsp;&nbsp;&=
nbsp;&nbsp;1613.83&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DQIIELDQTGNQLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1613.858712 from(538.960729,3+) title(Elution%20from%3a%2011=
7%2e51%20to%20117%2e51%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(843)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q843; if (NS4 || IE4) activateEl('=
Q843', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D843&amp;hit=3D1&amp;index=3DIPI%3aIPI0001929=
8&amp;px=3D1"=20=0D
      target=3D_blank>843</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>538.96&nbsp;&nbsp;&nbsp;&nbsp;1613.86&nbsp;&nbsp;&=
nbsp;&nbsp;1613.80&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GAHSVGLMWWMLAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1614.886686 from(539.303387,3+) title(Elution%20from%3a%2011=
7%2e92%20to%20117%2e92%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(844)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q844; if (NS4 || IE4) activateEl('=
Q844', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D844&amp;hit=3D1&amp;index=3DIPI%3aIPI0000608=
6&amp;px=3D1"=20=0D
      target=3D_blank>844</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>539.30&nbsp;&nbsp;&nbsp;&nbsp;1614.89&nbsp;&nbsp;&=
nbsp;&nbsp;1614.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;THLEWIVMWKCL</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1614.896520 from(539.306665,3+) title(Elution%20from%3a%205%=
2e3%20to%205%2e3%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3=
a%20%201%20%20) query(845)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q845; if (NS4 || IE4) activateEl('=
Q845', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D845&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>845</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>539.31&nbsp;&=
nbsp;&nbsp;&nbsp;1614.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1620.917394 from(541.313623,3+) title(Elution%20from%3a%2079=
%2e22%20to%2079%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(847)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q847; if (NS4 || IE4) activateEl('=
Q847', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D847&amp;hit=3D1&amp;index=3DIPI%3aIPI0003301=
7&amp;px=3D1"=20=0D
      target=3D_blank>847</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>541.31&nbsp;&nbsp;&nbsp;&nbsp;1620.92&nbsp;&nbsp;&=
nbsp;&nbsp;1620.83&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HNRPLLSGVSDAEAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1622.931644 from(812.473647,2+) title(Elution%20from%3a%2043=
%2e99%20to%2043%2e99%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(848)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q848; if (NS4 || IE4) activateEl('=
Q848', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D848&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>848</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>812.47&nbsp;&=
nbsp;&nbsp;&nbsp;1622.93</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1622.936283 from(541.986586,3+) title(Elution%20from%3a%2043=
%2e09%20to%2043%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(849)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q849; if (NS4 || IE4) activateEl('=
Q849', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D849&amp;hit=3D1&amp;index=3DIPI%3aIPI0001644=
3&amp;px=3D1"=20=0D
      target=3D_blank>849</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>541.99&nbsp;&nbsp;&nbsp;&nbsp;1622.94&nbsp;&nbsp;&=
nbsp;&nbsp;1622.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DMIEIPLPPWQER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1623.933642 from(542.319039,3+) title(Elution%20from%3a%2043=
%2e2%20to%2043%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(850)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q850; if (NS4 || IE4) activateEl('=
Q850', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D850&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>850</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>542.32&nbsp;&=
nbsp;&nbsp;&nbsp;1623.93</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1624.936092 from(542.653189,3+) title(Elution%20from%3a%2043=
%2e54%20to%2043%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(851)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q851; if (NS4 || IE4) activateEl('=
Q851', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D851&amp;hit=3D1&amp;index=3DIPI%3aIPI0001578=
4&amp;px=3D1"=20=0D
      target=3D_blank>851</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>542.65&nbsp;&nbsp;&nbsp;&nbsp;1624.94&nbsp;&nbsp;&=
nbsp;&nbsp;1624.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DREGFFTNGLTLGAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1626.899658 from(543.307711,3+) title(Elution%20from%3a%2023=
%2e38%20to%2023%2e38%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(852)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q852; if (NS4 || IE4) activateEl('=
Q852', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D852&amp;hit=3D1&amp;index=3DIPI%3aIPI0002978=
7&amp;px=3D1"=20=0D
      target=3D_blank>852</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>543.31&nbsp;&nbsp;&nbsp;&nbsp;1626.90&nbsp;&nbsp;&=
nbsp;&nbsp;1626.91&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;QATLTQTLLIQNGAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1627.025379 from(543.349618,3+) title(Elution%20from%3a%2036=
%2e83%20to%2036%2e83%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(853)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q853; if (NS4 || IE4) activateEl('=
Q853', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D853&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>853</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>543.35&nbsp;&=
nbsp;&nbsp;&nbsp;1627.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1628.026134 from(543.683203,3+) title(Elution%20from%3a%2036=
%2e85%20to%2036%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(854)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q854; if (NS4 || IE4) activateEl('=
Q854', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D854&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>854</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>543.68&nbsp;&=
nbsp;&nbsp;&nbsp;1628.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1628.921382 from(543.981619,3+) title(Elution%20from%3a%2022=
%2e34%20to%2022%2e34%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(855)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q855; if (NS4 || IE4) activateEl('=
Q855', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D855&amp;hit=3D1&amp;index=3DIPI%3aIPI0002248=
6&amp;px=3D1"=20=0D
      target=3D_blank>855</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>543.98&nbsp;&nbsp;&nbsp;&nbsp;1628.92&nbsp;&nbsp;&nbs=
p;&nbsp;1628.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;QFDAYPKTLEDFR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1634.880171 from(545.967882,3+) title(Elution%20from%3a%2020=
%2e04%20to%2020%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(857)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q857; if (NS4 || IE4) activateEl('=
Q857', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D857&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>857</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>545.97&nbsp;&=
nbsp;&nbsp;&nbsp;1634.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1634.965268 from(818.490459,2+) title(Elution%20from%3a%2015=
7%2e52%20to%20157%2e52%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(858)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q858; if (NS4 || IE4) activateEl('=
Q858', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D858&amp;hit=3D1&amp;index=3DIPI%3aIPI0002970=
0&amp;px=3D1"=20=0D
      target=3D_blank>858</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>818.49&nbsp;&nbsp;&nbsp;&nbsp;1634.97&nbsp;&nbsp;&=
nbsp;&nbsp;1634.87&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QQQTLRMHIDIPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1639.247529 from(547.423668,3+) title(Elution%20from%3a%2020=
5%2e52%20to%20205%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(859)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q859; if (NS4 || IE4) activateEl('=
Q859', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D859&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>859</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>547.42&nbsp;&=
nbsp;&nbsp;&nbsp;1639.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1640.066176 from(821.040913,2+) title(Elution%20from%3a%2019=
1%2e72%20to%20191%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(861)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q861; if (NS4 || IE4) activateEl('=
Q861', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D861&amp;hit=3D1&amp;index=3DIPI%3aIPI0003126=
2&amp;px=3D1"=20=0D
      target=3D_blank>861</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>821.04&nbsp;&nbsp;&nbsp;&nbsp;1640.07&nbsp;&nbsp;&=
nbsp;&nbsp;1639.93&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FHVFARSPALQVLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1640.902650 from(821.459150,2+) title(Elution%20from%3a%2021=
%2e13%20to%2021%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(863)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q863; if (NS4 || IE4) activateEl('=
Q863', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D863&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>863</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>821.46&nbsp;&=
nbsp;&nbsp;&nbsp;1640.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1640.924556 from(547.982677,3+) title(Elution%20from%3a%2013=
%2e98%20to%2013%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(865)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q865; if (NS4 || IE4) activateEl('=
Q865', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D865&amp;hit=3D1&amp;index=3DIPI%3aIPI0000866=
4&amp;px=3D1"=20=0D
      target=3D_blank>865</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>547.98&nbsp;&nbsp;&nbsp;&nbsp;1640.92&nbsp;&nbsp;&=
nbsp;&nbsp;1640.78&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLDAEDVDVPSPDEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1641.901830 from(821.958740,2+) title(Elution%20from%3a%2021=
%2e42%20to%2021%2e42%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(867)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q867; if (NS4 || IE4) activateEl('=
Q867', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D867&amp;hit=3D1&amp;index=3DIPI%3aIPI0002461=
8&amp;px=3D1"=20=0D
      target=3D_blank>867</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>821.96&nbsp;&nbsp;&nbsp;&nbsp;1641.90&nbsp;&nbsp;&=
nbsp;&nbsp;1641.77&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;CVVLADGFYEWQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1642.903242 from(548.642239,3+) title(Elution%20from%3a%200%=
2e26%20to%200%2e39%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%202%20%20) query(869)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q869; if (NS4 || IE4) activateEl('=
Q869', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D869&amp;hit=3D1&amp;index=3DIPI%3aIPI0000305=
4&amp;px=3D1"=20=0D
      target=3D_blank>869</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>548.64&nbsp;&nbsp;&nbsp;&nbsp;1642.90&nbsp;&nbsp;&=
nbsp;&nbsp;1642.91&nbsp;&nbsp;&nbsp;&nbsp;-0.00&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LVVLATPQVSDSMRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1642.906766 from(822.461208,2+) title(Elution%20from%3a%200%=
2e59%20to%200%2e59%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(870)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q870; if (NS4 || IE4) activateEl('=
Q870', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D870&amp;hit=3D1&amp;index=3DIPI%3aIPI0000305=
4&amp;px=3D1"=20=0D
      target=3D_blank>870</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>822.46&nbsp;&nbsp;&nbsp;&nbsp;1642.91&nbsp;&nbsp;&=
nbsp;&nbsp;1642.91&nbsp;&nbsp;&nbsp;&nbsp;-0.00&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;LVVLATPQVSDSMRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1643.362719 from(548.795398,3+) title(Elution%20from%3a%201%=
2e03%20to%201%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(871)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q871; if (NS4 || IE4) activateEl('=
Q871', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D871&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>871</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>548.80&nbsp;&=
nbsp;&nbsp;&nbsp;1643.36</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1643.894133 from(548.972536,3+) title(Elution%20from%3a%206%=
2e38%20to%206%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(872)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q872; if (NS4 || IE4) activateEl('=
Q872', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D872&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>872</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>548.97&nbsp;&=
nbsp;&nbsp;&nbsp;1643.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1643.906859 from(548.976778,3+) title(Elution%20from%3a%202%=
2e13%20to%202%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(874)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q874; if (NS4 || IE4) activateEl('=
Q874', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D874&amp;hit=3D1&amp;index=3DIPI%3aIPI0003312=
1&amp;px=3D1"=20=0D
      target=3D_blank>874</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>548.98&nbsp;&nbsp;&nbsp;&nbsp;1643.91&nbsp;&nbsp;&=
nbsp;&nbsp;1643.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;APNCSPRSAIGGSSQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1643.919648 from(822.967649,2+) title(Elution%20from%3a%206%=
2e67%20to%206%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(875)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q875; if (NS4 || IE4) activateEl('=
Q875', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D875&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>875</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>822.97&nbsp;&=
nbsp;&nbsp;&nbsp;1643.92</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1644.863319 from(549.295598,3+) title(Elution%20from%3a%204%=
2e34%20to%204%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(876)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q876; if (NS4 || IE4) activateEl('=
Q876', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D876&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>876</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>549.30&nbsp;&=
nbsp;&nbsp;&nbsp;1644.86</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1644.896841 from(549.306772,3+) title(Elution%20from%3a%207%=
2e7%20to%207%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3=
a%20%201%20%20) query(877)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q877; if (NS4 || IE4) activateEl('=
Q877', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D877&amp;hit=3D1&amp;index=3DIPI%3aIPI0000094=
6&amp;px=3D1"=20=0D
      target=3D_blank>877</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>549.31&nbsp;&nbsp;&nbsp;&nbsp;1644.90&nbsp;&nbsp;&=
nbsp;&nbsp;1644.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RHFLPAPALCPNPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1644.910074 from(823.462862,2+) title(Elution%20from%3a%206%=
2e77%20to%206%2e77%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(878)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q878; if (NS4 || IE4) activateEl('=
Q878', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D878&amp;hit=3D1&amp;index=3DIPI%3aIPI0001075=
0&amp;px=3D1"=20=0D
      target=3D_blank>878</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>823.46&nbsp;&nbsp;&nbsp;&nbsp;1644.91&nbsp;&nbsp;&=
nbsp;&nbsp;1644.92&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VFTYIFILEMLLK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1647.867176 from(824.941413,2+) title(Elution%20from%3a%2029=
%2e17%20to%2029%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(879)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q879; if (NS4 || IE4) activateEl('=
Q879', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D879&amp;hit=3D1&amp;index=3DIPI%3aIPI0001818=
0&amp;px=3D1"=20=0D
      target=3D_blank>879</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>824.94&nbsp;&nbsp;&nbsp;&nbsp;1647.87&nbsp;&nbsp;&=
nbsp;&nbsp;1647.73&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FGYVDFESAEDLEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1649.898112 from(825.956881,2+) title(Elution%20from%3a%2012=
%2e74%20to%2012%2e74%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(881)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q881; if (NS4 || IE4) activateEl('=
Q881', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D881&amp;hit=3D1&amp;index=3DIPI%3aIPI0000939=
3&amp;px=3D1"=20=0D
      target=3D_blank>881</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>825.96&nbsp;&nbsp;&nbsp;&nbsp;1649.90&nbsp;&nbsp;&=
nbsp;&nbsp;1649.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;WLPVYNAEVVAAYR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1651.033860 from(551.352445,3+) title(Elution%20from%3a%2046=
%2e26%20to%2046%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(883)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q883; if (NS4 || IE4) activateEl('=
Q883', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D883&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>883</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.35&nbsp;&=
nbsp;&nbsp;&nbsp;1651.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1651.999443 from(551.674306,3+) title(Elution%20from%3a%2046=
%2e54%20to%2046%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(884)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q884; if (NS4 || IE4) activateEl('=
Q884', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D884&amp;hit=3D1&amp;index=3DIPI%3aIPI0000056=
4&amp;px=3D1"=20=0D
      target=3D_blank>884</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>551.67&nbsp;&nbsp;&nbsp;&nbsp;1652.00&nbsp;&nbsp;&=
nbsp;&nbsp;1651.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DVSFSLASLPVSFRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1652.797794 from(551.940423,3+) title(Elution%20from%3a%2039=
%2e05%20to%2039%2e05%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(885)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q885; if (NS4 || IE4) activateEl('=
Q885', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D885&amp;hit=3D1&amp;index=3DIPI%3aIPI0001652=
7&amp;px=3D1"=20=0D
      target=3D_blank>885</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>551.94&nbsp;&nbsp;&nbsp;&nbsp;1652.80&nbsp;&nbsp;&=
nbsp;&nbsp;1652.81&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TQEARLPSSEPDAPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1652.810766 from(551.944747,3+) title(Elution%20from%3a%2036=
%2e02%20to%2036%2e02%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(886)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q886; if (NS4 || IE4) activateEl('=
Q886', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D886&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>886</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.94&nbsp;&=
nbsp;&nbsp;&nbsp;1652.81</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1652.821233 from(551.948236,3+) title(Elution%20from%3a%2057=
%2e46%20to%2057%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(887)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q887; if (NS4 || IE4) activateEl('=
Q887', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D887&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>887</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.95&nbsp;&=
nbsp;&nbsp;&nbsp;1652.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1652.830446 from(551.951307,3+) title(Elution%20from%3a%2045=
%2e1%20to%2045%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(888)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q888; if (NS4 || IE4) activateEl('=
Q888', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D888&amp;hit=3D1&amp;index=3DIPI%3aIPI0000446=
3&amp;px=3D1"=20=0D
      target=3D_blank>888</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>551.95&nbsp;&nbsp;&nbsp;&nbsp;1652.83&nbsp;&nbsp;&=
nbsp;&nbsp;1652.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QKTVEITDSTMCPK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1652.836098 from(551.953191,3+) title(Elution%20from%3a%2042=
%2e06%20to%2042%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(889)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q889; if (NS4 || IE4) activateEl('=
Q889', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D889&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>889</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.95&nbsp;&=
nbsp;&nbsp;&nbsp;1652.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1652.849400 from(551.957625,3+) title(Elution%20from%3a%2054=
%2e25%20to%2054%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(890)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q890; if (NS4 || IE4) activateEl('=
Q890', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D890&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>890</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.96&nbsp;&=
nbsp;&nbsp;&nbsp;1652.85</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1652.851617 from(551.958364,3+) title(Elution%20from%3a%2051=
%2e18%20to%2051%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(891)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q891; if (NS4 || IE4) activateEl('=
Q891', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D891&amp;hit=3D1&amp;index=3DIPI%3aIPI0001196=
3&amp;px=3D1"=20=0D
      target=3D_blank>891</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>551.96&nbsp;&nbsp;&nbsp;&nbsp;1652.85&nbsp;&nbsp;&=
nbsp;&nbsp;1652.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HDMLTRQVDHVFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1652.879931 from(551.967802,3+) title(Elution%20from%3a%2048=
%2e15%20to%2048%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(892)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q892; if (NS4 || IE4) activateEl('=
Q892', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D892&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>892</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.97&nbsp;&=
nbsp;&nbsp;&nbsp;1652.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1653.840573 from(552.288016,3+) title(Elution%20from%3a%2039=
%2e94%20to%2039%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(894)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q894; if (NS4 || IE4) activateEl('=
Q894', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D894&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>894</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>552.29&nbsp;&=
nbsp;&nbsp;&nbsp;1653.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1653.842193 from(552.288556,3+) title(Elution%20from%3a%2036=
%2e91%20to%2036%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(895)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q895; if (NS4 || IE4) activateEl('=
Q895', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D895&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>895</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>552.29&nbsp;&=
nbsp;&nbsp;&nbsp;1653.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1653.854715 from(552.292730,3+) title(Elution%20from%3a%2043=
%2e04%20to%2043%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(896)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q896; if (NS4 || IE4) activateEl('=
Q896', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D896&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>896</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>552.29&nbsp;&=
nbsp;&nbsp;&nbsp;1653.85</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1653.859875 from(552.294450,3+) title(Elution%20from%3a%2046=
%2e13%20to%2046%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(897)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q897; if (NS4 || IE4) activateEl('=
Q897', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D897&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>897</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>552.29&nbsp;&=
nbsp;&nbsp;&nbsp;1653.86</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1653.873630 from(552.299035,3+) title(Elution%20from%3a%2049=
%2e21%20to%2049%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(898)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q898; if (NS4 || IE4) activateEl('=
Q898', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D898&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>898</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>552.30&nbsp;&=
nbsp;&nbsp;&nbsp;1653.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1653.888213 from(552.303896,3+) title(Elution%20from%3a%2052=
%2e24%20to%2052%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(899)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q899; if (NS4 || IE4) activateEl('=
Q899', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D899&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>899</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>552.30&nbsp;&=
nbsp;&nbsp;&nbsp;1653.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1653.917736 from(552.313737,3+) title(Elution%20from%3a%2032=
%2e52%20to%2032%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(900)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q900; if (NS4 || IE4) activateEl('=
Q900', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D900&amp;hit=3D1&amp;index=3DIPI%3aIPI0001337=
5&amp;px=3D1"=20=0D
      target=3D_blank>900</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>552.31&nbsp;&nbsp;&nbsp;&nbsp;1653.92&nbsp;&nbsp;&=
nbsp;&nbsp;1653.93&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LWGRQIPGTTSALVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1654.010268 from(552.344581,3+) title(Elution%20from%3a%2024=
%2e25%20to%2024%2e25%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(901)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q901; if (NS4 || IE4) activateEl('=
Q901', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D901&amp;hit=3D1&amp;index=3DIPI%3aIPI0001049=
1&amp;px=3D1"=20=0D
      target=3D_blank>901</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>552.34&nbsp;&nbsp;&nbsp;&nbsp;1654.01&nbsp;&nbsp;&=
nbsp;&nbsp;1653.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FNPKFITTVGIDFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1654.026324 from(828.020987,2+) title(Elution%20from%3a%2025=
%2e24%20to%2025%2e24%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(902)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q902; if (NS4 || IE4) activateEl('=
Q902', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D902&amp;hit=3D1&amp;index=3DIPI%3aIPI0000442=
2&amp;px=3D1"=20=0D
      target=3D_blank>902</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>828.02&nbsp;&nbsp;&nbsp;&nbsp;1654.03&nbsp;&nbsp;&=
nbsp;&nbsp;1653.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LTQNVDLLALLKWK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1655.028078 from(552.683851,3+) title(Elution%20from%3a%2024=
%2e51%20to%2024%2e51%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(903)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q903; if (NS4 || IE4) activateEl('=
Q903', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D903&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>903</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>552.68&nbsp;&=
nbsp;&nbsp;&nbsp;1655.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1655.032232 from(828.523941,2+) title(Elution%20from%3a%2025=
%2e31%20to%2025%2e44%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(904)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q904; if (NS4 || IE4) activateEl('=
Q904', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D904&amp;hit=3D1&amp;index=3DIPI%3aIPI0000434=
3&amp;px=3D1"=20=0D
      target=3D_blank>904</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>828.52&nbsp;&nbsp;&nbsp;&nbsp;1655.03&nbsp;&nbsp;&=
nbsp;&nbsp;1654.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GAGGQGKLDVTILSPSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1656.040803 from(553.021426,3+) title(Elution%20from%3a%2025=
%2e16%20to%2025%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(905)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q905; if (NS4 || IE4) activateEl('=
Q905', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D905&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>905</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>553.02&nbsp;&=
nbsp;&nbsp;&nbsp;1656.04</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1656.985173 from(553.336216,3+) title(Elution%20from%3a%2025=
%2e55%20to%2025%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(906)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q906; if (NS4 || IE4) activateEl('=
Q906', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D906&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>906</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>553.34&nbsp;&=
nbsp;&nbsp;&nbsp;1656.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1657.879695 from(553.634390,3+) title(Elution%20from%3a%204%=
2e45%20to%204%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(907)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q907; if (NS4 || IE4) activateEl('=
Q907', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D907&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>907</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>553.63&nbsp;&=
nbsp;&nbsp;&nbsp;1657.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1657.884483 from(553.635986,3+) title(Elution%20from%3a%201%=
2e34%20to%201%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(908)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q908; if (NS4 || IE4) activateEl('=
Q908', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D908&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>908</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>553.64&nbsp;&=
nbsp;&nbsp;&nbsp;1657.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1658.873139 from(553.965538,3+) title(Elution%20from%3a%204%=
2e65%20to%204%2e65%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(910)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q910; if (NS4 || IE4) activateEl('=
Q910', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D910&amp;hit=3D1&amp;index=3DIPI%3aIPI0000073=
3&amp;px=3D1"=20=0D
      target=3D_blank>910</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>553.97&nbsp;&nbsp;&nbsp;&nbsp;1658.87&nbsp;&nbsp;&=
nbsp;&nbsp;1658.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AGAGPGGPPQKPAPSSQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1658.886162 from(553.969879,3+) title(Elution%20from%3a%201%=
2e41%20to%201%2e41%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(911)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q911; if (NS4 || IE4) activateEl('=
Q911', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D911&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>911</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>553.97&nbsp;&=
nbsp;&nbsp;&nbsp;1658.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1658.963562 from(553.995679,3+) title(Elution%20from%3a%2023=
%2e87%20to%2023%2e87%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(912)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q912; if (NS4 || IE4) activateEl('=
Q912', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D912&amp;hit=3D1&amp;index=3DIPI%3aIPI0002269=
7&amp;px=3D1"=20=0D
      target=3D_blank>912</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>554.00&nbsp;&nbsp;&nbsp;&nbsp;1658.96&nbsp;&nbsp;&=
nbsp;&nbsp;1658.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LARKPNSVVISCGMK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1660.001730 from(554.341735,3+) title(Elution%20from%3a%2029=
%2e14%20to%2029%2e14%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(916)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q916; if (NS4 || IE4) activateEl('=
Q916', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D916&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>916</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>554.34&nbsp;&=
nbsp;&nbsp;&nbsp;1660.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1660.023855 from(554.349110,3+) title(Elution%20from%3a%2020=
%2e77%20to%2020%2e77%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(917)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q917; if (NS4 || IE4) activateEl('=
Q917', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D917&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>917</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>554.35&nbsp;&=
nbsp;&nbsp;&nbsp;1660.02</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1661.014392 from(554.679289,3+) title(Elution%20from%3a%2021=
%2e1%20to%2021%2e1%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(918)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q918; if (NS4 || IE4) activateEl('=
Q918', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D918&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>918</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>554.68&nbsp;&=
nbsp;&nbsp;&nbsp;1661.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1661.957580 from(554.993685,3+) title(Elution%20from%3a%2036=
%2e96%20to%2036%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(919)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q919; if (NS4 || IE4) activateEl('=
Q919', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D919&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>919</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>554.99&nbsp;&=
nbsp;&nbsp;&nbsp;1661.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1661.997852 from(555.007109,3+) title(Elution%20from%3a%2040=
%2e07%20to%2040%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(920)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q920; if (NS4 || IE4) activateEl('=
Q920', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D920&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>920</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>555.01&nbsp;&=
nbsp;&nbsp;&nbsp;1662.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1665.937602 from(556.320359,3+) title(Elution%20from%3a%2040=
%2e15%20to%2040%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(921)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q921; if (NS4 || IE4) activateEl('=
Q921', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D921&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>921</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>556.32&nbsp;&=
nbsp;&nbsp;&nbsp;1665.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1665.945718 from(833.980684,2+) title(Elution%20from%3a%2041=
%2e04%20to%2041%2e04%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(922)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q922; if (NS4 || IE4) activateEl('=
Q922', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D922&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>922</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>833.98&nbsp;&=
nbsp;&nbsp;&nbsp;1665.95</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1666.925172 from(556.649549,3+) title(Elution%20from%3a%2040=
%2e96%20to%2040%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(923)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q923; if (NS4 || IE4) activateEl('=
Q923', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D923&amp;hit=3D1&amp;index=3DIPI%3aIPI0002099=
4&amp;px=3D1"=20=0D
      target=3D_blank>923</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>556.65&nbsp;&nbsp;&nbsp;&nbsp;1666.93&nbsp;&nbsp;&=
nbsp;&nbsp;1666.87&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VMIPVPAGVEDGQTVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1668.864153 from(557.295876,3+) title(Elution%20from%3a%2018=
%2e75%20to%2018%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(924)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q924; if (NS4 || IE4) activateEl('=
Q924', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D924&amp;hit=3D1&amp;index=3DIPI%3aIPI0000497=
0&amp;px=3D1"=20=0D
      target=3D_blank>924</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>557.30&nbsp;&nbsp;&nbsp;&nbsp;1668.86&nbsp;&nbsp;&=
nbsp;&nbsp;1668.83&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QFWKVYYEHLEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1668.875262 from(835.445456,2+) title(Elution%20from%3a%2014=
%2e81%20to%2014%2e81%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(926)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q926; if (NS4 || IE4) activateEl('=
Q926', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D926&amp;hit=3D1&amp;index=3DIPI%3aIPI0001983=
6&amp;px=3D1"=20=0D
      target=3D_blank>926</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>835.45&nbsp;&nbsp;&nbsp;&nbsp;1668.88&nbsp;&nbsp;&=
nbsp;&nbsp;1668.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IFTYRDQNTGWIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1668.993728 from(835.504689,2+) title(Elution%20from%3a%2011=
6%2e63%20to%20116%2e63%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(927)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q927; if (NS4 || IE4) activateEl('=
Q927', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D927&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>927</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>835.50&nbsp;&=
nbsp;&nbsp;&nbsp;1668.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1669.867926 from(835.941788,2+) title(Elution%20from%3a%2018=
%2e37%20to%2018%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(928)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q928; if (NS4 || IE4) activateEl('=
Q928', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D928&amp;hit=3D1&amp;index=3DIPI%3aIPI0003317=
9&amp;px=3D1"=20=0D
      target=3D_blank>928</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>835.94&nbsp;&nbsp;&nbsp;&nbsp;1669.87&nbsp;&nbsp;&=
nbsp;&nbsp;1669.95&nbsp;&nbsp;&nbsp;&nbsp;-0.08&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;LSPPRIFQTVTNGLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1670.988810 from(558.004095,3+) title(Elution%20from%3a%2025=
%2e08%20to%2025%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(929)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q929; if (NS4 || IE4) activateEl('=
Q929', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D929&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>929</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>558.00&nbsp;&=
nbsp;&nbsp;&nbsp;1670.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1671.901269 from(558.308248,3+) title(Elution%20from%3a%2014=
%2e73%20to%2014%2e73%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(931)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q931; if (NS4 || IE4) activateEl('=
Q931', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D931&amp;hit=3D1&amp;index=3DIPI%3aIPI0001504=
8&amp;px=3D1"=20=0D
      target=3D_blank>931</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>558.31&nbsp;&nbsp;&nbsp;&nbsp;1671.90&nbsp;&nbsp;&=
nbsp;&nbsp;1671.98&nbsp;&nbsp;&nbsp;&nbsp;-0.08&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;STFLAQFLLVLHRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1671.961074 from(558.328183,3+) title(Elution%20from%3a%2028=
%2e08%20to%2028%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(933)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q933; if (NS4 || IE4) activateEl('=
Q933', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D933&amp;hit=3D1&amp;index=3DIPI%3aIPI0002621=
4&amp;px=3D1"=20=0D
      target=3D_blank>933</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>558.33&nbsp;&nbsp;&nbsp;&nbsp;1671.96&nbsp;&nbsp;&nbs=
p;&nbsp;1671.92&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp;0&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;AWPLHLLQGTAVPGGR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1672.010943 from(558.344806,3+) title(Elution%20from%3a%2031=
%2e43%20to%2031%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(934)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q934; if (NS4 || IE4) activateEl('=
Q934', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D934&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>934</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>558.34&nbsp;&=
nbsp;&nbsp;&nbsp;1672.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1672.024620 from(558.349365,3+) title(Elution%20from%3a%2025=
%2e05%20to%2025%2e05%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(935)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q935; if (NS4 || IE4) activateEl('=
Q935', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D935&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>935</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>558.35&nbsp;&=
nbsp;&nbsp;&nbsp;1672.02</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1672.954444 from(837.485047,2+) title(Elution%20from%3a%2027=
%2e98%20to%2027%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(936)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q936; if (NS4 || IE4) activateEl('=
Q936', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D936&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>936</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>837.49&nbsp;&=
nbsp;&nbsp;&nbsp;1672.95</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1672.955214 from(558.659563,3+) title(Elution%20from%3a%2028=
%2e7%20to%2028%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(937)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q937; if (NS4 || IE4) activateEl('=
Q937', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D937&amp;hit=3D1&amp;index=3DIPI%3aIPI0001687=
7&amp;px=3D1"=20=0D
      target=3D_blank>937</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>558.66&nbsp;&nbsp;&nbsp;&nbsp;1672.96&nbsp;&nbsp;&=
nbsp;&nbsp;1672.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ESWINALNSAITRAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1673.941638 from(558.988371,3+) title(Elution%20from%3a%2028=
%2e21%20to%2028%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(940)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q940; if (NS4 || IE4) activateEl('=
Q940', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D940&amp;hit=3D1&amp;index=3DIPI%3aIPI0003230=
8&amp;px=3D1"=20=0D
      target=3D_blank>940</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>558.99&nbsp;&nbsp;&nbsp;&nbsp;1673.94&nbsp;&nbsp;&=
nbsp;&nbsp;1673.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FGNTIKVPTPLCTAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1674.034152 from(838.024901,2+) title(Elution%20from%3a%2012=
8%2e51%20to%20128%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(941)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q941; if (NS4 || IE4) activateEl('=
Q941', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D941&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>941</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>838.02&nbsp;&=
nbsp;&nbsp;&nbsp;1674.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1674.864279 from(559.295918,3+) title(Elution%20from%3a%2024=
%2e2%20to%2024%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(942)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q942; if (NS4 || IE4) activateEl('=
Q942', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D942&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>942</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>559.30&nbsp;&=
nbsp;&nbsp;&nbsp;1674.86</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1674.868028 from(838.441839,2+) title(Elution%20from%3a%2024=
%2e15%20to%2024%2e15%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(943)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q943; if (NS4 || IE4) activateEl('=
Q943', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D943&amp;hit=3D1&amp;index=3DIPI%3aIPI0001083=
2&amp;px=3D1"=20=0D
      target=3D_blank>943</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>838.44&nbsp;&nbsp;&nbsp;&nbsp;1674.87&nbsp;&nbsp;&=
nbsp;&nbsp;1674.97&nbsp;&nbsp;&nbsp;&nbsp;-0.11&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LTMALSVPLLYSLVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1675.029702 from(838.522676,2+) title(Elution%20from%3a%2016=
1%2e35%20to%20161%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(944)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q944; if (NS4 || IE4) activateEl('=
Q944', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D944&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>944</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>838.52&nbsp;&=
nbsp;&nbsp;&nbsp;1675.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1675.054828 from(838.535239,2+) title(Elution%20from%3a%2012=
8%2e84%20to%20128%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(945)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q945; if (NS4 || IE4) activateEl('=
Q945', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D945&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>945</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>838.54&nbsp;&=
nbsp;&nbsp;&nbsp;1675.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1675.875256 from(838.945453,2+) title(Elution%20from%3a%2024=
%2e54%20to%2024%2e54%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(946)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q946; if (NS4 || IE4) activateEl('=
Q946', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D946&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>946</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>838.95&nbsp;&=
nbsp;&nbsp;&nbsp;1675.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1676.063170 from(839.039410,2+) title(Elution%20from%3a%2016=
1%2e22%20to%20161%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(947)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q947; if (NS4 || IE4) activateEl('=
Q947', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D947&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>947</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>839.04&nbsp;&=
nbsp;&nbsp;&nbsp;1676.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1685.979264 from(563.000913,3+) title(Elution%20from%3a%2070=
%2e08%20to%2070%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(950)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q950; if (NS4 || IE4) activateEl('=
Q950', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D950&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>950</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>563.00&nbsp;&=
nbsp;&nbsp;&nbsp;1685.98</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1686.017604 from(563.013693,3+) title(Elution%20from%3a%2066=
%2e67%20to%2066%2e67%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(951)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q951; if (NS4 || IE4) activateEl('=
Q951', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D951&amp;hit=3D1&amp;index=3DIPI%3aIPI0001752=
2&amp;px=3D1"=20=0D
      target=3D_blank>951</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>563.01&nbsp;&nbsp;&nbsp;&nbsp;1686.02&nbsp;&nbsp;&nbs=
p;&nbsp;1685.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;RLEVPYVNGSVGGPSR</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1686.999222 from(563.340899,3+) title(Elution%20from%3a%2021=
%2e31%20to%2021%2e31%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(952)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q952; if (NS4 || IE4) activateEl('=
Q952', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D952&amp;hit=3D1&amp;index=3DIPI%3aIPI0002975=
5&amp;px=3D1"=20=0D
      target=3D_blank>952</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>563.34&nbsp;&nbsp;&nbsp;&nbsp;1687.00&nbsp;&nbsp;&=
nbsp;&nbsp;1686.92&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VSEDVAIGTKVGNVTAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1687.914708 from(563.646061,3+) title(Elution%20from%3a%207%=
2e67%20to%207%2e67%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(953)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q953; if (NS4 || IE4) activateEl('=
Q953', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D953&amp;hit=3D1&amp;index=3DIPI%3aIPI0001277=
2&amp;px=3D1"=20=0D
      target=3D_blank>953</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>563.65&nbsp;&nbsp;&nbsp;&nbsp;1687.91&nbsp;&nbsp;&=
nbsp;&nbsp;1687.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ASGNYATVISHNPETK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1687.960875 from(563.661450,3+) title(Elution%20from%3a%2021=
%2e8%20to%2021%2e8%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(954)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q954; if (NS4 || IE4) activateEl('=
Q954', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D954&amp;hit=3D1&amp;index=3DIPI%3aIPI0001569=
2&amp;px=3D1"=20=0D
      target=3D_blank>954</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>563.66&nbsp;&nbsp;&nbsp;&nbsp;1687.96&nbsp;&nbsp;&=
nbsp;&nbsp;1687.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ACHNLLTFNNDTLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1688.942178 from(563.988551,3+) title(Elution%20from%3a%207%=
2e88%20to%207%2e88%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(955)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q955; if (NS4 || IE4) activateEl('=
Q955', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D955&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>955</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>563.99&nbsp;&=
nbsp;&nbsp;&nbsp;1688.94</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1694.942604 from(848.479127,2+) title(Elution%20from%3a%2016=
7%2e42%20to%20167%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(956)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q956; if (NS4 || IE4) activateEl('=
Q956', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D956&amp;hit=3D1&amp;index=3DIPI%3aIPI0000096=
7&amp;px=3D1"=20=0D
      target=3D_blank>956</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>848.48&nbsp;&nbsp;&nbsp;&nbsp;1694.94&nbsp;&nbsp;&=
nbsp;&nbsp;1694.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FMSIAEQMGRILQR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1697.892933 from(566.972136,3+) title(Elution%20from%3a%2038=
%2e45%20to%2038%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(957)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q957; if (NS4 || IE4) activateEl('=
Q957', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D957&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>957</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>566.97&nbsp;&=
nbsp;&nbsp;&nbsp;1697.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1697.920713 from(566.981396,3+) title(Elution%20from%3a%2021=
%2e02%20to%2021%2e02%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(958)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q958; if (NS4 || IE4) activateEl('=
Q958', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D958&amp;hit=3D1&amp;index=3DIPI%3aIPI0001769=
9&amp;px=3D1"=20=0D
      target=3D_blank>958</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>566.98&nbsp;&nbsp;&nbsp;&nbsp;1697.92&nbsp;&nbsp;&=
nbsp;&nbsp;1697.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KVYEGGSNVDQFVTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1697.922429 from(566.981968,3+) title(Elution%20from%3a%208%=
2e14%20to%208%2e14%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(959)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q959; if (NS4 || IE4) activateEl('=
Q959', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D959&amp;hit=3D1&amp;index=3DIPI%3aIPI0001599=
2&amp;px=3D1"=20=0D
      target=3D_blank>959</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>566.98&nbsp;&nbsp;&nbsp;&nbsp;1697.92&nbsp;&nbsp;&=
nbsp;&nbsp;1697.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LPPAAVPSHSDNGPVIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1702.041363 from(568.354946,3+) title(Elution%20from%3a%2040=
%2e55%20to%2040%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(960)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q960; if (NS4 || IE4) activateEl('=
Q960', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D960&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>960</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>568.35&nbsp;&=
nbsp;&nbsp;&nbsp;1702.04</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1702.966062 from(852.490856,2+) title(Elution%20from%3a%2011=
%2e71%20to%2011%2e71%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(961)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q961; if (NS4 || IE4) activateEl('=
Q961', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D961&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>961</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>852.49&nbsp;&=
nbsp;&nbsp;&nbsp;1702.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1706.602536 from(569.875337,3+) title(Elution%20from%3a%2046=
%2e49%20to%2046%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(962)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q962; if (NS4 || IE4) activateEl('=
Q962', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D962&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>962</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>569.88&nbsp;&=
nbsp;&nbsp;&nbsp;1706.60</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1706.623557 from(569.882344,3+) title(Elution%20from%3a%2031=
%2e74%20to%2031%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(963)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q963; if (NS4 || IE4) activateEl('=
Q963', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D963&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>963</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>569.88&nbsp;&=
nbsp;&nbsp;&nbsp;1706.62</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1710.925702 from(856.470676,2+) title(Elution%20from%3a%2017=
5%2e04%20to%20175%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(964)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q964; if (NS4 || IE4) activateEl('=
Q964', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D964&amp;hit=3D1&amp;index=3DIPI%3aIPI0002526=
0&amp;px=3D1"=20=0D
      target=3D_blank>964</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>856.47&nbsp;&nbsp;&nbsp;&nbsp;1710.93&nbsp;&nbsp;&=
nbsp;&nbsp;1710.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ILHECDLQTERLGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1710.960522 from(571.327999,3+) title(Elution%20from%3a%2049=
%2e08%20to%2049%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(965)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q965; if (NS4 || IE4) activateEl('=
Q965', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D965&amp;hit=3D1&amp;index=3DIPI%3aIPI0000518=
3&amp;px=3D1"=20=0D
      target=3D_blank>965</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>571.33&nbsp;&nbsp;&nbsp;&nbsp;1710.96&nbsp;&nbsp;&=
nbsp;&nbsp;1710.98&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LLFAPNLLLDRNQGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1710.962586 from(571.328687,3+) title(Elution%20from%3a%2069=
%2e42%20to%2069%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(966)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q966; if (NS4 || IE4) activateEl('=
Q966', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D966&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>966</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>571.33&nbsp;&=
nbsp;&nbsp;&nbsp;1710.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1711.423358 from(856.719504,2+) title(Elution%20from%3a%2017=
4%2e54%20to%20174%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(967)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q967; if (NS4 || IE4) activateEl('=
Q967', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D967&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>967</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>856.72&nbsp;&=
nbsp;&nbsp;&nbsp;1711.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1717.968705 from(573.664060,3+) title(Elution%20from%3a%2014=
%2e29%20to%2014%2e29%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(968)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q968; if (NS4 || IE4) activateEl('=
Q968', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D968&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>968</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>573.66&nbsp;&=
nbsp;&nbsp;&nbsp;1717.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1718.965203 from(573.996226,3+) title(Elution%20from%3a%2014=
%2e44%20to%2014%2e44%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(969)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q969; if (NS4 || IE4) activateEl('=
Q969', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D969&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>969</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>574.00&nbsp;&=
nbsp;&nbsp;&nbsp;1718.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1719.967557 from(574.330344,3+) title(Elution%20from%3a%2017=
%20to%2017%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3a%20%2=
01%20%20) query(970)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q970; if (NS4 || IE4) activateEl('=
Q970', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D970&amp;hit=3D1&amp;index=3DIPI%3aIPI0001980=
7&amp;px=3D1"=20=0D
      target=3D_blank>970</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>574.33&nbsp;&nbsp;&nbsp;&nbsp;1719.97&nbsp;&nbsp;&=
nbsp;&nbsp;1719.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GLSICSIQIFSDPRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1726.061912 from(864.038781,2+) title(Elution%20from%3a%2065=
%2e93%20to%2065%2e93%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(972)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q972; if (NS4 || IE4) activateEl('=
Q972', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D972&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>972</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>864.04&nbsp;&=
nbsp;&nbsp;&nbsp;1726.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1726.972221 from(576.665232,3+) title(Elution%20from%3a%2055=
%2e14%20to%2055%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(974)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q974; if (NS4 || IE4) activateEl('=
Q974', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D974&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>974</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>576.67&nbsp;&=
nbsp;&nbsp;&nbsp;1726.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1726.994346 from(576.672607,3+) title(Elution%20from%3a%2018=
%2e5%20to%2018%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(975)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q975; if (NS4 || IE4) activateEl('=
Q975', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D975&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>975</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>576.67&nbsp;&=
nbsp;&nbsp;&nbsp;1726.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1727.053746 from(576.692407,3+) title(Elution%20from%3a%2065=
%2e33%20to%2065%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(976)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q976; if (NS4 || IE4) activateEl('=
Q976', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D976&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>976</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>576.69&nbsp;&=
nbsp;&nbsp;&nbsp;1727.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1727.963901 from(576.995792,3+) title(Elution%20from%3a%2055=
%2e03%20to%2055%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(977)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q977; if (NS4 || IE4) activateEl('=
Q977', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D977&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>977</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>577.00&nbsp;&=
nbsp;&nbsp;&nbsp;1727.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1727.971200 from(576.998225,3+) title(Elution%20from%3a%2037=
%2e38%20to%2037%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(978)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q978; if (NS4 || IE4) activateEl('=
Q978', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D978&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>978</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>577.00&nbsp;&=
nbsp;&nbsp;&nbsp;1727.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1727.977882 from(864.996766,2+) title(Elution%20from%3a%2055=
%2e24%20to%2055%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(979)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q979; if (NS4 || IE4) activateEl('=
Q979', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D979&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>979</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>865.00&nbsp;&=
nbsp;&nbsp;&nbsp;1727.98</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1727.989173 from(577.004216,3+) title(Elution%20from%3a%2018=
%2e62%20to%2018%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(980)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q980; if (NS4 || IE4) activateEl('=
Q980', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D980&amp;hit=3D1&amp;index=3DIPI%3aIPI0001823=
3&amp;px=3D1"=20=0D
      target=3D_blank>980</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>577.00&nbsp;&nbsp;&nbsp;&nbsp;1727.99&nbsp;&nbsp;&=
nbsp;&nbsp;1727.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ELLLKPHSYGRFIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1728.980814 from(577.334763,3+) title(Elution%20from%3a%2010=
%2e89%20to%2010%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(981)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q981; if (NS4 || IE4) activateEl('=
Q981', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D981&amp;hit=3D1&amp;index=3DIPI%3aIPI0001874=
4&amp;px=3D1"=20=0D
      target=3D_blank>981</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>577.33&nbsp;&nbsp;&nbsp;&nbsp;1728.98&nbsp;&nbsp;&=
nbsp;&nbsp;1728.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;CLSCILAQQPDRLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1729.976187 from(577.666554,3+) title(Elution%20from%3a%2011=
%2e35%20to%2011%2e35%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(982)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q982; if (NS4 || IE4) activateEl('=
Q982', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D982&amp;hit=3D1&amp;index=3DIPI%3aIPI0000498=
1&amp;px=3D1"=20=0D
      target=3D_blank>982</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>577.67&nbsp;&nbsp;&nbsp;&nbsp;1729.98&nbsp;&nbsp;&=
nbsp;&nbsp;1729.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HQMIHTGKKPHECK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1731.995274 from(578.339583,3+) title(Elution%20from%3a%2030=
%2e49%20to%2030%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(984)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q984; if (NS4 || IE4) activateEl('=
Q984', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D984&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>984</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>578.34&nbsp;&=
nbsp;&nbsp;&nbsp;1732.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1732.992552 from(578.672009,3+) title(Elution%20from%3a%2030=
%2e75%20to%2030%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(985)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q985; if (NS4 || IE4) activateEl('=
Q985', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D985&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>985</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>578.67&nbsp;&=
nbsp;&nbsp;&nbsp;1732.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1736.050599 from(579.691358,3+) title(Elution%20from%3a%2011=
7%2e38%20to%20117%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(986)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q986; if (NS4 || IE4) activateEl('=
Q986', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D986&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>986</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>579.69&nbsp;&=
nbsp;&nbsp;&nbsp;1736.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1736.090326 from(869.052988,2+) title(Elution%20from%3a%2011=
7%2e59%20to%20117%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(987)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q987; if (NS4 || IE4) activateEl('=
Q987', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D987&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>987</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>869.05&nbsp;&=
nbsp;&nbsp;&nbsp;1736.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1737.060546 from(580.028007,3+) title(Elution%20from%3a%2011=
7%2e28%20to%20117%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(988)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q988; if (NS4 || IE4) activateEl('=
Q988', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D988&amp;hit=3D1&amp;index=3DIPI%3aIPI0003054=
1&amp;px=3D1"=20=0D
      target=3D_blank>988</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>580.03&nbsp;&nbsp;&nbsp;&nbsp;1737.06&nbsp;&nbsp;&=
nbsp;&nbsp;1736.93&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TLALSLPGVKDSPSPQQ</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1737.062974 from(869.539312,2+) title(Elution%20from%3a%2011=
7%2e67%20to%20117%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(989)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q989; if (NS4 || IE4) activateEl('=
Q989', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D989&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>989</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>869.54&nbsp;&=
nbsp;&nbsp;&nbsp;1737.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1738.062453 from(580.361976,3+) title(Elution%20from%3a%2011=
7%2e87%20to%20117%2e87%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(990)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q990; if (NS4 || IE4) activateEl('=
Q990', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D990&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>990</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>580.36&nbsp;&=
nbsp;&nbsp;&nbsp;1738.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1741.014582 from(581.346019,3+) title(Elution%20from%3a%2024=
%2e43%20to%2024%2e56%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(992)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q992; if (NS4 || IE4) activateEl('=
Q992', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D992&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>992</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>581.35&nbsp;&=
nbsp;&nbsp;&nbsp;1741.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1741.886658 from(871.951154,2+) title(Elution%20from%3a%2014=
4%2e21%20to%20144%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(993)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q993; if (NS4 || IE4) activateEl('=
Q993', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D993&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>993</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>871.95&nbsp;&=
nbsp;&nbsp;&nbsp;1741.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1743.011336 from(872.513493,2+) title(Elution%20from%3a%2060=
%2e54%20to%2060%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(999)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT>&nbsp;<A=20=0D
      onmouseover=3D"statusString =3D h0_q999; if (NS4 || IE4) activateEl('=
Q999', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D999&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D1=
"=20=0D
      target=3D_blank>999</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>872.51&nbsp;&=
nbsp;&nbsp;&nbsp;1743.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1743.972710 from(872.994180,2+) title(Elution%20from%3a%2061=
%2e01%20to%2061%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1000)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1000; if (NS4 || IE4) activateEl(=
'Q1000', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1000&amp;hit=3D1&amp;index=3DIPI%3aIPI000016=
50&amp;px=3D1"=20=0D
      target=3D_blank>1000</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>872.99&nbsp;&nbsp;&nbsp;&nbsp;1743.97&nbsp;&nbsp;&=
nbsp;&nbsp;1743.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GVDEASADLVVWARTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1743.987156 from(582.336877,3+) title(Elution%20from%3a%2056=
%2e16%20to%2056%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1001)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1001; if (NS4 || IE4) activateEl(=
'Q1001', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1001&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1001</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>582.34&nbsp;=
&nbsp;&nbsp;&nbsp;1743.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1743.988023 from(582.337166,3+) title(Elution%20from%3a%2059=
%2e21%20to%2059%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1002)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1002; if (NS4 || IE4) activateEl(=
'Q1002', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1002&amp;hit=3D1&amp;index=3DIPI%3aIPI000103=
05&amp;px=3D1"=20=0D
      target=3D_blank>1002</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>582.34&nbsp;&nbsp;&nbsp;&nbsp;1743.99&nbsp;&nbsp;&=
nbsp;&nbsp;1743.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SAVSFVLVKTGNLSCY</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1743.998514 from(582.340663,3+) title(Elution%20from%3a%2052=
%2e35%20to%2052%2e35%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1003)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1003; if (NS4 || IE4) activateEl(=
'Q1003', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1003&amp;hit=3D1&amp;index=3DIPI%3aIPI000103=
05&amp;px=3D1"=20=0D
      target=3D_blank>1003</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>582.34&nbsp;&nbsp;&nbsp;&nbsp;1744.00&nbsp;&nbsp;&=
nbsp;&nbsp;1743.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SAVSFVLVKTGNLSCY</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1744.002126 from(582.341867,3+) title(Elution%20from%3a%2062=
%2e39%20to%2062%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1004)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1004; if (NS4 || IE4) activateEl(=
'Q1004', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1004&amp;hit=3D1&amp;index=3DIPI%3aIPI000103=
05&amp;px=3D1"=20=0D
      target=3D_blank>1004</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>582.34&nbsp;&nbsp;&nbsp;&nbsp;1744.00&nbsp;&nbsp;&=
nbsp;&nbsp;1743.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SAVSFVLVKTGNLSCY</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1744.986108 from(582.669861,3+) title(Elution%20from%3a%2060=
%2e05%20to%2060%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1005)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1005; if (NS4 || IE4) activateEl(=
'Q1005', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1005&amp;hit=3D1&amp;index=3DIPI%3aIPI000002=
79&amp;px=3D1"=20=0D
      target=3D_blank>1005</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>582.67&nbsp;&nbsp;&nbsp;&nbsp;1744.99&nbsp;&nbsp;&=
nbsp;&nbsp;1744.85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EDEISLEDLIERER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1755.953538 from(878.984594,2+) title(Elution%20from%3a%209%=
2e6%20to%209%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3=
a%20%201%20%20) query(1006)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1006; if (NS4 || IE4) activateEl(=
'Q1006', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1006&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1006</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>878.98&nbsp;=
&nbsp;&nbsp;&nbsp;1755.95</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1757.072229 from(586.698568,3+) title(Elution%20from%3a%2049=
%2e67%20to%2049%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1008)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1008; if (NS4 || IE4) activateEl(=
'Q1008', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1008&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1008</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>586.70&nbsp;=
&nbsp;&nbsp;&nbsp;1757.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1764.092700 from(589.038725,3+) title(Elution%20from%3a%2021=
%2e47%20to%2021%2e6%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%202%20%20) query(1009)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1009; if (NS4 || IE4) activateEl(=
'Q1009', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1009&amp;hit=3D1&amp;index=3DIPI%3aIPI000090=
32&amp;px=3D1"=20=0D
      target=3D_blank>1009</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>589.04&nbsp;&nbsp;&nbsp;&nbsp;1764.09&nbsp;&nbsp;&nbs=
p;&nbsp;1763.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;LTTDFNVIVEALSKSK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1765.092084 from(589.371853,3+) title(Elution%20from%3a%2021=
%2e83%20to%2021%2e83%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1010)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1010; if (NS4 || IE4) activateEl(=
'Q1010', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1010&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1010</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>589.37&nbsp;=
&nbsp;&nbsp;&nbsp;1765.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1768.929376 from(885.472513,2+) title(Elution%20from%3a%2016=
%2e69%20to%2016%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1011)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1011; if (NS4 || IE4) activateEl(=
'Q1011', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1011&amp;hit=3D1&amp;index=3DIPI%3aIPI000229=
56&amp;px=3D1"=20=0D
      target=3D_blank>1011</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>885.47&nbsp;&nbsp;&nbsp;&nbsp;1768.93&nbsp;&nbsp;&=
nbsp;&nbsp;1768.87&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YLEETGASAVPTWAFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1768.935058 from(885.475354,2+) title(Elution%20from%3a%2021=
%2e98%20to%2021%2e98%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(1012)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1012; if (NS4 || IE4) activateEl(=
'Q1012', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1012&amp;hit=3D1&amp;index=3DIPI%3aIPI000108=
66&amp;px=3D1"=20=0D
      target=3D_blank>1012</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>885.48&nbsp;&nbsp;&nbsp;&nbsp;1768.94&nbsp;&nbsp;&=
nbsp;&nbsp;1768.86&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LMPMFIMVMPGMISR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1768.945485 from(590.656320,3+) title(Elution%20from%3a%2020=
%2e9%20to%2020%2e9%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(1013)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1013; if (NS4 || IE4) activateEl(=
'Q1013', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1013&amp;hit=3D1&amp;index=3DIPI%3aIPI000075=
35&amp;px=3D1"=20=0D
      target=3D_blank>1013</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>590.66&nbsp;&nbsp;&nbsp;&nbsp;1768.95&nbsp;&nbsp;&=
nbsp;&nbsp;1768.95&nbsp;&nbsp;&nbsp;&nbsp;-0.00&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DIPLPEELIFIVDEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1769.932586 from(885.974118,2+) title(Elution%20from%3a%2016=
%2e94%20to%2016%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1015)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1015; if (NS4 || IE4) activateEl(=
'Q1015', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1015&amp;hit=3D1&amp;index=3DIPI%3aIPI000218=
12&amp;px=3D1"=20=0D
      target=3D_blank>1015</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>885.97&nbsp;&nbsp;&nbsp;&nbsp;1769.93&nbsp;&nbsp;&=
nbsp;&nbsp;1769.96&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LSGPSLKMPSLEISAPK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1769.944852 from(885.980251,2+) title(Elution%20from%3a%2022=
%2e09%20to%2022%2e09%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1016)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1016; if (NS4 || IE4) activateEl(=
'Q1016', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1016&amp;hit=3D1&amp;index=3DIPI%3aIPI000028=
96&amp;px=3D1"=20=0D
      target=3D_blank>1016</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>885.98&nbsp;&nbsp;&nbsp;&nbsp;1769.94&nbsp;&nbsp;&=
nbsp;&nbsp;1769.88&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LFIGGLSFETTDDSLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1769.957304 from(590.993593,3+) title(Elution%20from%3a%2020=
%2e97%20to%2020%2e97%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1017)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1017; if (NS4 || IE4) activateEl(=
'Q1017', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1017&amp;hit=3D1&amp;index=3DIPI%3aIPI000293=
19&amp;px=3D1"=20=0D
      target=3D_blank>1017</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>590.99&nbsp;&nbsp;&nbsp;&nbsp;1769.96&nbsp;&nbsp;&=
nbsp;&nbsp;1769.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GFDNAMELVKNMTER&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1769.957655 from(590.993710,3+) title(Elution%20from%3a%2016=
%2e61%20to%2016%2e61%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1018)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1018; if (NS4 || IE4) activateEl(=
'Q1018', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1018&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1018</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>590.99&nbsp;=
&nbsp;&nbsp;&nbsp;1769.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1769.962218 from(590.995231,3+) title(Elution%20from%3a%2028=
%2e58%20to%2028%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1019)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1019; if (NS4 || IE4) activateEl(=
'Q1019', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1019&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1019</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>591.00&nbsp;=
&nbsp;&nbsp;&nbsp;1769.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1770.926488 from(886.471069,2+) title(Elution%20from%3a%2022=
%2e19%20to%2022%2e19%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1021)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1021; if (NS4 || IE4) activateEl(=
'Q1021', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1021&amp;hit=3D1&amp;index=3DIPI%3aIPI000049=
10&amp;px=3D1"=20=0D
      target=3D_blank>1021</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>886.47&nbsp;&nbsp;&nbsp;&nbsp;1770.93&nbsp;&nbsp;&=
nbsp;&nbsp;1770.82&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IYENVSMNCVCRAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1770.985614 from(591.336363,3+) title(Elution%20from%3a%2029=
%2e09%20to%2029%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1022)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1022; if (NS4 || IE4) activateEl(=
'Q1022', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1022&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1022</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>591.34&nbsp;=
&nbsp;&nbsp;&nbsp;1770.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1771.041987 from(591.355154,3+) title(Elution%20from%3a%2016=
%2e27%20to%2016%2e4%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%202%20%20) query(1023)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1023; if (NS4 || IE4) activateEl(=
'Q1023', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1023&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1023</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>591.36&nbsp;=
&nbsp;&nbsp;&nbsp;1771.04</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1771.999158 from(591.674211,3+) title(Elution%20from%3a%2017=
%2e44%20to%2017%2e57%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(1024)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1024; if (NS4 || IE4) activateEl(=
'Q1024', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1024&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
42&amp;px=3D1"=20=0D
      target=3D_blank>1024</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>591.67&nbsp;&nbsp;&nbsp;&nbsp;1772.00&nbsp;&nbsp;&=
nbsp;&nbsp;1771.93&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VPLQGFAALEGMNGIQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1773.009228 from(592.010901,3+) title(Elution%20from%3a%2014=
%2e47%20to%2014%2e6%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%202%20%20) query(1025)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1025; if (NS4 || IE4) activateEl(=
'Q1025', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1025&amp;hit=3D1&amp;index=3DIPI%3aIPI000068=
72&amp;px=3D1"=20=0D
      target=3D_blank>1025</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>592.01&nbsp;&nbsp;&nbsp;&nbsp;1773.01&nbsp;&nbsp;&=
nbsp;&nbsp;1772.92&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;YHLLLHEIENHLDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1776.394797 from(593.139424,3+) title(Elution%20from%3a%2065=
%2e57%20to%2065%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1026)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1026; if (NS4 || IE4) activateEl(=
'Q1026', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1026&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1026</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>593.14&nbsp;=
&nbsp;&nbsp;&nbsp;1776.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1776.557307 from(593.193594,3+) title(Elution%20from%3a%2077=
%2e8%20to%2077%2e8%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1027)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1027; if (NS4 || IE4) activateEl(=
'Q1027', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1027&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1027</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>593.19&nbsp;=
&nbsp;&nbsp;&nbsp;1776.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1777.968843 from(593.664106,3+) title(Elution%20from%3a%2066=
%2e2%20to%2066%2e2%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(1028)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1028; if (NS4 || IE4) activateEl(=
'Q1028', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1028&amp;hit=3D1&amp;index=3DIPI%3aIPI000030=
23&amp;px=3D1"=20=0D
      target=3D_blank>1028</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>593.66&nbsp;&nbsp;&nbsp;&nbsp;1777.97&nbsp;&nbsp;&=
nbsp;&nbsp;1777.99&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TPVLFDIYEIKEAIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1778.891968 from(890.453809,2+) title(Elution%20from%3a%2021=
%2e05%20to%2021%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1029)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1029; if (NS4 || IE4) activateEl(=
'Q1029', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1029&amp;hit=3D1&amp;index=3DIPI%3aIPI000274=
33&amp;px=3D1"=20=0D
      target=3D_blank>1029</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>890.45&nbsp;&nbsp;&nbsp;&nbsp;1778.89&nbsp;&nbsp;&=
nbsp;&nbsp;1778.92&nbsp;&nbsp;&nbsp;&nbsp;-0.03&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;EYGGLDVLVNNAGIAFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.026301 from(594.016592,3+) title(Elution%20from%3a%2093=
%2e44%20to%2093%2e44%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1030)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1030; if (NS4 || IE4) activateEl(=
'Q1030', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1030&amp;hit=3D1&amp;index=3DIPI%3aIPI000158=
28&amp;px=3D1"=20=0D
      target=3D_blank>1030</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>594.02&nbsp;&nbsp;&nbsp;&nbsp;1779.03&nbsp;&nbsp;&=
nbsp;&nbsp;1778.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NGDILNDSHAEVIARR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.033294 from(594.018923,3+) title(Elution%20from%3a%2033=
%2e94%20to%2033%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1031)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1031; if (NS4 || IE4) activateEl(=
'Q1031', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1031&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1031</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.02&nbsp;=
&nbsp;&nbsp;&nbsp;1779.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.043704 from(594.022393,3+) title(Elution%20from%3a%2096=
%2e95%20to%2096%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1032)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1032; if (NS4 || IE4) activateEl(=
'Q1032', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1032&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1032</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.02&nbsp;=
&nbsp;&nbsp;&nbsp;1779.04</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.072660 from(594.032045,3+) title(Elution%20from%3a%2013=
2%2e3%20to%20132%2e3%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1033)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1033; if (NS4 || IE4) activateEl(=
'Q1033', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1033&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1033</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.03&nbsp;=
&nbsp;&nbsp;&nbsp;1779.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.074400 from(594.032625,3+) title(Elution%20from%3a%2074=
%2e63%20to%2074%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1034)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1034; if (NS4 || IE4) activateEl(=
'Q1034', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1034&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1034</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.03&nbsp;=
&nbsp;&nbsp;&nbsp;1779.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.076311 from(594.033262,3+) title(Elution%20from%3a%2010=
1%2e05%20to%20101%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1035)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1035; if (NS4 || IE4) activateEl(=
'Q1035', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1035&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1035</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.03&nbsp;=
&nbsp;&nbsp;&nbsp;1779.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.086316 from(594.036597,3+) title(Elution%20from%3a%2012=
8%2e01%20to%20128%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1036)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1036; if (NS4 || IE4) activateEl(=
'Q1036', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1036&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1036</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.04&nbsp;=
&nbsp;&nbsp;&nbsp;1779.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.091032 from(594.038169,3+) title(Elution%20from%3a%2065=
%2e03%20to%2065%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1037)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1037; if (NS4 || IE4) activateEl(=
'Q1037', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1037&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1037</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.04&nbsp;=
&nbsp;&nbsp;&nbsp;1779.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.091344 from(594.038273,3+) title(Elution%20from%3a%2011=
3%2e31%20to%20113%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1038)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1038; if (NS4 || IE4) activateEl(=
'Q1038', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1038&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1038</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.04&nbsp;=
&nbsp;&nbsp;&nbsp;1779.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.093114 from(594.038863,3+) title(Elution%20from%3a%2010=
4%2e1%20to%20104%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1039)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1039; if (NS4 || IE4) activateEl(=
'Q1039', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1039&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1039</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.04&nbsp;=
&nbsp;&nbsp;&nbsp;1779.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.098895 from(594.040790,3+) title(Elution%20from%3a%2011=
6%2e5%20to%20116%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1040)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1040; if (NS4 || IE4) activateEl(=
'Q1040', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1040&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1040</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.04&nbsp;=
&nbsp;&nbsp;&nbsp;1779.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.099012 from(594.040829,3+) title(Elution%20from%3a%2010=
7%2e17%20to%20107%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1041)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1041; if (NS4 || IE4) activateEl(=
'Q1041', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1041&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1041</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.04&nbsp;=
&nbsp;&nbsp;&nbsp;1779.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.099651 from(594.041042,3+) title(Elution%20from%3a%2011=
0%2e22%20to%20110%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1042)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1042; if (NS4 || IE4) activateEl(=
'Q1042', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1042&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1042</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.04&nbsp;=
&nbsp;&nbsp;&nbsp;1779.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.165459 from(594.062978,3+) title(Elution%20from%3a%2011=
9%2e71%20to%20119%2e71%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1043)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1043; if (NS4 || IE4) activateEl(=
'Q1043', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1043&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1043</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.06&nbsp;=
&nbsp;&nbsp;&nbsp;1779.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1779.969678 from(594.331051,3+) title(Elution%20from%3a%2010=
%2e04%20to%2010%2e04%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1044)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1044; if (NS4 || IE4) activateEl(=
'Q1044', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1044&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1044</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.33&nbsp;=
&nbsp;&nbsp;&nbsp;1779.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.014516 from(594.345997,3+) title(Elution%20from%3a%2023=
%2e14%20to%2023%2e14%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(1045)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1045; if (NS4 || IE4) activateEl(=
'Q1045', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1045&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1045</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.35&nbsp;=
&nbsp;&nbsp;&nbsp;1780.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.078431 from(594.367302,3+) title(Elution%20from%3a%2013=
0%2e21%20to%20130%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1046)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1046; if (NS4 || IE4) activateEl(=
'Q1046', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1046&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1046</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.37&nbsp;=
&nbsp;&nbsp;&nbsp;1780.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.093863 from(594.372446,3+) title(Elution%20from%3a%2011=
6%2e76%20to%20116%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1047)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1047; if (NS4 || IE4) activateEl(=
'Q1047', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1047&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1047</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.37&nbsp;=
&nbsp;&nbsp;&nbsp;1780.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.094328 from(594.372601,3+) title(Elution%20from%3a%2011=
0%2e55%20to%20110%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1048)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1048; if (NS4 || IE4) activateEl(=
'Q1048', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1048&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1048</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.37&nbsp;=
&nbsp;&nbsp;&nbsp;1780.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.101087 from(594.374854,3+) title(Elution%20from%3a%2010=
1%2e3%20to%20101%2e3%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1049)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1049; if (NS4 || IE4) activateEl(=
'Q1049', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1049&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1049</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.37&nbsp;=
&nbsp;&nbsp;&nbsp;1780.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.105257 from(594.376244,3+) title(Elution%20from%3a%2011=
9%2e89%20to%20119%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1050)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1050; if (NS4 || IE4) activateEl(=
'Q1050', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1050&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1050</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.38&nbsp;=
&nbsp;&nbsp;&nbsp;1780.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.105479 from(594.376318,3+) title(Elution%20from%3a%2010=
4%2e42%20to%20104%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1051)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1051; if (NS4 || IE4) activateEl(=
'Q1051', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1051&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1051</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.38&nbsp;=
&nbsp;&nbsp;&nbsp;1780.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.109523 from(594.377666,3+) title(Elution%20from%3a%2010=
7%2e45%20to%20107%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1052)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1052; if (NS4 || IE4) activateEl(=
'Q1052', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1052&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1052</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.38&nbsp;=
&nbsp;&nbsp;&nbsp;1780.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.121400 from(594.381625,3+) title(Elution%20from%3a%2012=
5%2e91%20to%20125%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1053)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1053; if (NS4 || IE4) activateEl(=
'Q1053', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1053&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1053</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.38&nbsp;=
&nbsp;&nbsp;&nbsp;1780.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1780.129305 from(594.384260,3+) title(Elution%20from%3a%2011=
3%2e7%20to%20113%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1054)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1054; if (NS4 || IE4) activateEl(=
'Q1054', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1054&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1054</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.38&nbsp;=
&nbsp;&nbsp;&nbsp;1780.13</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1781.060667 from(594.694714,3+) title(Elution%20from%3a%2011=
5%2e75%20to%20115%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1055)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1055; if (NS4 || IE4) activateEl(=
'Q1055', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1055&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1055</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.69&nbsp;=
&nbsp;&nbsp;&nbsp;1781.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1781.095614 from(594.706363,3+) title(Elution%20from%3a%2010=
8%2e2%20to%20108%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1056)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1056; if (NS4 || IE4) activateEl(=
'Q1056', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1056&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1056</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.71&nbsp;=
&nbsp;&nbsp;&nbsp;1781.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1781.102643 from(594.708706,3+) title(Elution%20from%3a%2010=
1%2e88%20to%20101%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1057)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1057; if (NS4 || IE4) activateEl(=
'Q1057', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1057&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1057</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.71&nbsp;=
&nbsp;&nbsp;&nbsp;1781.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1781.103090 from(594.708855,3+) title(Elution%20from%3a%2010=
4%2e98%20to%20104%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1058)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1058; if (NS4 || IE4) activateEl(=
'Q1058', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1058&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1058</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>594.71&nbsp;=
&nbsp;&nbsp;&nbsp;1781.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1783.087473 from(595.370316,3+) title(Elution%20from%3a%2077=
%2e92%20to%2077%2e92%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1059)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1059; if (NS4 || IE4) activateEl(=
'Q1059', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1059&amp;hit=3D1&amp;index=3DIPI%3aIPI000205=
57&amp;px=3D1"=20=0D
      target=3D_blank>1059</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>595.37&nbsp;&nbsp;&nbsp;&nbsp;1783.09&nbsp;&nbsp;&=
nbsp;&nbsp;1783.02&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AALSGANVLTLIEKDIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1789.016241 from(597.346572,3+) title(Elution%20from%3a%2013=
%2e93%20to%2013%2e93%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1061)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1061; if (NS4 || IE4) activateEl(=
'Q1061', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1061&amp;hit=3D1&amp;index=3DIPI%3aIPI000088=
66&amp;px=3D1"=20=0D
      target=3D_blank>1061</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>597.35&nbsp;&nbsp;&nbsp;&nbsp;1789.02&nbsp;&nbsp;&=
nbsp;&nbsp;1788.95&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GLTSPSQLLTSESIQTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1790.993018 from(896.504334,2+) title(Elution%20from%3a%2028=
%2e16%20to%2028%2e16%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1065)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1065; if (NS4 || IE4) activateEl(=
'Q1065', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1065&amp;hit=3D1&amp;index=3DIPI%3aIPI000261=
71&amp;px=3D1"=20=0D
      target=3D_blank>1065</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>896.50&nbsp;&nbsp;&nbsp;&nbsp;1790.99&nbsp;&nbsp;&=
nbsp;&nbsp;1790.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TMSIDAAELKQLLQSK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1791.006720 from(598.010065,3+) title(Elution%20from%3a%2019=
%2e45%20to%2019%2e45%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1066)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1066; if (NS4 || IE4) activateEl(=
'Q1066', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1066&amp;hit=3D1&amp;index=3DIPI%3aIPI000261=
71&amp;px=3D1"=20=0D
      target=3D_blank>1066</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>598.01&nbsp;&nbsp;&nbsp;&nbsp;1791.01&nbsp;&nbsp;&=
nbsp;&nbsp;1790.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TMSIDAAELKQLLQSK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1791.007836 from(896.511743,2+) title(Elution%20from%3a%2020=
%2e74%20to%2020%2e74%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1067)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1067; if (NS4 || IE4) activateEl(=
'Q1067', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1067&amp;hit=3D1&amp;index=3DIPI%3aIPI000261=
71&amp;px=3D1"=20=0D
      target=3D_blank>1067</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>896.51&nbsp;&nbsp;&nbsp;&nbsp;1791.01&nbsp;&nbsp;&=
nbsp;&nbsp;1790.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TMSIDAAELKQLLQSK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1792.998201 from(598.673892,3+) title(Elution%20from%3a%2072=
%2e69%20to%2072%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1068)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1068; if (NS4 || IE4) activateEl(=
'Q1068', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1068&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1068</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>598.67&nbsp;=
&nbsp;&nbsp;&nbsp;1793.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1793.014485 from(598.679320,3+) title(Elution%20from%3a%2050=
%2e76%20to%2050%2e76%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1069)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1069; if (NS4 || IE4) activateEl(=
'Q1069', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1069&amp;hit=3D1&amp;index=3DIPI%3aIPI000089=
86&amp;px=3D1"=20=0D
      target=3D_blank>1069</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>598.68&nbsp;&nbsp;&nbsp;&nbsp;1793.01&nbsp;&nbsp;&=
nbsp;&nbsp;1792.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;WLLQGIFSTTVLCQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1793.917128 from(598.980201,3+) title(Elution%20from%3a%2024=
%2e64%20to%2024%2e64%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1070)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1070; if (NS4 || IE4) activateEl(=
'Q1070', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1070&amp;hit=3D1&amp;index=3DIPI%3aIPI000238=
16&amp;px=3D1"=20=0D
      target=3D_blank>1070</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>598.98&nbsp;&nbsp;&nbsp;&nbsp;1793.92&nbsp;&nbsp;&=
nbsp;&nbsp;1793.94&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VYDALNVLMAMNIISK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1794.009615 from(599.011030,3+) title(Elution%20from%3a%2050=
%2e22%20to%2050%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1071)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1071; if (NS4 || IE4) activateEl(=
'Q1071', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1071&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1071</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>599.01&nbsp;=
&nbsp;&nbsp;&nbsp;1794.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1794.031650 from(599.018375,3+) title(Elution%20from%3a%2072=
%2e61%20to%2072%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1072)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1072; if (NS4 || IE4) activateEl(=
'Q1072', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1072&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1072</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>599.02&nbsp;=
&nbsp;&nbsp;&nbsp;1794.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1795.006020 from(599.343165,3+) title(Elution%20from%3a%2072=
%2e97%20to%2072%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1073)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1073; if (NS4 || IE4) activateEl(=
'Q1073', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1073&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1073</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>599.34&nbsp;=
&nbsp;&nbsp;&nbsp;1795.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1795.026432 from(599.349969,3+) title(Elution%20from%3a%2040=
%2e88%20to%2040%2e88%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1074)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1074; if (NS4 || IE4) activateEl(=
'Q1074', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1074&amp;hit=3D1&amp;index=3DIPI%3aIPI000271=
57&amp;px=3D1"=20=0D
      target=3D_blank>1074</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>599.35&nbsp;&nbsp;&nbsp;&nbsp;1795.03&nbsp;&nbsp;&=
nbsp;&nbsp;1794.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NASLQDTLEVLQSSYK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1796.247342 from(599.756939,3+) title(Elution%20from%3a%2013=
6%2e54%20to%20136%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1075)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1075; if (NS4 || IE4) activateEl(=
'Q1075', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1075&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1075</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>599.76&nbsp;=
&nbsp;&nbsp;&nbsp;1796.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1797.142832 from(450.293533,4+) title(Elution%20from%3a%204%=
2e4%20to%204%2e4%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3=
a%20%201%20%20) query(1076)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1076; if (NS4 || IE4) activateEl(=
'Q1076', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1076&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1076</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>450.29&nbsp;=
&nbsp;&nbsp;&nbsp;1797.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1804.055454 from(602.359643,3+) title(Elution%20from%3a%2030=
%2e54%20to%2030%2e54%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1077)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1077; if (NS4 || IE4) activateEl(=
'Q1077', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1077&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1077</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>602.36&nbsp;=
&nbsp;&nbsp;&nbsp;1804.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1805.063364 from(602.695613,3+) title(Elution%20from%3a%2045=
%2e02%20to%2045%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1080)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1080; if (NS4 || IE4) activateEl(=
'Q1080', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1080&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1080</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>602.70&nbsp;=
&nbsp;&nbsp;&nbsp;1805.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1806.071148 from(603.031541,3+) title(Elution%20from%3a%2045=
%2e5%20to%2045%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1081)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1081; if (NS4 || IE4) activateEl(=
'Q1081', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1081&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1081</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>603.03&nbsp;=
&nbsp;&nbsp;&nbsp;1806.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1808.069988 from(603.697821,3+) title(Elution%20from%3a%2054=
%2e09%20to%2054%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1082)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1082; if (NS4 || IE4) activateEl(=
'Q1082', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1082&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1082</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>603.70&nbsp;=
&nbsp;&nbsp;&nbsp;1808.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1808.096193 from(603.706556,3+) title(Elution%20from%3a%2057=
%2e13%20to%2057%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1083)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1083; if (NS4 || IE4) activateEl(=
'Q1083', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1083&amp;hit=3D1&amp;index=3DIPI%3aIPI000069=
88&amp;px=3D1"=20=0D
      target=3D_blank>1083</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>603.71&nbsp;&nbsp;&nbsp;&nbsp;1808.10&nbsp;&nbsp;&=
nbsp;&nbsp;1808.13&nbsp;&nbsp;&nbsp;&nbsp;-0.04&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ALCLLLLPVLGLLVSSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1809.033948 from(604.019141,3+) title(Elution%20from%3a%2053=
%2e96%20to%2053%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1084)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1084; if (NS4 || IE4) activateEl(=
'Q1084', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1084&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1084</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>604.02&nbsp;=
&nbsp;&nbsp;&nbsp;1809.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1809.098103 from(604.040526,3+) title(Elution%20from%3a%2057=
%20to%2057%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20%2=
01%20%20) query(1085)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1085; if (NS4 || IE4) activateEl(=
'Q1085', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1085&amp;hit=3D1&amp;index=3DIPI%3aIPI000255=
63&amp;px=3D1"=20=0D
      target=3D_blank>1085</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>604.04&nbsp;&nbsp;&nbsp;&nbsp;1809.10&nbsp;&nbsp;&=
nbsp;&nbsp;1808.96&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SDVWSFGILLTELTTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1810.104027 from(604.375834,3+) title(Elution%20from%3a%2055=
%2e38%20to%2055%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1086)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1086; if (NS4 || IE4) activateEl(=
'Q1086', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1086&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1086</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>604.38&nbsp;=
&nbsp;&nbsp;&nbsp;1810.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1814.106003 from(605.709826,3+) title(Elution%20from%3a%2014=
2%2e04%20to%20142%2e04%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1087)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1087; if (NS4 || IE4) activateEl(=
'Q1087', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1087&amp;hit=3D1&amp;index=3DIPI%3aIPI000184=
01&amp;px=3D1"=20=0D
      target=3D_blank>1087</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>605.71&nbsp;&nbsp;&nbsp;&nbsp;1814.11&nbsp;&nbsp;&=
nbsp;&nbsp;1814.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EVGDGTTSVVIIAAELLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1815.165549 from(606.063008,3+) title(Elution%20from%3a%2014=
2%2e14%20to%20142%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1088)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1088; if (NS4 || IE4) activateEl(=
'Q1088', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1088&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1088</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>606.06&nbsp;=
&nbsp;&nbsp;&nbsp;1815.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1816.107744 from(606.377073,3+) title(Elution%20from%3a%2017=
0%2e11%20to%20170%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1089)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1089; if (NS4 || IE4) activateEl(=
'Q1089', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1089&amp;hit=3D1&amp;index=3DIPI%3aIPI000247=
99&amp;px=3D1"=20=0D
      target=3D_blank>1089</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>606.38&nbsp;&nbsp;&nbsp;&nbsp;1816.11&nbsp;&nbsp;&=
nbsp;&nbsp;1816.02&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TVFRPPLDIYDVLIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1817.109447 from(606.710974,3+) title(Elution%20from%3a%2017=
0%2e16%20to%20170%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1090)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1090; if (NS4 || IE4) activateEl(=
'Q1090', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1090&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1090</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>606.71&nbsp;=
&nbsp;&nbsp;&nbsp;1817.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1818.108447 from(607.043974,3+) title(Elution%20from%3a%2010=
%2e17%20to%2010%2e17%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1091)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1091; if (NS4 || IE4) activateEl(=
'Q1091', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1091&amp;hit=3D1&amp;index=3DIPI%3aIPI000328=
28&amp;px=3D1"=20=0D
      target=3D_blank>1091</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>607.04&nbsp;&nbsp;&nbsp;&nbsp;1818.11&nbsp;&nbsp;&=
nbsp;&nbsp;1818.07&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SFLTTYQVLALPIPKK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1818.114657 from(607.046044,3+) title(Elution%20from%3a%2017=
0%2e24%20to%20170%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1092)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1092; if (NS4 || IE4) activateEl(=
'Q1092', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1092&amp;hit=3D1&amp;index=3DIPI%3aIPI000255=
59&amp;px=3D1"=20=0D
      target=3D_blank>1092</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>607.05&nbsp;&nbsp;&nbsp;&nbsp;1818.11&nbsp;&nbsp;&=
nbsp;&nbsp;1818.12&nbsp;&nbsp;&nbsp;&nbsp;-0.00&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;GVIFIIYLLHKYIVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1818.928248 from(607.317241,3+) title(Elution%20from%3a%2056=
%2e27%20to%2056%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1093)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1093; if (NS4 || IE4) activateEl(=
'Q1093', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1093&amp;hit=3D1&amp;index=3DIPI%3aIPI000274=
99&amp;px=3D1"=20=0D
      target=3D_blank>1093</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>607.32&nbsp;&nbsp;&nbsp;&nbsp;1818.93&nbsp;&nbsp;&=
nbsp;&nbsp;1818.84&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MTDQEAIQDLWQWR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1819.082079 from(607.368518,3+) title(Elution%20from%3a%2010=
%2e81%20to%2010%2e81%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1094)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1094; if (NS4 || IE4) activateEl(=
'Q1094', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1094&amp;hit=3D1&amp;index=3DIPI%3aIPI000308=
39&amp;px=3D1"=20=0D
      target=3D_blank>1094</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>607.37&nbsp;&nbsp;&nbsp;&nbsp;1819.08&nbsp;&nbsp;&=
nbsp;&nbsp;1819.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MTWLVLLGTLLCMLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1823.987346 from(609.003607,3+) title(Elution%20from%3a%2035=
%2e11%20to%2035%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1095)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1095; if (NS4 || IE4) activateEl(=
'Q1095', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1095&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1095</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>609.00&nbsp;=
&nbsp;&nbsp;&nbsp;1823.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1824.031203 from(609.018226,3+) title(Elution%20from%3a%2031=
%2e79%20to%2031%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1096)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1096; if (NS4 || IE4) activateEl(=
'Q1096', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1096&amp;hit=3D1&amp;index=3DIPI%3aIPI000328=
13&amp;px=3D1"=20=0D
      target=3D_blank>1096</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>609.02&nbsp;&nbsp;&nbsp;&nbsp;1824.03&nbsp;&nbsp;&=
nbsp;&nbsp;1823.90&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EGGPLLYEGISLTMNSK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1824.035670 from(609.019715,3+) title(Elution%20from%3a%2024=
%2e77%20to%2024%2e77%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1097)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1097; if (NS4 || IE4) activateEl(=
'Q1097', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1097&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1097</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>609.02&nbsp;=
&nbsp;&nbsp;&nbsp;1824.04</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1824.045975 from(609.023150,3+) title(Elution%20from%3a%2028=
%2e39%20to%2028%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1098)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1098; if (NS4 || IE4) activateEl(=
'Q1098', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1098&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1098</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>609.02&nbsp;=
&nbsp;&nbsp;&nbsp;1824.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1825.033908 from(609.352461,3+) title(Elution%20from%3a%2023=
%2e94%20to%2023%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1100)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1100; if (NS4 || IE4) activateEl(=
'Q1100', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1100&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1100</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>609.35&nbsp;=
&nbsp;&nbsp;&nbsp;1825.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1825.062447 from(609.361974,3+) title(Elution%20from%3a%2011=
%2e61%20to%2011%2e61%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1101)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1101; if (NS4 || IE4) activateEl(=
'Q1101', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1101&amp;hit=3D1&amp;index=3DIPI%3aIPI000114=
97&amp;px=3D1"=20=0D
      target=3D_blank>1101</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>609.36&nbsp;&nbsp;&nbsp;&nbsp;1825.06&nbsp;&nbsp;&=
nbsp;&nbsp;1825.02&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LIVLMGPSGVGVNELRR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1825.112430 from(609.378635,3+) title(Elution%20from%3a%2020=
%2e82%20to%2020%2e82%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1102)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1102; if (NS4 || IE4) activateEl(=
'Q1102', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1102&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1102</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>609.38&nbsp;=
&nbsp;&nbsp;&nbsp;1825.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1825.922133 from(609.648536,3+) title(Elution%20from%3a%2032=
%2e26%20to%2032%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1103)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1103; if (NS4 || IE4) activateEl(=
'Q1103', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1103&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1103</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>609.65&nbsp;=
&nbsp;&nbsp;&nbsp;1825.92</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1826.030865 from(609.684780,3+) title(Elution%20from%3a%2023=
%2e25%20to%2023%2e25%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1104)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1104; if (NS4 || IE4) activateEl(=
'Q1104', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1104&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1104</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>609.68&nbsp;=
&nbsp;&nbsp;&nbsp;1826.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1826.520330 from(609.847935,3+) title(Elution%20from%3a%2034=
%2e41%20to%2034%2e41%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1105)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1105; if (NS4 || IE4) activateEl(=
'Q1105', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1105&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1105</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>609.85&nbsp;=
&nbsp;&nbsp;&nbsp;1826.52</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1827.015396 from(610.012957,3+) title(Elution%20from%3a%2023=
%2e35%20to%2023%2e35%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1106)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1106; if (NS4 || IE4) activateEl(=
'Q1106', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1106&amp;hit=3D1&amp;index=3DIPI%3aIPI000321=
58&amp;px=3D1"=20=0D
      target=3D_blank>1106</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>610.01&nbsp;&nbsp;&nbsp;&nbsp;1827.02&nbsp;&nbsp;&=
nbsp;&nbsp;1827.04&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VETPLEEAIKFLTPLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1828.072800 from(610.365425,3+) title(Elution%20from%3a%2035=
%2e89%20to%2035%2e89%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1107)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1107; if (NS4 || IE4) activateEl(=
'Q1107', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1107&amp;hit=3D1&amp;index=3DIPI%3aIPI000319=
63&amp;px=3D1"=20=0D
      target=3D_blank>1107</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>610.37&nbsp;&nbsp;&nbsp;&nbsp;1828.07&nbsp;&nbsp;&=
nbsp;&nbsp;1827.95&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LHYCLSCAVHSKVVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1828.076271 from(610.366582,3+) title(Elution%20from%3a%2020=
%2e54%20to%2020%2e54%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(1108)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1108; if (NS4 || IE4) activateEl(=
'Q1108', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1108&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1108</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>610.37&nbsp;=
&nbsp;&nbsp;&nbsp;1828.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1828.086345 from(610.369940,3+) title(Elution%20from%3a%2023=
%2e74%20to%2023%2e74%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1109)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1109; if (NS4 || IE4) activateEl(=
'Q1109', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1109&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1109</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>610.37&nbsp;=
&nbsp;&nbsp;&nbsp;1828.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1828.099581 from(610.374352,3+) title(Elution%20from%3a%2032=
%2e85%20to%2032%2e85%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1110)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1110; if (NS4 || IE4) activateEl(=
'Q1110', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1110&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1110</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>610.37&nbsp;=
&nbsp;&nbsp;&nbsp;1828.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1828.105176 from(610.376217,3+) title(Elution%20from%3a%2026=
%2e73%20to%2026%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1111)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1111; if (NS4 || IE4) activateEl(=
'Q1111', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1111&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1111</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>610.38&nbsp;=
&nbsp;&nbsp;&nbsp;1828.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1833.060903 from(612.028126,3+) title(Elution%20from%3a%2077=
%2e94%20to%2077%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1113)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1113; if (NS4 || IE4) activateEl(=
'Q1113', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1113&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1113</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>612.03&nbsp;=
&nbsp;&nbsp;&nbsp;1833.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1834.029750 from(612.351075,3+) title(Elution%20from%3a%2081=
%2e25%20to%2081%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1114)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1114; if (NS4 || IE4) activateEl(=
'Q1114', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1114&amp;hit=3D1&amp;index=3DIPI%3aIPI000143=
38&amp;px=3D1"=20=0D
      target=3D_blank>1114</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>612.35&nbsp;&nbsp;&nbsp;&nbsp;1834.03&nbsp;&nbsp;&=
nbsp;&nbsp;1834.04&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LELNFKAGDVIFLLSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1834.040268 from(612.354581,3+) title(Elution%20from%3a%2078=
%2e17%20to%2078%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1115)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1115; if (NS4 || IE4) activateEl(=
'Q1115', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1115&amp;hit=3D1&amp;index=3DIPI%3aIPI000237=
56&amp;px=3D1"=20=0D
      target=3D_blank>1115</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>612.35&nbsp;&nbsp;&nbsp;&nbsp;1834.04&nbsp;&nbsp;&=
nbsp;&nbsp;1833.93&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LINEMGGMQQVTELKK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1835.037120 from(612.686865,3+) title(Elution%20from%3a%2078=
%2e97%20to%2078%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1116)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1116; if (NS4 || IE4) activateEl(=
'Q1116', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1116&amp;hit=3D1&amp;index=3DIPI%3aIPI000258=
22&amp;px=3D1"=20=0D
      target=3D_blank>1116</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>612.69&nbsp;&nbsp;&nbsp;&nbsp;1835.04&nbsp;&nbsp;&=
nbsp;&nbsp;1834.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;WVPFDGDDIQLEFVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1840.321506 from(614.448327,3+) title(Elution%20from%3a%2036=
%2e18%20to%2036%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1117)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1117; if (NS4 || IE4) activateEl(=
'Q1117', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1117&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1117</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>614.45&nbsp;=
&nbsp;&nbsp;&nbsp;1840.32</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1843.064322 from(615.362599,3+) title(Elution%20from%3a%2030=
%2e44%20to%2030%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1118)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1118; if (NS4 || IE4) activateEl(=
'Q1118', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1118&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1118</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>615.36&nbsp;=
&nbsp;&nbsp;&nbsp;1843.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1843.085025 from(615.369500,3+) title(Elution%20from%3a%2039=
%2e07%20to%2039%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1119)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1119; if (NS4 || IE4) activateEl(=
'Q1119', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1119&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1119</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>615.37&nbsp;=
&nbsp;&nbsp;&nbsp;1843.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1843.147911 from(615.390462,3+) title(Elution%20from%3a%2015=
9%2e19%20to%20159%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1120)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1120; if (NS4 || IE4) activateEl(=
'Q1120', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1120&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1120</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>615.39&nbsp;=
&nbsp;&nbsp;&nbsp;1843.15</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1846.075572 from(616.366349,3+) title(Elution%20from%3a%2062=
%2e85%20to%2062%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1121)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1121; if (NS4 || IE4) activateEl(=
'Q1121', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1121&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1121</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>616.37&nbsp;=
&nbsp;&nbsp;&nbsp;1846.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1847.051954 from(924.533802,2+) title(Elution%20from%3a%2036=
%2e54%20to%2036%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1122)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1122; if (NS4 || IE4) activateEl(=
'Q1122', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1122&amp;hit=3D1&amp;index=3DIPI%3aIPI000205=
96&amp;px=3D1"=20=0D
      target=3D_blank>1122</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>924.53&nbsp;&nbsp;&nbsp;&nbsp;1847.05&nbsp;&nbsp;&nbs=
p;&nbsp;1846.91&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&n=
bsp;&nbsp;GFVLRGSSVIHCDADSK</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1847.058504 from(616.693993,3+) title(Elution%20from%3a%2052=
%2e62%20to%2052%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1123)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1123; if (NS4 || IE4) activateEl(=
'Q1123', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1123&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1123</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>616.69&nbsp;=
&nbsp;&nbsp;&nbsp;1847.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1847.099484 from(616.707653,3+) title(Elution%20from%3a%2039=
%2e39%20to%2039%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1126)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1126; if (NS4 || IE4) activateEl(=
'Q1126', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1126&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1126</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>616.71&nbsp;=
&nbsp;&nbsp;&nbsp;1847.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1847.109810 from(616.711095,3+) title(Elution%20from%3a%2062=
%2e61%20to%2062%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1128)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1128; if (NS4 || IE4) activateEl(=
'Q1128', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1128&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1128</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>616.71&nbsp;=
&nbsp;&nbsp;&nbsp;1847.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1848.062022 from(925.038836,2+) title(Elution%20from%3a%2054=
%2e76%20to%2054%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1129)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1129; if (NS4 || IE4) activateEl(=
'Q1129', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1129&amp;hit=3D1&amp;index=3DIPI%3aIPI000249=
94&amp;px=3D1"=20=0D
      target=3D_blank>1129</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>925.04&nbsp;&nbsp;&nbsp;&nbsp;1848.06&nbsp;&nbsp;&=
nbsp;&nbsp;1847.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VTQESAKNFQIELEGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1848.063342 from(925.039496,2+) title(Elution%20from%3a%2036=
%2e65%20to%2036%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1130)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1130; if (NS4 || IE4) activateEl(=
'Q1130', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1130&amp;hit=3D1&amp;index=3DIPI%3aIPI000085=
60&amp;px=3D1"=20=0D
      target=3D_blank>1130</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>925.04&nbsp;&nbsp;&nbsp;&nbsp;1848.06&nbsp;&nbsp;&=
nbsp;&nbsp;1847.96&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ITISSLQDLSIYNPER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1848.076335 from(617.033270,3+) title(Elution%20from%3a%2036=
%2e07%20to%2036%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1131)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1131; if (NS4 || IE4) activateEl(=
'Q1131', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1131&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1131</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>617.03&nbsp;=
&nbsp;&nbsp;&nbsp;1848.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1848.077310 from(617.033595,3+) title(Elution%20from%3a%2053=
%2e36%20to%2053%2e36%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1132)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1132; if (NS4 || IE4) activateEl(=
'Q1132', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1132&amp;hit=3D1&amp;index=3DIPI%3aIPI000249=
94&amp;px=3D1"=20=0D
      target=3D_blank>1132</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>617.03&nbsp;&nbsp;&nbsp;&nbsp;1848.08&nbsp;&nbsp;&=
nbsp;&nbsp;1847.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VTQESAKNFQIELEGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1848.082866 from(617.035447,3+) title(Elution%20from%3a%2063=
%2e26%20to%2063%2e26%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1133)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1133; if (NS4 || IE4) activateEl(=
'Q1133', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1133&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1133</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>617.04&nbsp;=
&nbsp;&nbsp;&nbsp;1848.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1848.084930 from(617.036135,3+) title(Elution%20from%3a%2056=
%2e4%20to%2056%2e4%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(1134)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1134; if (NS4 || IE4) activateEl(=
'Q1134', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1134&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
22&amp;px=3D1"=20=0D
      target=3D_blank>1134</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>617.04&nbsp;&nbsp;&nbsp;&nbsp;1848.08&nbsp;&nbsp;&=
nbsp;&nbsp;1848.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ELLICSGILGSIFSIVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1848.089577 from(617.037684,3+) title(Elution%20from%3a%2039=
%2e2%20to%2039%2e2%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(1135)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1135; if (NS4 || IE4) activateEl(=
'Q1135', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1135&amp;hit=3D1&amp;index=3DIPI%3aIPI000004=
31&amp;px=3D1"=20=0D
      target=3D_blank>1135</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>617.04&nbsp;&nbsp;&nbsp;&nbsp;1848.09&nbsp;&nbsp;&=
nbsp;&nbsp;1848.02&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DILKQLFIATVTETEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1855.244382 from(619.422619,3+) title(Elution%20from%3a%2017=
5%2e61%20to%20175%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1137)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1137; if (NS4 || IE4) activateEl(=
'Q1137', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1137&amp;hit=3D1&amp;index=3DIPI%3aIPI000104=
71&amp;px=3D1"=20=0D
      target=3D_blank>1137</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>619.42&nbsp;&nbsp;&nbsp;&nbsp;1855.24&nbsp;&nbsp;&=
nbsp;&nbsp;1855.10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EGKPYLVLGLLWQVIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1856.190132 from(619.737869,3+) title(Elution%20from%3a%2017=
5%2e73%20to%20175%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1138)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1138; if (NS4 || IE4) activateEl(=
'Q1138', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1138&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1138</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>619.74&nbsp;=
&nbsp;&nbsp;&nbsp;1856.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1857.048060 from(620.023845,3+) title(Elution%20from%3a%2098=
%2e01%20to%2098%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1139)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1139; if (NS4 || IE4) activateEl(=
'Q1139', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1139&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1139</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>620.02&nbsp;=
&nbsp;&nbsp;&nbsp;1857.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1859.061621 from(620.695032,3+) title(Elution%20from%3a%2098=
%2e43%20to%2098%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1144)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1144; if (NS4 || IE4) activateEl(=
'Q1144', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1144&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1144</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>620.70&nbsp;=
&nbsp;&nbsp;&nbsp;1859.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1859.999721 from(621.007732,3+) title(Elution%20from%3a%2016=
1%2e83%20to%20161%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1145)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1145; if (NS4 || IE4) activateEl(=
'Q1145', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1145&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1145</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>621.01&nbsp;=
&nbsp;&nbsp;&nbsp;1860.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1860.004962 from(621.009479,3+) title(Elution%20from%3a%2015=
8%2e83%20to%20158%2e83%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1146)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1146; if (NS4 || IE4) activateEl(=
'Q1146', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1146&amp;hit=3D1&amp;index=3DIPI%3aIPI000141=
36&amp;px=3D1"=20=0D
      target=3D_blank>1146</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>621.01&nbsp;&nbsp;&nbsp;&nbsp;1860.00&nbsp;&nbsp;&=
nbsp;&nbsp;1859.89&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TTTWQRPTAAATPDGMR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1860.061962 from(931.038806,2+) title(Elution%20from%3a%2016=
0%2e41%20to%20160%2e41%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1147)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1147; if (NS4 || IE4) activateEl(=
'Q1147', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1147&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1147</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>931.04&nbsp;=
&nbsp;&nbsp;&nbsp;1860.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1861.014450 from(621.345975,3+) title(Elution%20from%3a%2015=
9%2e32%20to%20159%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1148)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1148; if (NS4 || IE4) activateEl(=
'Q1148', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1148&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1148</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>621.35&nbsp;=
&nbsp;&nbsp;&nbsp;1861.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1861.118712 from(621.380729,3+) title(Elution%20from%3a%2017=
5%2e32%20to%20175%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1149)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1149; if (NS4 || IE4) activateEl(=
'Q1149', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1149&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1149</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>621.38&nbsp;=
&nbsp;&nbsp;&nbsp;1861.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1862.111835 from(621.711770,3+) title(Elution%20from%3a%2017=
5%2e45%20to%20175%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1150)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1150; if (NS4 || IE4) activateEl(=
'Q1150', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1150&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1150</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>621.71&nbsp;=
&nbsp;&nbsp;&nbsp;1862.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1867.082469 from(623.368648,3+) title(Elution%20from%3a%2083=
%2e31%20to%2083%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1151)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1151; if (NS4 || IE4) activateEl(=
'Q1151', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1151&amp;hit=3D1&amp;index=3DIPI%3aIPI000038=
81&amp;px=3D1"=20=0D
      target=3D_blank>1151</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>623.37&nbsp;&nbsp;&nbsp;&nbsp;1867.08&nbsp;&nbsp;&=
nbsp;&nbsp;1866.94&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ITGEAFVQFASQELAEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1868.078370 from(623.700615,3+) title(Elution%20from%3a%2081=
%2e9%20to%2081%2e9%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1152)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1152; if (NS4 || IE4) activateEl(=
'Q1152', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1152&amp;hit=3D1&amp;index=3DIPI%3aIPI000027=
40&amp;px=3D1"=20=0D
      target=3D_blank>1152</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>623.70&nbsp;&nbsp;&nbsp;&nbsp;1868.08&nbsp;&nbsp;&=
nbsp;&nbsp;1868.08&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LMKEVGPQQVLCLLLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1869.069735 from(624.031070,3+) title(Elution%20from%3a%2083=
%2e49%20to%2083%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1153)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1153; if (NS4 || IE4) activateEl(=
'Q1153', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1153&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1153</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>624.03&nbsp;=
&nbsp;&nbsp;&nbsp;1869.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1869.101976 from(935.558813,2+) title(Elution%20from%3a%2011=
6%2e03%20to%20116%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1157)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1157; if (NS4 || IE4) activateEl(=
'Q1157', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1157&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1157</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>935.56&nbsp;=
&nbsp;&nbsp;&nbsp;1869.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1869.105342 from(624.042939,3+) title(Elution%20from%3a%2031=
%2e66%20to%2031%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1159)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1159; if (NS4 || IE4) activateEl(=
'Q1159', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1159&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1159</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>624.04&nbsp;=
&nbsp;&nbsp;&nbsp;1869.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1870.079724 from(936.047687,2+) title(Elution%20from%3a%2011=
6%2e08%20to%20116%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1160)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1160; if (NS4 || IE4) activateEl(=
'Q1160', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1160&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1160</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>936.05&nbsp;=
&nbsp;&nbsp;&nbsp;1870.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1870.080738 from(936.048194,2+) title(Elution%20from%3a%2032=
%2e72%20to%2032%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1161)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1161; if (NS4 || IE4) activateEl(=
'Q1161', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1161&amp;hit=3D1&amp;index=3DIPI%3aIPI000028=
12&amp;px=3D1"=20=0D
      target=3D_blank>1161</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>936.05&nbsp;&nbsp;&nbsp;&nbsp;1870.08&nbsp;&nbsp;&=
nbsp;&nbsp;1870.12&nbsp;&nbsp;&nbsp;&nbsp;-0.04&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LLLMPAKHQPDLLLLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1870.090929 from(624.371468,3+) title(Elution%20from%3a%2017=
0%2e32%20to%20170%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1162)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1162; if (NS4 || IE4) activateEl(=
'Q1162', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1162&amp;hit=3D1&amp;index=3DIPI%3aIPI000250=
19&amp;px=3D1"=20=0D
      target=3D_blank>1162</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.37&nbsp;&nbsp;&nbsp;&nbsp;1870.09&nbsp;&nbsp;&=
nbsp;&nbsp;1869.97&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;AMTTGAIAAMLSTILYSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1870.094694 from(624.372723,3+) title(Elution%20from%3a%2023=
%2e17%20to%2023%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1163)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1163; if (NS4 || IE4) activateEl(=
'Q1163', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1163&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1163</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>624.37&nbsp;=
&nbsp;&nbsp;&nbsp;1870.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1870.095399 from(624.372958,3+) title(Elution%20from%3a%2031=
%2e94%20to%2031%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1164)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1164; if (NS4 || IE4) activateEl(=
'Q1164', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1164&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1164</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>624.37&nbsp;=
&nbsp;&nbsp;&nbsp;1870.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1870.101180 from(624.374885,3+) title(Elution%20from%3a%2011=
7%2e79%20to%20117%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1165)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1165; if (NS4 || IE4) activateEl(=
'Q1165', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1165&amp;hit=3D1&amp;index=3DIPI%3aIPI000192=
25&amp;px=3D1"=20=0D
      target=3D_blank>1165</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.37&nbsp;&nbsp;&nbsp;&nbsp;1870.10&nbsp;&nbsp;&=
nbsp;&nbsp;1870.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NLVKIFEPCGRPAVDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1870.114287 from(624.379254,3+) title(Elution%20from%3a%2011=
4%2e58%20to%20114%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1166)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1166; if (NS4 || IE4) activateEl(=
'Q1166', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1166&amp;hit=3D1&amp;index=3DIPI%3aIPI000192=
17&amp;px=3D1"=20=0D
      target=3D_blank>1166</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.38&nbsp;&nbsp;&nbsp;&nbsp;1870.11&nbsp;&nbsp;&=
nbsp;&nbsp;1870.10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RSLAQDAPPLPVPGVLLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1871.059869 from(624.694448,3+) title(Elution%20from%3a%2048=
%2e95%20to%2048%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1167)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1167; if (NS4 || IE4) activateEl(=
'Q1167', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1167&amp;hit=3D1&amp;index=3DIPI%3aIPI000041=
82&amp;px=3D1"=20=0D
      target=3D_blank>1167</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.69&nbsp;&nbsp;&nbsp;&nbsp;1871.06&nbsp;&nbsp;&=
nbsp;&nbsp;1871.05&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;PVPDHHRLPLVPELPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1871.061633 from(624.695036,3+) title(Elution%20from%3a%2011=
5%2e57%20to%20115%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1168)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1168; if (NS4 || IE4) activateEl(=
'Q1168', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1168&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1168</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>624.70&nbsp;=
&nbsp;&nbsp;&nbsp;1871.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1871.065377 from(624.696284,3+) title(Elution%20from%3a%2061=
%2e33%20to%2061%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1169)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1169; if (NS4 || IE4) activateEl(=
'Q1169', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1169&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1169</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>624.70&nbsp;=
&nbsp;&nbsp;&nbsp;1871.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1871.075181 from(624.699552,3+) title(Elution%20from%3a%2032=
%2e36%20to%2032%2e36%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1170)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1170; if (NS4 || IE4) activateEl(=
'Q1170', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1170&amp;hit=3D1&amp;index=3DIPI%3aIPI000215=
11&amp;px=3D1"=20=0D
      target=3D_blank>1170</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.70&nbsp;&nbsp;&nbsp;&nbsp;1871.08&nbsp;&nbsp;&=
nbsp;&nbsp;1871.01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MALVSGISLDPEAAIGVTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1871.088408 from(624.703961,3+) title(Elution%20from%3a%2055=
%2e19%20to%2055%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1172)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1172; if (NS4 || IE4) activateEl(=
'Q1172', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1172&amp;hit=3D1&amp;index=3DIPI%3aIPI000237=
23&amp;px=3D1"=20=0D
      target=3D_blank>1172</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.70&nbsp;&nbsp;&nbsp;&nbsp;1871.09&nbsp;&nbsp;&=
nbsp;&nbsp;1871.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLRDQAAALAAGPTPPGPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1871.094306 from(624.705927,3+) title(Elution%20from%3a%2017=
0%2e37%20to%20170%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1173)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1173; if (NS4 || IE4) activateEl(=
'Q1173', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1173&amp;hit=3D1&amp;index=3DIPI%3aIPI000041=
82&amp;px=3D1"=20=0D
      target=3D_blank>1173</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>624.71&nbsp;&nbsp;&nbsp;&nbsp;1871.09&nbsp;&nbsp;&=
nbsp;&nbsp;1871.05&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;PVPDHHRLPLVPELPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1871.095680 from(624.706385,3+) title(Elution%20from%3a%2052=
%2e14%20to%2052%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1174)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1174; if (NS4 || IE4) activateEl(=
'Q1174', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1174&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1174</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>624.71&nbsp;=
&nbsp;&nbsp;&nbsp;1871.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1871.100030 from(624.707835,3+) title(Elution%20from%3a%2038=
%2e74%20to%2038%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1175)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1175; if (NS4 || IE4) activateEl(=
'Q1175', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1175&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1175</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>624.71&nbsp;=
&nbsp;&nbsp;&nbsp;1871.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1872.074571 from(625.032682,3+) title(Elution%20from%3a%2038=
%2e81%20to%2038%2e81%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1176)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1176; if (NS4 || IE4) activateEl(=
'Q1176', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1176&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1176</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>625.03&nbsp;=
&nbsp;&nbsp;&nbsp;1872.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1872.083058 from(625.035511,3+) title(Elution%20from%3a%2058=
%2e64%20to%2058%2e64%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1177)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1177; if (NS4 || IE4) activateEl(=
'Q1177', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1177&amp;hit=3D1&amp;index=3DIPI%3aIPI000050=
74&amp;px=3D1"=20=0D
      target=3D_blank>1177</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>625.04&nbsp;&nbsp;&nbsp;&nbsp;1872.08&nbsp;&nbsp;&=
nbsp;&nbsp;1871.95&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLECSGRQVSPEALEGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1872.084294 from(625.035923,3+) title(Elution%20from%3a%2052=
%2e43%20to%2052%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1178)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1178; if (NS4 || IE4) activateEl(=
'Q1178', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1178&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1178</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>625.04&nbsp;=
&nbsp;&nbsp;&nbsp;1872.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1872.084912 from(625.036129,3+) title(Elution%20from%3a%2061=
%2e96%20to%2061%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1179)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1179; if (NS4 || IE4) activateEl(=
'Q1179', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1179&amp;hit=3D1&amp;index=3DIPI%3aIPI000073=
36&amp;px=3D1"=20=0D
      target=3D_blank>1179</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>625.04&nbsp;&nbsp;&nbsp;&nbsp;1872.08&nbsp;&nbsp;&=
nbsp;&nbsp;1872.08&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KLEGTLPPNVLVIHQSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1872.098136 from(625.040537,3+) title(Elution%20from%3a%2017=
0%2e62%20to%20170%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1180)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1180; if (NS4 || IE4) activateEl(=
'Q1180', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1180&amp;hit=3D1&amp;index=3DIPI%3aIPI000330=
63&amp;px=3D1"=20=0D
      target=3D_blank>1180</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>625.04&nbsp;&nbsp;&nbsp;&nbsp;1872.10&nbsp;&nbsp;&=
nbsp;&nbsp;1872.01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GILDYLDNISPQQIRK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1872.099195 from(625.040890,3+) title(Elution%20from%3a%2049=
%2e26%20to%2049%2e26%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1181)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1181; if (NS4 || IE4) activateEl(=
'Q1181', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1181&amp;hit=3D1&amp;index=3DIPI%3aIPI000084=
47&amp;px=3D1"=20=0D
      target=3D_blank>1181</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>625.04&nbsp;&nbsp;&nbsp;&nbsp;1872.10&nbsp;&nbsp;&=
nbsp;&nbsp;1872.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VTVAFIRTIQAQLQER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1872.107817 from(625.043764,3+) title(Elution%20from%3a%2055=
%2e46%20to%2055%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1182)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1182; if (NS4 || IE4) activateEl(=
'Q1182', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1182&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1182</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>625.04&nbsp;=
&nbsp;&nbsp;&nbsp;1872.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1873.084617 from(625.369364,3+) title(Elution%20from%3a%2014=
4%2e47%20to%20144%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1183)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1183; if (NS4 || IE4) activateEl(=
'Q1183', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1183&amp;hit=3D1&amp;index=3DIPI%3aIPI000028=
57&amp;px=3D1"=20=0D
      target=3D_blank>1183</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>625.37&nbsp;&nbsp;&nbsp;&nbsp;1873.08&nbsp;&nbsp;&=
nbsp;&nbsp;1873.01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LTDDHVQFLIYQILR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1874.127519 from(625.716998,3+) title(Elution%20from%3a%2014=
4%2e64%20to%20144%2e64%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1184)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1184; if (NS4 || IE4) activateEl(=
'Q1184', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1184&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1184</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>625.72&nbsp;=
&nbsp;&nbsp;&nbsp;1874.13</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1881.098961 from(628.040812,3+) title(Elution%20from%3a%2096=
%2e57%20to%2096%2e57%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1185)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1185; if (NS4 || IE4) activateEl(=
'Q1185', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1185&amp;hit=3D1&amp;index=3DIPI%3aIPI000328=
47&amp;px=3D1"=20=0D
      target=3D_blank>1185</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>628.04&nbsp;&nbsp;&nbsp;&nbsp;1881.10&nbsp;&nbsp;&=
nbsp;&nbsp;1881.08&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SLVFSVLFAVTLRSFVP</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1887.118224 from(630.047233,3+) title(Elution%20from%3a%2011=
8%2e6%20to%20118%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1187)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1187; if (NS4 || IE4) activateEl(=
'Q1187', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1187&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1187</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>630.05&nbsp;=
&nbsp;&nbsp;&nbsp;1887.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1888.112166 from(630.378547,3+) title(Elution%20from%3a%2014=
1%2e38%20to%20141%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1188)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1188; if (NS4 || IE4) activateEl(=
'Q1188', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1188&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1188</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>630.38&nbsp;=
&nbsp;&nbsp;&nbsp;1888.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1888.157772 from(630.393749,3+) title(Elution%20from%3a%2011=
8%2e39%20to%20118%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1189)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1189; if (NS4 || IE4) activateEl(=
'Q1189', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1189&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1189</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>630.39&nbsp;=
&nbsp;&nbsp;&nbsp;1888.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1889.126157 from(630.716544,3+) title(Elution%20from%3a%2014=
1%2e98%20to%20141%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1190)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1190; if (NS4 || IE4) activateEl(=
'Q1190', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1190&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1190</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>630.72&nbsp;=
&nbsp;&nbsp;&nbsp;1889.13</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1889.175060 from(630.732845,3+) title(Elution%20from%3a%2011=
9%2e24%20to%20119%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1191)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1191; if (NS4 || IE4) activateEl(=
'Q1191', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1191&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1191</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>630.73&nbsp;=
&nbsp;&nbsp;&nbsp;1889.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1896.110409 from(633.044628,3+) title(Elution%20from%3a%2011=
2%2e14%20to%20112%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1192)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1192; if (NS4 || IE4) activateEl(=
'Q1192', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1192&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1192</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>633.04&nbsp;=
&nbsp;&nbsp;&nbsp;1896.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1896.163722 from(633.062399,3+) title(Elution%20from%3a%2099=
%2e21%20to%2099%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1193)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1193; if (NS4 || IE4) activateEl(=
'Q1193', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1193&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1193</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>633.06&nbsp;=
&nbsp;&nbsp;&nbsp;1896.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1897.090740 from(633.371405,3+) title(Elution%20from%3a%2011=
1%2e71%20to%20111%2e71%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1194)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1194; if (NS4 || IE4) activateEl(=
'Q1194', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1194&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1194</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>633.37&nbsp;=
&nbsp;&nbsp;&nbsp;1897.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1898.110515 from(633.711330,3+) title(Elution%20from%3a%2011=
2%2e64%20to%20112%2e64%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1195)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1195; if (NS4 || IE4) activateEl(=
'Q1195', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1195&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1195</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>633.71&nbsp;=
&nbsp;&nbsp;&nbsp;1898.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1898.113248 from(633.712241,3+) title(Elution%20from%3a%2014=
9%2e18%20to%20149%2e18%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1196)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1196; if (NS4 || IE4) activateEl(=
'Q1196', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1196&amp;hit=3D1&amp;index=3DIPI%3aIPI000039=
11&amp;px=3D1"=20=0D
      target=3D_blank>1196</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>633.71&nbsp;&nbsp;&nbsp;&nbsp;1898.11&nbsp;&nbsp;&=
nbsp;&nbsp;1898.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QKLWNILEKPGSSTAAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1899.101655 from(634.041710,3+) title(Elution%20from%3a%2014=
9%2e02%20to%20149%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1197)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1197; if (NS4 || IE4) activateEl(=
'Q1197', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1197&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1197</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>634.04&nbsp;=
&nbsp;&nbsp;&nbsp;1899.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1904.097324 from(635.706933,3+) title(Elution%20from%3a%2030=
%2e31%20to%2030%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1198)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1198; if (NS4 || IE4) activateEl(=
'Q1198', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1198&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1198</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>635.71&nbsp;=
&nbsp;&nbsp;&nbsp;1904.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1904.119440 from(635.714305,3+) title(Elution%20from%3a%2033=
%2e52%20to%2033%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1201)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1201; if (NS4 || IE4) activateEl(=
'Q1201', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1201&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1201</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>635.71&nbsp;=
&nbsp;&nbsp;&nbsp;1904.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1905.055768 from(477.271767,4+) title(Elution%20from%3a%2022=
%2e91%20to%2022%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1202)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1202; if (NS4 || IE4) activateEl(=
'Q1202', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1202&amp;hit=3D1&amp;index=3DIPI%3aIPI000167=
03&amp;px=3D1"=20=0D
      target=3D_blank>1202</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>477.27&nbsp;&nbsp;&nbsp;&nbsp;1905.06&nbsp;&nbsp;&=
nbsp;&nbsp;1905.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NIMINLMDILEVDTKK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1905.094401 from(636.039292,3+) title(Elution%20from%3a%2029=
%2e97%20to%2029%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1203)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1203; if (NS4 || IE4) activateEl(=
'Q1203', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1203&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1203</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>636.04&nbsp;=
&nbsp;&nbsp;&nbsp;1905.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1905.095673 from(636.039716,3+) title(Elution%20from%3a%2022=
%2e39%20to%2022%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1204)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1204; if (NS4 || IE4) activateEl(=
'Q1204', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1204&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1204</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>636.04&nbsp;=
&nbsp;&nbsp;&nbsp;1905.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1905.104685 from(636.042720,3+) title(Elution%20from%3a%2033=
%2e11%20to%2033%2e11%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1205)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1205; if (NS4 || IE4) activateEl(=
'Q1205', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1205&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1205</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>636.04&nbsp;=
&nbsp;&nbsp;&nbsp;1905.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1905.105909 from(636.043128,3+) title(Elution%20from%3a%2037=
%2e82%20to%2037%2e82%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1206)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1206; if (NS4 || IE4) activateEl(=
'Q1206', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1206&amp;hit=3D1&amp;index=3DIPI%3aIPI000245=
97&amp;px=3D1"=20=0D
      target=3D_blank>1206</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>636.04&nbsp;&nbsp;&nbsp;&nbsp;1905.11&nbsp;&nbsp;&=
nbsp;&nbsp;1905.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;REINNSHIQEVVQVIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1905.116367 from(636.046614,3+) title(Elution%20from%3a%2026=
%2e06%20to%2026%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1207)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1207; if (NS4 || IE4) activateEl(=
'Q1207', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1207&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1207</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>636.05&nbsp;=
&nbsp;&nbsp;&nbsp;1905.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1905.143772 from(636.055749,3+) title(Elution%20from%3a%2019=
8%2e1%20to%20198%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1208)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1208; if (NS4 || IE4) activateEl(=
'Q1208', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1208&amp;hit=3D1&amp;index=3DIPI%3aIPI000259=
62&amp;px=3D1"=20=0D
      target=3D_blank>1208</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>636.06&nbsp;&nbsp;&nbsp;&nbsp;1905.14&nbsp;&nbsp;&=
nbsp;&nbsp;1905.07&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SYILLLTAVFQVPSAAGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1906.092057 from(636.371844,3+) title(Elution%20from%3a%2038=
%2e79%20to%2038%2e79%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1209)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1209; if (NS4 || IE4) activateEl(=
'Q1209', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1209&amp;hit=3D1&amp;index=3DIPI%3aIPI000274=
26&amp;px=3D1"=20=0D
      target=3D_blank>1209</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>636.37&nbsp;&nbsp;&nbsp;&nbsp;1906.09&nbsp;&nbsp;&=
nbsp;&nbsp;1905.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KQGLLPLTFADPSDYNK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1906.103409 from(636.375628,3+) title(Elution%20from%3a%2034=
%2e09%20to%2034%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1210)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1210; if (NS4 || IE4) activateEl(=
'Q1210', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1210&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1210</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>636.38&nbsp;=
&nbsp;&nbsp;&nbsp;1906.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1906.128129 from(636.383868,3+) title(Elution%20from%3a%2019=
8%2e15%20to%20198%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1211)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1211; if (NS4 || IE4) activateEl(=
'Q1211', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1211&amp;hit=3D1&amp;index=3DIPI%3aIPI000021=
28&amp;px=3D1"=20=0D
      target=3D_blank>1211</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>636.38&nbsp;&nbsp;&nbsp;&nbsp;1906.13&nbsp;&nbsp;&=
nbsp;&nbsp;1906.18&nbsp;&nbsp;&nbsp;&nbsp;-0.05&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DRPTILSKLLLLHFLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1906.131915 from(636.385130,3+) title(Elution%20from%3a%2030=
%2e93%20to%2030%2e93%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1212)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1212; if (NS4 || IE4) activateEl(=
'Q1212', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1212&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1212</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>636.39&nbsp;=
&nbsp;&nbsp;&nbsp;1906.13</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1907.068644 from(636.697373,3+) title(Elution%20from%3a%2032=
%2e12%20to%2032%2e12%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1213)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1213; if (NS4 || IE4) activateEl(=
'Q1213', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1213&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1213</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>636.70&nbsp;=
&nbsp;&nbsp;&nbsp;1907.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1907.138872 from(477.792543,4+) title(Elution%20from%3a%2034=
%2e67%20to%2034%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1214)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1214; if (NS4 || IE4) activateEl(=
'Q1214', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1214&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1214</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>477.79&nbsp;=
&nbsp;&nbsp;&nbsp;1907.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1907.159760 from(636.727745,3+) title(Elution%20from%3a%2019=
8%2e48%20to%20198%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1215)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1215; if (NS4 || IE4) activateEl(=
'Q1215', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1215&amp;hit=3D1&amp;index=3DIPI%3aIPI000224=
79&amp;px=3D1"=20=0D
      target=3D_blank>1215</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>636.73&nbsp;&nbsp;&nbsp;&nbsp;1907.16&nbsp;&nbsp;&=
nbsp;&nbsp;1907.07&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VYKPKVIEALQGMFIR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1908.073371 from(637.032282,3+) title(Elution%20from%3a%2032=
%2e49%20to%2032%2e49%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1216)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1216; if (NS4 || IE4) activateEl(=
'Q1216', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1216&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1216</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>637.03&nbsp;=
&nbsp;&nbsp;&nbsp;1908.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1911.121737 from(638.048404,3+) title(Elution%20from%3a%2011=
7%2e72%20to%20117%2e72%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1217)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1217; if (NS4 || IE4) activateEl(=
'Q1217', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1217&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1217</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>638.05&nbsp;=
&nbsp;&nbsp;&nbsp;1911.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1912.030704 from(638.351393,3+) title(Elution%20from%3a%2018=
%2e42%20to%2018%2e42%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1218)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1218; if (NS4 || IE4) activateEl(=
'Q1218', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1218&amp;hit=3D1&amp;index=3DIPI%3aIPI000239=
23&amp;px=3D1"=20=0D
      target=3D_blank>1218</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>638.35&nbsp;&nbsp;&nbsp;&nbsp;1912.03&nbsp;&nbsp;&=
nbsp;&nbsp;1911.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SEIEVISEPPEEKVTAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1912.123875 from(638.382450,3+) title(Elution%20from%3a%2011=
7%2e64%20to%20117%2e64%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1219)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1219; if (NS4 || IE4) activateEl(=
'Q1219', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1219&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1219</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>638.38&nbsp;=
&nbsp;&nbsp;&nbsp;1912.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1913.112306 from(638.711927,3+) title(Elution%20from%3a%2011=
8%2e2%20to%20118%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1220)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1220; if (NS4 || IE4) activateEl(=
'Q1220', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1220&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1220</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>638.71&nbsp;=
&nbsp;&nbsp;&nbsp;1913.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1916.103894 from(959.059772,2+) title(Elution%20from%3a%2022=
%2e11%20to%2022%2e11%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(1222)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1222; if (NS4 || IE4) activateEl(=
'Q1222', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1222&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1222</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>959.06&nbsp;=
&nbsp;&nbsp;&nbsp;1916.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1917.081981 from(640.035152,3+) title(Elution%20from%3a%2022=
%2e32%20to%2022%2e32%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1223)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1223; if (NS4 || IE4) activateEl(=
'Q1223', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1223&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1223</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.04&nbsp;=
&nbsp;&nbsp;&nbsp;1917.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1918.116862 from(960.066256,2+) title(Elution%20from%3a%2064=
%2e42%20to%2064%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1224)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1224; if (NS4 || IE4) activateEl(=
'Q1224', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1224&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1224</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>960.07&nbsp;=
&nbsp;&nbsp;&nbsp;1918.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1918.125285 from(640.382920,3+) title(Elution%20from%3a%2056=
%2e22%20to%2056%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1225)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1225; if (NS4 || IE4) activateEl(=
'Q1225', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1225&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1225</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.38&nbsp;=
&nbsp;&nbsp;&nbsp;1918.13</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1918.126023 from(640.383166,3+) title(Elution%20from%3a%2065=
%2e38%20to%2065%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1226)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1226; if (NS4 || IE4) activateEl(=
'Q1226', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1226&amp;hit=3D1&amp;index=3DIPI%3aIPI000213=
42&amp;px=3D1"=20=0D
      target=3D_blank>1226</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>640.38&nbsp;&nbsp;&nbsp;&nbsp;1918.13&nbsp;&nbsp;&=
nbsp;&nbsp;1917.99&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MNKEVMPSIQSLDALVK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1918.129092 from(640.384189,3+) title(Elution%20from%3a%2046=
%2e32%20to%2046%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1227)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1227; if (NS4 || IE4) activateEl(=
'Q1227', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1227&amp;hit=3D1&amp;index=3DIPI%3aIPI000083=
62&amp;px=3D1"=20=0D
      target=3D_blank>1227</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>640.38&nbsp;&nbsp;&nbsp;&nbsp;1918.13&nbsp;&nbsp;&=
nbsp;&nbsp;1918.01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HPFLVGLRYSFQTPEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1918.139409 from(640.387628,3+) title(Elution%20from%3a%2059=
%2e26%20to%2059%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1228)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1228; if (NS4 || IE4) activateEl(=
'Q1228', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1228&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1228</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.39&nbsp;=
&nbsp;&nbsp;&nbsp;1918.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1918.143552 from(640.389009,3+) title(Elution%20from%3a%2068=
%2e42%20to%2068%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1229)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1229; if (NS4 || IE4) activateEl(=
'Q1229', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1229&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1229</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.39&nbsp;=
&nbsp;&nbsp;&nbsp;1918.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1918.165338 from(640.396271,3+) title(Elution%20from%3a%2062=
%2e31%20to%2062%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1230)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1230; if (NS4 || IE4) activateEl(=
'Q1230', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1230&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1230</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.40&nbsp;=
&nbsp;&nbsp;&nbsp;1918.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1919.126656 from(960.571153,2+) title(Elution%20from%3a%2064=
%2e29%20to%2064%2e29%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1233)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1233; if (NS4 || IE4) activateEl(=
'Q1233', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1233&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1233</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>960.57&nbsp;=
&nbsp;&nbsp;&nbsp;1919.13</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1919.132181 from(640.718552,3+) title(Elution%20from%3a%2066=
%2e89%20to%2066%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1234)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1234; if (NS4 || IE4) activateEl(=
'Q1234', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1234&amp;hit=3D1&amp;index=3DIPI%3aIPI000083=
35&amp;px=3D1"=20=0D
      target=3D_blank>1234</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>640.72&nbsp;&nbsp;&nbsp;&nbsp;1919.13&nbsp;&nbsp;&=
nbsp;&nbsp;1918.99&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LDLNVRNLSMIVEEMK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1919.137665 from(640.720380,3+) title(Elution%20from%3a%2059=
%2e97%20to%2059%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1235)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1235; if (NS4 || IE4) activateEl(=
'Q1235', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1235&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1235</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.72&nbsp;=
&nbsp;&nbsp;&nbsp;1919.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1919.138979 from(640.720818,3+) title(Elution%20from%3a%2063=
%2e01%20to%2063%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1236)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1236; if (NS4 || IE4) activateEl(=
'Q1236', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1236&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1236</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.72&nbsp;=
&nbsp;&nbsp;&nbsp;1919.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1919.147097 from(640.723524,3+) title(Elution%20from%3a%2069=
%2e97%20to%2069%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1237)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1237; if (NS4 || IE4) activateEl(=
'Q1237', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1237&amp;hit=3D1&amp;index=3DIPI%3aIPI000253=
36&amp;px=3D1"=20=0D
      target=3D_blank>1237</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>640.72&nbsp;&nbsp;&nbsp;&nbsp;1919.15&nbsp;&nbsp;&=
nbsp;&nbsp;1919.05&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GMPPLEIVPENIKVVER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1919.177934 from(640.733803,3+) title(Elution%20from%3a%2056=
%2e87%20to%2056%2e87%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1238)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1238; if (NS4 || IE4) activateEl(=
'Q1238', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1238&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1238</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>640.73&nbsp;=
&nbsp;&nbsp;&nbsp;1919.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1920.049497 from(641.024324,3+) title(Elution%20from%3a%2014=
%2e37%20to%2014%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1239)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1239; if (NS4 || IE4) activateEl(=
'Q1239', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1239&amp;hit=3D1&amp;index=3DIPI%3aIPI000296=
07&amp;px=3D1"=20=0D
      target=3D_blank>1239</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>641.02&nbsp;&nbsp;&nbsp;&nbsp;1920.05&nbsp;&nbsp;&=
nbsp;&nbsp;1920.12&nbsp;&nbsp;&nbsp;&nbsp;-0.07&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;LPVLPVAAAAELPPVPGGPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1920.122436 from(641.048637,3+) title(Elution%20from%3a%2067=
%2e24%20to%2067%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1240)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1240; if (NS4 || IE4) activateEl(=
'Q1240', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1240&amp;hit=3D1&amp;index=3DIPI%3aIPI000200=
97&amp;px=3D1"=20=0D
      target=3D_blank>1240</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>641.05&nbsp;&nbsp;&nbsp;&nbsp;1920.12&nbsp;&nbsp;&=
nbsp;&nbsp;1919.99&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LHLQSNHPDDIFLFPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1920.130128 from(641.051201,3+) title(Elution%20from%3a%2062=
%2e69%20to%2062%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1241)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1241; if (NS4 || IE4) activateEl(=
'Q1241', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1241&amp;hit=3D1&amp;index=3DIPI%3aIPI000278=
51&amp;px=3D1"=20=0D
      target=3D_blank>1241</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>641.05&nbsp;&nbsp;&nbsp;&nbsp;1920.13&nbsp;&nbsp;&=
nbsp;&nbsp;1919.99&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EDIPVNYMKELELVTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1922.076972 from(641.700149,3+) title(Elution%20from%3a%2016=
6%2e79%20to%20166%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1243)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1243; if (NS4 || IE4) activateEl(=
'Q1243', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1243&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1243</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>641.70&nbsp;=
&nbsp;&nbsp;&nbsp;1922.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1932.120945 from(645.048140,3+) title(Elution%20from%3a%2096=
%2e67%20to%2096%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1245)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1245; if (NS4 || IE4) activateEl(=
'Q1245', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1245&amp;hit=3D1&amp;index=3DIPI%3aIPI000145=
92&amp;px=3D1"=20=0D
      target=3D_blank>1245</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>645.05&nbsp;&nbsp;&nbsp;&nbsp;1932.12&nbsp;&nbsp;&=
nbsp;&nbsp;1931.99&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AMPNLVSLHLQHCQIR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1942.068387 from(648.363954,3+) title(Elution%20from%3a%2014=
%2e21%20to%2014%2e34%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(1246)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1246; if (NS4 || IE4) activateEl(=
'Q1246', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1246&amp;hit=3D1&amp;index=3DIPI%3aIPI000097=
17&amp;px=3D1"=20=0D
      target=3D_blank>1246</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>648.36&nbsp;&nbsp;&nbsp;&nbsp;1942.07&nbsp;&nbsp;&=
nbsp;&nbsp;1942.01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DLADELDLVDVIEDKLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1942.137216 from(648.386897,3+) title(Elution%20from%3a%2032=
%2e57%20to%2032%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1247)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1247; if (NS4 || IE4) activateEl(=
'Q1247', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1247&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1247</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>648.39&nbsp;=
&nbsp;&nbsp;&nbsp;1942.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1943.240564 from(972.628107,2+) title(Elution%20from%3a%2016=
1%2e61%20to%20161%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1248)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1248; if (NS4 || IE4) activateEl(=
'Q1248', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1248&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1248</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>972.63&nbsp;=
&nbsp;&nbsp;&nbsp;1943.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1943.276475 from(648.766650,3+) title(Elution%20from%3a%2016=
0%2e67%20to%20160%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1249)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1249; if (NS4 || IE4) activateEl(=
'Q1249', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1249&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1249</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>648.77&nbsp;=
&nbsp;&nbsp;&nbsp;1943.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1944.214230 from(973.114940,2+) title(Elution%20from%3a%2016=
1%2e45%20to%20161%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1250)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1250; if (NS4 || IE4) activateEl(=
'Q1250', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1250&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1250</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>973.11&nbsp;=
&nbsp;&nbsp;&nbsp;1944.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1945.246533 from(649.423336,3+) title(Elution%20from%3a%2016=
1%2e3%20to%20161%2e3%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1251)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1251; if (NS4 || IE4) activateEl(=
'Q1251', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1251&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1251</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.42&nbsp;=
&nbsp;&nbsp;&nbsp;1945.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1946.055816 from(649.693097,3+) title(Elution%20from%3a%2023=
%2e43%20to%2023%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1252)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1252; if (NS4 || IE4) activateEl(=
'Q1252', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1252&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1252</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.69&nbsp;=
&nbsp;&nbsp;&nbsp;1946.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1954.190868 from(652.404781,3+) title(Elution%20from%3a%2027=
%2e51%20to%2027%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1256)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1256; if (NS4 || IE4) activateEl(=
'Q1256', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1256&amp;hit=3D1&amp;index=3DIPI%3aIPI000194=
28&amp;px=3D1"=20=0D
      target=3D_blank>1256</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>652.40&nbsp;&nbsp;&nbsp;&nbsp;1954.19&nbsp;&nbsp;&=
nbsp;&nbsp;1954.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GEYILLGGSDKQVSLFTK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1954.213239 from(652.412238,3+) title(Elution%20from%3a%2021=
%2e75%20to%2021%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1257)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1257; if (NS4 || IE4) activateEl(=
'Q1257', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1257&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1257</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>652.41&nbsp;=
&nbsp;&nbsp;&nbsp;1954.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1955.214024 from(652.745833,3+) title(Elution%20from%3a%2028=
%2e37%20to%2028%2e37%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1258)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1258; if (NS4 || IE4) activateEl(=
'Q1258', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1258&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1258</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>652.75&nbsp;=
&nbsp;&nbsp;&nbsp;1955.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1956.206226 from(653.076567,3+) title(Elution%20from%3a%2020=
%2e69%20to%2020%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1259)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1259; if (NS4 || IE4) activateEl(=
'Q1259', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1259&amp;hit=3D1&amp;index=3DIPI%3aIPI000276=
25&amp;px=3D1"=20=0D
      target=3D_blank>1259</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>653.08&nbsp;&nbsp;&nbsp;&nbsp;1956.21&nbsp;&nbsp;&=
nbsp;&nbsp;1956.07&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AQDILGAVTLLLEGVMAAR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1956.657024 from(979.336337,2+) title(Elution%20from%3a%2019=
0%2e6%20to%20190%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1260)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1260; if (NS4 || IE4) activateEl(=
'Q1260', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1260&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1260</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>979.34&nbsp;=
&nbsp;&nbsp;&nbsp;1956.66</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1957.165785 from(653.396420,3+) title(Elution%20from%3a%2020=
%2e92%20to%2020%2e92%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1261)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1261; if (NS4 || IE4) activateEl(=
'Q1261', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1261&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1261</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>653.40&nbsp;=
&nbsp;&nbsp;&nbsp;1957.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1959.133032 from(654.052169,3+) title(Elution%20from%3a%2030=
%2e12%20to%2030%2e12%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1263)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1263; if (NS4 || IE4) activateEl(=
'Q1263', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1263&amp;hit=3D1&amp;index=3DIPI%3aIPI000141=
73&amp;px=3D1"=20=0D
      target=3D_blank>1263</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>654.05&nbsp;&nbsp;&nbsp;&nbsp;1959.13&nbsp;&nbsp;&=
nbsp;&nbsp;1959.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QQLPLPYEQLKHFYR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1960.121670 from(654.381715,3+) title(Elution%20from%3a%2029=
%2e28%20to%2029%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1266)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1266; if (NS4 || IE4) activateEl(=
'Q1266', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1266&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1266</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>654.38&nbsp;=
&nbsp;&nbsp;&nbsp;1960.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1960.137108 from(654.386861,3+) title(Elution%20from%3a%2022=
%2e89%20to%2023%2e01%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(1267)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1267; if (NS4 || IE4) activateEl(=
'Q1267', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1267&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1267</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>654.39&nbsp;=
&nbsp;&nbsp;&nbsp;1960.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1960.171065 from(654.398180,3+) title(Elution%20from%3a%2044=
%2e12%20to%2044%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1268)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1268; if (NS4 || IE4) activateEl(=
'Q1268', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1268&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1268</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>654.40&nbsp;=
&nbsp;&nbsp;&nbsp;1960.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1961.017644 from(981.516647,2+) title(Elution%20from%3a%2023=
%2e61%20to%2023%2e61%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1269)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1269; if (NS4 || IE4) activateEl(=
'Q1269', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1269&amp;hit=3D1&amp;index=3DIPI%3aIPI000082=
58&amp;px=3D1"=20=0D
      target=3D_blank>1269</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>981.52&nbsp;&nbsp;&nbsp;&nbsp;1961.02&nbsp;&nbsp;&=
nbsp;&nbsp;1961.10&nbsp;&nbsp;&nbsp;&nbsp;-0.08&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;FRFALPTAHHTLGLPVGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1961.049699 from(654.691058,3+) title(Elution%20from%3a%2036=
%2e23%20to%2036%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1270)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1270; if (NS4 || IE4) activateEl(=
'Q1270', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1270&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1270</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>654.69&nbsp;=
&nbsp;&nbsp;&nbsp;1961.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1961.056905 from(654.693460,3+) title(Elution%20from%3a%2023=
%2e56%20to%2023%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1272)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1272; if (NS4 || IE4) activateEl(=
'Q1272', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1272&amp;hit=3D1&amp;index=3DIPI%3aIPI000281=
30&amp;px=3D1"=20=0D
      target=3D_blank>1272</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>654.69&nbsp;&nbsp;&nbsp;&nbsp;1961.06&nbsp;&nbsp;&=
nbsp;&nbsp;1961.01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NFHQQLRSQMQLLFR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1961.082609 from(654.702028,3+) title(Elution%20from%3a%2030=
%2e15%20to%2030%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1273)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1273; if (NS4 || IE4) activateEl(=
'Q1273', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1273&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1273</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>654.70&nbsp;=
&nbsp;&nbsp;&nbsp;1961.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1961.253885 from(654.759120,3+) title(Elution%20from%3a%2015=
1%2e38%20to%20151%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1274)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1274; if (NS4 || IE4) activateEl(=
'Q1274', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1274&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1274</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>654.76&nbsp;=
&nbsp;&nbsp;&nbsp;1961.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1962.049416 from(655.024297,3+) title(Elution%20from%3a%2031=
%2e87%20to%2031%2e87%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1275)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1275; if (NS4 || IE4) activateEl(=
'Q1275', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1275&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1275</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>655.02&nbsp;=
&nbsp;&nbsp;&nbsp;1962.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1962.056568 from(655.026681,3+) title(Elution%20from%3a%2035=
%20to%2035%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20%2=
01%20%20) query(1276)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1276; if (NS4 || IE4) activateEl(=
'Q1276', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1276&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1276</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>655.03&nbsp;=
&nbsp;&nbsp;&nbsp;1962.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1962.064185 from(655.029220,3+) title(Elution%20from%3a%2023=
%2e3%20to%2023%2e3%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1277)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1277; if (NS4 || IE4) activateEl(=
'Q1277', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1277&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1277</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>655.03&nbsp;=
&nbsp;&nbsp;&nbsp;1962.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1965.191718 from(656.071731,3+) title(Elution%20from%3a%2077=
%2e15%20to%2077%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1280)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1280; if (NS4 || IE4) activateEl(=
'Q1280', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1280&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1280</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>656.07&nbsp;=
&nbsp;&nbsp;&nbsp;1965.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1965.193380 from(656.072285,3+) title(Elution%20from%3a%2074=
%2e11%20to%2074%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1281)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1281; if (NS4 || IE4) activateEl(=
'Q1281', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1281&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1281</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>656.07&nbsp;=
&nbsp;&nbsp;&nbsp;1965.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1969.235727 from(657.419734,3+) title(Elution%20from%3a%2024=
%2e28%20to%2024%2e28%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1282)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1282; if (NS4 || IE4) activateEl(=
'Q1282', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1282&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1282</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>657.42&nbsp;=
&nbsp;&nbsp;&nbsp;1969.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1973.046618 from(658.690031,3+) title(Elution%20from%3a%2018=
%2e93%20to%2018%2e93%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1283)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1283; if (NS4 || IE4) activateEl(=
'Q1283', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1283&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1283</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>658.69&nbsp;=
&nbsp;&nbsp;&nbsp;1973.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1973.117058 from(658.713511,3+) title(Elution%20from%3a%2013=
%2e21%20to%2013%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1284)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1284; if (NS4 || IE4) activateEl(=
'Q1284', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1284&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1284</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>658.71&nbsp;=
&nbsp;&nbsp;&nbsp;1973.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1974.054495 from(659.025990,3+) title(Elution%20from%3a%2037=
%2e14%20to%2037%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1285)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1285; if (NS4 || IE4) activateEl(=
'Q1285', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1285&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1285</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.03&nbsp;=
&nbsp;&nbsp;&nbsp;1974.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1974.270837 from(659.098104,3+) title(Elution%20from%3a%2042=
%2e01%20to%2042%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1286)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1286; if (NS4 || IE4) activateEl(=
'Q1286', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1286&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1286</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.10&nbsp;=
&nbsp;&nbsp;&nbsp;1974.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1974.284652 from(659.102709,3+) title(Elution%20from%3a%2064=
%2e48%20to%2064%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1287)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1287; if (NS4 || IE4) activateEl(=
'Q1287', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1287&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1287</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.10&nbsp;=
&nbsp;&nbsp;&nbsp;1974.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1975.088259 from(659.370578,3+) title(Elution%20from%3a%2037=
%2e09%20to%2037%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1288)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1288; if (NS4 || IE4) activateEl(=
'Q1288', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1288&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1288</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.37&nbsp;=
&nbsp;&nbsp;&nbsp;1975.09</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1975.182687 from(659.402054,3+) title(Elution%20from%3a%2019=
%2e86%20to%2019%2e86%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1289)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1289; if (NS4 || IE4) activateEl(=
'Q1289', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1289&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1289</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.40&nbsp;=
&nbsp;&nbsp;&nbsp;1975.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1975.276722 from(659.433399,3+) title(Elution%20from%3a%2064=
%2e68%20to%2064%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1290)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1290; if (NS4 || IE4) activateEl(=
'Q1290', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1290&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1290</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.43&nbsp;=
&nbsp;&nbsp;&nbsp;1975.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1975.307565 from(659.443680,3+) title(Elution%20from%3a%2041=
%2e96%20to%2041%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1291)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1291; if (NS4 || IE4) activateEl(=
'Q1291', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1291&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1291</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.44&nbsp;=
&nbsp;&nbsp;&nbsp;1975.31</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1976.055768 from(659.693081,3+) title(Elution%20from%3a%2037=
%2e74%20to%2037%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1292)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1292; if (NS4 || IE4) activateEl(=
'Q1292', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1292&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1292</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.69&nbsp;=
&nbsp;&nbsp;&nbsp;1976.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1976.166147 from(659.729874,3+) title(Elution%20from%3a%2019=
%2e89%20to%2020%2e02%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%202%20%20) query(1293)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1293; if (NS4 || IE4) activateEl(=
'Q1293', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1293&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1293</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>659.73&nbsp;=
&nbsp;&nbsp;&nbsp;1976.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1978.201356 from(660.408277,3+) title(Elution%20from%3a%2028=
%2e94%20to%2028%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1294)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1294; if (NS4 || IE4) activateEl(=
'Q1294', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1294&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1294</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>660.41&nbsp;=
&nbsp;&nbsp;&nbsp;1978.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1985.077608 from(662.700361,3+) title(Elution%20from%3a%2079=
%2e16%20to%2079%2e16%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1297)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1297; if (NS4 || IE4) activateEl(=
'Q1297', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1297&amp;hit=3D1&amp;index=3DIPI%3aIPI000143=
34&amp;px=3D1"=20=0D
      target=3D_blank>1297</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>662.70&nbsp;&nbsp;&nbsp;&nbsp;1985.08&nbsp;&nbsp;&=
nbsp;&nbsp;1985.09&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;KTLSHNLLVSEVYNQLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1986.092418 from(663.038631,3+) title(Elution%20from%3a%2078=
%2e94%20to%2078%2e94%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1298)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1298; if (NS4 || IE4) activateEl(=
'Q1298', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1298&amp;hit=3D1&amp;index=3DIPI%3aIPI000125=
69&amp;px=3D1"=20=0D
      target=3D_blank>1298</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>663.04&nbsp;&nbsp;&nbsp;&nbsp;1986.09&nbsp;&nbsp;&=
nbsp;&nbsp;1986.01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AFSYRSALLSHQDIHNK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1987.153011 from(663.392162,3+) title(Elution%20from%3a%2015=
3%2e83%20to%20153%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1299)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1299; if (NS4 || IE4) activateEl(=
'Q1299', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1299&amp;hit=3D1&amp;index=3DIPI%3aIPI000100=
31&amp;px=3D1"=20=0D
      target=3D_blank>1299</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>663.39&nbsp;&nbsp;&nbsp;&nbsp;1987.15&nbsp;&nbsp;&=
nbsp;&nbsp;1987.12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IIILFVVITSQEEVQEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1987.195455 from(663.406310,3+) title(Elution%20from%3a%2013=
9%2e93%20to%20139%2e93%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1300)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1300; if (NS4 || IE4) activateEl(=
'Q1300', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1300&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1300</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>663.41&nbsp;=
&nbsp;&nbsp;&nbsp;1987.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1988.136111 from(663.719862,3+) title(Elution%20from%3a%2015=
4%2e4%20to%20154%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1301)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1301; if (NS4 || IE4) activateEl(=
'Q1301', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1301&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1301</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>663.72&nbsp;=
&nbsp;&nbsp;&nbsp;1988.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1988.196555 from(663.740010,3+) title(Elution%20from%3a%2014=
0%2e06%20to%20140%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1302)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1302; if (NS4 || IE4) activateEl(=
'Q1302', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1302&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1302</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>663.74&nbsp;=
&nbsp;&nbsp;&nbsp;1988.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1989.175545 from(664.066340,3+) title(Elution%20from%3a%2015=
4%2e58%20to%20154%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1303)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1303; if (NS4 || IE4) activateEl(=
'Q1303', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1303&amp;hit=3D1&amp;index=3DIPI%3aIPI000200=
94&amp;px=3D1"=20=0D
      target=3D_blank>1303</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>664.07&nbsp;&nbsp;&nbsp;&nbsp;1989.18&nbsp;&nbsp;&=
nbsp;&nbsp;1989.12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KPKVTISYPGAMLNIMVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1989.245943 from(664.089806,3+) title(Elution%20from%3a%2014=
0%2e54%20to%20140%2e54%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1304)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1304; if (NS4 || IE4) activateEl(=
'Q1304', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1304&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1304</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>664.09&nbsp;=
&nbsp;&nbsp;&nbsp;1989.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1995.175485 from(666.066320,3+) title(Elution%20from%3a%2013=
4%2e6%20to%20134%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1312)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1312; if (NS4 || IE4) activateEl(=
'Q1312', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1312&amp;hit=3D1&amp;index=3DIPI%3aIPI000022=
47&amp;px=3D1"=20=0D
      target=3D_blank>1312</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.07&nbsp;&nbsp;&nbsp;&nbsp;1995.18&nbsp;&nbsp;&=
nbsp;&nbsp;1995.09&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DVCFGMPSLLPIHRLLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.118032 from(500.037333,4+) title(Elution%20from%3a%2015=
0%2e29%20to%20150%2e29%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1313)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1313; if (NS4 || IE4) activateEl(=
'Q1313', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1313&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1313</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>500.04&nbsp;=
&nbsp;&nbsp;&nbsp;1996.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.134204 from(666.385893,3+) title(Elution%20from%3a%2083=
%2e62%20to%2083%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1314)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1314; if (NS4 || IE4) activateEl(=
'Q1314', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1314&amp;hit=3D1&amp;index=3DIPI%3aIPI000297=
02&amp;px=3D1"=20=0D
      target=3D_blank>1314</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.39&nbsp;&nbsp;&nbsp;&nbsp;1996.13&nbsp;&nbsp;&=
nbsp;&nbsp;1996.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RPGGPQYGIAREDVVLNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.151715 from(666.391730,3+) title(Elution%20from%3a%2015=
4%2e63%20to%20154%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1315)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1315; if (NS4 || IE4) activateEl(=
'Q1315', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1315&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1315</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>666.39&nbsp;=
&nbsp;&nbsp;&nbsp;1996.15</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.157505 from(666.393660,3+) title(Elution%20from%3a%2013=
1%2e17%20to%20131%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1316)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1316; if (NS4 || IE4) activateEl(=
'Q1316', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1316&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1316</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>666.39&nbsp;=
&nbsp;&nbsp;&nbsp;1996.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.157871 from(666.393782,3+) title(Elution%20from%3a%2014=
3%2e91%20to%20143%2e91%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1317)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1317; if (NS4 || IE4) activateEl(=
'Q1317', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1317&amp;hit=3D1&amp;index=3DIPI%3aIPI000309=
07&amp;px=3D1"=20=0D
      target=3D_blank>1317</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.39&nbsp;&nbsp;&nbsp;&nbsp;1996.16&nbsp;&nbsp;&=
nbsp;&nbsp;1996.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YQKVYGTAAVNSPVVSWK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.158568 from(999.087109,2+) title(Elution%20from%3a%2014=
9%2e88%20to%20149%2e88%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1318)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1318; if (NS4 || IE4) activateEl(=
'Q1318', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1318&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1318</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>999.09&nbsp;=
&nbsp;&nbsp;&nbsp;1996.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.160475 from(666.394650,3+) title(Elution%20from%3a%2015=
1%2e59%20to%20151%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1319)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1319; if (NS4 || IE4) activateEl(=
'Q1319', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1319&amp;hit=3D1&amp;index=3DIPI%3aIPI000297=
02&amp;px=3D1"=20=0D
      target=3D_blank>1319</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.39&nbsp;&nbsp;&nbsp;&nbsp;1996.16&nbsp;&nbsp;&=
nbsp;&nbsp;1996.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RPGGPQYGIAREDVVLNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.161936 from(666.395137,3+) title(Elution%20from%3a%2014=
0%2e64%20to%20140%2e64%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1320)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1320; if (NS4 || IE4) activateEl(=
'Q1320', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1320&amp;hit=3D1&amp;index=3DIPI%3aIPI000297=
02&amp;px=3D1"=20=0D
      target=3D_blank>1320</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.40&nbsp;&nbsp;&nbsp;&nbsp;1996.16&nbsp;&nbsp;&=
nbsp;&nbsp;1996.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RPGGPQYGIAREDVVLNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.162884 from(666.395453,3+) title(Elution%20from%3a%2013=
4%2e2%20to%20134%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1321)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1321; if (NS4 || IE4) activateEl(=
'Q1321', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1321&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1321</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>666.40&nbsp;=
&nbsp;&nbsp;&nbsp;1996.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1996.166088 from(666.396521,3+) title(Elution%20from%3a%2014=
6%2e97%20to%20146%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1322)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1322; if (NS4 || IE4) activateEl(=
'Q1322', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1322&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1322</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>666.40&nbsp;=
&nbsp;&nbsp;&nbsp;1996.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1997.141172 from(999.578411,2+) title(Elution%20from%3a%2015=
0%2e11%20to%20150%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1323)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1323; if (NS4 || IE4) activateEl(=
'Q1323', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1323&amp;hit=3D1&amp;index=3DIPI%3aIPI000053=
26&amp;px=3D1"=20=0D
      target=3D_blank>1323</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>999.58&nbsp;&nbsp;&nbsp;&nbsp;1997.14&nbsp;&nbsp;&=
nbsp;&nbsp;1997.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RPYVFIYNSDKDPVER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1997.158329 from(666.727268,3+) title(Elution%20from%3a%2014=
5%2e68%20to%20145%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1324)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1324; if (NS4 || IE4) activateEl(=
'Q1324', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1324&amp;hit=3D1&amp;index=3DIPI%3aIPI000248=
53&amp;px=3D1"=20=0D
      target=3D_blank>1324</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.73&nbsp;&nbsp;&nbsp;&nbsp;1997.16&nbsp;&nbsp;&=
nbsp;&nbsp;1997.05&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VSEMKLPEVSEVAVPEVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1997.161698 from(666.728391,3+) title(Elution%20from%3a%2015=
2%2e4%20to%20152%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1325)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1325; if (NS4 || IE4) activateEl(=
'Q1325', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1325&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1325</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>666.73&nbsp;=
&nbsp;&nbsp;&nbsp;1997.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1997.175072 from(666.732849,3+) title(Elution%20from%3a%2014=
2%2e09%20to%20142%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1326)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1326; if (NS4 || IE4) activateEl(=
'Q1326', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1326&amp;hit=3D1&amp;index=3DIPI%3aIPI000192=
70&amp;px=3D1"=20=0D
      target=3D_blank>1326</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>666.73&nbsp;&nbsp;&nbsp;&nbsp;1997.18&nbsp;&nbsp;&=
nbsp;&nbsp;1997.05&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EQITLDVLVEMGHKELK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"1997.176503 from(666.733326,3+) title(Elution%20from%3a%2013=
3%2e09%20to%20133%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1327)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1327; if (NS4 || IE4) activateEl(=
'Q1327', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1327&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1327</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>666.73&nbsp;=
&nbsp;&nbsp;&nbsp;1997.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2002.165476 from(668.396317,3+) title(Elution%20from%3a%2014=
1%2e86%20to%20141%2e86%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1328)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1328; if (NS4 || IE4) activateEl(=
'Q1328', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1328&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1328</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>668.40&nbsp;=
&nbsp;&nbsp;&nbsp;2002.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2003.124501 from(668.715992,3+) title(Elution%20from%3a%2014=
1%2e7%20to%20141%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1329)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1329; if (NS4 || IE4) activateEl(=
'Q1329', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1329&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1329</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>668.72&nbsp;=
&nbsp;&nbsp;&nbsp;2003.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2003.148882 from(668.724119,3+) title(Elution%20from%3a%2097=
%2e57%20to%2097%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1330)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1330; if (NS4 || IE4) activateEl(=
'Q1330', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1330&amp;hit=3D1&amp;index=3DIPI%3aIPI000129=
86&amp;px=3D1"=20=0D
      target=3D_blank>1330</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>668.72&nbsp;&nbsp;&nbsp;&nbsp;2003.15&nbsp;&nbsp;&=
nbsp;&nbsp;2003.02&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MGTLRVHELQSLSEMLK&nbsp;+&nbsp;2=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2003.227248 from(668.750241,3+) title(Elution%20from%3a%2010=
0%2e62%20to%20100%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1331)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1331; if (NS4 || IE4) activateEl(=
'Q1331', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1331&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1331</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>668.75&nbsp;=
&nbsp;&nbsp;&nbsp;2003.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2004.136425 from(669.053300,3+) title(Elution%20from%3a%2014=
2%2e32%20to%20142%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1332)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1332; if (NS4 || IE4) activateEl(=
'Q1332', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1332&amp;hit=3D1&amp;index=3DIPI%3aIPI000286=
96&amp;px=3D1"=20=0D
      target=3D_blank>1332</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>669.05&nbsp;&nbsp;&nbsp;&nbsp;2004.14&nbsp;&nbsp;&=
nbsp;&nbsp;2004.04&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GIDVQQVSLVNHDLPTNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2004.150564 from(669.058013,3+) title(Elution%20from%3a%2097=
%2e45%20to%2097%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1333)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1333; if (NS4 || IE4) activateEl(=
'Q1333', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1333&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1333</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>669.06&nbsp;=
&nbsp;&nbsp;&nbsp;2004.15</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2004.166620 from(669.063365,3+) title(Elution%20from%3a%2010=
0%2e49%20to%20100%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1334)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1334; if (NS4 || IE4) activateEl(=
'Q1334', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1334&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1334</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>669.06&nbsp;=
&nbsp;&nbsp;&nbsp;2004.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2005.179423 from(669.400966,3+) title(Elution%20from%3a%2098=
%2e48%20to%2098%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1335)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1335; if (NS4 || IE4) activateEl(=
'Q1335', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1335&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1335</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>669.40&nbsp;=
&nbsp;&nbsp;&nbsp;2005.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2006.163225 from(669.728900,3+) title(Elution%20from%3a%2098=
%2e63%20to%2098%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1336)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1336; if (NS4 || IE4) activateEl(=
'Q1336', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1336&amp;hit=3D1&amp;index=3DIPI%3aIPI000112=
43&amp;px=3D1"=20=0D
      target=3D_blank>1336</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>669.73&nbsp;&nbsp;&nbsp;&nbsp;2006.16&nbsp;&nbsp;&=
nbsp;&nbsp;2006.14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ILFLSSIIPFDCLLTVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2011.268790 from(671.430755,3+) title(Elution%20from%3a%2084=
%2e25%20to%2084%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1337)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1337; if (NS4 || IE4) activateEl(=
'Q1337', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1337&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1337</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>671.43&nbsp;=
&nbsp;&nbsp;&nbsp;2011.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2011.275225 from(671.432900,3+) title(Elution%20from%3a%2087=
%2e3%20to%2087%2e3%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1338)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1338; if (NS4 || IE4) activateEl(=
'Q1338', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1338&amp;hit=3D1&amp;index=3DIPI%3aIPI000043=
32&amp;px=3D1"=20=0D
      target=3D_blank>1338</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>671.43&nbsp;&nbsp;&nbsp;&nbsp;2011.28&nbsp;&nbsp;&=
nbsp;&nbsp;2011.17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ALSRAMLLTSYLPPPLLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2012.265057 from(671.762844,3+) title(Elution%20from%3a%2084=
%2e64%20to%2084%2e64%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1339)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1339; if (NS4 || IE4) activateEl(=
'Q1339', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1339&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1339</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>671.76&nbsp;=
&nbsp;&nbsp;&nbsp;2012.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2012.272224 from(671.765233,3+) title(Elution%20from%3a%2087=
%2e69%20to%2087%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1340)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1340; if (NS4 || IE4) activateEl(=
'Q1340', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1340&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1340</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>671.77&nbsp;=
&nbsp;&nbsp;&nbsp;2012.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2013.286080 from(672.103185,3+) title(Elution%20from%3a%2085=
%2e67%20to%2085%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1341)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1341; if (NS4 || IE4) activateEl(=
'Q1341', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1341&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1341</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>672.10&nbsp;=
&nbsp;&nbsp;&nbsp;2013.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2014.154082 from(672.392519,3+) title(Elution%20from%3a%2063=
%2e61%20to%2063%2e61%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1342)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1342; if (NS4 || IE4) activateEl(=
'Q1342', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1342&amp;hit=3D1&amp;index=3DIPI%3aIPI000139=
81&amp;px=3D1"=20=0D
      target=3D_blank>1342</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000>672.39&nbsp;&nbsp;&nbsp;&nbsp;2014.15&nbsp;&nbsp;&nbs=
p;&nbsp;2014.03&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp;1&=
nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&=
nbsp;VPYPGMVNREVLEQVER</FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2016.243357 from(673.088944,3+) title(Elution%20from%3a%2012=
1%2e34%20to%20121%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1343)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1343; if (NS4 || IE4) activateEl(=
'Q1343', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1343&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1343</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>673.09&nbsp;=
&nbsp;&nbsp;&nbsp;2016.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2017.207986 from(673.410487,3+) title(Elution%20from%3a%2087=
%2e14%20to%2087%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1344)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1344; if (NS4 || IE4) activateEl(=
'Q1344', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1344&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1344</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>673.41&nbsp;=
&nbsp;&nbsp;&nbsp;2017.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2017.208109 from(673.410528,3+) title(Elution%20from%3a%2069=
%2e59%20to%2069%2e59%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1345)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1345; if (NS4 || IE4) activateEl(=
'Q1345', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1345&amp;hit=3D1&amp;index=3DIPI%3aIPI000174=
13&amp;px=3D1"=20=0D
      target=3D_blank>1345</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>673.41&nbsp;&nbsp;&nbsp;&nbsp;2017.21&nbsp;&nbsp;&=
nbsp;&nbsp;2017.08&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NTITTLGAIFSHLPVFRM</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2017.212009 from(673.411828,3+) title(Elution%20from%3a%2012=
0%2e92%20to%20120%2e92%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1346)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1346; if (NS4 || IE4) activateEl(=
'Q1346', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1346&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1346</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>673.41&nbsp;=
&nbsp;&nbsp;&nbsp;2017.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2017.214001 from(673.412492,3+) title(Elution%20from%3a%2066=
%2e58%20to%2066%2e58%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(1347)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1347; if (NS4 || IE4) activateEl(=
'Q1347', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1347&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1347</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>673.41&nbsp;=
&nbsp;&nbsp;&nbsp;2017.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2017.231392 from(673.418289,3+) title(Elution%20from%3a%2012=
4%2e07%20to%20124%2e07%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1348)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1348; if (NS4 || IE4) activateEl(=
'Q1348', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1348&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1348</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>673.42&nbsp;=
&nbsp;&nbsp;&nbsp;2017.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2018.207604 from(673.743693,3+) title(Elution%20from%3a%2069=
%2e78%20to%2069%2e78%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1349)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1349; if (NS4 || IE4) activateEl(=
'Q1349', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1349&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1349</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>673.74&nbsp;=
&nbsp;&nbsp;&nbsp;2018.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2018.213184 from(673.745553,3+) title(Elution%20from%3a%2066=
%2e61%20to%2066%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1350)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1350; if (NS4 || IE4) activateEl(=
'Q1350', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1350&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1350</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>673.75&nbsp;=
&nbsp;&nbsp;&nbsp;2018.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2018.237247 from(673.753574,3+) title(Elution%20from%3a%2012=
2%2e06%20to%20122%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1351)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1351; if (NS4 || IE4) activateEl(=
'Q1351', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1351&amp;hit=3D1&amp;index=3DIPI%3aIPI000198=
81&amp;px=3D1"=20=0D
      target=3D_blank>1351</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>673.75&nbsp;&nbsp;&nbsp;&nbsp;2018.24&nbsp;&nbsp;&=
nbsp;&nbsp;2018.09&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LPEAAFLARTYLPSQVSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2023.186773 from(675.403416,3+) title(Elution%20from%3a%2010=
7%2e6%20to%20107%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1352)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1352; if (NS4 || IE4) activateEl(=
'Q1352', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1352&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1352</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>675.40&nbsp;=
&nbsp;&nbsp;&nbsp;2023.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2024.156055 from(675.726510,3+) title(Elution%20from%3a%2010=
7%2e98%20to%20107%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1353)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1353; if (NS4 || IE4) activateEl(=
'Q1353', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1353&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1353</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>675.73&nbsp;=
&nbsp;&nbsp;&nbsp;2024.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2025.228300 from(676.083925,3+) title(Elution%20from%3a%2011=
5%2e39%20to%20115%2e39%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1354)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1354; if (NS4 || IE4) activateEl(=
'Q1354', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1354&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1354</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.08&nbsp;=
&nbsp;&nbsp;&nbsp;2025.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2025.616078 from(1013.815864,2+) title(Elution%20from%3a%202=
04%2e29%20to%20204%2e29%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1355)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1355; if (NS4 || IE4) activateEl(=
'Q1355', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1355&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1355</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1013.82&nbsp;&nbsp=
;&nbsp;&nbsp;2025.62</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2026.185273 from(676.402916,3+) title(Elution%20from%3a%2011=
4%2e33%20to%20114%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1356)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1356; if (NS4 || IE4) activateEl(=
'Q1356', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1356&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1356</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.40&nbsp;=
&nbsp;&nbsp;&nbsp;2026.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2026.222293 from(676.415256,3+) title(Elution%20from%3a%2011=
7%2e46%20to%20117%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1357)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1357; if (NS4 || IE4) activateEl(=
'Q1357', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1357&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1357</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.42&nbsp;=
&nbsp;&nbsp;&nbsp;2026.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2027.234364 from(676.752613,3+) title(Elution%20from%3a%2011=
5%2e44%20to%20115%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1358)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1358; if (NS4 || IE4) activateEl(=
'Q1358', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1358&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1358</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.75&nbsp;=
&nbsp;&nbsp;&nbsp;2027.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2027.586675 from(676.870050,3+) title(Elution%20from%3a%2044=
%2e17%20to%2044%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1359)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1359; if (NS4 || IE4) activateEl(=
'Q1359', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1359&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1359</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.87&nbsp;=
&nbsp;&nbsp;&nbsp;2027.59</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2029.111851 from(677.378442,3+) title(Elution%20from%3a%2048=
%20to%2048%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles%3a%20%2=
01%20%20) query(1360)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1360; if (NS4 || IE4) activateEl(=
'Q1360', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1360&amp;hit=3D1&amp;index=3DIPI%3aIPI000244=
18&amp;px=3D1"=20=0D
      target=3D_blank>1360</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.38&nbsp;&nbsp;&nbsp;&nbsp;2029.11&nbsp;&nbsp;&=
nbsp;&nbsp;2029.01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VPYPGMNNREVLEQVER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2029.119774 from(677.381083,3+) title(Elution%20from%3a%2057=
%2e19%20to%2057%2e19%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1361)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1361; if (NS4 || IE4) activateEl(=
'Q1361', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1361&amp;hit=3D1&amp;index=3DIPI%3aIPI000244=
18&amp;px=3D1"=20=0D
      target=3D_blank>1361</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>677.38&nbsp;&nbsp;&nbsp;&nbsp;2029.12&nbsp;&nbsp;&=
nbsp;&nbsp;2029.01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VPYPGMNNREVLEQVER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2032.189461 from(678.404312,3+) title(Elution%20from%3a%2035=
%2e5%20to%2035%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1362)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1362; if (NS4 || IE4) activateEl(=
'Q1362', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1362&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1362</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>678.40&nbsp;=
&nbsp;&nbsp;&nbsp;2032.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2032.253700 from(678.425725,3+) title(Elution%20from%3a%2012=
9%2e7%20to%20129%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1363)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1363; if (NS4 || IE4) activateEl(=
'Q1363', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1363&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1363</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>678.43&nbsp;=
&nbsp;&nbsp;&nbsp;2032.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2033.194851 from(678.739442,3+) title(Elution%20from%3a%2038=
%2e87%20to%2038%2e87%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1364)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1364; if (NS4 || IE4) activateEl(=
'Q1364', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1364&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1364</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>678.74&nbsp;=
&nbsp;&nbsp;&nbsp;2033.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2033.284191 from(678.769222,3+) title(Elution%20from%3a%2035=
%2e81%20to%2035%2e81%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1365)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1365; if (NS4 || IE4) activateEl(=
'Q1365', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1365&amp;hit=3D1&amp;index=3DIPI%3aIPI000004=
01&amp;px=3D1"=20=0D
      target=3D_blank>1365</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>678.77&nbsp;&nbsp;&nbsp;&nbsp;2033.28&nbsp;&nbsp;&=
nbsp;&nbsp;2033.19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LVGSAFTIAVVGFAIAISLGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2034.182238 from(679.068571,3+) title(Elution%20from%3a%2052=
%2e81%20to%2052%2e81%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1366)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1366; if (NS4 || IE4) activateEl(=
'Q1366', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1366&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1366</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>679.07&nbsp;=
&nbsp;&nbsp;&nbsp;2034.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2034.184074 from(679.069183,3+) title(Elution%20from%3a%2035=
%2e94%20to%2035%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1367)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1367; if (NS4 || IE4) activateEl(=
'Q1367', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1367&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1367</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>679.07&nbsp;=
&nbsp;&nbsp;&nbsp;2034.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2034.207147 from(679.076874,3+) title(Elution%20from%3a%2031=
%2e61%20to%2031%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1368)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1368; if (NS4 || IE4) activateEl(=
'Q1368', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1368&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1368</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>679.08&nbsp;=
&nbsp;&nbsp;&nbsp;2034.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2034.208497 from(679.077324,3+) title(Elution%20from%3a%2049=
%2e77%20to%2049%2e77%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1369)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1369; if (NS4 || IE4) activateEl(=
'Q1369', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1369&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1369</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>679.08&nbsp;=
&nbsp;&nbsp;&nbsp;2034.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2034.214785 from(679.079420,3+) title(Elution%20from%3a%2039=
%20to%2039%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20%2=
01%20%20) query(1370)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1370; if (NS4 || IE4) activateEl(=
'Q1370', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1370&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1370</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>679.08&nbsp;=
&nbsp;&nbsp;&nbsp;2034.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2035.133514 from(679.385663,3+) title(Elution%20from%3a%2044=
%2e07%20to%2044%2e07%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1371)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1371; if (NS4 || IE4) activateEl(=
'Q1371', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1371&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1371</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>679.39&nbsp;=
&nbsp;&nbsp;&nbsp;2035.13</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2035.187292 from(679.403589,3+) title(Elution%20from%3a%2050=
%2e7%20to%2050%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1372)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1372; if (NS4 || IE4) activateEl(=
'Q1372', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1372&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1372</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>679.40&nbsp;=
&nbsp;&nbsp;&nbsp;2035.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2035.198131 from(679.407202,3+) title(Elution%20from%3a%2039=
%2e63%20to%2039%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1373)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1373; if (NS4 || IE4) activateEl(=
'Q1373', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1373&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1373</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>679.41&nbsp;=
&nbsp;&nbsp;&nbsp;2035.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2039.179581 from(680.734352,3+) title(Elution%20from%3a%207%=
2e75%20to%207%2e75%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(1374)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1374; if (NS4 || IE4) activateEl(=
'Q1374', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1374&amp;hit=3D1&amp;index=3DIPI%3aIPI000274=
21&amp;px=3D1"=20=0D
      target=3D_blank>1374</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>680.73&nbsp;&nbsp;&nbsp;&nbsp;2039.18&nbsp;&nbsp;&=
nbsp;&nbsp;2039.09&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EGPVGLPGIDGRPGPIGPAGAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2040.197166 from(681.073547,3+) title(Elution%20from%3a%207%=
2e8%20to%207%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3=
a%20%201%20%20) query(1375)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1375; if (NS4 || IE4) activateEl(=
'Q1375', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1375&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1375</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>681.07&nbsp;=
&nbsp;&nbsp;&nbsp;2040.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2041.172478 from(681.398651,3+) title(Elution%20from%3a%2011=
%2e07%20to%2011%2e07%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1376)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1376; if (NS4 || IE4) activateEl(=
'Q1376', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1376&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1376</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>681.40&nbsp;=
&nbsp;&nbsp;&nbsp;2041.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2048.106732 from(683.710069,3+) title(Elution%20from%3a%2010=
5%2e53%20to%20105%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1378)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1378; if (NS4 || IE4) activateEl(=
'Q1378', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1378&amp;hit=3D1&amp;index=3DIPI%3aIPI000269=
56&amp;px=3D1"=20=0D
      target=3D_blank>1378</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>683.71&nbsp;&nbsp;&nbsp;&nbsp;2048.11&nbsp;&nbsp;&=
nbsp;&nbsp;2047.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EVECQQEHIHELQELK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2048.110173 from(683.711216,3+) title(Elution%20from%3a%2080=
%2e34%20to%2080%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1379)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1379; if (NS4 || IE4) activateEl(=
'Q1379', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1379&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1379</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>683.71&nbsp;=
&nbsp;&nbsp;&nbsp;2048.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2049.095589 from(684.039688,3+) title(Elution%20from%3a%2010=
2%2e66%20to%20102%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1380)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1380; if (NS4 || IE4) activateEl(=
'Q1380', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1380&amp;hit=3D1&amp;index=3DIPI%3aIPI000260=
16&amp;px=3D1"=20=0D
      target=3D_blank>1380</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.04&nbsp;&nbsp;&nbsp;&nbsp;2049.10&nbsp;&nbsp;&=
nbsp;&nbsp;2049.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AHVSPHEMLQAVVLCSKK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2049.108120 from(684.043865,3+) title(Elution%20from%3a%2080=
%2e22%20to%2080%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1381)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1381; if (NS4 || IE4) activateEl(=
'Q1381', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1381&amp;hit=3D1&amp;index=3DIPI%3aIPI000157=
66&amp;px=3D1"=20=0D
      target=3D_blank>1381</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.04&nbsp;&nbsp;&nbsp;&nbsp;2049.11&nbsp;&nbsp;&=
nbsp;&nbsp;2049.16&nbsp;&nbsp;&nbsp;&nbsp;-0.05&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IPEDQHALLVKYQGLVVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2049.109230 from(684.044235,3+) title(Elution%20from%3a%2010=
5%2e71%20to%20105%2e71%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1382)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1382; if (NS4 || IE4) activateEl(=
'Q1382', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1382&amp;hit=3D1&amp;index=3DIPI%3aIPI000277=
76&amp;px=3D1"=20=0D
      target=3D_blank>1382</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.04&nbsp;&nbsp;&nbsp;&nbsp;2049.11&nbsp;&nbsp;&=
nbsp;&nbsp;2048.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GDPYPQEVSATVQKVMER&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2050.103928 from(684.375801,3+) title(Elution%20from%3a%2010=
2%2e79%20to%20102%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1383)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1383; if (NS4 || IE4) activateEl(=
'Q1383', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1383&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1383</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>684.38&nbsp;=
&nbsp;&nbsp;&nbsp;2050.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2050.110408 from(684.377961,3+) title(Elution%20from%3a%2010=
5%2e99%20to%20105%2e99%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1384)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1384; if (NS4 || IE4) activateEl(=
'Q1384', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1384&amp;hit=3D1&amp;index=3DIPI%3aIPI000200=
03&amp;px=3D1"=20=0D
      target=3D_blank>1384</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.38&nbsp;&nbsp;&nbsp;&nbsp;2050.11&nbsp;&nbsp;&=
nbsp;&nbsp;2049.98&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FVSIVTEEEGVYSVDYSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2050.110978 from(684.378151,3+) title(Elution%20from%3a%2080=
%2e57%20to%2080%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1385)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1385; if (NS4 || IE4) activateEl(=
'Q1385', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1385&amp;hit=3D1&amp;index=3DIPI%3aIPI000243=
04&amp;px=3D1"=20=0D
      target=3D_blank>1385</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>684.38&nbsp;&nbsp;&nbsp;&nbsp;2050.11&nbsp;&nbsp;&=
nbsp;&nbsp;2050.08&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LKTFANFPSGSPVSASTLAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2052.167460 from(685.063645,3+) title(Elution%20from%3a%2012=
6%2e22%20to%20126%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1388)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1388; if (NS4 || IE4) activateEl(=
'Q1388', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1388&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1388</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>685.06&nbsp;=
&nbsp;&nbsp;&nbsp;2052.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2052.168222 from(685.063899,3+) title(Elution%20from%3a%2010=
2%2e61%20to%20102%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1389)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1389; if (NS4 || IE4) activateEl(=
'Q1389', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1389&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1389</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>685.06&nbsp;=
&nbsp;&nbsp;&nbsp;2052.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2052.196242 from(685.073239,3+) title(Elution%20from%3a%2012=
9%2e37%20to%20129%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1390)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1390; if (NS4 || IE4) activateEl(=
'Q1390', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1390&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1390</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>685.07&nbsp;=
&nbsp;&nbsp;&nbsp;2052.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2053.181547 from(685.401674,3+) title(Elution%20from%3a%2010=
3%2e1%20to%20103%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1391)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1391; if (NS4 || IE4) activateEl(=
'Q1391', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1391&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1391</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>685.40&nbsp;=
&nbsp;&nbsp;&nbsp;2053.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2053.200402 from(685.407959,3+) title(Elution%20from%3a%2012=
6%2e46%20to%20126%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1392)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1392; if (NS4 || IE4) activateEl(=
'Q1392', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1392&amp;hit=3D1&amp;index=3DIPI%3aIPI000126=
45&amp;px=3D1"=20=0D
      target=3D_blank>1392</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>685.41&nbsp;&nbsp;&nbsp;&nbsp;2053.20&nbsp;&nbsp;&=
nbsp;&nbsp;2053.12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VIESTQGLGNDLAGVLALQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2054.204592 from(685.742689,3+) title(Elution%20from%3a%2012=
7%2e91%20to%20127%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1393)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1393; if (NS4 || IE4) activateEl(=
'Q1393', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1393&amp;hit=3D1&amp;index=3DIPI%3aIPI000285=
49&amp;px=3D1"=20=0D
      target=3D_blank>1393</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>685.74&nbsp;&nbsp;&nbsp;&nbsp;2054.20&nbsp;&nbsp;&=
nbsp;&nbsp;2054.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GPGESSLPAFSGVALLPPACK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2057.178969 from(686.734148,3+) title(Elution%20from%3a%2017=
6%2e21%20to%20176%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1394)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1394; if (NS4 || IE4) activateEl(=
'Q1394', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1394&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1394</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>686.73&nbsp;=
&nbsp;&nbsp;&nbsp;2057.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2058.223107 from(687.082194,3+) title(Elution%20from%3a%2017=
5%2e96%20to%20175%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1395)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1395; if (NS4 || IE4) activateEl(=
'Q1395', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1395&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1395</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>687.08&nbsp;=
&nbsp;&nbsp;&nbsp;2058.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2065.258470 from(689.427315,3+) title(Elution%20from%3a%2014=
7%2e2%20to%20147%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1396)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1396; if (NS4 || IE4) activateEl(=
'Q1396', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1396&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1396</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>689.43&nbsp;=
&nbsp;&nbsp;&nbsp;2065.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2082.242670 from(695.088715,3+) title(Elution%20from%3a%2013=
2%2e05%20to%20132%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1397)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1397; if (NS4 || IE4) activateEl(=
'Q1397', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1397&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1397</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>695.09&nbsp;=
&nbsp;&nbsp;&nbsp;2082.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2083.254855 from(695.426110,3+) title(Elution%20from%3a%2013=
1%2e87%20to%20131%2e87%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1398)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1398; if (NS4 || IE4) activateEl(=
'Q1398', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1398&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1398</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>695.43&nbsp;=
&nbsp;&nbsp;&nbsp;2083.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2086.225497 from(696.416324,3+) title(Elution%20from%3a%2012=
9%2e75%20to%20129%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1399)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1399; if (NS4 || IE4) activateEl(=
'Q1399', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1399&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1399</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>696.42&nbsp;=
&nbsp;&nbsp;&nbsp;2086.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2086.238541 from(696.420672,3+) title(Elution%20from%3a%2012=
6%2e72%20to%20126%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1400)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1400; if (NS4 || IE4) activateEl(=
'Q1400', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1400&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1400</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>696.42&nbsp;=
&nbsp;&nbsp;&nbsp;2086.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2086.295115 from(696.439530,3+) title(Elution%20from%3a%2010=
5%2e63%20to%20105%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1401)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1401; if (NS4 || IE4) activateEl(=
'Q1401', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1401&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1401</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>696.44&nbsp;=
&nbsp;&nbsp;&nbsp;2086.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2087.218479 from(696.747318,3+) title(Elution%20from%3a%2012=
9%2e44%20to%20129%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1402)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1402; if (NS4 || IE4) activateEl(=
'Q1402', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1402&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1402</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>696.75&nbsp;=
&nbsp;&nbsp;&nbsp;2087.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2087.225817 from(696.749764,3+) title(Elution%20from%3a%2012=
6%2e27%20to%20126%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1404)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1404; if (NS4 || IE4) activateEl(=
'Q1404', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1404&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1404</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>696.75&nbsp;=
&nbsp;&nbsp;&nbsp;2087.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2087.226498 from(696.749991,3+) title(Elution%20from%3a%2010=
3%2e36%20to%20103%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1405)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1405; if (NS4 || IE4) activateEl(=
'Q1405', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1405&amp;hit=3D1&amp;index=3DIPI%3aIPI000221=
00&amp;px=3D1"=20=0D
      target=3D_blank>1405</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>696.75&nbsp;&nbsp;&nbsp;&nbsp;2087.23&nbsp;&nbsp;&=
nbsp;&nbsp;2087.16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VGLGLAGTMLLTPTCTLTIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2087.228118 from(696.750531,3+) title(Elution%20from%3a%2097=
%2e75%20to%2097%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1406)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1406; if (NS4 || IE4) activateEl(=
'Q1406', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1406&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1406</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>696.75&nbsp;=
&nbsp;&nbsp;&nbsp;2087.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2088.136179 from(697.053218,3+) title(Elution%20from%3a%2012=
%20to%2012%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles%3a%20%2=
01%20%20) query(1407)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1407; if (NS4 || IE4) activateEl(=
'Q1407', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1407&amp;hit=3D1&amp;index=3DIPI%3aIPI000008=
99&amp;px=3D1"=20=0D
      target=3D_blank>1407</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>697.05&nbsp;&nbsp;&nbsp;&nbsp;2088.14&nbsp;&nbsp;&=
nbsp;&nbsp;2088.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YTIMVDKYIPNISMCLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2088.176668 from(523.051992,4+) title(Elution%20from%3a%2095=
%2e84%20to%2095%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1408)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1408; if (NS4 || IE4) activateEl(=
'Q1408', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1408&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1408</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>523.05&nbsp;=
&nbsp;&nbsp;&nbsp;2088.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2088.226917 from(697.083464,3+) title(Elution%20from%3a%2012=
7%2e86%20to%20127%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1409)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1409; if (NS4 || IE4) activateEl(=
'Q1409', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1409&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1409</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>697.08&nbsp;=
&nbsp;&nbsp;&nbsp;2088.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2088.228222 from(697.083899,3+) title(Elution%20from%3a%2010=
2%2e38%20to%20102%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1410)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1410; if (NS4 || IE4) activateEl(=
'Q1410', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1410&amp;hit=3D1&amp;index=3DIPI%3aIPI000048=
69&amp;px=3D1"=20=0D
      target=3D_blank>1410</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>697.08&nbsp;&nbsp;&nbsp;&nbsp;2088.23&nbsp;&nbsp;&=
nbsp;&nbsp;2088.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RLQFGVAVLDDKPYVVGGR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2088.239640 from(697.087705,3+) title(Elution%20from%3a%2097=
%2e7%20to%2097%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1411)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1411; if (NS4 || IE4) activateEl(=
'Q1411', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1411&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1411</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>697.09&nbsp;=
&nbsp;&nbsp;&nbsp;2088.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2088.248970 from(697.090815,3+) title(Elution%20from%3a%2094=
%2e6%20to%2094%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1412)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1412; if (NS4 || IE4) activateEl(=
'Q1412', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1412&amp;hit=3D1&amp;index=3DIPI%3aIPI000003=
89&amp;px=3D1"=20=0D
      target=3D_blank>1412</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>697.09&nbsp;&nbsp;&nbsp;&nbsp;2088.25&nbsp;&nbsp;&=
nbsp;&nbsp;2088.11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IMQVIAMSKQQGVLQSSPK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2089.243176 from(697.422217,3+) title(Elution%20from%3a%2097=
%2e63%20to%2097%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1413)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1413; if (NS4 || IE4) activateEl(=
'Q1413', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1413&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1413</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>697.42&nbsp;=
&nbsp;&nbsp;&nbsp;2089.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2090.138739 from(697.720738,3+) title(Elution%20from%3a%2077=
%2e89%20to%2077%2e89%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1414)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1414; if (NS4 || IE4) activateEl(=
'Q1414', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1414&amp;hit=3D1&amp;index=3DIPI%3aIPI000148=
63&amp;px=3D1"=20=0D
      target=3D_blank>1414</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>697.72&nbsp;&nbsp;&nbsp;&nbsp;2090.14&nbsp;&nbsp;&=
nbsp;&nbsp;2090.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IPMPELERSQYPMEWGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2090.144853 from(697.722776,3+) title(Elution%20from%3a%2061=
%2e2%20to%2061%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1415)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1415; if (NS4 || IE4) activateEl(=
'Q1415', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1415&amp;hit=3D1&amp;index=3DIPI%3aIPI000048=
99&amp;px=3D1"=20=0D
      target=3D_blank>1415</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>697.72&nbsp;&nbsp;&nbsp;&nbsp;2090.14&nbsp;&nbsp;&=
nbsp;&nbsp;2090.05&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VYPLFGHYGRFQFNAFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2090.147196 from(697.723557,3+) title(Elution%20from%3a%2080=
%2e88%20to%2080%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1416)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1416; if (NS4 || IE4) activateEl(=
'Q1416', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1416&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1416</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>697.72&nbsp;=
&nbsp;&nbsp;&nbsp;2090.15</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2090.164008 from(697.729161,3+) title(Elution%20from%3a%2058=
%2e16%20to%2058%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1417)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1417; if (NS4 || IE4) activateEl(=
'Q1417', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1417&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1417</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>697.73&nbsp;=
&nbsp;&nbsp;&nbsp;2090.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2091.135462 from(698.052979,3+) title(Elution%20from%3a%2077=
%2e54%20to%2077%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1418)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1418; if (NS4 || IE4) activateEl(=
'Q1418', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1418&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1418</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>698.05&nbsp;=
&nbsp;&nbsp;&nbsp;2091.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2091.146991 from(698.056822,3+) title(Elution%20from%3a%2058=
%2e21%20to%2058%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1419)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1419; if (NS4 || IE4) activateEl(=
'Q1419', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1419&amp;hit=3D1&amp;index=3DIPI%3aIPI000157=
35&amp;px=3D1"=20=0D
      target=3D_blank>1419</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>698.06&nbsp;&nbsp;&nbsp;&nbsp;2091.15&nbsp;&nbsp;&=
nbsp;&nbsp;2091.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLCHLIEHSFEGMGGTFK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2091.147774 from(698.057083,3+) title(Elution%20from%3a%2061=
%2e25%20to%2061%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1420)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1420; if (NS4 || IE4) activateEl(=
'Q1420', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1420&amp;hit=3D1&amp;index=3DIPI%3aIPI000056=
64&amp;px=3D1"=20=0D
      target=3D_blank>1420</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>698.06&nbsp;&nbsp;&nbsp;&nbsp;2091.15&nbsp;&nbsp;&=
nbsp;&nbsp;2091.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LHYHLGCLDPPLTRMPR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2091.151080 from(698.058185,3+) title(Elution%20from%3a%2080=
%2e63%20to%2080%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1421)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1421; if (NS4 || IE4) activateEl(=
'Q1421', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1421&amp;hit=3D1&amp;index=3DIPI%3aIPI000056=
64&amp;px=3D1"=20=0D
      target=3D_blank>1421</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>698.06&nbsp;&nbsp;&nbsp;&nbsp;2091.15&nbsp;&nbsp;&=
nbsp;&nbsp;2091.06&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LHYHLGCLDPPLTRMPR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2092.140126 from(698.387867,3+) title(Elution%20from%3a%2081=
%2e53%20to%2081%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1422)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1422; if (NS4 || IE4) activateEl(=
'Q1422', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1422&amp;hit=3D1&amp;index=3DIPI%3aIPI000285=
50&amp;px=3D1"=20=0D
      target=3D_blank>1422</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>698.39&nbsp;&nbsp;&nbsp;&nbsp;2092.14&nbsp;&nbsp;&=
nbsp;&nbsp;2092.05&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LAFSALGGGECGESLAELRR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2092.156794 from(698.393423,3+) title(Elution%20from%3a%2059=
%2e31%20to%2059%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1423)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1423; if (NS4 || IE4) activateEl(=
'Q1423', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1423&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1423</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>698.39&nbsp;=
&nbsp;&nbsp;&nbsp;2092.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2097.065220 from(1049.540435,2+) title(Elution%20from%3a%201=
58%2e12%20to%20158%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1424)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1424; if (NS4 || IE4) activateEl(=
'Q1424', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1424&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1424</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1049.54&nbsp;&nbsp=
;&nbsp;&nbsp;2097.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2103.209484 from(702.077653,3+) title(Elution%20from%3a%2022=
%2e52%20to%2022%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1425)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1425; if (NS4 || IE4) activateEl(=
'Q1425', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1425&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1425</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>702.08&nbsp;=
&nbsp;&nbsp;&nbsp;2103.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2104.215735 from(702.413070,3+) title(Elution%20from%3a%2013=
1%2e9%20to%20131%2e9%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1426)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1426; if (NS4 || IE4) activateEl(=
'Q1426', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1426&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1426</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>702.41&nbsp;=
&nbsp;&nbsp;&nbsp;2104.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2105.229654 from(702.751043,3+) title(Elution%20from%3a%2013=
1%2e74%20to%20131%2e74%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1427)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1427; if (NS4 || IE4) activateEl(=
'Q1427', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1427&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1427</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>702.75&nbsp;=
&nbsp;&nbsp;&nbsp;2105.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2106.264231 from(703.095902,3+) title(Elution%20from%3a%2013=
1%2e67%20to%20131%2e67%20%20%20period%3a%200%20%20%20experiment%3a%203%20cy=
cles%3a%20%201%20%20) query(1428)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1428; if (NS4 || IE4) activateEl(=
'Q1428', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1428&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1428</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>703.10&nbsp;=
&nbsp;&nbsp;&nbsp;2106.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2106.265284 from(703.096253,3+) title(Elution%20from%3a%2079=
%2e02%20to%2079%2e02%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1429)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1429; if (NS4 || IE4) activateEl(=
'Q1429', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1429&amp;hit=3D1&amp;index=3DIPI%3aIPI000084=
83&amp;px=3D1"=20=0D
      target=3D_blank>1429</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>703.10&nbsp;&nbsp;&nbsp;&nbsp;2106.27&nbsp;&nbsp;&=
nbsp;&nbsp;2106.18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IIGFSTSVTALGFVLYKYK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2107.257909 from(703.427128,3+) title(Elution%20from%3a%2078=
%2e84%20to%2078%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1430)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1430; if (NS4 || IE4) activateEl(=
'Q1430', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1430&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1430</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>703.43&nbsp;=
&nbsp;&nbsp;&nbsp;2107.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2108.207631 from(703.743702,3+) title(Elution%20from%3a%2018=
2%2e57%20to%20182%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1431)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1431; if (NS4 || IE4) activateEl(=
'Q1431', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1431&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1431</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>703.74&nbsp;=
&nbsp;&nbsp;&nbsp;2108.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2108.250744 from(703.758073,3+) title(Elution%20from%3a%2080=
%2e71%20to%2080%2e71%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1432)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1432; if (NS4 || IE4) activateEl(=
'Q1432', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1432&amp;hit=3D1&amp;index=3DIPI%3aIPI000079=
29&amp;px=3D1"=20=0D
      target=3D_blank>1432</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>703.76&nbsp;&nbsp;&nbsp;&nbsp;2108.25&nbsp;&nbsp;&=
nbsp;&nbsp;2108.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TPAIPFASYGLHHTSLLKR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2108.835186 from(1055.425418,2+) title(Elution%20from%3a%202=
3%2e48%20to%2023%2e48%20%20%20period%3a%200%20%20%20experiment%3a%202%20cyc=
les%3a%20%201%20%20) query(1433)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1433; if (NS4 || IE4) activateEl(=
'Q1433', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1433&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1433</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1055.43&nbsp;&nbsp=
;&nbsp;&nbsp;2108.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2108.835718 from(1055.425684,2+) title(Elution%20from%3a%202=
0%2e38%20to%2020%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(1434)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1434; if (NS4 || IE4) activateEl(=
'Q1434', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1434&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1434</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1055.43&nbsp;&nbsp=
;&nbsp;&nbsp;2108.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2109.221292 from(704.081589,3+) title(Elution%20from%3a%2079=
%2e66%20to%2079%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1435)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1435; if (NS4 || IE4) activateEl(=
'Q1435', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1435&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1435</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>704.08&nbsp;=
&nbsp;&nbsp;&nbsp;2109.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2110.182015 from(704.401830,3+) title(Elution%20from%3a%2013=
%2e06%20to%2013%2e06%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(1436)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1436; if (NS4 || IE4) activateEl(=
'Q1436', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1436&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1436</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>704.40&nbsp;=
&nbsp;&nbsp;&nbsp;2110.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2111.219604 from(1056.617627,2+) title(Elution%20from%3a%201=
76%2e62%20to%20176%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1438)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1438; if (NS4 || IE4) activateEl(=
'Q1438', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1438&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1438</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1056.62&nbsp;&nbsp=
;&nbsp;&nbsp;2111.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2111.249544 from(704.757673,3+) title(Elution%20from%3a%2017=
8%2e78%20to%20178%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1439)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1439; if (NS4 || IE4) activateEl(=
'Q1439', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1439&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1439</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>704.76&nbsp;=
&nbsp;&nbsp;&nbsp;2111.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2112.193029 from(705.072168,3+) title(Elution%20from%3a%2017=
8%2e58%20to%20178%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1440)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1440; if (NS4 || IE4) activateEl(=
'Q1440', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1440&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1440</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>705.07&nbsp;=
&nbsp;&nbsp;&nbsp;2112.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2112.201594 from(1057.108622,2+) title(Elution%20from%3a%201=
76%2e67%20to%20176%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1441)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1441; if (NS4 || IE4) activateEl(=
'Q1441', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1441&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1441</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1057.11&nbsp;&nbsp=
;&nbsp;&nbsp;2112.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2112.231057 from(705.084844,3+) title(Elution%20from%3a%2017=
5%2e55%20to%20175%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1442)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1442; if (NS4 || IE4) activateEl(=
'Q1442', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1442&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1442</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>705.08&nbsp;=
&nbsp;&nbsp;&nbsp;2112.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2113.227288 from(705.416921,3+) title(Elution%20from%3a%2017=
5%2e86%20to%20175%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1444)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1444; if (NS4 || IE4) activateEl(=
'Q1444', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1444&amp;hit=3D1&amp;index=3DIPI%3aIPI000016=
43&amp;px=3D1"=20=0D
      target=3D_blank>1444</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>705.42&nbsp;&nbsp;&nbsp;&nbsp;2113.23&nbsp;&nbsp;&=
nbsp;&nbsp;2113.20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LIDLHTNVATAVLEHIKAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2115.210651 from(706.078042,3+) title(Elution%20from%3a%2023=
%2e12%20to%2023%2e12%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1445)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1445; if (NS4 || IE4) activateEl(=
'Q1445', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1445&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1445</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>706.08&nbsp;=
&nbsp;&nbsp;&nbsp;2115.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2116.220532 from(706.414669,3+) title(Elution%20from%3a%2013=
8%2e87%20to%20138%2e87%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1446)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1446; if (NS4 || IE4) activateEl(=
'Q1446', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1446&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1446</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>706.41&nbsp;=
&nbsp;&nbsp;&nbsp;2116.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2117.187966 from(706.737147,3+) title(Elution%20from%3a%2016=
3%2e81%20to%20163%2e81%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1447)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1447; if (NS4 || IE4) activateEl(=
'Q1447', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1447&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1447</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>706.74&nbsp;=
&nbsp;&nbsp;&nbsp;2117.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2118.254262 from(707.092579,3+) title(Elution%20from%3a%2016=
3%2e74%20to%20163%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1448)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1448; if (NS4 || IE4) activateEl(=
'Q1448', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1448&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1448</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>707.09&nbsp;=
&nbsp;&nbsp;&nbsp;2118.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2119.204002 from(707.409159,3+) title(Elution%20from%3a%2016=
4%2e01%20to%20164%2e01%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1449)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1449; if (NS4 || IE4) activateEl(=
'Q1449', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1449&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1449</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>707.41&nbsp;=
&nbsp;&nbsp;&nbsp;2119.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2120.192769 from(707.738748,3+) title(Elution%20from%3a%2016=
4%2e45%20to%20164%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1450)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1450; if (NS4 || IE4) activateEl(=
'Q1450', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1450&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1450</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>707.74&nbsp;=
&nbsp;&nbsp;&nbsp;2120.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2125.170336 from(709.397937,3+) title(Elution%20from%3a%2069=
%2e75%20to%2069%2e75%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1451)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1451; if (NS4 || IE4) activateEl(=
'Q1451', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1451&amp;hit=3D1&amp;index=3DIPI%3aIPI000033=
46&amp;px=3D1"=20=0D
      target=3D_blank>1451</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>709.40&nbsp;&nbsp;&nbsp;&nbsp;2125.17&nbsp;&nbsp;&=
nbsp;&nbsp;2125.18&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MGLGPLSSSLSPQLISSKVPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2125.209696 from(709.411057,3+) title(Elution%20from%3a%2047=
%2e73%20to%2047%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1452)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1452; if (NS4 || IE4) activateEl(=
'Q1452', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1452&amp;hit=3D1&amp;index=3DIPI%3aIPI000174=
30&amp;px=3D1"=20=0D
      target=3D_blank>1452</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>709.41&nbsp;&nbsp;&nbsp;&nbsp;2125.21&nbsp;&nbsp;&=
nbsp;&nbsp;2125.19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AAQVLVQELEQYQLLPKR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2126.194437 from(709.739304,3+) title(Elution%20from%3a%2047=
%2e81%20to%2047%2e81%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1453)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1453; if (NS4 || IE4) activateEl(=
'Q1453', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1453&amp;hit=3D1&amp;index=3DIPI%3aIPI000251=
90&amp;px=3D1"=20=0D
      target=3D_blank>1453</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>709.74&nbsp;&nbsp;&nbsp;&nbsp;2126.19&nbsp;&nbsp;&=
nbsp;&nbsp;2126.12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AAICQVDGALGFLVSTLTYK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2127.192459 from(710.071978,3+) title(Elution%20from%3a%2048=
%2e07%20to%2048%2e07%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1454)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1454; if (NS4 || IE4) activateEl(=
'Q1454', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1454&amp;hit=3D1&amp;index=3DIPI%3aIPI000009=
68&amp;px=3D1"=20=0D
      target=3D_blank>1454</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>710.07&nbsp;&nbsp;&nbsp;&nbsp;2127.19&nbsp;&nbsp;&=
nbsp;&nbsp;2127.08&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LVCAVDSNPPARLSWTWR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2127.215067 from(710.079514,3+) title(Elution%20from%3a%2085=
%2e87%20to%2085%2e87%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1455)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1455; if (NS4 || IE4) activateEl(=
'Q1455', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1455&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1455</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>710.08&nbsp;=
&nbsp;&nbsp;&nbsp;2127.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2128.207773 from(710.410416,3+) title(Elution%20from%3a%2084=
%2e53%20to%2084%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1456)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1456; if (NS4 || IE4) activateEl(=
'Q1456', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1456&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1456</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>710.41&nbsp;=
&nbsp;&nbsp;&nbsp;2128.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2128.284942 from(710.436139,3+) title(Elution%20from%3a%2098=
%2e84%20to%2098%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1457)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1457; if (NS4 || IE4) activateEl(=
'Q1457', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1457&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1457</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>710.44&nbsp;=
&nbsp;&nbsp;&nbsp;2128.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2129.348214 from(710.790563,3+) title(Elution%20from%3a%2098=
%2e79%20to%2098%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1458)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1458; if (NS4 || IE4) activateEl(=
'Q1458', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1458&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1458</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>710.79&nbsp;=
&nbsp;&nbsp;&nbsp;2129.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2141.248437 from(714.757304,3+) title(Elution%20from%3a%2016=
%2e82%20to%2016%2e82%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1459)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1459; if (NS4 || IE4) activateEl(=
'Q1459', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1459&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1459</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>714.76&nbsp;=
&nbsp;&nbsp;&nbsp;2141.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2142.256650 from(715.093375,3+) title(Elution%20from%3a%2017=
%2e9%20to%2017%2e9%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(1460)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1460; if (NS4 || IE4) activateEl(=
'Q1460', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1460&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1460</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>715.09&nbsp;=
&nbsp;&nbsp;&nbsp;2142.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2143.322088 from(715.448521,3+) title(Elution%20from%3a%2010=
9%2e74%20to%20109%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1461)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1461; if (NS4 || IE4) activateEl(=
'Q1461', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1461&amp;hit=3D1&amp;index=3DIPI%3aIPI000031=
70&amp;px=3D1"=20=0D
      target=3D_blank>1461</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>715.45&nbsp;&nbsp;&nbsp;&nbsp;2143.32&nbsp;&nbsp;&=
nbsp;&nbsp;2143.22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TFLFRRPVLSLLYYEVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2143.370607 from(715.464694,3+) title(Elution%20from%3a%2076=
%2e16%20to%2076%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1462)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1462; if (NS4 || IE4) activateEl(=
'Q1462', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1462&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1462</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>715.46&nbsp;=
&nbsp;&nbsp;&nbsp;2143.37</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2144.212422 from(715.745299,3+) title(Elution%20from%3a%2047=
%2e86%20to%2047%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1463)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1463; if (NS4 || IE4) activateEl(=
'Q1463', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1463&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1463</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>715.75&nbsp;=
&nbsp;&nbsp;&nbsp;2144.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2144.232345 from(715.751940,3+) title(Elution%20from%3a%2065=
%2e79%20to%2065%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1464)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1464; if (NS4 || IE4) activateEl(=
'Q1464', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1464&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1464</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>715.75&nbsp;=
&nbsp;&nbsp;&nbsp;2144.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2145.181020 from(716.068165,3+) title(Elution%20from%3a%2048=
%2e02%20to%2048%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1465)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1465; if (NS4 || IE4) activateEl(=
'Q1465', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1465&amp;hit=3D1&amp;index=3DIPI%3aIPI000163=
41&amp;px=3D1"=20=0D
      target=3D_blank>1465</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>716.07&nbsp;&nbsp;&nbsp;&nbsp;2145.18&nbsp;&nbsp;&=
nbsp;&nbsp;2145.14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KLSETEDSVIIIDSSPTALK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2145.279156 from(716.100877,3+) title(Elution%20from%3a%2065=
%2e98%20to%2065%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1466)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1466; if (NS4 || IE4) activateEl(=
'Q1466', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1466&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1466</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>716.10&nbsp;=
&nbsp;&nbsp;&nbsp;2145.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2146.192860 from(716.405445,3+) title(Elution%20from%3a%2048=
%2e23%20to%2048%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1467)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1467; if (NS4 || IE4) activateEl(=
'Q1467', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1467&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1467</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>716.41&nbsp;=
&nbsp;&nbsp;&nbsp;2146.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2146.263711 from(716.429062,3+) title(Elution%20from%3a%2066=
%2e76%20to%2066%2e76%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1468)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1468; if (NS4 || IE4) activateEl(=
'Q1468', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1468&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1468</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>716.43&nbsp;=
&nbsp;&nbsp;&nbsp;2146.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2147.143764 from(716.722413,3+) title(Elution%20from%3a%2011=
9%2e48%20to%20119%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1469)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1469; if (NS4 || IE4) activateEl(=
'Q1469', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1469&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1469</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>716.72&nbsp;=
&nbsp;&nbsp;&nbsp;2147.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2148.156270 from(717.059915,3+) title(Elution%20from%3a%2011=
9%2e56%20to%20119%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1470)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1470; if (NS4 || IE4) activateEl(=
'Q1470', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1470&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1470</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>717.06&nbsp;=
&nbsp;&nbsp;&nbsp;2148.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2152.265136 from(718.429537,3+) title(Elution%20from%3a%2089=
%2e42%20to%2089%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1471)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1471; if (NS4 || IE4) activateEl(=
'Q1471', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1471&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1471</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>718.43&nbsp;=
&nbsp;&nbsp;&nbsp;2152.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2156.265021 from(719.762832,3+) title(Elution%20from%3a%2019=
6%2e02%20to%20196%2e02%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1473)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1473; if (NS4 || IE4) activateEl(=
'Q1473', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1473&amp;hit=3D1&amp;index=3DIPI%3aIPI000200=
30&amp;px=3D1"=20=0D
      target=3D_blank>1473</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>719.76&nbsp;&nbsp;&nbsp;&nbsp;2156.27&nbsp;&nbsp;&=
nbsp;&nbsp;2156.13&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;APAAFGLVSFLMHAGLERNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2157.294201 from(720.105892,3+) title(Elution%20from%3a%2016=
1%2e58%20to%20161%2e58%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1474)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1474; if (NS4 || IE4) activateEl(=
'Q1474', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1474&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1474</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>720.11&nbsp;=
&nbsp;&nbsp;&nbsp;2157.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2157.295161 from(720.106212,3+) title(Elution%20from%3a%2019=
6%2e24%20to%20196%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1475)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1475; if (NS4 || IE4) activateEl(=
'Q1475', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1475&amp;hit=3D1&amp;index=3DIPI%3aIPI000134=
62&amp;px=3D1"=20=0D
      target=3D_blank>1475</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>720.11&nbsp;&nbsp;&nbsp;&nbsp;2157.30&nbsp;&nbsp;&=
nbsp;&nbsp;2157.17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;WSLWEGGVRGVGFVASPLLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2173.246920 from(725.423465,3+) title(Elution%20from%3a%2014=
3%2e22%20to%20143%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1476)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1476; if (NS4 || IE4) activateEl(=
'Q1476', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1476&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1476</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>725.42&nbsp;=
&nbsp;&nbsp;&nbsp;2173.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2174.203611 from(725.742362,3+) title(Elution%20from%3a%2014=
3%2e17%20to%20143%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1477)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1477; if (NS4 || IE4) activateEl(=
'Q1477', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1477&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1477</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>725.74&nbsp;=
&nbsp;&nbsp;&nbsp;2174.20</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2175.276300 from(726.099925,3+) title(Elution%20from%3a%2014=
3%2e48%20to%20143%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1478)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1478; if (NS4 || IE4) activateEl(=
'Q1478', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1478&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1478</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>726.10&nbsp;=
&nbsp;&nbsp;&nbsp;2175.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2179.278099 from(727.433858,3+) title(Elution%20from%3a%2011=
7%2e95%20to%20117%2e95%20%20%20period%3a%200%20%20%20experiment%3a%203%20cy=
cles%3a%20%201%20%20) query(1479)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1479; if (NS4 || IE4) activateEl(=
'Q1479', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1479&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1479</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>727.43&nbsp;=
&nbsp;&nbsp;&nbsp;2179.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2179.302531 from(727.442002,3+) title(Elution%20from%3a%2012=
7%2e13%20to%20127%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1480)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1480; if (NS4 || IE4) activateEl(=
'Q1480', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1480&amp;hit=3D1&amp;index=3DIPI%3aIPI000177=
54&amp;px=3D1"=20=0D
      target=3D_blank>1480</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>727.44&nbsp;&nbsp;&nbsp;&nbsp;2179.30&nbsp;&nbsp;&=
nbsp;&nbsp;2179.28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HSSILTPSVVIKLGTIVMLR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2180.293563 from(727.772346,3+) title(Elution%20from%3a%2012=
4%2e15%20to%20124%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1481)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1481; if (NS4 || IE4) activateEl(=
'Q1481', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1481&amp;hit=3D1&amp;index=3DIPI%3aIPI000045=
45&amp;px=3D1"=20=0D
      target=3D_blank>1481</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>727.77&nbsp;&nbsp;&nbsp;&nbsp;2180.29&nbsp;&nbsp;&=
nbsp;&nbsp;2180.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KGLNVIGASDQSPLQSPSNLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2180.298678 from(727.774051,3+) title(Elution%20from%3a%2012=
7%2e18%20to%20127%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1482)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1482; if (NS4 || IE4) activateEl(=
'Q1482', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1482&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1482</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>727.77&nbsp;=
&nbsp;&nbsp;&nbsp;2180.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2180.305272 from(727.776249,3+) title(Elution%20from%3a%2011=
8%2e27%20to%20118%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1483)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1483; if (NS4 || IE4) activateEl(=
'Q1483', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1483&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1483</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>727.78&nbsp;=
&nbsp;&nbsp;&nbsp;2180.31</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2181.287625 from(728.103700,3+) title(Elution%20from%3a%2011=
8%2e57%20to%20118%2e57%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1484)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1484; if (NS4 || IE4) activateEl(=
'Q1484', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1484&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1484</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>728.10&nbsp;=
&nbsp;&nbsp;&nbsp;2181.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2181.303975 from(728.109150,3+) title(Elution%20from%3a%2012=
4%2e72%20to%20124%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1485)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1485; if (NS4 || IE4) activateEl(=
'Q1485', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1485&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1485</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>728.11&nbsp;=
&nbsp;&nbsp;&nbsp;2181.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2191.268391 from(731.430622,3+) title(Elution%20from%3a%2096=
%2e72%20to%2096%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1486)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1486; if (NS4 || IE4) activateEl(=
'Q1486', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1486&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1486</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>731.43&nbsp;=
&nbsp;&nbsp;&nbsp;2191.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2193.178413 from(732.067296,3+) title(Elution%20from%3a%2018=
%2e29%20to%2018%2e29%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1487)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1487; if (NS4 || IE4) activateEl(=
'Q1487', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1487&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1487</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>732.07&nbsp;=
&nbsp;&nbsp;&nbsp;2193.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2196.275298 from(733.099591,3+) title(Elution%20from%3a%2010=
5%2e81%20to%20105%2e81%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1488)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1488; if (NS4 || IE4) activateEl(=
'Q1488', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1488&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1488</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.10&nbsp;=
&nbsp;&nbsp;&nbsp;2196.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2197.291179 from(733.438218,3+) title(Elution%20from%3a%2010=
6%2e36%20to%20106%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1489)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1489; if (NS4 || IE4) activateEl(=
'Q1489', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1489&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1489</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.44&nbsp;=
&nbsp;&nbsp;&nbsp;2197.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.246154 from(733.756543,3+) title(Elution%20from%3a%2011=
6%2e37%20to%20116%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1490)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1490; if (NS4 || IE4) activateEl(=
'Q1490', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1490&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1490</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.252667 from(733.758714,3+) title(Elution%20from%3a%2015=
5%2e99%20to%20155%2e99%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1491)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1491; if (NS4 || IE4) activateEl(=
'Q1491', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1491&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1491</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.253456 from(733.758977,3+) title(Elution%20from%3a%2016=
2%2e11%20to%20162%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1492)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1492; if (NS4 || IE4) activateEl(=
'Q1492', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1492&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1492</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.255721 from(733.759732,3+) title(Elution%20from%3a%2011=
3%2e37%20to%20113%2e37%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1493)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1493; if (NS4 || IE4) activateEl(=
'Q1493', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1493&amp;hit=3D1&amp;index=3DIPI%3aIPI000009=
79&amp;px=3D1"=20=0D
      target=3D_blank>1493</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>733.76&nbsp;&nbsp;&nbsp;&nbsp;2198.26&nbsp;&nbsp;&=
nbsp;&nbsp;2198.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MVNALENLAGIDRSDLIQAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.257890 from(733.760455,3+) title(Elution%20from%3a%2015=
9%2e04%20to%20159%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1494)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1494; if (NS4 || IE4) activateEl(=
'Q1494', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1494&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1494</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.259363 from(733.760946,3+) title(Elution%20from%3a%2011=
9%2e4%20to%20119%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1495)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1495; if (NS4 || IE4) activateEl(=
'Q1495', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1495&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1495</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.259930 from(733.761135,3+) title(Elution%20from%3a%2010=
5%2e58%20to%20105%2e58%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1496)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1496; if (NS4 || IE4) activateEl(=
'Q1496', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1496&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1496</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.260038 from(733.761171,3+) title(Elution%20from%3a%2015=
2%2e95%20to%20152%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1497)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1497; if (NS4 || IE4) activateEl(=
'Q1497', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1497&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1497</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.261484 from(733.761653,3+) title(Elution%20from%3a%2014=
9%2e91%20to%20149%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1498)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1498; if (NS4 || IE4) activateEl(=
'Q1498', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1498&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1498</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.261820 from(733.761765,3+) title(Elution%20from%3a%2013=
1%2e59%20to%20131%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1499)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1499; if (NS4 || IE4) activateEl(=
'Q1499', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1499&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1499</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.263215 from(733.762230,3+) title(Elution%20from%3a%2014=
6%2e84%20to%20146%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1500)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1500; if (NS4 || IE4) activateEl(=
'Q1500', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1500&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1500</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.263374 from(733.762283,3+) title(Elution%20from%3a%2014=
3%2e78%20to%20143%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1501)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1501; if (NS4 || IE4) activateEl(=
'Q1501', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1501&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1501</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.76&nbsp;=
&nbsp;&nbsp;&nbsp;2198.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.270688 from(733.764721,3+) title(Elution%20from%3a%2012=
5%2e48%20to%20125%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1502)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1502; if (NS4 || IE4) activateEl(=
'Q1502', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1502&amp;hit=3D1&amp;index=3DIPI%3aIPI000009=
79&amp;px=3D1"=20=0D
      target=3D_blank>1502</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>733.76&nbsp;&nbsp;&nbsp;&nbsp;2198.27&nbsp;&nbsp;&=
nbsp;&nbsp;2198.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MVNALENLAGIDRSDLIQAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.273124 from(733.765533,3+) title(Elution%20from%3a%2011=
0%2e02%20to%20110%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1503)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1503; if (NS4 || IE4) activateEl(=
'Q1503', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1503&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1503</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.77&nbsp;=
&nbsp;&nbsp;&nbsp;2198.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.273475 from(733.765650,3+) title(Elution%20from%3a%2013=
4%2e65%20to%20134%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1504)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1504; if (NS4 || IE4) activateEl(=
'Q1504', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1504&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1504</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.77&nbsp;=
&nbsp;&nbsp;&nbsp;2198.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.274600 from(733.766025,3+) title(Elution%20from%3a%2013=
7%2e68%20to%20137%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1505)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1505; if (NS4 || IE4) activateEl(=
'Q1505', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1505&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1505</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.77&nbsp;=
&nbsp;&nbsp;&nbsp;2198.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.278752 from(733.767409,3+) title(Elution%20from%3a%2014=
0%2e74%20to%20140%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1506)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1506; if (NS4 || IE4) activateEl(=
'Q1506', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1506&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1506</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.77&nbsp;=
&nbsp;&nbsp;&nbsp;2198.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.289024 from(733.770833,3+) title(Elution%20from%3a%2012=
8%2e56%20to%20128%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1507)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1507; if (NS4 || IE4) activateEl(=
'Q1507', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1507&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1507</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.77&nbsp;=
&nbsp;&nbsp;&nbsp;2198.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2198.303646 from(733.775707,3+) title(Elution%20from%3a%2012=
2%2e45%20to%20122%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1508)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1508; if (NS4 || IE4) activateEl(=
'Q1508', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1508&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1508</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>733.78&nbsp;=
&nbsp;&nbsp;&nbsp;2198.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.209124 from(734.077533,3+) title(Elution%20from%3a%2016=
7%2e06%20to%20167%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1509)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1509; if (NS4 || IE4) activateEl(=
'Q1509', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1509&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1509</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.08&nbsp;=
&nbsp;&nbsp;&nbsp;2199.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.229540 from(550.815210,4+) title(Elution%20from%3a%2015=
3%2e78%20to%20153%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1512)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1512; if (NS4 || IE4) activateEl(=
'Q1512', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1512&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1512</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>550.82&nbsp;=
&nbsp;&nbsp;&nbsp;2199.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.240368 from(550.817917,4+) title(Elution%20from%3a%2015=
0%2e47%20to%20150%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1515)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1515; if (NS4 || IE4) activateEl(=
'Q1515', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1515&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1515</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>550.82&nbsp;=
&nbsp;&nbsp;&nbsp;2199.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.243400 from(550.818675,4+) title(Elution%20from%3a%2012=
5%2e21%20to%20125%2e21%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1517)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1517; if (NS4 || IE4) activateEl(=
'Q1517', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1517&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1517</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>550.82&nbsp;=
&nbsp;&nbsp;&nbsp;2199.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.244233 from(734.089236,3+) title(Elution%20from%3a%2016=
3%2e96%20to%20163%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1518)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1518; if (NS4 || IE4) activateEl(=
'Q1518', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1518&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1518</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.09&nbsp;=
&nbsp;&nbsp;&nbsp;2199.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.250179 from(734.091218,3+) title(Elution%20from%3a%2017=
4%2e28%20to%20174%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1519)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1519; if (NS4 || IE4) activateEl(=
'Q1519', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1519&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1519</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.09&nbsp;=
&nbsp;&nbsp;&nbsp;2199.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.261123 from(734.094866,3+) title(Elution%20from%3a%2014=
2%2e44%20to%20142%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1520)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1520; if (NS4 || IE4) activateEl(=
'Q1520', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1520&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1520</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.09&nbsp;=
&nbsp;&nbsp;&nbsp;2199.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.263856 from(734.095777,3+) title(Elution%20from%3a%2011=
8%2e15%20to%20118%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1521)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1521; if (NS4 || IE4) activateEl(=
'Q1521', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1521&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1521</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.264909 from(734.096128,3+) title(Elution%20from%3a%2016=
0%2e94%20to%20160%2e94%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1522)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1522; if (NS4 || IE4) activateEl(=
'Q1522', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1522&amp;hit=3D1&amp;index=3DIPI%3aIPI000173=
65&amp;px=3D1"=20=0D
      target=3D_blank>1522</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>734.10&nbsp;&nbsp;&nbsp;&nbsp;2199.26&nbsp;&nbsp;&=
nbsp;&nbsp;2199.17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ESGKPVAVVAVVTEPWFTQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.265743 from(734.096406,3+) title(Elution%20from%3a%2015=
7%2e84%20to%20157%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1523)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1523; if (NS4 || IE4) activateEl(=
'Q1523', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1523&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1523</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.266046 from(734.096507,3+) title(Elution%20from%3a%2013=
9%2e4%20to%20139%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1524)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1524; if (NS4 || IE4) activateEl(=
'Q1524', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1524&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1524</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.268161 from(734.097212,3+) title(Elution%20from%3a%2010=
2%2e89%20to%20102%2e89%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1525)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1525; if (NS4 || IE4) activateEl(=
'Q1525', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1525&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1525</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.268596 from(734.097357,3+) title(Elution%20from%3a%2014=
5%2e48%20to%20145%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1526)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1526; if (NS4 || IE4) activateEl(=
'Q1526', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1526&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1526</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.269286 from(734.097587,3+) title(Elution%20from%3a%2015=
1%2e68%20to%20151%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1527)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1527; if (NS4 || IE4) activateEl(=
'Q1527', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1527&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1527</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.270315 from(734.097930,3+) title(Elution%20from%3a%2012=
7%2e28%20to%20127%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1528)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1528; if (NS4 || IE4) activateEl(=
'Q1528', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1528&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1528</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.272160 from(734.098545,3+) title(Elution%20from%3a%2015=
4%2e8%20to%20154%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1529)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1529; if (NS4 || IE4) activateEl(=
'Q1529', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1529&amp;hit=3D1&amp;index=3DIPI%3aIPI000226=
31&amp;px=3D1"=20=0D
      target=3D_blank>1529</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>734.10&nbsp;&nbsp;&nbsp;&nbsp;2199.27&nbsp;&nbsp;&=
nbsp;&nbsp;2199.16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLAAACICLLTFVNCAYVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.272496 from(734.098657,3+) title(Elution%20from%3a%2012=
4%2e23%20to%20124%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1530)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1530; if (NS4 || IE4) activateEl(=
'Q1530', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1530&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1530</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.274455 from(734.099310,3+) title(Elution%20from%3a%2013=
6%2e37%20to%20136%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1531)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1531; if (NS4 || IE4) activateEl(=
'Q1531', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1531&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1531</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.277152 from(734.100209,3+) title(Elution%20from%3a%2013=
3%2e34%20to%20133%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1532)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1532; if (NS4 || IE4) activateEl(=
'Q1532', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1532&amp;hit=3D1&amp;index=3DIPI%3aIPI000046=
70&amp;px=3D1"=20=0D
      target=3D_blank>1532</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>734.10&nbsp;&nbsp;&nbsp;&nbsp;2199.28&nbsp;&nbsp;&=
nbsp;&nbsp;2199.21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HNIQKELCLHAAQGLVQLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.278412 from(734.100629,3+) title(Elution%20from%3a%2012=
1%2e2%20to%20121%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1533)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1533; if (NS4 || IE4) activateEl(=
'Q1533', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1533&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1533</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.281475 from(734.101650,3+) title(Elution%20from%3a%2014=
8%2e59%20to%20148%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1534)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1534; if (NS4 || IE4) activateEl(=
'Q1534', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1534&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1534</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.281646 from(734.101707,3+) title(Elution%20from%3a%2013=
0%2e31%20to%20130%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1535)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1535; if (NS4 || IE4) activateEl(=
'Q1535', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1535&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1535</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.282240 from(550.828385,4+) title(Elution%20from%3a%2015=
6%2e93%20to%20156%2e93%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1536)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1536; if (NS4 || IE4) activateEl(=
'Q1536', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1536&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1536</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>550.83&nbsp;=
&nbsp;&nbsp;&nbsp;2199.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.283820 from(550.828780,4+) title(Elution%20from%3a%2013=
6%2e72%20to%20136%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1537)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1537; if (NS4 || IE4) activateEl(=
'Q1537', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1537&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1537</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>550.83&nbsp;=
&nbsp;&nbsp;&nbsp;2199.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.287730 from(734.103735,3+) title(Elution%20from%3a%2011=
5%2e12%20to%20115%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1538)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1538; if (NS4 || IE4) activateEl(=
'Q1538', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1538&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1538</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.289368 from(734.104281,3+) title(Elution%20from%3a%2010=
8%2e94%20to%20108%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1539)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1539; if (NS4 || IE4) activateEl(=
'Q1539', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1539&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1539</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.10&nbsp;=
&nbsp;&nbsp;&nbsp;2199.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2199.292470 from(734.105315,3+) title(Elution%20from%3a%2010=
5%2e89%20to%20105%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1540)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1540; if (NS4 || IE4) activateEl(=
'Q1540', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1540&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1540</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.11&nbsp;=
&nbsp;&nbsp;&nbsp;2199.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2200.245378 from(734.422951,3+) title(Elution%20from%3a%2013=
3%2e24%20to%20133%2e24%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1541)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1541; if (NS4 || IE4) activateEl(=
'Q1541', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1541&amp;hit=3D1&amp;index=3DIPI%3aIPI000187=
63&amp;px=3D1"=20=0D
      target=3D_blank>1541</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>734.42&nbsp;&nbsp;&nbsp;&nbsp;2200.25&nbsp;&nbsp;&=
nbsp;&nbsp;2200.12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MSDHKPLLTAISPGRGYWR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2200.260528 from(734.428001,3+) title(Elution%20from%3a%2015=
8%2e02%20to%20158%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1542)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1542; if (NS4 || IE4) activateEl(=
'Q1542', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1542&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1542</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.43&nbsp;=
&nbsp;&nbsp;&nbsp;2200.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2200.266414 from(734.429963,3+) title(Elution%20from%3a%2012=
5%2e26%20to%20125%2e26%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1543)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1543; if (NS4 || IE4) activateEl(=
'Q1543', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1543&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1543</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.43&nbsp;=
&nbsp;&nbsp;&nbsp;2200.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2200.277913 from(734.433796,3+) title(Elution%20from%3a%2015=
4%2e95%20to%20154%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1544)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1544; if (NS4 || IE4) activateEl(=
'Q1544', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1544&amp;hit=3D1&amp;index=3DIPI%3aIPI000264=
61&amp;px=3D1"=20=0D
      target=3D_blank>1544</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>734.43&nbsp;&nbsp;&nbsp;&nbsp;2200.28&nbsp;&nbsp;&=
nbsp;&nbsp;2200.16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QEALLHHVATIANTFRSHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2200.284951 from(734.436142,3+) title(Elution%20from%3a%2013=
8%2e56%20to%20138%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1545)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1545; if (NS4 || IE4) activateEl(=
'Q1545', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1545&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1545</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.44&nbsp;=
&nbsp;&nbsp;&nbsp;2200.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2200.286672 from(551.079493,4+) title(Elution%20from%3a%2014=
0%2e56%20to%20140%2e56%20%20%20period%3a%200%20%20%20experiment%3a%203%20cy=
cles%3a%20%201%20%20) query(1546)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1546; if (NS4 || IE4) activateEl(=
'Q1546', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1546&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1546</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>551.08&nbsp;=
&nbsp;&nbsp;&nbsp;2200.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2200.286688 from(551.079497,4+) title(Elution%20from%3a%2015=
0%2e67%20to%20150%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1547)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1547; if (NS4 || IE4) activateEl(=
'Q1547', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1547&amp;hit=3D1&amp;index=3DIPI%3aIPI000051=
90&amp;px=3D1"=20=0D
      target=3D_blank>1547</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>551.08&nbsp;&nbsp;&nbsp;&nbsp;2200.29&nbsp;&nbsp;&=
nbsp;&nbsp;2200.21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VFQYGVKVVLQAMYLLWK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2200.347201 from(734.456892,3+) title(Elution%20from%3a%2012=
9%2e62%20to%20129%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1548)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1548; if (NS4 || IE4) activateEl(=
'Q1548', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1548&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1548</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>734.46&nbsp;=
&nbsp;&nbsp;&nbsp;2200.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2203.337043 from(735.453506,3+) title(Elution%20from%3a%2015=
6%2e07%20to%20156%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1549)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1549; if (NS4 || IE4) activateEl(=
'Q1549', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1549&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1549</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>735.45&nbsp;=
&nbsp;&nbsp;&nbsp;2203.34</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2204.274384 from(735.765953,3+) title(Elution%20from%3a%2015=
6%2e14%20to%20156%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1550)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1550; if (NS4 || IE4) activateEl(=
'Q1550', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1550&amp;hit=3D1&amp;index=3DIPI%3aIPI000125=
40&amp;px=3D1"=20=0D
      target=3D_blank>1550</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>735.77&nbsp;&nbsp;&nbsp;&nbsp;2204.27&nbsp;&nbsp;&=
nbsp;&nbsp;2204.14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DKAFTDLNSINSVLGGGILDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2205.271047 from(736.098174,3+) title(Elution%20from%3a%2015=
6%2e63%20to%20156%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1551)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1551; if (NS4 || IE4) activateEl(=
'Q1551', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1551&amp;hit=3D1&amp;index=3DIPI%3aIPI000156=
87&amp;px=3D1"=20=0D
      target=3D_blank>1551</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>736.10&nbsp;&nbsp;&nbsp;&nbsp;2205.27&nbsp;&nbsp;&=
nbsp;&nbsp;2205.16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VLETKWNLLQQQTTTTSSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2206.290198 from(736.437891,3+) title(Elution%20from%3a%2014=
0%2e89%20to%20140%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1555)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1555; if (NS4 || IE4) activateEl(=
'Q1555', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1555&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1555</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>736.44&nbsp;=
&nbsp;&nbsp;&nbsp;2206.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2206.292802 from(736.438759,3+) title(Elution%20from%3a%2015=
6%2e24%20to%20156%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1556)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1556; if (NS4 || IE4) activateEl(=
'Q1556', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1556&amp;hit=3D1&amp;index=3DIPI%3aIPI000319=
86&amp;px=3D1"=20=0D
      target=3D_blank>1556</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>736.44&nbsp;&nbsp;&nbsp;&nbsp;2206.29&nbsp;&nbsp;&=
nbsp;&nbsp;2206.17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;QAEAVTALEQQVASLDKHLR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2206.316751 from(736.446742,3+) title(Elution%20from%3a%2014=
7%2e13%20to%20147%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1557)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1557; if (NS4 || IE4) activateEl(=
'Q1557', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1557&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1557</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>736.45&nbsp;=
&nbsp;&nbsp;&nbsp;2206.32</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2207.288232 from(736.770569,3+) title(Elution%20from%3a%2015=
7%2e16%20to%20157%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1558)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1558; if (NS4 || IE4) activateEl(=
'Q1558', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1558&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1558</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>736.77&nbsp;=
&nbsp;&nbsp;&nbsp;2207.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2207.290644 from(736.771373,3+) title(Elution%20from%3a%2015=
0%2e39%20to%20150%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1559)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1559; if (NS4 || IE4) activateEl(=
'Q1559', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1559&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1559</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>736.77&nbsp;=
&nbsp;&nbsp;&nbsp;2207.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2207.290869 from(736.771448,3+) title(Elution%20from%3a%2014=
4%2e26%20to%20144%2e26%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1560)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1560; if (NS4 || IE4) activateEl(=
'Q1560', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1560&amp;hit=3D1&amp;index=3DIPI%3aIPI000094=
79&amp;px=3D1"=20=0D
      target=3D_blank>1560</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>736.77&nbsp;&nbsp;&nbsp;&nbsp;2207.29&nbsp;&nbsp;&=
nbsp;&nbsp;2207.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GSVEICHVLLQAGANINAVDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2207.295747 from(736.773074,3+) title(Elution%20from%3a%2014=
7%2e36%20to%20147%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1561)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1561; if (NS4 || IE4) activateEl(=
'Q1561', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1561&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1561</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>736.77&nbsp;=
&nbsp;&nbsp;&nbsp;2207.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2207.298645 from(736.774040,3+) title(Elution%20from%3a%2015=
3%2e46%20to%20153%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1562)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1562; if (NS4 || IE4) activateEl(=
'Q1562', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1562&amp;hit=3D1&amp;index=3DIPI%3aIPI000094=
79&amp;px=3D1"=20=0D
      target=3D_blank>1562</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>736.77&nbsp;&nbsp;&nbsp;&nbsp;2207.30&nbsp;&nbsp;&=
nbsp;&nbsp;2207.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GSVEICHVLLQAGANINAVDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2207.301474 from(736.774983,3+) title(Elution%20from%3a%2014=
1%2e05%20to%20141%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1563)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1563; if (NS4 || IE4) activateEl(=
'Q1563', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1563&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1563</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>736.77&nbsp;=
&nbsp;&nbsp;&nbsp;2207.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2208.301767 from(737.108414,3+) title(Elution%20from%3a%2014=
9%2e28%20to%20149%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1564)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1564; if (NS4 || IE4) activateEl(=
'Q1564', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1564&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1564</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>737.11&nbsp;=
&nbsp;&nbsp;&nbsp;2208.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2208.304041 from(737.109172,3+) title(Elution%20from%3a%2015=
7%2e26%20to%20157%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1565)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1565; if (NS4 || IE4) activateEl(=
'Q1565', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1565&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1565</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>737.11&nbsp;=
&nbsp;&nbsp;&nbsp;2208.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2208.312504 from(737.111993,3+) title(Elution%20from%3a%2014=
0%2e97%20to%20140%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1566)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1566; if (NS4 || IE4) activateEl(=
'Q1566', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1566&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1566</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>737.11&nbsp;=
&nbsp;&nbsp;&nbsp;2208.31</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2210.264649 from(737.762708,3+) title(Elution%20from%3a%2024=
%2e46%20to%2024%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1567)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1567; if (NS4 || IE4) activateEl(=
'Q1567', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1567&amp;hit=3D1&amp;index=3DIPI%3aIPI000175=
01&amp;px=3D1"=20=0D
      target=3D_blank>1567</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>737.76&nbsp;&nbsp;&nbsp;&nbsp;2210.26&nbsp;&nbsp;&=
nbsp;&nbsp;2210.28&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nb=
sp;MTPILTVLICLGLSLGPRTR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2210.276364 from(737.766613,3+) title(Elution%20from%3a%2036=
%20to%2036%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3a%20%2=
01%20%20) query(1568)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1568; if (NS4 || IE4) activateEl(=
'Q1568', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1568&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1568</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>737.77&nbsp;=
&nbsp;&nbsp;&nbsp;2210.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2211.262431 from(738.095302,3+) title(Elution%20from%3a%2036=
%2e12%20to%2036%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1569)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1569; if (NS4 || IE4) activateEl(=
'Q1569', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1569&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1569</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>738.10&nbsp;=
&nbsp;&nbsp;&nbsp;2211.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2211.274083 from(738.099186,3+) title(Elution%20from%3a%2024=
%2e9%20to%2024%2e9%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1570)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1570; if (NS4 || IE4) activateEl(=
'Q1570', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1570&amp;hit=3D1&amp;index=3DIPI%3aIPI000186=
81&amp;px=3D1"=20=0D
      target=3D_blank>1570</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>738.10&nbsp;&nbsp;&nbsp;&nbsp;2211.27&nbsp;&nbsp;&=
nbsp;&nbsp;2211.18&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DVIIDQLPDLMGLKAVNVDK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2212.358625 from(738.460700,3+) title(Elution%20from%3a%2031=
%2e03%20to%2031%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1571)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1571; if (NS4 || IE4) activateEl(=
'Q1571', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1571&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1571</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>738.46&nbsp;=
&nbsp;&nbsp;&nbsp;2212.36</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2213.302932 from(738.775469,3+) title(Elution%20from%3a%2025=
%20to%2025%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20%2=
01%20%20) query(1572)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1572; if (NS4 || IE4) activateEl(=
'Q1572', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1572&amp;hit=3D1&amp;index=3DIPI%3aIPI000258=
03&amp;px=3D1"=20=0D
      target=3D_blank>1572</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>738.78&nbsp;&nbsp;&nbsp;&nbsp;2213.30&nbsp;&nbsp;&=
nbsp;&nbsp;2213.22&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DLSFPKLIMITDYLLLFR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2214.230820 from(739.084765,3+) title(Elution%20from%3a%2042=
%2e3%20to%2042%2e3%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles=
%3a%20%201%20%20) query(1573)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1573; if (NS4 || IE4) activateEl(=
'Q1573', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1573&amp;hit=3D1&amp;index=3DIPI%3aIPI000168=
90&amp;px=3D1"=20=0D
      target=3D_blank>1573</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.08&nbsp;&nbsp;&nbsp;&nbsp;2214.23&nbsp;&nbsp;&=
nbsp;&nbsp;2214.33&nbsp;&nbsp;&nbsp;&nbsp;-0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;RPKNIPIIVLPLTDNWVVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2214.235167 from(739.086214,3+) title(Elution%20from%3a%2032=
%2e8%20to%2032%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1574)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1574; if (NS4 || IE4) activateEl(=
'Q1574', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1574&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1574</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>739.09&nbsp;=
&nbsp;&nbsp;&nbsp;2214.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2214.237516 from(739.086997,3+) title(Elution%20from%3a%2035=
%2e84%20to%2035%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1575)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1575; if (NS4 || IE4) activateEl(=
'Q1575', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1575&amp;hit=3D1&amp;index=3DIPI%3aIPI000168=
90&amp;px=3D1"=20=0D
      target=3D_blank>1575</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.09&nbsp;&nbsp;&nbsp;&nbsp;2214.24&nbsp;&nbsp;&=
nbsp;&nbsp;2214.33&nbsp;&nbsp;&nbsp;&nbsp;-0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;RPKNIPIIVLPLTDNWVVK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2214.239535 from(739.087670,3+) title(Elution%20from%3a%2026=
%2e78%20to%2026%2e78%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1576)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1576; if (NS4 || IE4) activateEl(=
'Q1576', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1576&amp;hit=3D1&amp;index=3DIPI%3aIPI000266=
73&amp;px=3D1"=20=0D
      target=3D_blank>1576</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.09&nbsp;&nbsp;&nbsp;&nbsp;2214.24&nbsp;&nbsp;&=
nbsp;&nbsp;2214.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RPSSLQSLFGLPEAAGARDSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2214.244425 from(739.089300,3+) title(Elution%20from%3a%2038=
%2e94%20to%2038%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1577)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1577; if (NS4 || IE4) activateEl(=
'Q1577', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1577&amp;hit=3D1&amp;index=3DIPI%3aIPI000183=
83&amp;px=3D1"=20=0D
      target=3D_blank>1577</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.09&nbsp;&nbsp;&nbsp;&nbsp;2214.24&nbsp;&nbsp;&=
nbsp;&nbsp;2214.36&nbsp;&nbsp;&nbsp;&nbsp;-0.12&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MPRATALGALVSLLLLLPLPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2214.252567 from(739.092014,3+) title(Elution%20from%3a%2029=
%2e82%20to%2029%2e82%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1578)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1578; if (NS4 || IE4) activateEl(=
'Q1578', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1578&amp;hit=3D1&amp;index=3DIPI%3aIPI000183=
83&amp;px=3D1"=20=0D
      target=3D_blank>1578</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.09&nbsp;&nbsp;&nbsp;&nbsp;2214.25&nbsp;&nbsp;&=
nbsp;&nbsp;2214.36&nbsp;&nbsp;&nbsp;&nbsp;-0.11&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MPRATALGALVSLLLLLPLPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2214.257619 from(739.093698,3+) title(Elution%20from%3a%2023=
%2e69%20to%2023%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1579)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1579; if (NS4 || IE4) activateEl(=
'Q1579', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1579&amp;hit=3D1&amp;index=3DIPI%3aIPI000231=
92&amp;px=3D1"=20=0D
      target=3D_blank>1579</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.09&nbsp;&nbsp;&nbsp;&nbsp;2214.26&nbsp;&nbsp;&=
nbsp;&nbsp;2214.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IGDTAMALLPGGGQAQYVTVPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2215.228518 from(739.417331,3+) title(Elution%20from%3a%2042=
%2e83%20to%2042%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1580)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1580; if (NS4 || IE4) activateEl(=
'Q1580', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1580&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1580</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>739.42&nbsp;=
&nbsp;&nbsp;&nbsp;2215.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2215.234470 from(739.419315,3+) title(Elution%20from%3a%2036=
%2e31%20to%2036%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1581)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1581; if (NS4 || IE4) activateEl(=
'Q1581', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1581&amp;hit=3D1&amp;index=3DIPI%3aIPI000129=
59&amp;px=3D1"=20=0D
      target=3D_blank>1581</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.42&nbsp;&nbsp;&nbsp;&nbsp;2215.23&nbsp;&nbsp;&=
nbsp;&nbsp;2215.16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.07&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ISMDIIKGNLDGISKPASNSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2215.234815 from(739.419430,3+) title(Elution%20from%3a%2026=
%2e91%20to%2026%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1582)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1582; if (NS4 || IE4) activateEl(=
'Q1582', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1582&amp;hit=3D1&amp;index=3DIPI%3aIPI000288=
95&amp;px=3D1"=20=0D
      target=3D_blank>1582</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.42&nbsp;&nbsp;&nbsp;&nbsp;2215.23&nbsp;&nbsp;&=
nbsp;&nbsp;2215.14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MANEADLDEELVIKGSILQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2215.245450 from(739.422975,3+) title(Elution%20from%3a%2033=
%2e06%20to%2033%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1583)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1583; if (NS4 || IE4) activateEl(=
'Q1583', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1583&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1583</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>739.42&nbsp;=
&nbsp;&nbsp;&nbsp;2215.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2215.247985 from(739.423820,3+) title(Elution%20from%3a%2039=
%2e45%20to%2039%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1584)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1584; if (NS4 || IE4) activateEl(=
'Q1584', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1584&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1584</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>739.42&nbsp;=
&nbsp;&nbsp;&nbsp;2215.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2215.251405 from(739.424960,3+) title(Elution%20from%3a%2030=
%2e02%20to%2030%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1585)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1585; if (NS4 || IE4) activateEl(=
'Q1585', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1585&amp;hit=3D1&amp;index=3DIPI%3aIPI000288=
95&amp;px=3D1"=20=0D
      target=3D_blank>1585</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.42&nbsp;&nbsp;&nbsp;&nbsp;2215.25&nbsp;&nbsp;&=
nbsp;&nbsp;2215.14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MANEADLDEELVIKGSILQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2215.252011 from(739.425162,3+) title(Elution%20from%3a%2023=
%2e81%20to%2023%2e81%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1586)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1586; if (NS4 || IE4) activateEl(=
'Q1586', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1586&amp;hit=3D1&amp;index=3DIPI%3aIPI000288=
95&amp;px=3D1"=20=0D
      target=3D_blank>1586</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.43&nbsp;&nbsp;&nbsp;&nbsp;2215.25&nbsp;&nbsp;&=
nbsp;&nbsp;2215.14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MANEADLDEELVIKGSILQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2216.242725 from(739.755400,3+) title(Elution%20from%3a%2033=
%2e57%20to%2033%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1587)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1587; if (NS4 || IE4) activateEl(=
'Q1587', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1587&amp;hit=3D1&amp;index=3DIPI%3aIPI000024=
46&amp;px=3D1"=20=0D
      target=3D_blank>1587</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.76&nbsp;&nbsp;&nbsp;&nbsp;2216.24&nbsp;&nbsp;&=
nbsp;&nbsp;2216.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RPRSPPSSPVFFASPSPTFR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2216.244021 from(739.755832,3+) title(Elution%20from%3a%2037=
%2e64%20to%2037%2e64%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1588)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1588; if (NS4 || IE4) activateEl(=
'Q1588', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1588&amp;hit=3D1&amp;index=3DIPI%3aIPI000218=
78&amp;px=3D1"=20=0D
      target=3D_blank>1588</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.76&nbsp;&nbsp;&nbsp;&nbsp;2216.24&nbsp;&nbsp;&=
nbsp;&nbsp;2216.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;TYKFQLNITALDYPAPYAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2216.268513 from(739.763996,3+) title(Elution%20from%3a%2025=
%2e29%20to%2025%2e29%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1589)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1589; if (NS4 || IE4) activateEl(=
'Q1589', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1589&amp;hit=3D1&amp;index=3DIPI%3aIPI000175=
77&amp;px=3D1"=20=0D
      target=3D_blank>1589</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>739.76&nbsp;&nbsp;&nbsp;&nbsp;2216.27&nbsp;&nbsp;&=
nbsp;&nbsp;2216.25&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GPVTKCLLLHEVPTGEIVVR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2217.246210 from(740.089895,3+) title(Elution%20from%3a%2032=
%2e44%20to%2032%2e44%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1590)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1590; if (NS4 || IE4) activateEl(=
'Q1590', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1590&amp;hit=3D1&amp;index=3DIPI%3aIPI000101=
79&amp;px=3D1"=20=0D
      target=3D_blank>1590</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>740.09&nbsp;&nbsp;&nbsp;&nbsp;2217.25&nbsp;&nbsp;&=
nbsp;&nbsp;2217.10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YKPAVNQIECHPYLTQEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2217.251817 from(740.091764,3+) title(Elution%20from%3a%2024=
%2e85%20to%2024%2e85%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1591)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1591; if (NS4 || IE4) activateEl(=
'Q1591', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1591&amp;hit=3D1&amp;index=3DIPI%3aIPI000319=
85&amp;px=3D1"=20=0D
      target=3D_blank>1591</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>740.09&nbsp;&nbsp;&nbsp;&nbsp;2217.25&nbsp;&nbsp;&=
nbsp;&nbsp;2217.23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EVLDVSLLFLRIISACANGK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2217.258600 from(740.094025,3+) title(Elution%20from%3a%2037=
%2e22%20to%2037%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1592)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1592; if (NS4 || IE4) activateEl(=
'Q1592', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1592&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1592</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>740.09&nbsp;=
&nbsp;&nbsp;&nbsp;2217.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2218.264512 from(740.429329,3+) title(Elution%20from%3a%2034=
%2e82%20to%2034%2e82%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1593)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1593; if (NS4 || IE4) activateEl(=
'Q1593', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1593&amp;hit=3D1&amp;index=3DIPI%3aIPI000042=
30&amp;px=3D1"=20=0D
      target=3D_blank>1593</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>740.43&nbsp;&nbsp;&nbsp;&nbsp;2218.26&nbsp;&nbsp;&=
nbsp;&nbsp;2218.15&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FIDISPAEMANLMLQGLLAR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2220.365307 from(741.129594,3+) title(Elution%20from%3a%2012=
2%20to%20122%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20=
%201%20%20) query(1594)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1594; if (NS4 || IE4) activateEl(=
'Q1594', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1594&amp;hit=3D1&amp;index=3DIPI%3aIPI000338=
03&amp;px=3D1"=20=0D
      target=3D_blank>1594</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>741.13&nbsp;&nbsp;&nbsp;&nbsp;2220.37&nbsp;&nbsp;&=
nbsp;&nbsp;2220.24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;VRVPENITLYTPILHTQAR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2221.255632 from(741.426369,3+) title(Elution%20from%3a%2010=
9%2e69%20to%20109%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1595)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1595; if (NS4 || IE4) activateEl(=
'Q1595', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1595&amp;hit=3D1&amp;index=3DIPI%3aIPI000119=
68&amp;px=3D1"=20=0D
      target=3D_blank>1595</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>741.43&nbsp;&nbsp;&nbsp;&nbsp;2221.26&nbsp;&nbsp;&=
nbsp;&nbsp;2221.28&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;TESLSLCLIGRALFLFILR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2222.262876 from(741.762117,3+) title(Elution%20from%3a%2010=
6%2e67%20to%20106%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1596)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1596; if (NS4 || IE4) activateEl(=
'Q1596', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1596&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1596</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>741.76&nbsp;=
&nbsp;&nbsp;&nbsp;2222.26</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2222.270616 from(741.764697,3+) title(Elution%20from%3a%2011=
0%2e1%20to%20110%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1597)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1597; if (NS4 || IE4) activateEl(=
'Q1597', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1597&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1597</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>741.76&nbsp;=
&nbsp;&nbsp;&nbsp;2222.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2236.206633 from(746.410036,3+) title(Elution%20from%3a%2035=
%2e45%20to%2035%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1598)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1598; if (NS4 || IE4) activateEl(=
'Q1598', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1598&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1598</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>746.41&nbsp;=
&nbsp;&nbsp;&nbsp;2236.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2237.214777 from(746.746084,3+) title(Elution%20from%3a%2035=
%2e63%20to%2035%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1599)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1599; if (NS4 || IE4) activateEl(=
'Q1599', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1599&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1599</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>746.75&nbsp;=
&nbsp;&nbsp;&nbsp;2237.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2244.254907 from(749.092794,3+) title(Elution%20from%3a%2013=
%2e57%20to%2013%2e7%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycle=
s%3a%20%202%20%20) query(1600)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1600; if (NS4 || IE4) activateEl(=
'Q1600', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1600&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1600</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>749.09&nbsp;=
&nbsp;&nbsp;&nbsp;2244.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2245.273023 from(749.432166,3+) title(Elution%20from%3a%2016=
1%2e96%20to%20161%2e96%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1601)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1601; if (NS4 || IE4) activateEl(=
'Q1601', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1601&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1601</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>749.43&nbsp;=
&nbsp;&nbsp;&nbsp;2245.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2245.319082 from(749.447519,3+) title(Elution%20from%3a%2015=
8%2e78%20to%20158%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1602)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1602; if (NS4 || IE4) activateEl(=
'Q1602', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1602&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1602</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>749.45&nbsp;=
&nbsp;&nbsp;&nbsp;2245.32</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2246.320773 from(749.781416,3+) title(Elution%20from%3a%2015=
8%2e91%20to%20158%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1603)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1603; if (NS4 || IE4) activateEl(=
'Q1603', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1603&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1603</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>749.78&nbsp;=
&nbsp;&nbsp;&nbsp;2246.32</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2254.321890 from(752.448455,3+) title(Elution%20from%3a%2014=
%2e11%20to%2014%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1604)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1604; if (NS4 || IE4) activateEl(=
'Q1604', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1604&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1604</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>752.45&nbsp;=
&nbsp;&nbsp;&nbsp;2254.32</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2259.293391 from(754.105622,3+) title(Elution%20from%3a%2013=
2%2e58%20to%20132%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1605)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1605; if (NS4 || IE4) activateEl(=
'Q1605', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1605&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1605</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>754.11&nbsp;=
&nbsp;&nbsp;&nbsp;2259.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2259.312192 from(754.111889,3+) title(Elution%20from%3a%2096=
%2e31%20to%2096%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1606)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1606; if (NS4 || IE4) activateEl(=
'Q1606', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1606&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1606</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>754.11&nbsp;=
&nbsp;&nbsp;&nbsp;2259.31</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2259.344112 from(754.122529,3+) title(Elution%20from%3a%2093=
%2e26%20to%2093%2e26%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1607)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1607; if (NS4 || IE4) activateEl(=
'Q1607', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1607&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1607</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>754.12&nbsp;=
&nbsp;&nbsp;&nbsp;2259.34</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2260.281807 from(754.435094,3+) title(Elution%20from%3a%2013=
2%2e52%20to%20132%2e52%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1608)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1608; if (NS4 || IE4) activateEl(=
'Q1608', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1608&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1608</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>754.44&nbsp;=
&nbsp;&nbsp;&nbsp;2260.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2260.311087 from(754.444854,3+) title(Elution%20from%3a%2099=
%2e04%20to%2099%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1609)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1609; if (NS4 || IE4) activateEl(=
'Q1609', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1609&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1609</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>754.44&nbsp;=
&nbsp;&nbsp;&nbsp;2260.31</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2260.317303 from(754.446926,3+) title(Elution%20from%3a%2095=
%2e99%20to%2095%2e99%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1610)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1610; if (NS4 || IE4) activateEl(=
'Q1610', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1610&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1610</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>754.45&nbsp;=
&nbsp;&nbsp;&nbsp;2260.32</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2261.301393 from(754.774956,3+) title(Elution%20from%3a%2013=
3%2e54%20to%20133%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1611)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1611; if (NS4 || IE4) activateEl(=
'Q1611', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1611&amp;hit=3D1&amp;index=3DIPI%3aIPI000031=
85&amp;px=3D1"=20=0D
      target=3D_blank>1611</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>754.77&nbsp;&nbsp;&nbsp;&nbsp;2261.30&nbsp;&nbsp;&=
nbsp;&nbsp;2261.16&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;RTGCFPVPMVHSTFLIDLR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2266.231914 from(756.418463,3+) title(Elution%20from%3a%2015=
%2e48%20to%2015%2e48%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1612)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1612; if (NS4 || IE4) activateEl(=
'Q1612', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1612&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1612</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>756.42&nbsp;=
&nbsp;&nbsp;&nbsp;2266.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2266.386849 from(756.470108,3+) title(Elution%20from%3a%2016=
3%2e23%20to%20163%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1613)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1613; if (NS4 || IE4) activateEl(=
'Q1613', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1613&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1613</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>756.47&nbsp;=
&nbsp;&nbsp;&nbsp;2266.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2267.224688 from(567.813997,4+) title(Elution%20from%3a%2015=
%2e71%20to%2015%2e71%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1614)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1614; if (NS4 || IE4) activateEl(=
'Q1614', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1614&amp;hit=3D1&amp;index=3DIPI%3aIPI000181=
35&amp;px=3D1"=20=0D
      target=3D_blank>1614</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>567.81&nbsp;&nbsp;&nbsp;&nbsp;2267.22&nbsp;&nbsp;&=
nbsp;&nbsp;2267.20&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SQRPVRWMLQDIQEVLNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2267.224899 from(756.749458,3+) title(Elution%20from%3a%2015=
%2e66%20to%2015%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1615)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1615; if (NS4 || IE4) activateEl(=
'Q1615', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1615&amp;hit=3D1&amp;index=3DIPI%3aIPI000156=
28&amp;px=3D1"=20=0D
      target=3D_blank>1615</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>756.75&nbsp;&nbsp;&nbsp;&nbsp;2267.22&nbsp;&nbsp;&=
nbsp;&nbsp;2267.19&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;WKGLDIDSSRPNVAPDGLSLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2267.379717 from(756.801064,3+) title(Elution%20from%3a%2016=
3%2e15%20to%20163%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1616)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1616; if (NS4 || IE4) activateEl(=
'Q1616', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1616&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1616</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>756.80&nbsp;=
&nbsp;&nbsp;&nbsp;2267.38</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2269.265580 from(757.429685,3+) title(Elution%20from%3a%2016=
%2e66%20to%2016%2e66%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(1617)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1617; if (NS4 || IE4) activateEl(=
'Q1617', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1617&amp;hit=3D1&amp;index=3DIPI%3aIPI000056=
67&amp;px=3D1"=20=0D
      target=3D_blank>1617</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>757.43&nbsp;&nbsp;&nbsp;&nbsp;2269.27&nbsp;&nbsp;&=
nbsp;&nbsp;2269.28&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;VIKVYGPSTEPLLLLEEIEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2271.300369 from(758.107948,3+) title(Elution%20from%3a%2016=
%2e17%20to%2016%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1618)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1618; if (NS4 || IE4) activateEl(=
'Q1618', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1618&amp;hit=3D1&amp;index=3DIPI%3aIPI000222=
96&amp;px=3D1"=20=0D
      target=3D_blank>1618</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>758.11&nbsp;&nbsp;&nbsp;&nbsp;2271.30&nbsp;&nbsp;&=
nbsp;&nbsp;2271.17&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SDAAMTVAVKMLKPSAHLTER&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2272.268403 from(758.430626,3+) title(Elution%20from%3a%2027=
%2e43%20to%2027%2e43%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1619)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1619; if (NS4 || IE4) activateEl(=
'Q1619', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1619&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1619</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>758.43&nbsp;=
&nbsp;&nbsp;&nbsp;2272.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2276.280336 from(759.767937,3+) title(Elution%20from%3a%2036=
%2e78%20to%2036%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1620)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1620; if (NS4 || IE4) activateEl(=
'Q1620', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1620&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1620</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>759.77&nbsp;=
&nbsp;&nbsp;&nbsp;2276.28</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2277.304524 from(760.109333,3+) title(Elution%20from%3a%2036=
%2e73%20to%2036%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1621)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1621; if (NS4 || IE4) activateEl(=
'Q1621', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1621&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1621</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>760.11&nbsp;=
&nbsp;&nbsp;&nbsp;2277.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2280.378573 from(761.134016,3+) title(Elution%20from%3a%2091=
%2e45%20to%2091%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1622)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1622; if (NS4 || IE4) activateEl(=
'Q1622', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1622&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1622</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>761.13&nbsp;=
&nbsp;&nbsp;&nbsp;2280.38</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2280.404751 from(761.142742,3+) title(Elution%20from%3a%2088=
%2e42%20to%2088%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1623)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1623; if (NS4 || IE4) activateEl(=
'Q1623', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1623&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1623</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>761.14&nbsp;=
&nbsp;&nbsp;&nbsp;2280.40</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2280.432990 from(761.152155,3+) title(Elution%20from%3a%2068=
%2e18%20to%2068%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1624)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1624; if (NS4 || IE4) activateEl(=
'Q1624', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1624&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1624</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>761.15&nbsp;=
&nbsp;&nbsp;&nbsp;2280.43</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2281.352214 from(761.458563,3+) title(Elution%20from%3a%2088=
%2e65%20to%2088%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1625)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1625; if (NS4 || IE4) activateEl(=
'Q1625', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1625&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1625</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>761.46&nbsp;=
&nbsp;&nbsp;&nbsp;2281.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2281.373460 from(761.465645,3+) title(Elution%20from%3a%2068=
%2e07%20to%2068%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1626)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1626; if (NS4 || IE4) activateEl(=
'Q1626', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1626&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1626</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>761.47&nbsp;=
&nbsp;&nbsp;&nbsp;2281.37</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2281.389405 from(761.470960,3+) title(Elution%20from%3a%2091=
%2e78%20to%2091%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1627)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1627; if (NS4 || IE4) activateEl(=
'Q1627', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1627&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1627</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>761.47&nbsp;=
&nbsp;&nbsp;&nbsp;2281.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2285.966319 from(762.996598,3+) title(Elution%20from%3a%2022=
%2e5%20to%2022%2e5%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycles=
%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1628)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1628; if (NS4 || IE4) activateEl(=
'Q1628', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1628&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1628</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>763.00&nbsp;=
&nbsp;&nbsp;&nbsp;2285.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2290.218528 from(764.414001,3+) title(Elution%20from%3a%2073=
%2e05%20to%2073%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1629)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1629; if (NS4 || IE4) activateEl(=
'Q1629', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1629&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1629</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>764.41&nbsp;=
&nbsp;&nbsp;&nbsp;2290.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2290.234740 from(764.419405,3+) title(Elution%20from%3a%2079=
%2e3%20to%2079%2e3%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(1630)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1630; if (NS4 || IE4) activateEl(=
'Q1630', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1630&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1630</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>764.42&nbsp;=
&nbsp;&nbsp;&nbsp;2290.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2290.242606 from(764.422027,3+) title(Elution%20from%3a%2069=
%2e61%20to%2069%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1631)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1631; if (NS4 || IE4) activateEl(=
'Q1631', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1631&amp;hit=3D1&amp;index=3DIPI%3aIPI000231=
24&amp;px=3D1"=20=0D
      target=3D_blank>1631</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>764.42&nbsp;&nbsp;&nbsp;&nbsp;2290.24&nbsp;&nbsp;&=
nbsp;&nbsp;2290.26&nbsp;&nbsp;&nbsp;&nbsp;-0.02&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;EETPTEGGALSLKPGLPIRGIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2290.253847 from(764.425774,3+) title(Elution%20from%3a%2076=
%2e1%20to%2076%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1632)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1632; if (NS4 || IE4) activateEl(=
'Q1632', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1632&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1632</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>764.43&nbsp;=
&nbsp;&nbsp;&nbsp;2290.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2290.437855 from(764.487110,3+) title(Elution%20from%3a%2012=
6%2e56%20to%20126%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1633)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1633; if (NS4 || IE4) activateEl(=
'Q1633', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1633&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1633</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>764.49&nbsp;=
&nbsp;&nbsp;&nbsp;2290.44</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2291.217309 from(764.746928,3+) title(Elution%20from%3a%2072=
%2e75%20to%2072%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1634)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1634; if (NS4 || IE4) activateEl(=
'Q1634', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1634&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1634</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>764.75&nbsp;=
&nbsp;&nbsp;&nbsp;2291.22</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2291.227263 from(764.750246,3+) title(Elution%20from%3a%2069=
%2e69%20to%2069%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1635)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1635; if (NS4 || IE4) activateEl(=
'Q1635', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1635&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1635</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>764.75&nbsp;=
&nbsp;&nbsp;&nbsp;2291.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2291.237025 from(764.753500,3+) title(Elution%20from%3a%2078=
%2e91%20to%2078%2e91%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1636)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1636; if (NS4 || IE4) activateEl(=
'Q1636', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1636&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1636</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>764.75&nbsp;=
&nbsp;&nbsp;&nbsp;2291.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2291.242329 from(764.755268,3+) title(Elution%20from%3a%2075=
%2e8%20to%2075%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1637)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1637; if (NS4 || IE4) activateEl(=
'Q1637', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1637&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1637</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>764.76&nbsp;=
&nbsp;&nbsp;&nbsp;2291.24</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2292.253320 from(765.092265,3+) title(Elution%20from%3a%2073=
%2e77%20to%2073%2e77%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1638)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1638; if (NS4 || IE4) activateEl(=
'Q1638', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1638&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1638</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>765.09&nbsp;=
&nbsp;&nbsp;&nbsp;2292.25</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2296.457308 from(575.122152,4+) title(Elution%20from%3a%2046=
%2e78%20to%2046%2e78%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1639)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1639; if (NS4 || IE4) activateEl(=
'Q1639', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1639&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1639</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>575.12&nbsp;=
&nbsp;&nbsp;&nbsp;2296.46</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2301.450408 from(768.157961,3+) title(Elution%20from%3a%2013=
8%2e24%20to%20138%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1640)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1640; if (NS4 || IE4) activateEl(=
'Q1640', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1640&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1640</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>768.16&nbsp;=
&nbsp;&nbsp;&nbsp;2301.45</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2302.334480 from(576.591445,4+) title(Elution%20from%3a%2013=
8%2e14%20to%20138%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1641)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1641; if (NS4 || IE4) activateEl(=
'Q1641', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1641&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1641</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>576.59&nbsp;=
&nbsp;&nbsp;&nbsp;2302.33</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2302.396422 from(768.473299,3+) title(Elution%20from%3a%2013=
8%2e06%20to%20138%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1642)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1642; if (NS4 || IE4) activateEl(=
'Q1642', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1642&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1642</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>768.47&nbsp;=
&nbsp;&nbsp;&nbsp;2302.40</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2307.299859 from(770.107778,3+) title(Elution%20from%3a%2091=
%2e89%20to%2091%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1643)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1643; if (NS4 || IE4) activateEl(=
'Q1643', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1643&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1643</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>770.11&nbsp;=
&nbsp;&nbsp;&nbsp;2307.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2307.389196 from(770.137557,3+) title(Elution%20from%3a%2012=
6%2e51%20to%20126%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1644)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1644; if (NS4 || IE4) activateEl(=
'Q1644', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1644&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1644</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>770.14&nbsp;=
&nbsp;&nbsp;&nbsp;2307.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2308.376820 from(770.466765,3+) title(Elution%20from%3a%2010=
7%2e27%20to%20107%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1645)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1645; if (NS4 || IE4) activateEl(=
'Q1645', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1645&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1645</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>770.47&nbsp;=
&nbsp;&nbsp;&nbsp;2308.38</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2308.407273 from(770.476916,3+) title(Elution%20from%3a%2012=
6%2e62%20to%20126%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1646)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1646; if (NS4 || IE4) activateEl(=
'Q1646', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1646&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1646</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>770.48&nbsp;=
&nbsp;&nbsp;&nbsp;2308.41</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2309.330388 from(770.784621,3+) title(Elution%20from%3a%2010=
7%2e4%20to%20107%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1647)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1647; if (NS4 || IE4) activateEl(=
'Q1647', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1647&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1647</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>770.78&nbsp;=
&nbsp;&nbsp;&nbsp;2309.33</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2309.401206 from(770.808227,3+) title(Elution%20from%3a%2012=
7%2e23%20to%20127%2e23%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1648)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1648; if (NS4 || IE4) activateEl(=
'Q1648', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1648&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1648</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>770.81&nbsp;=
&nbsp;&nbsp;&nbsp;2309.40</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2310.349089 from(771.124188,3+) title(Elution%20from%3a%2010=
7%2e93%20to%20107%2e93%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1649)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1649; if (NS4 || IE4) activateEl(=
'Q1649', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1649&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1649</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>771.12&nbsp;=
&nbsp;&nbsp;&nbsp;2310.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2318.422083 from(773.815186,3+) title(Elution%20from%3a%2015=
6%2e45%20to%20156%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1650)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1650; if (NS4 || IE4) activateEl(=
'Q1650', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1650&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1650</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>773.82&nbsp;=
&nbsp;&nbsp;&nbsp;2318.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2319.388830 from(774.137435,3+) title(Elution%20from%3a%2015=
6%2e55%20to%20156%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1651)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1651; if (NS4 || IE4) activateEl(=
'Q1651', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1651&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1651</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>774.14&nbsp;=
&nbsp;&nbsp;&nbsp;2319.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2332.221345 from(778.414940,3+) title(Elution%20from%3a%2026=
%2e83%20to%2026%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1652)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1652; if (NS4 || IE4) activateEl(=
'Q1652', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1652&amp;hit=3D1&amp;index=3DIPI%3aIPI000167=
13&amp;px=3D1"=20=0D
      target=3D_blank>1652</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>778.41&nbsp;&nbsp;&nbsp;&nbsp;2332.22&nbsp;&nbsp;&=
nbsp;&nbsp;2332.14&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.08&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LVGMENTSSHTTLIESVLMDR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2333.231163 from(778.751546,3+) title(Elution%20from%3a%2027=
%2e18%20to%2027%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1653)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1653; if (NS4 || IE4) activateEl(=
'Q1653', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1653&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1653</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>778.75&nbsp;=
&nbsp;&nbsp;&nbsp;2333.23</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2337.273357 from(780.098944,3+) title(Elution%20from%3a%2014=
8%2e74%20to%20148%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1654)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1654; if (NS4 || IE4) activateEl(=
'Q1654', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1654&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1654</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>780.10&nbsp;=
&nbsp;&nbsp;&nbsp;2337.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2338.354908 from(780.459461,3+) title(Elution%20from%3a%2014=
9%2e13%20to%20149%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1655)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1655; if (NS4 || IE4) activateEl(=
'Q1655', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1655&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1655</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>780.46&nbsp;=
&nbsp;&nbsp;&nbsp;2338.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2342.555844 from(781.859773,3+) title(Elution%20from%3a%2018=
7%2e78%20to%20187%2e78%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1656)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1656; if (NS4 || IE4) activateEl(=
'Q1656', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1656&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1656</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>781.86&nbsp;=
&nbsp;&nbsp;&nbsp;2342.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2350.467267 from(784.496914,3+) title(Elution%20from%3a%2018=
6%2e79%20to%20186%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1657)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1657; if (NS4 || IE4) activateEl(=
'Q1657', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1657&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1657</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>784.50&nbsp;=
&nbsp;&nbsp;&nbsp;2350.47</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2351.479881 from(784.834452,3+) title(Elution%20from%3a%2018=
6%2e61%20to%20186%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1658)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1658; if (NS4 || IE4) activateEl(=
'Q1658', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1658&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1658</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>784.83&nbsp;=
&nbsp;&nbsp;&nbsp;2351.48</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2366.389671 from(789.804382,3+) title(Elution%20from%3a%2015=
7%2e94%20to%20157%2e94%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1659)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1659; if (NS4 || IE4) activateEl(=
'Q1659', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1659&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1659</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>789.80&nbsp;=
&nbsp;&nbsp;&nbsp;2366.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2366.464026 from(789.829167,3+) title(Elution%20from%3a%2014=
4%2e59%20to%20144%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1660)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1660; if (NS4 || IE4) activateEl(=
'Q1660', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1660&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1660</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>789.83&nbsp;=
&nbsp;&nbsp;&nbsp;2366.46</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2367.364893 from(790.129456,3+) title(Elution%20from%3a%2015=
7%2e67%20to%20157%2e67%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1661)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1661; if (NS4 || IE4) activateEl(=
'Q1661', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1661&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1661</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>790.13&nbsp;=
&nbsp;&nbsp;&nbsp;2367.36</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2367.471768 from(790.165081,3+) title(Elution%20from%3a%2014=
4%2e54%20to%20144%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1662)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1662; if (NS4 || IE4) activateEl(=
'Q1662', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1662&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1662</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>790.17&nbsp;=
&nbsp;&nbsp;&nbsp;2367.47</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2368.401981 from(790.475152,3+) title(Elution%20from%3a%2064=
%2e95%20to%2064%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1663)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1663; if (NS4 || IE4) activateEl(=
'Q1663', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1663&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1663</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>790.48&nbsp;=
&nbsp;&nbsp;&nbsp;2368.40</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2369.416821 from(790.813432,3+) title(Elution%20from%3a%2064=
%2e78%20to%2064%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1664)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1664; if (NS4 || IE4) activateEl(=
'Q1664', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1664&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1664</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>790.81&nbsp;=
&nbsp;&nbsp;&nbsp;2369.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2370.390894 from(791.138123,3+) title(Elution%20from%3a%2065=
%2e62%20to%2065%2e62%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1665)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1665; if (NS4 || IE4) activateEl(=
'Q1665', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1665&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1665</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>791.14&nbsp;=
&nbsp;&nbsp;&nbsp;2370.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2382.148095 from(795.057190,3+) title(Elution%20from%3a%2015=
4%2e35%20to%20154%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1666)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1666; if (NS4 || IE4) activateEl(=
'Q1666', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1666&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1666</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.06&nbsp;=
&nbsp;&nbsp;&nbsp;2382.15</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2383.005453 from(795.342976,3+) title(Elution%20from%3a%2015=
7%2e92%20to%20157%2e92%20%20%20period%3a%200%20%20%20experiment%3a%203%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1667)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1667; if (NS4 || IE4) activateEl(=
'Q1667', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1667&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1667</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.34&nbsp;=
&nbsp;&nbsp;&nbsp;2383.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2383.009902 from(795.344459,3+) title(Elution%20from%3a%2015=
4%2e75%20to%20154%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1668)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1668; if (NS4 || IE4) activateEl(=
'Q1668', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1668&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1668</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.34&nbsp;=
&nbsp;&nbsp;&nbsp;2383.01</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2383.869501 from(795.630992,3+) title(Elution%20from%3a%2015=
8%2e61%20to%20158%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20%28Charge%20not%20auto%20determined%29) query(1669)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1669; if (NS4 || IE4) activateEl(=
'Q1669', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1669&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1669</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.63&nbsp;=
&nbsp;&nbsp;&nbsp;2383.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2384.355360 from(795.792945,3+) title(Elution%20from%3a%2015=
4%2e27%20to%20154%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1670)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1670; if (NS4 || IE4) activateEl(=
'Q1670', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1670&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1670</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.79&nbsp;=
&nbsp;&nbsp;&nbsp;2384.36</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2384.411640 from(795.811705,3+) title(Elution%20from%3a%2014=
6%2e92%20to%20146%2e92%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1671)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1671; if (NS4 || IE4) activateEl(=
'Q1671', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1671&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1671</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.81&nbsp;=
&nbsp;&nbsp;&nbsp;2384.41</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2384.413488 from(795.812321,3+) title(Elution%20from%3a%2014=
3%2e85%20to%20143%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1672)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1672; if (NS4 || IE4) activateEl(=
'Q1672', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1672&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1672</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.81&nbsp;=
&nbsp;&nbsp;&nbsp;2384.41</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2384.415483 from(795.812986,3+) title(Elution%20from%3a%2014=
0%2e82%20to%20140%2e82%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1673)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1673; if (NS4 || IE4) activateEl(=
'Q1673', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1673&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1673</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.81&nbsp;=
&nbsp;&nbsp;&nbsp;2384.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2384.417916 from(795.813797,3+) title(Elution%20from%3a%2013=
7%2e78%20to%20137%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1674)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1674; if (NS4 || IE4) activateEl(=
'Q1674', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1674&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1674</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>795.81&nbsp;=
&nbsp;&nbsp;&nbsp;2384.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2385.411846 from(796.145107,3+) title(Elution%20from%3a%2013=
7%2e47%20to%20137%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1675)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1675; if (NS4 || IE4) activateEl(=
'Q1675', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1675&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1675</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>796.15&nbsp;=
&nbsp;&nbsp;&nbsp;2385.41</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2385.413958 from(796.145811,3+) title(Elution%20from%3a%2014=
0%2e59%20to%20140%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1676)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1676; if (NS4 || IE4) activateEl(=
'Q1676', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1676&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1676</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>796.15&nbsp;=
&nbsp;&nbsp;&nbsp;2385.41</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2385.414906 from(796.146127,3+) title(Elution%20from%3a%2014=
6%2e74%20to%20146%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1677)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1677; if (NS4 || IE4) activateEl(=
'Q1677', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1677&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1677</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>796.15&nbsp;=
&nbsp;&nbsp;&nbsp;2385.41</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2385.415179 from(796.146218,3+) title(Elution%20from%3a%2014=
3%2e68%20to%20143%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1678)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1678; if (NS4 || IE4) activateEl(=
'Q1678', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1678&amp;hit=3D1&amp;index=3DIPI%3aIPI000142=
23&amp;px=3D1"=20=0D
      target=3D_blank>1678</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>796.15&nbsp;&nbsp;&nbsp;&nbsp;2385.42&nbsp;&nbsp;&=
nbsp;&nbsp;2385.30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.11&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;YLNLAMCNLREIPNLTPLIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2385.434733 from(796.152736,3+) title(Elution%20from%3a%2015=
0%2e95%20to%20150%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1679)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1679; if (NS4 || IE4) activateEl(=
'Q1679', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1679&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1679</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>796.15&nbsp;=
&nbsp;&nbsp;&nbsp;2385.43</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2386.411878 from(796.478451,3+) title(Elution%20from%3a%2014=
5%2e07%20to%20145%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1680)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1680; if (NS4 || IE4) activateEl(=
'Q1680', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1680&amp;hit=3D1&amp;index=3DIPI%3aIPI000083=
25&amp;px=3D1"=20=0D
      target=3D_blank>1680</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>796.48&nbsp;&nbsp;&nbsp;&nbsp;2386.41&nbsp;&nbsp;&=
nbsp;&nbsp;2386.38&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ILAVNGQSIINMPHADIVKLIK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2387.377254 from(796.800243,3+) title(Elution%20from%3a%2014=
3%2e55%20to%20143%2e55%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1681)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1681; if (NS4 || IE4) activateEl(=
'Q1681', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1681&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1681</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>796.80&nbsp;=
&nbsp;&nbsp;&nbsp;2387.38</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2390.473686 from(797.832387,3+) title(Elution%20from%3a%2095=
%2e41%20to%2095%2e41%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1682)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1682; if (NS4 || IE4) activateEl(=
'Q1682', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1682&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1682</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>797.83&nbsp;=
&nbsp;&nbsp;&nbsp;2390.47</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2391.412432 from(598.860933,4+) title(Elution%20from%3a%2093=
%2e88%20to%2093%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1683)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1683; if (NS4 || IE4) activateEl(=
'Q1683', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1683&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1683</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>598.86&nbsp;=
&nbsp;&nbsp;&nbsp;2391.41</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2391.436986 from(798.153487,3+) title(Elution%20from%3a%2093=
%2e36%20to%2093%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1684)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1684; if (NS4 || IE4) activateEl(=
'Q1684', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1684&amp;hit=3D1&amp;index=3DIPI%3aIPI000143=
58&amp;px=3D1"=20=0D
      target=3D_blank>1684</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>798.15&nbsp;&nbsp;&nbsp;&nbsp;2391.44&nbsp;&nbsp;&=
nbsp;&nbsp;2391.34&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DILRIQFWIAAVIFLGMLEK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2391.461379 from(798.161618,3+) title(Elution%20from%3a%2096=
%2e41%20to%2096%2e41%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1685)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1685; if (NS4 || IE4) activateEl(=
'Q1685', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1685&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1685</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>798.16&nbsp;=
&nbsp;&nbsp;&nbsp;2391.46</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2392.378472 from(599.102443,4+) title(Elution%20from%3a%2096=
%2e18%20to%2096%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1686)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1686; if (NS4 || IE4) activateEl(=
'Q1686', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1686&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1686</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>599.10&nbsp;=
&nbsp;&nbsp;&nbsp;2392.38</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2392.441962 from(798.488479,3+) title(Elution%20from%3a%2095=
%2e25%20to%2095%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1687)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1687; if (NS4 || IE4) activateEl(=
'Q1687', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1687&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1687</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>798.49&nbsp;=
&nbsp;&nbsp;&nbsp;2392.44</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2408.386500 from(803.803325,3+) title(Elution%20from%3a%2010=
2%2e3%20to%20102%2e3%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1688)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1688; if (NS4 || IE4) activateEl(=
'Q1688', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1688&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1688</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>803.80&nbsp;=
&nbsp;&nbsp;&nbsp;2408.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2409.406929 from(804.143468,3+) title(Elution%20from%3a%2010=
2%2e15%20to%20102%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1689)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1689; if (NS4 || IE4) activateEl(=
'Q1689', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1689&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1689</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>804.14&nbsp;=
&nbsp;&nbsp;&nbsp;2409.41</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2422.370142 from(808.464539,3+) title(Elution%20from%3a%2017=
%2e31%20to%2017%2e31%20%20%20period%3a%200%20%20%20experiment%3a%204%20cycl=
es%3a%20%201%20%20) query(1690)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1690; if (NS4 || IE4) activateEl(=
'Q1690', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1690&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1690</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>808.46&nbsp;=
&nbsp;&nbsp;&nbsp;2422.37</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2423.340660 from(606.842990,4+) title(Elution%20from%3a%2017=
%2e16%20to%2017%2e16%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1691)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1691; if (NS4 || IE4) activateEl(=
'Q1691', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1691&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1691</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>606.84&nbsp;=
&nbsp;&nbsp;&nbsp;2423.34</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2429.635756 from(608.416764,4+) title(Elution%20from%3a%2012=
3%2e69%20to%20123%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1692)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1692; if (NS4 || IE4) activateEl(=
'Q1692', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1692&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1692</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>608.42&nbsp;=
&nbsp;&nbsp;&nbsp;2429.64</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2429.651736 from(810.891737,3+) title(Elution%20from%3a%2012=
4%20to%20124%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycles%3a%20=
%201%20%20) query(1693)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1693; if (NS4 || IE4) activateEl(=
'Q1693', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1693&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1693</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>810.89&nbsp;=
&nbsp;&nbsp;&nbsp;2429.65</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2435.890408 from(609.980427,4+) title(Elution%20from%3a%2032=
%2e39%20to%2032%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1694)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1694; if (NS4 || IE4) activateEl(=
'Q1694', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1694&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1694</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>609.98&nbsp;=
&nbsp;&nbsp;&nbsp;2435.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2436.423102 from(813.148859,3+) title(Elution%20from%3a%2015=
7%2e39%20to%20157%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1695)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1695; if (NS4 || IE4) activateEl(=
'Q1695', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1695&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1695</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>813.15&nbsp;=
&nbsp;&nbsp;&nbsp;2436.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2437.411707 from(813.478394,3+) title(Elution%20from%3a%2015=
7%2e36%20to%20157%2e36%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1696)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1696; if (NS4 || IE4) activateEl(=
'Q1696', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1696&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1696</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>813.48&nbsp;=
&nbsp;&nbsp;&nbsp;2437.41</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2441.358656 from(611.347489,4+) title(Elution%20from%3a%2010=
2%2e04%20to%20102%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1697)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1697; if (NS4 || IE4) activateEl(=
'Q1697', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1697&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1697</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>611.35&nbsp;=
&nbsp;&nbsp;&nbsp;2441.36</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2450.405625 from(817.809700,3+) title(Elution%20from%3a%2013=
1%2e69%20to%20131%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1698)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1698; if (NS4 || IE4) activateEl(=
'Q1698', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1698&amp;hit=3D1&amp;index=3DIPI%3aIPI000264=
11&amp;px=3D1"=20=0D
      target=3D_blank>1698</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>817.81&nbsp;&nbsp;&nbsp;&nbsp;2450.41&nbsp;&nbsp;&=
nbsp;&nbsp;2450.28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AGWLGMALVEFSPYLVWKQGAK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2451.422805 from(818.148760,3+) title(Elution%20from%3a%2013=
1%2e64%20to%20131%2e64%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1699)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1699; if (NS4 || IE4) activateEl(=
'Q1699', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1699&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1699</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>818.15&nbsp;=
&nbsp;&nbsp;&nbsp;2451.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2453.374912 from(614.351553,4+) title(Elution%20from%3a%2026=
%2e45%20to%2026%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1700)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1700; if (NS4 || IE4) activateEl(=
'Q1700', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1700&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1700</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>614.35&nbsp;=
&nbsp;&nbsp;&nbsp;2453.37</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2453.483337 from(818.835604,3+) title(Elution%20from%3a%2014=
7%2e25%20to%20147%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1701)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1701; if (NS4 || IE4) activateEl(=
'Q1701', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1701&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1701</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>818.84&nbsp;=
&nbsp;&nbsp;&nbsp;2453.48</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2454.508368 from(819.177281,3+) title(Elution%20from%3a%2014=
7%2e31%20to%20147%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1702)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1702; if (NS4 || IE4) activateEl(=
'Q1702', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1702&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1702</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>819.18&nbsp;=
&nbsp;&nbsp;&nbsp;2454.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2454.535386 from(819.186287,3+) title(Elution%20from%3a%2019=
7%2e29%20to%20197%2e29%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1703)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1703; if (NS4 || IE4) activateEl(=
'Q1703', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1703&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1703</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>819.19&nbsp;=
&nbsp;&nbsp;&nbsp;2454.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2456.128768 from(615.040017,4+) title(Elution%20from%3a%2015=
9%2e09%20to%20159%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1704)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1704; if (NS4 || IE4) activateEl(=
'Q1704', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1704&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1704</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>615.04&nbsp;=
&nbsp;&nbsp;&nbsp;2456.13</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2463.459978 from(822.161151,3+) title(Elution%20from%3a%2011=
4%2e16%20to%20114%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1705)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1705; if (NS4 || IE4) activateEl(=
'Q1705', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1705&amp;hit=3D1&amp;index=3DIPI%3aIPI000271=
53&amp;px=3D1"=20=0D
      target=3D_blank>1705</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>822.16&nbsp;&nbsp;&nbsp;&nbsp;2463.46&nbsp;&nbsp;&=
nbsp;&nbsp;2463.33&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.13&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GIPLATGDTSPEPELLPGAPLPPPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2464.492278 from(822.505251,3+) title(Elution%20from%3a%2011=
4%2e03%20to%20114%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1706)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1706; if (NS4 || IE4) activateEl(=
'Q1706', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1706&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1706</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>822.51&nbsp;=
&nbsp;&nbsp;&nbsp;2464.49</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2466.389094 from(823.137523,3+) title(Elution%20from%3a%2095=
%2e12%20to%2095%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1707)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1707; if (NS4 || IE4) activateEl(=
'Q1707', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1707&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1707</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>823.14&nbsp;=
&nbsp;&nbsp;&nbsp;2466.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2466.395403 from(823.139626,3+) title(Elution%20from%3a%2098=
%2e17%20to%2098%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1708)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1708; if (NS4 || IE4) activateEl(=
'Q1708', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1708&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1708</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>823.14&nbsp;=
&nbsp;&nbsp;&nbsp;2466.40</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2467.391212 from(617.855628,4+) title(Elution%20from%3a%2096=
%2e36%20to%2096%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1709)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1709; if (NS4 || IE4) activateEl(=
'Q1709', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1709&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1709</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>617.86&nbsp;=
&nbsp;&nbsp;&nbsp;2467.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2467.394646 from(823.472707,3+) title(Elution%20from%3a%2098=
%2e35%20to%2098%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1710)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1710; if (NS4 || IE4) activateEl(=
'Q1710', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1710&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1710</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>823.47&nbsp;=
&nbsp;&nbsp;&nbsp;2467.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2467.399752 from(823.474409,3+) title(Elution%20from%3a%2095=
%2e07%20to%2095%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1711)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1711; if (NS4 || IE4) activateEl(=
'Q1711', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1711&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1711</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>823.47&nbsp;=
&nbsp;&nbsp;&nbsp;2467.40</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2468.393808 from(823.805761,3+) title(Elution%20from%3a%2098=
%2e74%20to%2098%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1712)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1712; if (NS4 || IE4) activateEl(=
'Q1712', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1712&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1712</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>823.81&nbsp;=
&nbsp;&nbsp;&nbsp;2468.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2469.381600 from(618.353225,4+) title(Elution%20from%3a%2096=
%2e51%20to%2096%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1713)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1713; if (NS4 || IE4) activateEl(=
'Q1713', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1713&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1713</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>618.35&nbsp;=
&nbsp;&nbsp;&nbsp;2469.38</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2471.352636 from(824.792037,3+) title(Elution%20from%3a%2021=
%2e7%20to%2021%2e7%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(1714)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1714; if (NS4 || IE4) activateEl(=
'Q1714', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1714&amp;hit=3D1&amp;index=3DIPI%3aIPI000320=
02&amp;px=3D1"=20=0D
      target=3D_blank>1714</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>824.79&nbsp;&nbsp;&nbsp;&nbsp;2471.35&nbsp;&nbsp;&=
nbsp;&nbsp;2471.29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;ELLQSCDVLGIPLSSVMIIDNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2472.349731 from(825.124402,3+) title(Elution%20from%3a%2022=
%2e27%20to%2022%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1715)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1715; if (NS4 || IE4) activateEl(=
'Q1715', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1715&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1715</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>825.12&nbsp;=
&nbsp;&nbsp;&nbsp;2472.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2472.359883 from(825.127786,3+) title(Elution%20from%3a%2029=
%2e87%20to%2029%2e87%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1716)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1716; if (NS4 || IE4) activateEl(=
'Q1716', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1716&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1716</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>825.13&nbsp;=
&nbsp;&nbsp;&nbsp;2472.36</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2473.267872 from(825.430449,3+) title(Elution%20from%3a%2029=
%2e22%20to%2029%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1717)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1717; if (NS4 || IE4) activateEl(=
'Q1717', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1717&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1717</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>825.43&nbsp;=
&nbsp;&nbsp;&nbsp;2473.27</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2482.377588 from(828.467021,3+) title(Elution%20from%3a%2063=
%2e72%20to%2063%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1718)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1718; if (NS4 || IE4) activateEl(=
'Q1718', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1718&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1718</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>828.47&nbsp;=
&nbsp;&nbsp;&nbsp;2482.38</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2483.396343 from(828.806606,3+) title(Elution%20from%3a%2063=
%2e47%20to%2063%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1719)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1719; if (NS4 || IE4) activateEl(=
'Q1719', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1719&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1719</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>828.81&nbsp;=
&nbsp;&nbsp;&nbsp;2483.40</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2483.522025 from(828.848500,3+) title(Elution%20from%3a%2011=
5%2e29%20to%20115%2e29%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1720)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1720; if (NS4 || IE4) activateEl(=
'Q1720', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1720&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1720</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>828.85&nbsp;=
&nbsp;&nbsp;&nbsp;2483.52</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2484.496710 from(829.173395,3+) title(Elution%20from%3a%2011=
5%2e07%20to%20115%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1721)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1721; if (NS4 || IE4) activateEl(=
'Q1721', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1721&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1721</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>829.17&nbsp;=
&nbsp;&nbsp;&nbsp;2484.50</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2488.390212 from(830.471229,3+) title(Elution%20from%3a%2073=
%2e16%20to%2073%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1722)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1722; if (NS4 || IE4) activateEl(=
'Q1722', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1722&amp;hit=3D1&amp;index=3DIPI%3aIPI000014=
77&amp;px=3D1"=20=0D
      target=3D_blank>1722</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>830.47&nbsp;&nbsp;&nbsp;&nbsp;2488.39&nbsp;&nbsp;&=
nbsp;&nbsp;2488.24&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GNPPHSAPCVPNGSALLLSNPAYR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2489.375982 from(830.799819,3+) title(Elution%20from%3a%2073=
%2e11%20to%2073%2e11%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1723)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1723; if (NS4 || IE4) activateEl(=
'Q1723', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1723&amp;hit=3D1&amp;index=3DIPI%3aIPI000274=
67&amp;px=3D1"=20=0D
      target=3D_blank>1723</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>830.80&nbsp;&nbsp;&nbsp;&nbsp;2489.38&nbsp;&nbsp;&=
nbsp;&nbsp;2489.35&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;MATWALLLLAAMLLGNPGLVFSR&nbsp;+&nbsp;2=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2492.351457 from(831.791644,3+) title(Elution%20from%3a%2066=
%2e41%20to%2066%2e41%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1724)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1724; if (NS4 || IE4) activateEl(=
'Q1724', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1724&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1724</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>831.79&nbsp;=
&nbsp;&nbsp;&nbsp;2492.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2493.344517 from(832.122664,3+) title(Elution%20from%3a%2066=
%2e55%20to%2066%2e55%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1725)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1725; if (NS4 || IE4) activateEl(=
'Q1725', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1725&amp;hit=3D1&amp;index=3DIPI%3aIPI000272=
42&amp;px=3D1"=20=0D
      target=3D_blank>1725</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>832.12&nbsp;&nbsp;&nbsp;&nbsp;2493.34&nbsp;&nbsp;&=
nbsp;&nbsp;2493.28&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;DGPRVTAVIMVMHSVLLGGEEQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2494.362810 from(832.462095,3+) title(Elution%20from%3a%2016=
6%2e02%20to%20166%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1726)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1726; if (NS4 || IE4) activateEl(=
'Q1726', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1726&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1726</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>832.46&nbsp;=
&nbsp;&nbsp;&nbsp;2494.36</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2494.370883 from(832.464786,3+) title(Elution%20from%3a%2017=
2%2e12%20to%20172%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1727)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1727; if (NS4 || IE4) activateEl(=
'Q1727', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1727&amp;hit=3D1&amp;index=3DIPI%3aIPI000045=
90&amp;px=3D1"=20=0D
      target=3D_blank>1727</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>832.46&nbsp;&nbsp;&nbsp;&nbsp;2494.37&nbsp;&nbsp;&=
nbsp;&nbsp;2494.38&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;0&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;AVAITVPLVVISAFATLFTVMCR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2494.373625 from(832.465700,3+) title(Elution%20from%3a%2015=
7%2e74%20to%20157%2e74%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1728)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1728; if (NS4 || IE4) activateEl(=
'Q1728', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1728&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1728</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>832.47&nbsp;=
&nbsp;&nbsp;&nbsp;2494.37</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2494.382811 from(832.468762,3+) title(Elution%20from%3a%2016=
9%2e07%20to%20169%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1729)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1729; if (NS4 || IE4) activateEl(=
'Q1729', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1729&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1729</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>832.47&nbsp;=
&nbsp;&nbsp;&nbsp;2494.38</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2495.379363 from(832.800946,3+) title(Elution%20from%3a%2016=
9%2e17%20to%20169%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1730)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1730; if (NS4 || IE4) activateEl(=
'Q1730', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1730&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1730</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>832.80&nbsp;=
&nbsp;&nbsp;&nbsp;2495.38</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2495.386008 from(832.803161,3+) title(Elution%20from%3a%2016=
6%2e12%20to%20166%2e12%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1731)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1731; if (NS4 || IE4) activateEl(=
'Q1731', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1731&amp;hit=3D1&amp;index=3DIPI%3aIPI000241=
86&amp;px=3D1"=20=0D
      target=3D_blank>1731</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>832.80&nbsp;&nbsp;&nbsp;&nbsp;2495.39&nbsp;&nbsp;&=
nbsp;&nbsp;2495.29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.10&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;EVTICGDLHGKLDDLFLIFYK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2495.388966 from(832.804147,3+) title(Elution%20from%3a%2017=
2%2e45%20to%20172%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1732)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1732; if (NS4 || IE4) activateEl(=
'Q1732', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1732&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1732</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>832.80&nbsp;=
&nbsp;&nbsp;&nbsp;2495.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2495.420823 from(832.814766,3+) title(Elution%20from%3a%2015=
7%2e79%20to%20157%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1733)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1733; if (NS4 || IE4) activateEl(=
'Q1733', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1733&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1733</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>832.81&nbsp;=
&nbsp;&nbsp;&nbsp;2495.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2496.371091 from(833.131522,3+) title(Elution%20from%3a%2015=
8%2e07%20to%20158%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1734)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1734; if (NS4 || IE4) activateEl(=
'Q1734', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1734&amp;hit=3D1&amp;index=3DIPI%3aIPI000071=
93&amp;px=3D1"=20=0D
      target=3D_blank>1734</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>833.13&nbsp;&nbsp;&nbsp;&nbsp;2496.37&nbsp;&nbsp;&=
nbsp;&nbsp;2496.23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MNFDVSNLKDNNEILSQQLFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2496.374043 from(833.132506,3+) title(Elution%20from%3a%2017=
3%2e29%20to%20173%2e29%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1735)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1735; if (NS4 || IE4) activateEl(=
'Q1735', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1735&amp;hit=3D1&amp;index=3DIPI%3aIPI000071=
93&amp;px=3D1"=20=0D
      target=3D_blank>1735</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>833.13&nbsp;&nbsp;&nbsp;&nbsp;2496.37&nbsp;&nbsp;&=
nbsp;&nbsp;2496.23&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MNFDVSNLKDNNEILSQQLFK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2508.714912 from(837.246129,3+) title(Elution%20from%3a%2019=
5%20to%20195%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles%3a%20=
%201%20%20) query(1736)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1736; if (NS4 || IE4) activateEl(=
'Q1736', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1736&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1736</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>837.25&nbsp;=
&nbsp;&nbsp;&nbsp;2508.71</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2510.394796 from(628.606524,4+) title(Elution%20from%3a%2011=
8%2e52%20to%20118%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1737)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1737; if (NS4 || IE4) activateEl(=
'Q1737', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1737&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1737</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>628.61&nbsp;=
&nbsp;&nbsp;&nbsp;2510.39</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2514.505734 from(839.176403,3+) title(Elution%20from%3a%2016=
6%2e35%20to%20166%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1738)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1738; if (NS4 || IE4) activateEl(=
'Q1738', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1738&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1738</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>839.18&nbsp;=
&nbsp;&nbsp;&nbsp;2514.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2514.601251 from(839.208242,3+) title(Elution%20from%3a%2075=
%2e5%20to%2075%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1739)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1739; if (NS4 || IE4) activateEl(=
'Q1739', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1739&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1739</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>839.21&nbsp;=
&nbsp;&nbsp;&nbsp;2514.60</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2515.562085 from(839.528520,3+) title(Elution%20from%3a%2075=
%2e16%20to%2075%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1740)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1740; if (NS4 || IE4) activateEl(=
'Q1740', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1740&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1740</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>839.53&nbsp;=
&nbsp;&nbsp;&nbsp;2515.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2557.308435 from(853.443970,3+) title(Elution%20from%3a%2011=
3%2e49%20to%20113%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1741)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1741; if (NS4 || IE4) activateEl(=
'Q1741', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1741&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1741</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>853.44&nbsp;=
&nbsp;&nbsp;&nbsp;2557.31</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2572.317084 from(858.446853,3+) title(Elution%20from%3a%2097=
%2e22%20to%2097%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1742)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1742; if (NS4 || IE4) activateEl(=
'Q1742', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1742&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1742</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>858.45&nbsp;=
&nbsp;&nbsp;&nbsp;2572.32</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2573.301507 from(858.774994,3+) title(Elution%20from%3a%2096=
%2e23%20to%2096%2e23%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1743)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1743; if (NS4 || IE4) activateEl(=
'Q1743', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1743&amp;hit=3D1&amp;index=3DIPI%3aIPI000016=
43&amp;px=3D1"=20=0D
      target=3D_blank>1743</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>858.77&nbsp;&nbsp;&nbsp;&nbsp;2573.30&nbsp;&nbsp;&=
nbsp;&nbsp;2573.30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;AFTKMASAPASYGSTTTKPMGLLSR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2574.298866 from(859.107447,3+) title(Elution%20from%3a%2097=
%2e34%20to%2097%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1744)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1744; if (NS4 || IE4) activateEl(=
'Q1744', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1744&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1744</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>859.11&nbsp;=
&nbsp;&nbsp;&nbsp;2574.30</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2574.335277 from(859.119584,3+) title(Elution%20from%3a%2016=
5%2e84%20to%20165%2e84%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1745)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1745; if (NS4 || IE4) activateEl(=
'Q1745', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1745&amp;hit=3D1&amp;index=3DIPI%3aIPI000188=
35&amp;px=3D1"=20=0D
      target=3D_blank>1745</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>859.12&nbsp;&nbsp;&nbsp;&nbsp;2574.34&nbsp;&nbsp;&=
nbsp;&nbsp;2574.30&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;NYFLLMNLFTLQTLMWPHHR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2574.340104 from(859.121193,3+) title(Elution%20from%3a%2016=
2%2e79%20to%20162%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1746)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1746; if (NS4 || IE4) activateEl(=
'Q1746', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1746&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1746</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>859.12&nbsp;=
&nbsp;&nbsp;&nbsp;2574.34</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2574.349041 from(859.124172,3+) title(Elution%20from%3a%2015=
6%2e7%20to%20156%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1747)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1747; if (NS4 || IE4) activateEl(=
'Q1747', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1747&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1747</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>859.12&nbsp;=
&nbsp;&nbsp;&nbsp;2574.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2574.352578 from(859.125351,3+) title(Elution%20from%3a%2015=
1%2e43%20to%20151%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1748)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1748; if (NS4 || IE4) activateEl(=
'Q1748', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1748&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1748</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>859.13&nbsp;=
&nbsp;&nbsp;&nbsp;2574.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2574.354351 from(859.125942,3+) title(Elution%20from%3a%2017=
1%2e15%20to%20171%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1749)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1749; if (NS4 || IE4) activateEl(=
'Q1749', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1749&amp;hit=3D1&amp;index=3DIPI%3aIPI000203=
70&amp;px=3D1"=20=0D
      target=3D_blank>1749</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>859.13&nbsp;&nbsp;&nbsp;&nbsp;2574.35&nbsp;&nbsp;&=
nbsp;&nbsp;2574.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ERGIFFVVVETESHSVTQAGVQR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2575.352733 from(859.458736,3+) title(Elution%20from%3a%2015=
7%2e03%20to%20157%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1750)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1750; if (NS4 || IE4) activateEl(=
'Q1750', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1750&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1750</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>859.46&nbsp;=
&nbsp;&nbsp;&nbsp;2575.35</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2575.356234 from(859.459903,3+) title(Elution%20from%3a%2015=
0%2e9%20to%20150%2e9%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1751)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1751; if (NS4 || IE4) activateEl(=
'Q1751', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1751&amp;hit=3D1&amp;index=3DIPI%3aIPI000266=
43&amp;px=3D1"=20=0D
      target=3D_blank>1751</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>859.46&nbsp;&nbsp;&nbsp;&nbsp;2575.36&nbsp;&nbsp;&=
nbsp;&nbsp;2575.26&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.09&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;HSKIWFGSNMGNGTVFLGIPGDNK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2575.356669 from(859.460048,3+) title(Elution%20from%3a%2017=
1%2e05%20to%20171%2e05%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1752)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1752; if (NS4 || IE4) activateEl(=
'Q1752', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1752&amp;hit=3D1&amp;index=3DIPI%3aIPI000279=
18&amp;px=3D1"=20=0D
      target=3D_blank>1752</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>859.46&nbsp;&nbsp;&nbsp;&nbsp;2575.36&nbsp;&nbsp;&=
nbsp;&nbsp;2575.32&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ILGPMFISQVYAHWGPRWAFSL</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2575.366584 from(859.463353,3+) title(Elution%20from%3a%2016=
0%2e1%20to%20160%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1753)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1753; if (NS4 || IE4) activateEl(=
'Q1753', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1753&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1753</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>859.46&nbsp;=
&nbsp;&nbsp;&nbsp;2575.37</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2575.367712 from(859.463729,3+) title(Elution%20from%3a%2016=
6%2e63%20to%20166%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1754)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1754; if (NS4 || IE4) activateEl(=
'Q1754', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1754&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1754</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>859.46&nbsp;=
&nbsp;&nbsp;&nbsp;2575.37</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2576.365758 from(859.796411,3+) title(Elution%20from%3a%2016=
0%2e18%20to%20160%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1755)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1755; if (NS4 || IE4) activateEl(=
'Q1755', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1755&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1755</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>859.80&nbsp;=
&nbsp;&nbsp;&nbsp;2576.37</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2594.519094 from(865.847523,3+) title(Elution%20from%3a%2015=
8%2e48%20to%20158%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1757)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1757; if (NS4 || IE4) activateEl(=
'Q1757', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1757&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1757</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>865.85&nbsp;=
&nbsp;&nbsp;&nbsp;2594.52</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2594.539116 from(865.854197,3+) title(Elution%20from%3a%2016=
1%2e53%20to%20161%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1758)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1758; if (NS4 || IE4) activateEl(=
'Q1758', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1758&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1758</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>865.85&nbsp;=
&nbsp;&nbsp;&nbsp;2594.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2594.546200 from(649.644375,4+) title(Elution%20from%3a%2016=
0%2e79%20to%20160%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1759)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1759; if (NS4 || IE4) activateEl(=
'Q1759', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1759&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1759</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.64&nbsp;=
&nbsp;&nbsp;&nbsp;2594.55</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2594.549436 from(649.645184,4+) title(Elution%20from%3a%2016=
5%2e16%20to%20165%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1760)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1760; if (NS4 || IE4) activateEl(=
'Q1760', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1760&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1760</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.65&nbsp;=
&nbsp;&nbsp;&nbsp;2594.55</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2595.514953 from(866.179476,3+) title(Elution%20from%3a%2015=
7%2e89%20to%20157%2e89%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1761)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1761; if (NS4 || IE4) activateEl(=
'Q1761', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1761&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1761</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>866.18&nbsp;=
&nbsp;&nbsp;&nbsp;2595.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2595.527888 from(649.889797,4+) title(Elution%20from%3a%2016=
1%2e78%20to%20161%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1762)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1762; if (NS4 || IE4) activateEl(=
'Q1762', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1762&amp;hit=3D1&amp;index=3DIPI%3aIPI000065=
38&amp;px=3D1"=20=0D
      target=3D_blank>1762</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>649.89&nbsp;&nbsp;&nbsp;&nbsp;2595.53&nbsp;&nbsp;&=
nbsp;&nbsp;2595.47&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.06&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;WLAVCGIILVFLLAELNTFYLK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2595.533670 from(866.185715,3+) title(Elution%20from%3a%2016=
4%2e04%20to%20164%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1763)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1763; if (NS4 || IE4) activateEl(=
'Q1763', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1763&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1763</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>866.19&nbsp;=
&nbsp;&nbsp;&nbsp;2595.53</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2595.540717 from(866.188064,3+) title(Elution%20from%3a%2015=
0%2e34%20to%20150%2e34%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1764)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1764; if (NS4 || IE4) activateEl(=
'Q1764', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1764&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1764</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>866.19&nbsp;=
&nbsp;&nbsp;&nbsp;2595.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2595.545216 from(649.894129,4+) title(Elution%20from%3a%2015=
8%2e73%20to%20158%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1765)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1765; if (NS4 || IE4) activateEl(=
'Q1765', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1765&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1765</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.89&nbsp;=
&nbsp;&nbsp;&nbsp;2595.55</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2595.557397 from(866.193624,3+) title(Elution%20from%3a%2016=
0%2e89%20to%20160%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1766)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1766; if (NS4 || IE4) activateEl(=
'Q1766', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1766&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1766</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>866.19&nbsp;=
&nbsp;&nbsp;&nbsp;2595.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2595.589896 from(649.905299,4+) title(Elution%20from%3a%2015=
0%2e06%20to%20150%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1767)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1767; if (NS4 || IE4) activateEl(=
'Q1767', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1767&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1767</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.91&nbsp;=
&nbsp;&nbsp;&nbsp;2595.59</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2595.645000 from(649.919075,4+) title(Elution%20from%3a%2015=
5%2e56%20to%20155%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1768)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1768; if (NS4 || IE4) activateEl(=
'Q1768', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1768&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1768</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>649.92&nbsp;=
&nbsp;&nbsp;&nbsp;2595.65</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2596.513692 from(650.136248,4+) title(Elution%20from%3a%2016=
4%2e09%20to%20164%2e09%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1769)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1769; if (NS4 || IE4) activateEl(=
'Q1769', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1769&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1769</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>650.14&nbsp;=
&nbsp;&nbsp;&nbsp;2596.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2596.525776 from(866.516417,3+) title(Elution%20from%3a%2015=
0%2e72%20to%20150%2e72%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1770)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1770; if (NS4 || IE4) activateEl(=
'Q1770', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1770&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1770</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>866.52&nbsp;=
&nbsp;&nbsp;&nbsp;2596.53</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2596.557360 from(650.147165,4+) title(Elution%20from%3a%2015=
9%2e68%20to%20159%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1771)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1771; if (NS4 || IE4) activateEl(=
'Q1771', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1771&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1771</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>650.15&nbsp;=
&nbsp;&nbsp;&nbsp;2596.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2596.558048 from(650.147337,4+) title(Elution%20from%3a%2015=
1%2e51%20to%20151%2e51%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1772)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1772; if (NS4 || IE4) activateEl(=
'Q1772', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1772&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1772</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>650.15&nbsp;=
&nbsp;&nbsp;&nbsp;2596.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2599.602357 from(867.541944,3+) title(Elution%20from%3a%2017=
2%2e5%20to%20172%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1773)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1773; if (NS4 || IE4) activateEl(=
'Q1773', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1773&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1773</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>867.54&nbsp;=
&nbsp;&nbsp;&nbsp;2599.60</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2600.585080 from(651.154095,4+) title(Elution%20from%3a%2017=
2%2e63%20to%20172%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1774)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1774; if (NS4 || IE4) activateEl(=
'Q1774', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1774&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1774</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>651.15&nbsp;=
&nbsp;&nbsp;&nbsp;2600.59</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2600.603070 from(867.875515,3+) title(Elution%20from%3a%2017=
2%2e17%20to%20172%2e17%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1775)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1775; if (NS4 || IE4) activateEl(=
'Q1775', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1775&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1775</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>867.88&nbsp;=
&nbsp;&nbsp;&nbsp;2600.60</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2611.554405 from(871.525960,3+) title(Elution%20from%3a%2013=
2%2e98%20to%20132%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1776)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1776; if (NS4 || IE4) activateEl(=
'Q1776', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1776&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1776</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>871.53&nbsp;=
&nbsp;&nbsp;&nbsp;2611.55</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2611.623172 from(653.913618,4+) title(Elution%20from%3a%2013=
2%2e47%20to%20132%2e47%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1777)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1777; if (NS4 || IE4) activateEl(=
'Q1777', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1777&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1777</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>653.91&nbsp;=
&nbsp;&nbsp;&nbsp;2611.62</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2617.480047 from(873.501174,3+) title(Elution%20from%3a%2014=
5%2e23%20to%20145%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1778)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1778; if (NS4 || IE4) activateEl(=
'Q1778', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1778&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1778</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>873.50&nbsp;=
&nbsp;&nbsp;&nbsp;2617.48</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2639.562510 from(880.861995,3+) title(Elution%20from%3a%2014=
9%2e07%20to%20149%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1779)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1779; if (NS4 || IE4) activateEl(=
'Q1779', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1779&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1779</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>880.86&nbsp;=
&nbsp;&nbsp;&nbsp;2639.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2640.544110 from(881.189195,3+) title(Elution%20from%3a%2014=
8%2e97%20to%20148%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1780)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1780; if (NS4 || IE4) activateEl(=
'Q1780', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1780&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1780</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>881.19&nbsp;=
&nbsp;&nbsp;&nbsp;2640.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2655.563076 from(886.195517,3+) title(Elution%20from%3a%2019=
0%2e2%20to%20190%2e2%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1781)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1781; if (NS4 || IE4) activateEl(=
'Q1781', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1781&amp;hit=3D1&amp;index=3DIPI%3aIPI000167=
09&amp;px=3D1"=20=0D
      target=3D_blank>1781</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>886.20&nbsp;&nbsp;&nbsp;&nbsp;2655.56&nbsp;&nbsp;&=
nbsp;&nbsp;2655.41&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.15&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LPRPAGYPSTVSTVEGHGPPLSPAIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2668.540308 from(890.521261,3+) title(Elution%20from%3a%2018=
7%2e73%20to%20187%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1782)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1782; if (NS4 || IE4) activateEl(=
'Q1782', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1782&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1782</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>890.52&nbsp;=
&nbsp;&nbsp;&nbsp;2668.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2697.610620 from(675.410480,4+) title(Elution%20from%3a%2026=
%2e6%20to%2026%2e6%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1783)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1783; if (NS4 || IE4) activateEl(=
'Q1783', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1783&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1783</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>675.41&nbsp;=
&nbsp;&nbsp;&nbsp;2697.61</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2701.401832 from(676.358283,4+) title(Elution%20from%3a%2072=
%2e23%20to%2072%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1784)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1784; if (NS4 || IE4) activateEl(=
'Q1784', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1784&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1784</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.36&nbsp;=
&nbsp;&nbsp;&nbsp;2701.40</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2701.419236 from(676.362634,4+) title(Elution%20from%3a%2063=
%2e09%20to%2063%2e09%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1785)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1785; if (NS4 || IE4) activateEl(=
'Q1785', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1785&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
88&amp;px=3D1"=20=0D
      target=3D_blank>1785</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.36&nbsp;&nbsp;&nbsp;&nbsp;2701.42&nbsp;&nbsp;&=
nbsp;&nbsp;2701.43&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LTAVIGDEDTVTGFLLGGIGELNKNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2701.421492 from(676.363198,4+) title(Elution%20from%3a%2055=
%2e32%20to%2055%2e32%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1786)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1786; if (NS4 || IE4) activateEl(=
'Q1786', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1786&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1786</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.36&nbsp;=
&nbsp;&nbsp;&nbsp;2701.42</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2701.425700 from(676.364250,4+) title(Elution%20from%3a%2058=
%2e56%20to%2058%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1787)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1787; if (NS4 || IE4) activateEl(=
'Q1787', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1787&amp;hit=3D1&amp;index=3DIPI%3aIPI000044=
88&amp;px=3D1"=20=0D
      target=3D_blank>1787</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.36&nbsp;&nbsp;&nbsp;&nbsp;2701.43&nbsp;&nbsp;&=
nbsp;&nbsp;2701.43&nbsp;&nbsp;&nbsp;&nbsp;-0.00&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;LTAVIGDEDTVTGFLLGGIGELNKNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2701.430360 from(676.365415,4+) title(Elution%20from%3a%2066=
%2e14%20to%2066%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1788)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1788; if (NS4 || IE4) activateEl(=
'Q1788', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1788&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1788</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.37&nbsp;=
&nbsp;&nbsp;&nbsp;2701.43</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2701.445272 from(676.369143,4+) title(Elution%20from%3a%2048=
%2e34%20to%2048%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1789)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1789; if (NS4 || IE4) activateEl(=
'Q1789', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1789&amp;hit=3D1&amp;index=3DIPI%3aIPI000011=
77&amp;px=3D1"=20=0D
      target=3D_blank>1789</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.37&nbsp;&nbsp;&nbsp;&nbsp;2701.45&nbsp;&nbsp;&=
nbsp;&nbsp;2701.56&nbsp;&nbsp;&nbsp;&nbsp;-0.12&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;SKRPIPISTTAPPVQTPLPVIPHQK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2701.475628 from(901.499701,3+) title(Elution%20from%3a%2023=
%2e5%20to%2023%2e5%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycles=
%3a%20%201%20%20) query(1790)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1790; if (NS4 || IE4) activateEl(=
'Q1790', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1790&amp;hit=3D1&amp;index=3DIPI%3aIPI000122=
69&amp;px=3D1"=20=0D
      target=3D_blank>1790</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>901.50&nbsp;&nbsp;&nbsp;&nbsp;2701.48&nbsp;&nbsp;&=
nbsp;&nbsp;2701.34&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.14&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;KSNEQATSLNTVGGTGGIGGVGGTGGVGNR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2702.417456 from(676.612189,4+) title(Elution%20from%3a%2059=
%2e13%20to%2059%2e13%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1791)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1791; if (NS4 || IE4) activateEl(=
'Q1791', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1791&amp;hit=3D1&amp;index=3DIPI%3aIPI000034=
29&amp;px=3D1"=20=0D
      target=3D_blank>1791</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.61&nbsp;&nbsp;&nbsp;&nbsp;2702.42&nbsp;&nbsp;&=
nbsp;&nbsp;2702.39&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.03&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;IDLSSENELASTVSTPVSKTAELSPK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.428072 from(676.864843,4+) title(Elution%20from%3a%2037=
%2e48%20to%2037%2e48%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1792)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1792; if (NS4 || IE4) activateEl(=
'Q1792', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1792&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1792</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.86&nbsp;=
&nbsp;&nbsp;&nbsp;2703.43</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.434092 from(676.866348,4+) title(Elution%20from%3a%2041=
%2e14%20to%2041%2e14%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1793)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1793; if (NS4 || IE4) activateEl(=
'Q1793', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1793&amp;hit=3D1&amp;index=3DIPI%3aIPI000053=
06&amp;px=3D1"=20=0D
      target=3D_blank>1793</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.87&nbsp;&nbsp;&nbsp;&nbsp;2703.43&nbsp;&nbsp;&=
nbsp;&nbsp;2703.55&nbsp;&nbsp;&nbsp;&nbsp;-0.12&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HRVLTLSPLPQLHQVLVQLQAGEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.437168 from(676.867117,4+) title(Elution%20from%3a%2078=
%2e65%20to%2078%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1794)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1794; if (NS4 || IE4) activateEl(=
'Q1794', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1794&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1794</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.87&nbsp;=
&nbsp;&nbsp;&nbsp;2703.44</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.452096 from(676.870849,4+) title(Elution%20from%3a%2071=
%2e7%20to%2071%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1795)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1795; if (NS4 || IE4) activateEl(=
'Q1795', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1795&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1795</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.87&nbsp;=
&nbsp;&nbsp;&nbsp;2703.45</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.456556 from(676.871964,4+) title(Elution%20from%3a%2056=
%2e35%20to%2056%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1796)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1796; if (NS4 || IE4) activateEl(=
'Q1796', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1796&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1796</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.87&nbsp;=
&nbsp;&nbsp;&nbsp;2703.46</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.458568 from(676.872467,4+) title(Elution%20from%3a%2065=
%2e49%20to%2065%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1797)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1797; if (NS4 || IE4) activateEl(=
'Q1797', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1797&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1797</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.87&nbsp;=
&nbsp;&nbsp;&nbsp;2703.46</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.459352 from(676.872663,4+) title(Elution%20from%3a%2047=
%2e22%20to%2047%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1798)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1798; if (NS4 || IE4) activateEl(=
'Q1798', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1798&amp;hit=3D1&amp;index=3DIPI%3aIPI000053=
06&amp;px=3D1"=20=0D
      target=3D_blank>1798</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.87&nbsp;&nbsp;&nbsp;&nbsp;2703.46&nbsp;&nbsp;&=
nbsp;&nbsp;2703.55&nbsp;&nbsp;&nbsp;&nbsp;-0.10&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HRVLTLSPLPQLHQVLVQLQAGEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.461520 from(676.873205,4+) title(Elution%20from%3a%2059=
%2e39%20to%2059%2e39%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1799)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1799; if (NS4 || IE4) activateEl(=
'Q1799', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1799&amp;hit=3D1&amp;index=3DIPI%3aIPI000053=
06&amp;px=3D1"=20=0D
      target=3D_blank>1799</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.87&nbsp;&nbsp;&nbsp;&nbsp;2703.46&nbsp;&nbsp;&=
nbsp;&nbsp;2703.55&nbsp;&nbsp;&nbsp;&nbsp;-0.09&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HRVLTLSPLPQLHQVLVQLQAGEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.472476 from(676.875944,4+) title(Elution%20from%3a%2050=
%2e28%20to%2050%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1800)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1800; if (NS4 || IE4) activateEl(=
'Q1800', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1800&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1800</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.88&nbsp;=
&nbsp;&nbsp;&nbsp;2703.47</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.476504 from(676.876951,4+) title(Elution%20from%3a%2062=
%2e45%20to%2062%2e45%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1801)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1801; if (NS4 || IE4) activateEl(=
'Q1801', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1801&amp;hit=3D1&amp;index=3DIPI%3aIPI000053=
06&amp;px=3D1"=20=0D
      target=3D_blank>1801</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>676.88&nbsp;&nbsp;&nbsp;&nbsp;2703.48&nbsp;&nbsp;&=
nbsp;&nbsp;2703.55&nbsp;&nbsp;&nbsp;&nbsp;-0.08&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;HRVLTLSPLPQLHQVLVQLQAGEK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.479380 from(676.877670,4+) title(Elution%20from%3a%2053=
%2e31%20to%2053%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1802)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1802; if (NS4 || IE4) activateEl(=
'Q1802', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1802&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1802</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.88&nbsp;=
&nbsp;&nbsp;&nbsp;2703.48</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2703.507264 from(676.884641,4+) title(Elution%20from%3a%2068=
%2e53%20to%2068%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1803)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1803; if (NS4 || IE4) activateEl(=
'Q1803', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1803&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1803</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>676.88&nbsp;=
&nbsp;&nbsp;&nbsp;2703.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2727.715764 from(910.246413,3+) title(Elution%20from%3a%2012=
4%2e62%20to%20124%2e62%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1804)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1804; if (NS4 || IE4) activateEl(=
'Q1804', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1804&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1804</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>910.25&nbsp;=
&nbsp;&nbsp;&nbsp;2727.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2728.702092 from(910.575189,3+) title(Elution%20from%3a%2012=
4%2e02%20to%20124%2e02%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1805)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1805; if (NS4 || IE4) activateEl(=
'Q1805', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1805&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1805</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>910.58&nbsp;=
&nbsp;&nbsp;&nbsp;2728.70</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2728.720068 from(683.187842,4+) title(Elution%20from%3a%2012=
4%2e83%20to%20124%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1806)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1806; if (NS4 || IE4) activateEl(=
'Q1806', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1806&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1806</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>683.19&nbsp;=
&nbsp;&nbsp;&nbsp;2728.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2736.562518 from(913.195331,3+) title(Elution%20from%3a%2012=
4%2e57%20to%20124%2e57%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1807)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1807; if (NS4 || IE4) activateEl(=
'Q1807', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1807&amp;hit=3D1&amp;index=3DIPI%3aIPI000267=
68&amp;px=3D1"=20=0D
      target=3D_blank>1807</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>913.20&nbsp;&nbsp;&nbsp;&nbsp;2736.56&nbsp;&nbsp;&=
nbsp;&nbsp;2736.55&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MIVITSILSSLAGLLLLAFLAASTMR&nbsp;+&nbsp;2=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2739.564081 from(914.195852,3+) title(Elution%20from%3a%2016=
0%2e23%20to%20160%2e23%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1808)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1808; if (NS4 || IE4) activateEl(=
'Q1808', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1808&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1808</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>914.20&nbsp;=
&nbsp;&nbsp;&nbsp;2739.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2740.547055 from(914.523510,3+) title(Elution%20from%3a%2016=
0%2e03%20to%20160%2e03%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1809)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1809; if (NS4 || IE4) activateEl(=
'Q1809', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1809&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1809</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>914.52&nbsp;=
&nbsp;&nbsp;&nbsp;2740.55</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2740.560380 from(686.147920,4+) title(Elution%20from%3a%2016=
0%2e28%20to%20160%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1810)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1810; if (NS4 || IE4) activateEl(=
'Q1810', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1810&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1810</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>686.15&nbsp;=
&nbsp;&nbsp;&nbsp;2740.56</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2741.544780 from(686.394020,4+) title(Elution%20from%3a%2016=
0%2e36%20to%20160%2e36%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1811)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1811; if (NS4 || IE4) activateEl(=
'Q1811', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1811&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1811</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>686.39&nbsp;=
&nbsp;&nbsp;&nbsp;2741.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2779.660998 from(927.561491,3+) title(Elution%20from%3a%2015=
3%2e99%20to%20153%2e99%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1812)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1812; if (NS4 || IE4) activateEl(=
'Q1812', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1812&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1812</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>927.56&nbsp;=
&nbsp;&nbsp;&nbsp;2779.66</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2779.663263 from(927.562246,3+) title(Elution%20from%3a%2016=
1%2e66%20to%20161%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1813)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1813; if (NS4 || IE4) activateEl(=
'Q1813', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1813&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1813</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>927.56&nbsp;=
&nbsp;&nbsp;&nbsp;2779.66</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2780.184864 from(696.054041,4+) title(Elution%20from%3a%2015=
9%2e63%20to%20159%2e63%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1814)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1814; if (NS4 || IE4) activateEl(=
'Q1814', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1814&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1814</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>696.05&nbsp;=
&nbsp;&nbsp;&nbsp;2780.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2794.684824 from(699.679031,4+) title(Elution%20from%3a%2018=
4%2e73%20to%20184%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1815)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1815; if (NS4 || IE4) activateEl(=
'Q1815', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1815&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1815</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>699.68&nbsp;=
&nbsp;&nbsp;&nbsp;2794.68</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2807.601484 from(702.908196,4+) title(Elution%20from%3a%2073=
%2e66%20to%2073%2e66%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1816)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1816; if (NS4 || IE4) activateEl(=
'Q1816', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1816&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1816</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>702.91&nbsp;=
&nbsp;&nbsp;&nbsp;2807.60</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2812.723443 from(938.582306,3+) title(Elution%20from%3a%2019=
9%2e96%20to%20199%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1817)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1817; if (NS4 || IE4) activateEl(=
'Q1817', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1817&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1817</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>938.58&nbsp;=
&nbsp;&nbsp;&nbsp;2812.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2813.713287 from(938.912254,3+) title(Elution%20from%3a%2019=
9%2e94%20to%20199%2e94%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1818)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1818; if (NS4 || IE4) activateEl(=
'Q1818', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1818&amp;hit=3D1&amp;index=3DIPI%3aIPI000327=
24&amp;px=3D1"=20=0D
      target=3D_blank>1818</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>938.91&nbsp;&nbsp;&nbsp;&nbsp;2813.71&nbsp;&nbsp;&=
nbsp;&nbsp;2813.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MFLILYLKLISLLLQTLQLVPWR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2813.725000 from(704.439075,4+) title(Elution%20from%3a%2020=
0%2e7%20to%20200%2e7%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1819)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1819; if (NS4 || IE4) activateEl(=
'Q1819', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1819&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1819</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>704.44&nbsp;=
&nbsp;&nbsp;&nbsp;2813.72</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.490452 from(708.380438,4+) title(Elution%20from%3a%2010=
4%2e47%20to%20104%2e47%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1820)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1820; if (NS4 || IE4) activateEl(=
'Q1820', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1820&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1820</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.38&nbsp;=
&nbsp;&nbsp;&nbsp;2829.49</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.501084 from(708.383096,4+) title(Elution%20from%3a%2014=
4%2e42%20to%20144%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1821)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1821; if (NS4 || IE4) activateEl(=
'Q1821', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1821&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1821</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.38&nbsp;=
&nbsp;&nbsp;&nbsp;2829.50</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.502116 from(708.383354,4+) title(Elution%20from%3a%2012=
2%2e68%20to%20122%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1822)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1822; if (NS4 || IE4) activateEl(=
'Q1822', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1822&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1822</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.38&nbsp;=
&nbsp;&nbsp;&nbsp;2829.50</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.504148 from(708.383862,4+) title(Elution%20from%3a%2010=
1%2e37%20to%20101%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1823)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1823; if (NS4 || IE4) activateEl(=
'Q1823', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1823&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1823</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.38&nbsp;=
&nbsp;&nbsp;&nbsp;2829.50</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.507312 from(708.384653,4+) title(Elution%20from%3a%2098=
%2e22%20to%2098%2e22%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1824)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1824; if (NS4 || IE4) activateEl(=
'Q1824', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1824&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1824</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.38&nbsp;=
&nbsp;&nbsp;&nbsp;2829.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.509312 from(708.385153,4+) title(Elution%20from%3a%2013=
1%2e82%20to%20131%2e82%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1825)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1825; if (NS4 || IE4) activateEl(=
'Q1825', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1825&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1825</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.509476 from(708.385194,4+) title(Elution%20from%3a%2013=
4%2e93%20to%20134%2e93%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1826)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1826; if (NS4 || IE4) activateEl(=
'Q1826', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1826&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1826</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.509784 from(708.385271,4+) title(Elution%20from%3a%2011=
3%2e54%20to%20113%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1827)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1827; if (NS4 || IE4) activateEl(=
'Q1827', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1827&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1827</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.510336 from(708.385409,4+) title(Elution%20from%3a%2011=
6%2e58%20to%20116%2e58%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1828)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1828; if (NS4 || IE4) activateEl(=
'Q1828', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1828&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1828</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.511164 from(708.385616,4+) title(Elution%20from%3a%2011=
0%2e5%20to%20110%2e5%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1829)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1829; if (NS4 || IE4) activateEl(=
'Q1829', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1829&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1829</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.512308 from(708.385902,4+) title(Elution%20from%3a%2012=
5%2e71%20to%20125%2e71%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1830)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1830; if (NS4 || IE4) activateEl(=
'Q1830', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1830&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1830</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.513788 from(708.386272,4+) title(Elution%20from%3a%2013=
8%2e01%20to%20138%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1831)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1831; if (NS4 || IE4) activateEl(=
'Q1831', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1831&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1831</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.518292 from(708.387398,4+) title(Elution%20from%3a%2012=
8%2e79%20to%20128%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1832)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1832; if (NS4 || IE4) activateEl(=
'Q1832', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1832&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1832</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.52</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.525748 from(708.389262,4+) title(Elution%20from%3a%2014=
1%2e1%20to%20141%2e1%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1833)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1833; if (NS4 || IE4) activateEl(=
'Q1833', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1833&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1833</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.53</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.529488 from(708.390197,4+) title(Elution%20from%3a%2010=
7%2e5%20to%20107%2e5%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1834)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1834; if (NS4 || IE4) activateEl(=
'Q1834', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1834&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1834</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.53</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.530296 from(708.390399,4+) title(Elution%20from%3a%2011=
9%2e61%20to%20119%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1835)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1835; if (NS4 || IE4) activateEl(=
'Q1835', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1835&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1835</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.53</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.536780 from(708.392020,4+) title(Elution%20from%3a%2095=
%2e18%20to%2095%2e18%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1836)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1836; if (NS4 || IE4) activateEl(=
'Q1836', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1836&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1836</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2829.539564 from(708.392716,4+) title(Elution%20from%3a%2091=
%2e99%20to%2091%2e99%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1837)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1837; if (NS4 || IE4) activateEl(=
'Q1837', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1837&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1837</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.39&nbsp;=
&nbsp;&nbsp;&nbsp;2829.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2830.454955 from(944.492810,3+) title(Elution%20from%3a%2058=
%2e08%20to%2058%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1838)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1838; if (NS4 || IE4) activateEl(=
'Q1838', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1838&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1838</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>944.49&nbsp;=
&nbsp;&nbsp;&nbsp;2830.45</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2830.506132 from(708.634358,4+) title(Elution%20from%3a%2014=
0%2e39%20to%20140%2e39%20%20%20period%3a%200%20%20%20experiment%3a%203%20cy=
cles%3a%20%201%20%20) query(1839)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1839; if (NS4 || IE4) activateEl(=
'Q1839', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1839&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1839</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.63&nbsp;=
&nbsp;&nbsp;&nbsp;2830.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2830.519596 from(708.637724,4+) title(Elution%20from%3a%2011=
3%2e9%20to%20113%2e9%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1840)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1840; if (NS4 || IE4) activateEl(=
'Q1840', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1840&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1840</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.64&nbsp;=
&nbsp;&nbsp;&nbsp;2830.52</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2830.519832 from(708.637783,4+) title(Elution%20from%3a%2012=
7%2e08%20to%20127%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1841)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1841; if (NS4 || IE4) activateEl(=
'Q1841', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1841&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1841</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.64&nbsp;=
&nbsp;&nbsp;&nbsp;2830.52</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2830.523212 from(708.638628,4+) title(Elution%20from%3a%2010=
2%2e53%20to%20102%2e53%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1842)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1842; if (NS4 || IE4) activateEl(=
'Q1842', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1842&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1842</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.64&nbsp;=
&nbsp;&nbsp;&nbsp;2830.52</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2830.525712 from(708.639253,4+) title(Elution%20from%3a%2010=
8%2e86%20to%20108%2e86%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1843)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1843; if (NS4 || IE4) activateEl(=
'Q1843', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1843&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1843</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.64&nbsp;=
&nbsp;&nbsp;&nbsp;2830.53</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2830.571264 from(708.650641,4+) title(Elution%20from%3a%2011=
7%2e54%20to%20117%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1844)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1844; if (NS4 || IE4) activateEl(=
'Q1844', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1844&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1844</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.65&nbsp;=
&nbsp;&nbsp;&nbsp;2830.57</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2830.576360 from(708.651915,4+) title(Elution%20from%3a%2013=
0%2e38%20to%20130%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1845)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1845; if (NS4 || IE4) activateEl(=
'Q1845', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1845&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1845</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.65&nbsp;=
&nbsp;&nbsp;&nbsp;2830.58</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2831.505112 from(708.884103,4+) title(Elution%20from%3a%2011=
1%2e16%20to%20111%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1846)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1846; if (NS4 || IE4) activateEl(=
'Q1846', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1846&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1846</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.88&nbsp;=
&nbsp;&nbsp;&nbsp;2831.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2831.511560 from(708.885715,4+) title(Elution%20from%3a%2011=
4%2e23%20to%20114%2e23%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1847)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1847; if (NS4 || IE4) activateEl(=
'Q1847', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1847&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1847</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>708.89&nbsp;=
&nbsp;&nbsp;&nbsp;2831.51</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2841.644139 from(948.222538,3+) title(Elution%20from%3a%2018=
2%2e8%20to%20182%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1848)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1848; if (NS4 || IE4) activateEl(=
'Q1848', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1848&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1848</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>948.22&nbsp;=
&nbsp;&nbsp;&nbsp;2841.64</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2857.680420 from(953.567965,3+) title(Elution%20from%3a%2019=
2%2e38%20to%20192%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1849)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1849; if (NS4 || IE4) activateEl(=
'Q1849', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1849&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1849</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>953.57&nbsp;=
&nbsp;&nbsp;&nbsp;2857.68</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2884.690917 from(962.571464,3+) title(Elution%20from%3a%2014=
0%2e95%20to%20140%2e95%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1850)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1850; if (NS4 || IE4) activateEl(=
'Q1850', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1850&amp;hit=3D1&amp;index=3DIPI%3aIPI000152=
38&amp;px=3D1"=20=0D
      target=3D_blank>1850</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>962.57&nbsp;&nbsp;&nbsp;&nbsp;2884.69&nbsp;&nbsp;&=
nbsp;&nbsp;2884.57&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.12&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;LLFPIFASLMLQYQVNTEFIGLRR&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2899.868934 from(967.630803,3+) title(Elution%20from%3a%2019=
7%2e36%20to%20197%2e36%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1851)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1851; if (NS4 || IE4) activateEl(=
'Q1851', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1851&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1851</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>967.63&nbsp;=
&nbsp;&nbsp;&nbsp;2899.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2927.543457 from(976.855644,3+) title(Elution%20from%3a%2016=
7%2e98%20to%20167%2e98%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1852)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1852; if (NS4 || IE4) activateEl(=
'Q1852', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1852&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1852</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>976.86&nbsp;=
&nbsp;&nbsp;&nbsp;2927.54</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2984.658528 from(995.894001,3+) title(Elution%20from%3a%2016=
0%2e16%20to%20160%2e16%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1853)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1853; if (NS4 || IE4) activateEl(=
'Q1853', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1853&amp;hit=3D1&amp;index=3DIPI%3aIPI000281=
61&amp;px=3D1"=20=0D
      target=3D_blank>1853</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>995.89&nbsp;&nbsp;&nbsp;&nbsp;2984.66&nbsp;&nbsp;&=
nbsp;&nbsp;2984.62&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;GYPKPLAELPGRPPIFWPGVVQGAPWR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2985.687141 from(996.236872,3+) title(Elution%20from%3a%2015=
9%2e85%20to%20159%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1854)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1854; if (NS4 || IE4) activateEl(=
'Q1854', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1854&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1854</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>996.24&nbsp;=
&nbsp;&nbsp;&nbsp;2985.69</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"2985.701068 from(747.433092,4+) title(Elution%20from%3a%2015=
9%2e93%20to%20159%2e93%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1855)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1855; if (NS4 || IE4) activateEl(=
'Q1855', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1855&amp;hit=3D1&amp;index=3DIPI%3aIPI000172=
28&amp;px=3D1"=20=0D
      target=3D_blank>1855</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>747.43&nbsp;&nbsp;&nbsp;&nbsp;2985.70&nbsp;&nbsp;&=
nbsp;&nbsp;2985.70&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.00&nbsp;&nbsp;&nbsp;&nbsp=
;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;MGLSAAAPLWGPPGLLLAIALHPALSVPPR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3021.838360 from(756.467415,4+) title(Elution%20from%3a%2011=
2%2e71%20to%20112%2e71%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1856)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1856; if (NS4 || IE4) activateEl(=
'Q1856', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1856&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1856</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>756.47&nbsp;=
&nbsp;&nbsp;&nbsp;3021.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3021.839232 from(756.467633,4+) title(Elution%20from%3a%2093=
%2e42%20to%2093%2e42%20%20%20period%3a%200%20%20%20experiment%3a%202%20cycl=
es%3a%20%201%20%20) query(1857)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1857; if (NS4 || IE4) activateEl(=
'Q1857', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1857&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1857</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>756.47&nbsp;=
&nbsp;&nbsp;&nbsp;3021.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3022.846968 from(756.719567,4+) title(Elution%20from%3a%2094=
%2e07%20to%2094%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1858)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1858; if (NS4 || IE4) activateEl(=
'Q1858', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1858&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1858</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>756.72&nbsp;=
&nbsp;&nbsp;&nbsp;3022.85</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3069.739460 from(768.442690,4+) title(Elution%20from%3a%2015=
7%2e31%20to%20157%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1859)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1859; if (NS4 || IE4) activateEl(=
'Q1859', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1859&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1859</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>768.44&nbsp;=
&nbsp;&nbsp;&nbsp;3069.74</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3070.739796 from(768.692774,4+) title(Elution%20from%3a%2015=
7%2e46%20to%20157%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1860)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1860; if (NS4 || IE4) activateEl(=
'Q1860', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1860&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1860</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>768.69&nbsp;=
&nbsp;&nbsp;&nbsp;3070.74</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3150.986253 from(1051.336576,3+) title(Elution%20from%3a%201=
99%2e1%20to%20199%2e1%20%20%20period%3a%200%20%20%20experiment%3a%201%20cyc=
les%3a%20%201%20%20) query(1861)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1861; if (NS4 || IE4) activateEl(=
'Q1861', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1861&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1861</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1051.34&nbsp;&nbsp=
;&nbsp;&nbsp;3150.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3151.963952 from(788.998813,4+) title(Elution%20from%3a%2019=
4%2e34%20to%20194%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1862)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1862; if (NS4 || IE4) activateEl(=
'Q1862', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1862&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1862</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>789.00&nbsp;=
&nbsp;&nbsp;&nbsp;3151.96</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3151.976415 from(1051.666630,3+) title(Elution%20from%3a%201=
98%2e89%20to%20198%2e89%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1863)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1863; if (NS4 || IE4) activateEl(=
'Q1863', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1863&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1863</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1051.67&nbsp;&nbsp=
;&nbsp;&nbsp;3151.98</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3152.983476 from(789.253694,4+) title(Elution%20from%3a%2019=
9%2e88%20to%20199%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1864)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1864; if (NS4 || IE4) activateEl(=
'Q1864', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1864&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1864</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>789.25&nbsp;=
&nbsp;&nbsp;&nbsp;3152.98</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3168.895356 from(793.231664,4+) title(Elution%20from%3a%2013=
3%2e41%20to%20133%2e41%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1865)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1865; if (NS4 || IE4) activateEl(=
'Q1865', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1865&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1865</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>793.23&nbsp;=
&nbsp;&nbsp;&nbsp;3168.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3168.905732 from(793.234258,4+) title(Elution%20from%3a%2013=
6%2e46%20to%20136%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1866)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1866; if (NS4 || IE4) activateEl(=
'Q1866', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1866&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1866</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>793.23&nbsp;=
&nbsp;&nbsp;&nbsp;3168.91</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3169.891872 from(793.480793,4+) title(Elution%20from%3a%2013=
3%2e61%20to%20133%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1867)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1867; if (NS4 || IE4) activateEl(=
'Q1867', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1867&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1867</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>793.48&nbsp;=
&nbsp;&nbsp;&nbsp;3169.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3169.918616 from(793.487479,4+) title(Elution%20from%3a%2013=
6%2e64%20to%20136%2e64%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1868)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1868; if (NS4 || IE4) activateEl(=
'Q1868', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1868&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1868</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>793.49&nbsp;=
&nbsp;&nbsp;&nbsp;3169.92</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3183.887480 from(796.979695,4+) title(Elution%20from%3a%2074=
%2e75%20to%2074%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1869)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1869; if (NS4 || IE4) activateEl(=
'Q1869', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1869&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1869</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>796.98&nbsp;=
&nbsp;&nbsp;&nbsp;3183.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3183.892856 from(796.981039,4+) title(Elution%20from%3a%2078=
%2e03%20to%2078%2e03%20%20%20period%3a%200%20%20%20experiment%3a%203%20cycl=
es%3a%20%201%20%20) query(1870)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1870; if (NS4 || IE4) activateEl(=
'Q1870', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1870&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1870</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>796.98&nbsp;=
&nbsp;&nbsp;&nbsp;3183.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3184.872552 from(797.225963,4+) title(Elution%20from%3a%2076=
%2e43%20to%2076%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1871)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1871; if (NS4 || IE4) activateEl(=
'Q1871', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1871&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1871</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>797.23&nbsp;=
&nbsp;&nbsp;&nbsp;3184.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3184.881184 from(797.228121,4+) title(Elution%20from%3a%2091=
%2e38%20to%2091%2e38%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1872)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1872; if (NS4 || IE4) activateEl(=
'Q1872', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1872&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1872</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>797.23&nbsp;=
&nbsp;&nbsp;&nbsp;3184.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3185.899744 from(797.482761,4+) title(Elution%20from%3a%2074=
%2e91%20to%2074%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1873)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1873; if (NS4 || IE4) activateEl(=
'Q1873', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1873&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1873</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>797.48&nbsp;=
&nbsp;&nbsp;&nbsp;3185.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3238.064088 from(1080.362521,3+) title(Elution%20from%3a%202=
00%2e73%20to%20200%2e73%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1874)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1874; if (NS4 || IE4) activateEl(=
'Q1874', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1874&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1874</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1080.36&nbsp;&nbsp=
;&nbsp;&nbsp;3238.06</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3238.120108 from(810.537852,4+) title(Elution%20from%3a%2020=
0%2e83%20to%20200%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1875)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1875; if (NS4 || IE4) activateEl(=
'Q1875', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1875&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1875</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>810.54&nbsp;=
&nbsp;&nbsp;&nbsp;3238.12</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3239.033356 from(810.766164,4+) title(Elution%20from%3a%2020=
0%2e65%20to%20200%2e65%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1876)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1876; if (NS4 || IE4) activateEl(=
'Q1876', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1876&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1876</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>810.77&nbsp;=
&nbsp;&nbsp;&nbsp;3239.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3240.038320 from(811.017405,4+) title(Elution%20from%3a%2020=
0%2e78%20to%20200%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1877)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1877; if (NS4 || IE4) activateEl(=
'Q1877', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1877&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1877</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>811.02&nbsp;=
&nbsp;&nbsp;&nbsp;3240.04</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3240.081366 from(1081.034947,3+) title(Elution%20from%3a%202=
01%2e95%20to%20201%2e95%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1878)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1878; if (NS4 || IE4) activateEl(=
'Q1878', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1878&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1878</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1081.03&nbsp;&nbsp=
;&nbsp;&nbsp;3240.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3275.845680 from(819.969245,4+) title(Elution%20from%3a%2018=
9%2e25%20to%20189%2e25%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1879)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1879; if (NS4 || IE4) activateEl(=
'Q1879', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1879&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1879</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>819.97&nbsp;=
&nbsp;&nbsp;&nbsp;3275.85</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3280.068668 from(821.024992,4+) title(Elution%20from%3a%2019=
7%2e62%20to%20197%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1880)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1880; if (NS4 || IE4) activateEl(=
'Q1880', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1880&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1880</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>821.02&nbsp;=
&nbsp;&nbsp;&nbsp;3280.07</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3281.054272 from(821.271393,4+) title(Elution%20from%3a%2019=
7%2e54%20to%20197%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1881)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1881; if (NS4 || IE4) activateEl(=
'Q1881', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1881&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1881</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>821.27&nbsp;=
&nbsp;&nbsp;&nbsp;3281.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3297.900436 from(825.482934,4+) title(Elution%20from%3a%2018=
0%2e56%20to%20180%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1882)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1882; if (NS4 || IE4) activateEl(=
'Q1882', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1882&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1882</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>825.48&nbsp;=
&nbsp;&nbsp;&nbsp;3297.90</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3322.807436 from(831.709684,4+) title(Elution%20from%3a%2018=
5%2e04%20to%20185%2e04%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1883)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1883; if (NS4 || IE4) activateEl(=
'Q1883', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1883&amp;hit=3D1&amp;index=3DIPI%3aIPI000138=
67&amp;px=3D1"=20=0D
      target=3D_blank>1883</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>831.71&nbsp;&nbsp;&nbsp;&nbsp;3322.81&nbsp;&nbsp;&=
nbsp;&nbsp;3322.84&nbsp;&nbsp;&nbsp;&nbsp;-0.04&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;IGIYIGAGICAGLALALIFGALIFKWYSHSK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3323.830700 from(831.965500,4+) title(Elution%20from%3a%2018=
4%2e96%20to%20184%2e96%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1884)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1884; if (NS4 || IE4) activateEl(=
'Q1884', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1884&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1884</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>831.97&nbsp;=
&nbsp;&nbsp;&nbsp;3323.83</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3323.992792 from(832.006023,4+) title(Elution%20from%3a%2011=
5%2e34%20to%20115%2e34%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1885)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1885; if (NS4 || IE4) activateEl(=
'Q1885', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1885&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1885</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>832.01&nbsp;=
&nbsp;&nbsp;&nbsp;3323.99</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3324.996900 from(832.257050,4+) title(Elution%20from%3a%2011=
5%2e62%20to%20115%2e62%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1886)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1886; if (NS4 || IE4) activateEl(=
'Q1886', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1886&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1886</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>832.26&nbsp;=
&nbsp;&nbsp;&nbsp;3325.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3330.920096 from(833.737849,4+) title(Elution%20from%3a%2014=
1%2e75%20to%20141%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1887)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1887; if (NS4 || IE4) activateEl(=
'Q1887', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1887&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1887</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>833.74&nbsp;=
&nbsp;&nbsp;&nbsp;3330.92</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3332.026720 from(834.014505,4+) title(Elution%20from%3a%2014=
3%2e43%20to%20143%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1888)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1888; if (NS4 || IE4) activateEl(=
'Q1888', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1888&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1888</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>834.01&nbsp;=
&nbsp;&nbsp;&nbsp;3332.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3338.996876 from(835.757044,4+) title(Elution%20from%3a%2011=
7%2e06%20to%20117%2e06%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1889)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1889; if (NS4 || IE4) activateEl(=
'Q1889', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1889&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1889</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>835.76&nbsp;=
&nbsp;&nbsp;&nbsp;3339.00</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3342.954856 from(836.746539,4+) title(Elution%20from%3a%2019=
4%2e79%20to%20194%2e79%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1890)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1890; if (NS4 || IE4) activateEl(=
'Q1890', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1890&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1890</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>836.75&nbsp;=
&nbsp;&nbsp;&nbsp;3342.95</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3366.787032 from(842.704583,4+) title(Elution%20from%3a%2018=
3%2e69%20to%20183%2e69%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1891)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1891; if (NS4 || IE4) activateEl(=
'Q1891', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1891&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1891</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>842.70&nbsp;=
&nbsp;&nbsp;&nbsp;3366.79</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3390.096448 from(848.531937,4+) title(Elution%20from%3a%2014=
6%2e37%20to%20146%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1892)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1892; if (NS4 || IE4) activateEl(=
'Q1892', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1892&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1892</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>848.53&nbsp;=
&nbsp;&nbsp;&nbsp;3390.10</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3390.879048 from(848.727587,4+) title(Elution%20from%3a%2016=
7%2e78%20to%20167%2e78%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1893)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1893; if (NS4 || IE4) activateEl(=
'Q1893', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1893&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1893</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>848.73&nbsp;=
&nbsp;&nbsp;&nbsp;3390.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3391.047864 from(848.769791,4+) title(Elution%20from%3a%2014=
6%2e61%20to%20146%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1894)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1894; if (NS4 || IE4) activateEl(=
'Q1894', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1894&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1894</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>848.77&nbsp;=
&nbsp;&nbsp;&nbsp;3391.05</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3398.032924 from(850.516056,4+) title(Elution%20from%3a%2018=
9%2e97%20to%20189%2e97%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1895)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1895; if (NS4 || IE4) activateEl(=
'Q1895', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1895&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1895</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>850.52&nbsp;=
&nbsp;&nbsp;&nbsp;3398.03</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3418.846948 from(855.719562,4+) title(Elution%20from%3a%2014=
0%2e42%20to%20140%2e42%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1896)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1896; if (NS4 || IE4) activateEl(=
'Q1896', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1896&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1896</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>855.72&nbsp;=
&nbsp;&nbsp;&nbsp;3418.85</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3419.885408 from(855.979177,4+) title(Elution%20from%3a%2014=
0%2e11%20to%20140%2e11%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1897)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1897; if (NS4 || IE4) activateEl(=
'Q1897', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1897&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1897</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>855.98&nbsp;=
&nbsp;&nbsp;&nbsp;3419.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3422.864752 from(856.724013,4+) title(Elution%20from%3a%2018=
0%2e61%20to%20180%2e61%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1898)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1898; if (NS4 || IE4) activateEl(=
'Q1898', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1898&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1898</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>856.72&nbsp;=
&nbsp;&nbsp;&nbsp;3422.86</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3422.866448 from(856.724437,4+) title(Elution%20from%3a%2017=
7%2e56%20to%20177%2e56%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1899)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1899; if (NS4 || IE4) activateEl(=
'Q1899', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1899&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1899</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>856.72&nbsp;=
&nbsp;&nbsp;&nbsp;3422.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3422.892040 from(856.730835,4+) title(Elution%20from%3a%2018=
4%2e08%20to%20184%2e08%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1900)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1900; if (NS4 || IE4) activateEl(=
'Q1900', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1900&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1900</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>856.73&nbsp;=
&nbsp;&nbsp;&nbsp;3422.89</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3423.878196 from(856.977374,4+) title(Elution%20from%3a%2017=
4%2e49%20to%20174%2e49%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1901)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1901; if (NS4 || IE4) activateEl(=
'Q1901', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1901&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1901</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>856.98&nbsp;=
&nbsp;&nbsp;&nbsp;3423.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3423.881432 from(856.978183,4+) title(Elution%20from%3a%2018=
2%2e52%20to%20182%2e52%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1902)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1902; if (NS4 || IE4) activateEl(=
'Q1902', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1902&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1902</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>856.98&nbsp;=
&nbsp;&nbsp;&nbsp;3423.88</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3424.865328 from(857.224157,4+) title(Elution%20from%3a%2018=
2%2e91%20to%20182%2e91%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1903)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1903; if (NS4 || IE4) activateEl(=
'Q1903', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1903&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1903</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>857.22&nbsp;=
&nbsp;&nbsp;&nbsp;3424.87</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3425.809776 from(857.460269,4+) title(Elution%20from%3a%2018=
3%2e59%20to%20183%2e59%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1904)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1904; if (NS4 || IE4) activateEl(=
'Q1904', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1904&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1904</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>857.46&nbsp;=
&nbsp;&nbsp;&nbsp;3425.81</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3426.796352 from(857.706913,4+) title(Elution%20from%3a%2018=
3%2e77%20to%20183%2e77%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1905)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1905; if (NS4 || IE4) activateEl(=
'Q1905', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1905&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1905</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>857.71&nbsp;=
&nbsp;&nbsp;&nbsp;3426.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3427.778424 from(857.952431,4+) title(Elution%20from%3a%2018=
3%2e46%20to%20183%2e46%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1906)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1906; if (NS4 || IE4) activateEl(=
'Q1906', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1906&amp;hit=3D1&amp;index=3DIPI%3aIPI000339=
07&amp;px=3D1"=20=0D
      target=3D_blank>1906</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>857.95&nbsp;&nbsp;&nbsp;&nbsp;3427.78&nbsp;&nbsp;&=
nbsp;&nbsp;3427.72&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.05&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;SQALAVYKAFTVDSPVQQALWCDFIISQDK</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3432.469360 from(859.125165,4+) title(Elution%20from%3a%2015=
9%2e75%20to%20159%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1907)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1907; if (NS4 || IE4) activateEl(=
'Q1907', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1907&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1907</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>859.13&nbsp;=
&nbsp;&nbsp;&nbsp;3432.47</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3439.927352 from(860.989663,4+) title(Elution%20from%3a%2019=
1%2e54%20to%20191%2e54%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1908)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1908; if (NS4 || IE4) activateEl(=
'Q1908', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1908&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1908</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>860.99&nbsp;=
&nbsp;&nbsp;&nbsp;3439.93</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3450.823332 from(863.713658,4+) title(Elution%20from%3a%2014=
1%2e28%20to%20141%2e28%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1909)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1909; if (NS4 || IE4) activateEl(=
'Q1909', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1909&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1909</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>863.71&nbsp;=
&nbsp;&nbsp;&nbsp;3450.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3451.840876 from(863.968044,4+) title(Elution%20from%3a%2014=
1%2e15%20to%20141%2e15%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1910)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1910; if (NS4 || IE4) activateEl(=
'Q1910', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1910&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1910</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>863.97&nbsp;=
&nbsp;&nbsp;&nbsp;3451.84</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3452.815136 from(864.211609,4+) title(Elution%20from%3a%2014=
1%2e8%20to%20141%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1911)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1911; if (NS4 || IE4) activateEl(=
'Q1911', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1911&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1911</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>864.21&nbsp;=
&nbsp;&nbsp;&nbsp;3452.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3482.801232 from(871.708133,4+) title(Elution%20from%3a%2014=
4%2e16%20to%20144%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1912)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1912; if (NS4 || IE4) activateEl(=
'Q1912', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1912&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1912</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>871.71&nbsp;=
&nbsp;&nbsp;&nbsp;3482.80</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3486.811644 from(872.710736,4+) title(Elution%20from%3a%2019=
6%2e86%20to%20196%2e86%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1913)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1913; if (NS4 || IE4) activateEl(=
'Q1913', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1913&amp;hit=3D1&amp;index=3DIPI%3aIPI000106=
25&amp;px=3D1"=20=0D
      target=3D_blank>1913</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>872.71&nbsp;&nbsp;&nbsp;&nbsp;3486.81&nbsp;&nbsp;&=
nbsp;&nbsp;3486.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.02&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;FVSMWMARTSYLAAFAIMVIFTLSVSMLLR&nbsp;+&nbsp;2=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3486.827608 from(872.714727,4+) title(Elution%20from%3a%2019=
9%2e83%20to%20199%2e83%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1914)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1914; if (NS4 || IE4) activateEl(=
'Q1914', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1914&amp;hit=3D1&amp;index=3DIPI%3aIPI000210=
02&amp;px=3D1"=20=0D
      target=3D_blank>1914</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>872.71&nbsp;&nbsp;&nbsp;&nbsp;3486.83&nbsp;&nbsp;&=
nbsp;&nbsp;3486.81&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.01&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ITRSILQMSLDHHIVTPLTSLVIENEAGDER</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3487.815780 from(872.961770,4+) title(Elution%20from%3a%2019=
7%2e24%20to%20197%2e24%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1915)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1915; if (NS4 || IE4) activateEl(=
'Q1915', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1915&amp;hit=3D1&amp;index=3DIPI%3aIPI000232=
17&amp;px=3D1"=20=0D
      target=3D_blank>1915</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>872.96&nbsp;&nbsp;&nbsp;&nbsp;3487.82&nbsp;&nbsp;&=
nbsp;&nbsp;3487.82&nbsp;&nbsp;&nbsp;&nbsp;-0.01&nbsp;&nbsp;&nbsp;&nbsp;1&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbs=
p;&nbsp;DLLLQTRLVNHVSSMRPNIFLGVSEGSAQYK&nbsp;+&nbsp;1=20=0D
      Oxidation (M)</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3487.828640 from(872.964985,4+) title(Elution%20from%3a%2020=
0%2e27%20to%20200%2e27%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1916)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1916; if (NS4 || IE4) activateEl(=
'Q1916', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1916&amp;hit=3D1&amp;index=3DIPI%3aIPI000082=
71&amp;px=3D1"=20=0D
      target=3D_blank>1916</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT=20=0D
      color=3D#ff0000><B>872.96&nbsp;&nbsp;&nbsp;&nbsp;3487.83&nbsp;&nbsp;&=
nbsp;&nbsp;3487.79&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0.04&nbsp;&nbsp;&nbsp;&nbsp=
;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp=
;&nbsp;&nbsp;ALEQELPGAVFILCDVTQEDDVKTLVSETIR</B></FONT></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3503.824712 from(876.964003,4+) title(Elution%20from%3a%2014=
7%2e07%20to%20147%2e07%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1917)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1917; if (NS4 || IE4) activateEl(=
'Q1917', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1917&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1917</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>876.96&nbsp;=
&nbsp;&nbsp;&nbsp;3503.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3504.816840 from(877.212035,4+) title(Elution%20from%3a%2014=
6%2e89%20to%20146%2e89%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1918)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1918; if (NS4 || IE4) activateEl(=
'Q1918', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1918&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1918</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>877.21&nbsp;=
&nbsp;&nbsp;&nbsp;3504.82</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3507.169336 from(877.800159,4+) title(Elution%20from%3a%2018=
8%2e85%20to%20188%2e85%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1919)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1919; if (NS4 || IE4) activateEl(=
'Q1919', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1919&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1919</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>877.80&nbsp;=
&nbsp;&nbsp;&nbsp;3507.17</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3545.970828 from(887.500532,4+) title(Elution%20from%3a%2016=
4%2e68%20to%20164%2e68%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1920)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1920; if (NS4 || IE4) activateEl(=
'Q1920', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1920&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1920</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>887.50&nbsp;=
&nbsp;&nbsp;&nbsp;3545.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3546.972212 from(887.750878,4+) title(Elution%20from%3a%2016=
4%2e9%20to%20164%2e9%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1921)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1921; if (NS4 || IE4) activateEl(=
'Q1921', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1921&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1921</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>887.75&nbsp;=
&nbsp;&nbsp;&nbsp;3546.97</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3676.184052 from(920.053838,4+) title(Elution%20from%3a%2018=
9%2e31%20to%20189%2e31%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1922)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1922; if (NS4 || IE4) activateEl(=
'Q1922', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1922&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1922</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>920.05&nbsp;=
&nbsp;&nbsp;&nbsp;3676.18</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3677.191788 from(920.305772,4+) title(Elution%20from%3a%2018=
9%2e36%20to%20189%2e36%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1923)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1923; if (NS4 || IE4) activateEl(=
'Q1923', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1923&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1923</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>920.31&nbsp;=
&nbsp;&nbsp;&nbsp;3677.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3726.112132 from(932.535858,4+) title(Elution%20from%3a%2016=
4%2e95%20to%20164%2e95%20%20%20period%3a%200%20%20%20experiment%3a%202%20cy=
cles%3a%20%201%20%20) query(1924)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1924; if (NS4 || IE4) activateEl(=
'Q1924', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1924&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1924</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>932.54&nbsp;=
&nbsp;&nbsp;&nbsp;3726.11</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3727.138364 from(932.792416,4+) title(Elution%20from%3a%2016=
4%2e98%20to%20164%2e98%20%20%20period%3a%200%20%20%20experiment%3a%203%20cy=
cles%3a%20%201%20%20) query(1925)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1925; if (NS4 || IE4) activateEl(=
'Q1925', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1925&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1925</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>932.79&nbsp;=
&nbsp;&nbsp;&nbsp;3727.14</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3870.190496 from(968.555449,4+) title(Elution%20from%3a%2015=
6%2e4%20to%20156%2e4%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1926)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1926; if (NS4 || IE4) activateEl(=
'Q1926', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1926&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1926</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>968.56&nbsp;=
&nbsp;&nbsp;&nbsp;3870.19</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3871.164012 from(968.798828,4+) title(Elution%20from%3a%2015=
6%2e35%20to%20156%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1927)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1927; if (NS4 || IE4) activateEl(=
'Q1927', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1927&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1927</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>968.80&nbsp;=
&nbsp;&nbsp;&nbsp;3871.16</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3914.288332 from(979.579908,4+) title(Elution%20from%3a%2019=
0%2e75%20to%20190%2e75%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1928)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1928; if (NS4 || IE4) activateEl(=
'Q1928', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1928&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1928</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>979.58&nbsp;=
&nbsp;&nbsp;&nbsp;3914.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3938.288268 from(985.579892,4+) title(Elution%20from%3a%2019=
3%2e37%20to%20193%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1929)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1929; if (NS4 || IE4) activateEl(=
'Q1929', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1929&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1929</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>985.58&nbsp;=
&nbsp;&nbsp;&nbsp;3938.29</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3940.321308 from(986.088152,4+) title(Elution%20from%3a%2017=
3%2e37%20to%20173%2e37%20%20%20period%3a%200%20%20%20experiment%3a%201%20cy=
cles%3a%20%201%20%20) query(1930)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1930; if (NS4 || IE4) activateEl(=
'Q1930', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1930&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1930</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>986.09&nbsp;=
&nbsp;&nbsp;&nbsp;3940.32</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3941.331984 from(986.340821,4+) title(Elution%20from%3a%2017=
3%2e7%20to%20173%2e7%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1931)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1931; if (NS4 || IE4) activateEl(=
'Q1931', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1931&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1931</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>986.34&nbsp;=
&nbsp;&nbsp;&nbsp;3941.33</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3966.084684 from(992.528996,4+) title(Elution%20from%3a%2097=
%2e8%20to%2097%2e8%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycles=
%3a%20%201%20%20) query(1932)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1932; if (NS4 || IE4) activateEl(=
'Q1932', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1932&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1932</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>992.53&nbsp;=
&nbsp;&nbsp;&nbsp;3966.08</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"3967.131428 from(992.790682,4+) title(Elution%20from%3a%2097=
%2e88%20to%2097%2e88%20%20%20period%3a%200%20%20%20experiment%3a%201%20cycl=
es%3a%20%201%20%20) query(1933)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1933; if (NS4 || IE4) activateEl(=
'Q1933', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1933&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1933</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>992.79&nbsp;=
&nbsp;&nbsp;&nbsp;3967.13</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"4020.334304 from(1006.091401,4+) title(Elution%20from%3a%201=
68%2e16%20to%20168%2e16%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1934)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1934; if (NS4 || IE4) activateEl(=
'Q1934', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1934&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1934</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1006.09&nbsp;&nbsp=
;&nbsp;&nbsp;4020.33</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"4021.329780 from(1006.340270,4+) title(Elution%20from%3a%201=
68%2e33%20to%20168%2e33%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1935)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1935; if (NS4 || IE4) activateEl(=
'Q1935', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1935&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1935</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1006.34&nbsp;&nbsp=
;&nbsp;&nbsp;4021.33</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"4052.211468 from(1014.060692,4+) title(Elution%20from%3a%202=
04%2e01%20to%20204%2e01%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1936)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1936; if (NS4 || IE4) activateEl(=
'Q1936', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1936&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1936</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1014.06&nbsp;&nbsp=
;&nbsp;&nbsp;4052.21</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"4195.152320 from(1049.795905,4+) title(Elution%20from%3a%201=
58%2e35%20to%20158%2e35%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1937)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1937; if (NS4 || IE4) activateEl(=
'Q1937', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1937&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1937</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1049.80&nbsp;&nbsp=
;&nbsp;&nbsp;4195.15</I></TT></TD></TR>=0D
  <TR>=0D
    <TD><INPUT type=3Dcheckbox CHECKED=20=0D
      value=3D"4211.139032 from(1053.792583,4+) title(Elution%20from%3a%201=
58%2e43%20to%20158%2e43%20%20%20period%3a%200%20%20%20experiment%3a%201%20c=
ycles%3a%20%201%20%20) query(1938)"=20=0D
      name=3DQUE></TD>=0D
    <TD noWrap><TT><A=20=0D
      onmouseover=3D"statusString =3D h0_q1938; if (NS4 || IE4) activateEl(=
'Q1938', event)"=20=0D
      onmouseout=3DclearEl()=20=0D
      href=3D"http://pilmascot/mascot/cgi/peptide_view.pl?file=3D../data/20=
011120/F001249.dat&amp;query=3D1938&amp;hit=3D1&amp;index=3Dzilch&amp;px=3D=
1"=20=0D
      target=3D_blank>1938</A>&nbsp;&nbsp;&nbsp;&nbsp;<I>1053.79&nbsp;&nbsp=
;&nbsp;&nbsp;4211.14</I></TT></TD></TR></TBODY></TABLE><PRE><HR>=0D
</PRE></FONT></FORM>=0D
<H3>Search Parameters</H3><FONT face=3D"Courier New,Courier,monospace"><PRE=
><B>Type of search         : MS/MS Ion Search</B>=0D
<B>Enzyme                 : Trypsin</B>=0D
<B>Fixed modifications    : Carbamidomethyl (C)</B>=0D
<B>Variable modifications : Oxidation (M)</B>=0D
<B>Mass values            : Monoisotopic</B>=0D
<B>Protein Mass           : Unrestricted</B>=0D
<B>Peptide Mass Tolerance : =B1 0.15 Da</B>=0D
<B>Fragment Mass Tolerance: =B1 0.15 Da</B>=0D
<B>Max Missed Cleavages   : 1</B>=0D
<B>Data File Name         : C:\DOCUME~1\PROTEI~1\LOCALS~1\Temp\masA.tmp</B>=0D
<A name=3DQuery1><B>Query1 (404.21,1+)     </A>: Elution from: 0.36 to 0.36=
   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery2><B>Query2 (547.43,1+)     </A>: Elution from: 208.57 to 20=
8.57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery3><B>Query3 (568.01,1+)     </A>: Elution from: 65.68 to 65.=
68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery4><B>Query4 (569.30,1+)     </A>: Elution from: 34.31 to 34.=
31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery5><B>Query5 (570.34,1+)     </A>: Elution from: 18.86 to 18.=
86   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery6><B>Query6 (775.68,1+)     </A>: Elution from: 178.43 to 17=
8.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery7><B>Query7 (400.79,2+)     </A>: Elution from: 14.75 to 14.=
75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery8><B>Query8 (403.75,2+)     </A>: Elution from: 4.63 to 4.63=
   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery9><B>Query9 (404.34,2+)     </A>: Elution from: 4.83 to 4.83=
   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery10><B>Query10 (406.24,2+)    </A>: Elution from: 0.49 to 0.4=
9   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery11><B>Query11 (406.25,2+)    </A>: Elution from: 5.04 to 5.0=
4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery12><B>Query12 (406.74,2+)    </A>: Elution from: 1.11 to 1.1=
1   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery13><B>Query13 (406.77,2+)    </A>: Elution from: 5.56 to 5.5=
6   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery14><B>Query14 (412.77,2+)    </A>: Elution from: 4.86 to 4.8=
6   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery15><B>Query15 (414.27,2+)    </A>: Elution from: 6.97 to 6.9=
7   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery16><B>Query16 (417.26,2+)    </A>: Elution from: 5.38 to 5.3=
8   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery17><B>Query17 (421.78,2+)    </A>: Elution from: 7 to 7   pe=
riod: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery18><B>Query18 (421.78,2+)    </A>: Elution from: 3.85 to 3.8=
5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery19><B>Query19 (422.28,2+)    </A>: Elution from: 4.09 to 4.0=
9   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery20><B>Query20 (422.28,2+)    </A>: Elution from: 7.18 to 7.1=
8   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery21><B>Query21 (422.78,2+)    </A>: Elution from: 4.94 to 4.9=
4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery22><B>Query22 (428.25,2+)    </A>: Elution from: 5.2 to 5.2 =
  period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery23><B>Query23 (428.28,2+)    </A>: Elution from: 8.19 to 8.1=
9   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery24><B>Query24 (428.76,2+)    </A>: Elution from: 5.82 to 5.8=
2   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery25><B>Query25 (428.78,2+)    </A>: Elution from: 9.06 to 9.0=
6   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery26><B>Query26 (429.28,2+)    </A>: Elution from: 8.42 to 8.4=
2   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery27><B>Query27 (432.76,2+)    </A>: Elution from: 4.99 to 4.9=
9   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery28><B>Query28 (433.28,2+)    </A>: Elution from: 5.09 to 5.0=
9   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery29><B>Query29 (435.27,2+)    </A>: Elution from: 0.1 to 0.1 =
  period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery30><B>Query30 (435.78,2+)    </A>: Elution from: 0.46 to 0.4=
6   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery31><B>Query31 (436.79,2+)    </A>: Elution from: 8.5 to 8.5 =
  period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery32><B>Query32 (437.26,2+)    </A>: Elution from: 3.77 to 3.7=
7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery33><B>Query33 (437.27,2+)    </A>: Elution from: 0.74 to 0.7=
4   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery34><B>Query34 (437.79,2+)    </A>: Elution from: 1.08 to 1.0=
8   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery35><B>Query35 (437.80,2+)    </A>: Elution from: 30.39 to 30=
.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery36><B>Query36 (439.78,2+)    </A>: Elution from: 8.44 to 8.4=
4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery37><B>Query37 (440.78,2+)    </A>: Elution from: 15.24 to 15=
.37   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery38><B>Query38 (441.29,2+)    </A>: Elution from: 17.52 to 17=
.52   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery39><B>Query39 (441.29,2+)    </A>: Elution from: 12.51 to 12=
.51   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery40><B>Query40 (443.27,2+)    </A>: Elution from: 7.31 to 7.3=
1   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery41><B>Query41 (446.74,2+)    </A>: Elution from: 10.73 to 10=
.73   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery42><B>Query42 (449.85,2+)    </A>: Elution from: 196.68 to 1=
96.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery43><B>Query43 (450.35,2+)    </A>: Elution from: 196.6 to 19=
6.6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery44><B>Query44 (450.76,2+)    </A>: Elution from: 8.37 to 8.3=
7   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery45><B>Query45 (450.80,2+)    </A>: Elution from: 4.78 to 4.7=
8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery46><B>Query46 (451.29,2+)    </A>: Elution from: 9.32 to 9.3=
2   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery47><B>Query47 (452.30,2+)    </A>: Elution from: 196.73 to 1=
96.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery48><B>Query48 (454.76,2+)    </A>: Elution from: 15.78 to 15=
.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery49><B>Query49 (455.26,2+)    </A>: Elution from: 15.97 to 15=
.97   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery50><B>Query50 (457.80,2+)    </A>: Elution from: 5.45 to 5.4=
5   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery51><B>Query51 (458.29,2+)    </A>: Elution from: 11.33 to 11=
.33   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery52><B>Query52 (458.80,2+)    </A>: Elution from: 9.78 to 9.7=
8   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery53><B>Query53 (459.78,2+)    </A>: Elution from: 8.06 to 8.0=
6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery54><B>Query54 (460.28,2+)    </A>: Elution from: 8.26 to 8.2=
6   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery55><B>Query55 (461.28,2+)    </A>: Elution from: 10.22 to 10=
.22   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery56><B>Query56 (462.76,2+)    </A>: Elution from: 12.95 to 12=
.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery57><B>Query57 (463.27,2+)    </A>: Elution from: 13.16 to 13=
.16   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery58><B>Query58 (463.32,2+)    </A>: Elution from: 195.68 to 1=
95.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery59><B>Query59 (463.32,2+)    </A>: Elution from: 198.71 to 1=
98.71   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery60><B>Query60 (463.32,2+)    </A>: Elution from: 183.64 to 1=
83.64   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery61><B>Query61 (469.79,2+)    </A>: Elution from: 0.67 to 0.6=
7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery62><B>Query62 (470.28,2+)    </A>: Elution from: 7.77 to 7.7=
7   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery63><B>Query63 (471.84,2+)    </A>: Elution from: 196.09 to 1=
96.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery64><B>Query64 (472.28,2+)    </A>: Elution from: 9.68 to 9.6=
8   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery65><B>Query65 (472.31,2+)    </A>: Elution from: 27.56 to 27=
.56   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery66><B>Query66 (472.34,2+)    </A>: Elution from: 195.96 to 1=
95.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery67><B>Query67 (472.78,2+)    </A>: Elution from: 9.83 to 9.8=
3   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery68><B>Query68 (472.79,2+)    </A>: Elution from: 13.34 to 13=
.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery69><B>Query69 (473.28,2+)    </A>: Elution from: 3.62 to 3.6=
2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery70><B>Query70 (473.29,2+)    </A>: Elution from: 15.32 to 15=
.32   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery71><B>Query71 (473.30,2+)    </A>: Elution from: 11.15 to 11=
.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery72><B>Query72 (473.79,2+)    </A>: Elution from: 5.12 to 5.1=
2   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery73><B>Query73 (474.31,2+)    </A>: Elution from: 30.88 to 30=
.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery74><B>Query74 (474.82,2+)    </A>: Elution from: 31.71 to 31=
.71   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery75><B>Query75 (475.27,2+)    </A>: Elution from: 11.89 to 11=
.89   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery76><B>Query76 (475.30,2+)    </A>: Elution from: 22.76 to 22=
.76   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery77><B>Query77 (475.84,2+)    </A>: Elution from: 4.24 to 4.2=
4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery78><B>Query78 (476.32,2+)    </A>: Elution from: 4.5 to 4.5 =
  period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery79><B>Query79 (477.32,2+)    </A>: Elution from: 17.77 to 17=
.77   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery80><B>Query80 (477.78,2+)    </A>: Elution from: 0.64 to 0.6=
4   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery81><B>Query81 (477.79,2+)    </A>: Elution from: 52.97 to 52=
.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery82><B>Query82 (477.80,2+)    </A>: Elution from: 56 to 56   =
period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery83><B>Query83 (478.30,2+)    </A>: Elution from: 54.98 to 54=
.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery84><B>Query84 (478.76,2+)    </A>: Elution from: 17.41 to 17=
.41   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery85><B>Query85 (481.28,2+)    </A>: Elution from: 2.26 to 2.2=
6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery86><B>Query86 (481.29,2+)    </A>: Elution from: 5.61 to 5.6=
1   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery87><B>Query87 (481.31,2+)    </A>: Elution from: 11.12 to 11=
.12   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery88><B>Query88 (481.78,2+)    </A>: Elution from: 2.65 to 2.6=
5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery89><B>Query89 (482.27,2+)    </A>: Elution from: 2.8 to 2.8 =
  period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery90><B>Query90 (483.29,2+)    </A>: Elution from: 8.55 to 8.6=
8   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery91><B>Query91 (485.34,2+)    </A>: Elution from: 199.28 to 1=
99.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery92><B>Query92 (485.34,2+)    </A>: Elution from: 196.3 to 19=
6.3   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery93><B>Query93 (485.34,2+)    </A>: Elution from: 184.66 to 1=
84.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery94><B>Query94 (488.30,2+)    </A>: Elution from: 12.61 to 12=
.61   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery95><B>Query95 (493.85,2+)    </A>: Elution from: 196.78 to 1=
96.78   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery96><B>Query96 (494.29,2+)    </A>: Elution from: 10.94 to 10=
.94   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery97><B>Query97 (494.35,2+)    </A>: Elution from: 196.8 to 19=
6.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery98><B>Query98 (495.31,2+)    </A>: Elution from: 19.32 to 19=
.32   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery99><B>Query99 (495.32,2+)    </A>: Elution from: 12.05 to 12=
.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery100><B>Query100 (495.83,2+)   </A>: Elution from: 28.52 to 2=
8.52   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery101><B>Query101 (496.35,2+)   </A>: Elution from: 198.54 to =
198.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery102><B>Query102 (497.29,2+)   </A>: Elution from: 4.76 to 4.=
76   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery103><B>Query103 (498.32,2+)   </A>: Elution from: 13.47 to 1=
3.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery104><B>Query104 (498.32,2+)   </A>: Elution from: 16.56 to 1=
6.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery105><B>Query105 (498.82,2+)   </A>: Elution from: 15.22 to 1=
5.22   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery106><B>Query106 (499.32,2+)   </A>: Elution from: 16.3 to 16=
.3   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery107><B>Query107 (499.76,2+)   </A>: Elution from: 15.27 to 1=
5.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery108><B>Query108 (500.27,2+)   </A>: Elution from: 15.4 to 15=
.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery109><B>Query109 (500.80,2+)   </A>: Elution from: 9.29 to 9.=
29   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery110><B>Query110 (502.30,2+)   </A>: Elution from: 15.84 to 1=
5.84   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery111><B>Query111 (502.80,2+)   </A>: Elution from: 10.32 to 1=
0.32   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery112><B>Query112 (503.33,2+)   </A>: Elution from: 12.12 to 1=
2.12   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery113><B>Query113 (503.81,2+)   </A>: Elution from: 8.62 to 8.=
62   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery114><B>Query114 (503.81,2+)   </A>: Elution from: 5.4 to 5.4=
   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery115><B>Query115 (503.82,2+)   </A>: Elution from: 39.55 to 3=
9.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery116><B>Query116 (503.82,2+)   </A>: Elution from: 60.11 to 6=
0.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery117><B>Query117 (503.83,2+)   </A>: Elution from: 83.13 to 8=
3.13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery118><B>Query118 (503.83,2+)   </A>: Elution from: 63.15 to 6=
3.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery119><B>Query119 (504.31,2+)   </A>: Elution from: 5.63 to 5.=
63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery120><B>Query120 (504.32,2+)   </A>: Elution from: 39.73 to 3=
9.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery121><B>Query121 (504.32,2+)   </A>: Elution from: 64.53 to 6=
4.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery122><B>Query122 (504.32,2+)   </A>: Elution from: 61.49 to 6=
1.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery123><B>Query123 (505.32,2+)   </A>: Elution from: 12.25 to 1=
2.25   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery124><B>Query124 (507.35,2+)   </A>: Elution from: 200.01 to =
200.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery125><B>Query125 (507.35,2+)   </A>: Elution from: 184.48 to =
184.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery126><B>Query126 (507.36,2+)   </A>: Elution from: 196.96 to =
196.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery127><B>Query127 (508.32,2+)   </A>: Elution from: 8.52 to 8.=
52   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery128><B>Query128 (510.29,2+)   </A>: Elution from: 8.01 to 8.=
01   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery129><B>Query129 (510.79,2+)   </A>: Elution from: 8.11 to 8.=
11   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery130><B>Query130 (513.33,2+)   </A>: Elution from: 0.62 to 0.=
62   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery131><B>Query131 (513.34,2+)   </A>: Elution from: 9.01 to 9.=
01   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery132><B>Query132 (513.79,2+)   </A>: Elution from: 17.46 to 1=
7.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery133><B>Query133 (513.84,2+)   </A>: Elution from: 9.14 to 9.=
14   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery134><B>Query134 (514.34,2+)   </A>: Elution from: 9.27 to 9.=
27   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery135><B>Query135 (514.83,2+)   </A>: Elution from: 17.59 to 1=
7.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery136><B>Query136 (515.31,2+)   </A>: Elution from: 2.75 to 2.=
75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery137><B>Query137 (515.87,2+)   </A>: Elution from: 198.33 to =
198.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery138><B>Query138 (516.31,2+)   </A>: Elution from: 11.97 to 1=
1.97   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery139><B>Query139 (516.37,2+)   </A>: Elution from: 198.21 to =
198.21   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery140><B>Query140 (516.84,2+)   </A>: Elution from: 12.82 to 1=
2.82   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery141><B>Query141 (517.35,2+)   </A>: Elution from: 86.76 to 8=
6.76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery142><B>Query142 (518.29,2+)   </A>: Elution from: 8.24 to 8.=
24   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery143><B>Query143 (518.79,2+)   </A>: Elution from: 8.32 to 8.=
32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery144><B>Query144 (519.16,2+)   </A>: Elution from: 153.94 to =
153.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery145><B>Query145 (520.32,2+)   </A>: Elution from: 40.12 to 4=
0.12   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery146><B>Query146 (520.33,2+)   </A>: Elution from: 43.14 to 4=
3.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery147><B>Query147 (520.34,2+)   </A>: Elution from: 19.14 to 1=
9.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery148><B>Query148 (520.36,2+)   </A>: Elution from: 14.96 to 1=
4.96   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery149><B>Query149 (520.83,2+)   </A>: Elution from: 42.46 to 4=
2.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery150><B>Query150 (522.34,2+)   </A>: Elution from: 14.55 to 1=
4.55   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery151><B>Query151 (524.25,2+)   </A>: Elution from: 0.85 to 0.=
85   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery152><B>Query152 (524.84,2+)   </A>: Elution from: 12.87 to 1=
2.87   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery153><B>Query153 (525.31,2+)   </A>: Elution from: 13.29 to 1=
3.29   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery154><B>Query154 (527.83,2+)   </A>: Elution from: 12.9 to 12=
.9   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery155><B>Query155 (528.30,2+)   </A>: Elution from: 33.63 to 3=
3.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery156><B>Query156 (528.82,2+)   </A>: Elution from: 33.24 to 3=
3.24   period: 0   experiment: 2 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery157><B>Query157 (529.31,2+)   </A>: Elution from: 22.45 to 2=
2.45   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery158><B>Query158 (529.37,2+)   </A>: Elution from: 185.09 to =
185.09   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery159><B>Query159 (529.38,2+)   </A>: Elution from: 200.32 to =
200.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery160><B>Query160 (529.38,2+)   </A>: Elution from: 197.39 to =
197.39   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery161><B>Query161 (529.39,2+)   </A>: Elution from: 188.09 to =
188.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery162><B>Query162 (529.87,2+)   </A>: Elution from: 187.07 to =
187.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery163><B>Query163 (534.34,2+)   </A>: Elution from: 25.96 to 2=
5.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery164><B>Query164 (534.35,2+)   </A>: Elution from: 22.99 to 2=
2.99   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery165><B>Query165 (534.85,2+)   </A>: Elution from: 24.87 to 2=
4.87   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery166><B>Query166 (535.81,2+)   </A>: Elution from: 4.68 to 4.=
68   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery167><B>Query167 (536.33,2+)   </A>: Elution from: 9.73 to 9.=
73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery168><B>Query168 (538.34,2+)   </A>: Elution from: 19.06 to 1=
9.06   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery169><B>Query169 (538.35,2+)   </A>: Elution from: 13.54 to 1=
3.54   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery170><B>Query170 (538.85,2+)   </A>: Elution from: 13.6 to 13=
.6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery171><B>Query171 (541.30,2+)   </A>: Elution from: 20.56 to 2=
0.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery172><B>Query172 (541.80,2+)   </A>: Elution from: 12.77 to 1=
2.77   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery173><B>Query173 (541.82,2+)   </A>: Elution from: 21 to 21  =
 period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery174><B>Query174 (542.33,2+)   </A>: Elution from: 17.54 to 1=
7.54   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery175><B>Query175 (542.85,2+)   </A>: Elution from: 11.22 to 1=
1.22   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery176><B>Query176 (543.31,2+)   </A>: Elution from: 17.67 to 1=
7.67   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery177><B>Query177 (543.31,2+)   </A>: Elution from: 4.42 to 4.=
42   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery178><B>Query178 (543.35,2+)   </A>: Elution from: 11.51 to 1=
1.51   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery179><B>Query179 (546.31,2+)   </A>: Elution from: 3.9 to 3.9=
   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery180><B>Query180 (546.82,2+)   </A>: Elution from: 14.86 to 1=
4.99   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery181><B>Query181 (546.82,2+)   </A>: Elution from: 4.11 to 4.=
11   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery182><B>Query182 (547.42,2+)   </A>: Elution from: 205.52 to =
205.52   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)=
</B>=0D
<A name=3DQuery183><B>Query183 (547.94,2+)   </A>: Elution from: 46.37 to 4=
6.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery184><B>Query184 (547.97,2+)   </A>: Elution from: 208.49 to =
208.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery185><B>Query185 (548.79,2+)   </A>: Elution from: 4.19 to 4.=
19   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery186><B>Query186 (548.80,2+)   </A>: Elution from: 1.03 to 1.=
03   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</B>=0D
<A name=3DQuery187><B>Query187 (549.30,2+)   </A>: Elution from: 1.16 to 1.=
16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery188><B>Query188 (551.35,2+)   </A>: Elution from: 10.43 to 1=
0.43   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery189><B>Query189 (551.38,2+)   </A>: Elution from: 197.8 to 1=
97.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery190><B>Query190 (551.38,2+)   </A>: Elution from: 185.7 to 1=
85.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery191><B>Query191 (551.38,2+)   </A>: Elution from: 200.88 to =
200.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery192><B>Query192 (551.85,2+)   </A>: Elution from: 10.99 to 1=
0.99   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery193><B>Query193 (551.89,2+)   </A>: Elution from: 187.02 to =
187.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery194><B>Query194 (551.89,2+)   </A>: Elution from: 201.26 to =
201.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery195><B>Query195 (555.37,2+)   </A>: Elution from: 107.68 to =
107.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery196><B>Query196 (558.83,2+)   </A>: Elution from: 18.68 to 1=
8.68   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery197><B>Query197 (559.33,2+)   </A>: Elution from: 19.01 to 1=
9.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery198><B>Query198 (560.33,2+)   </A>: Elution from: 13.13 to 1=
3.13   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery199><B>Query199 (560.83,2+)   </A>: Elution from: 5.32 to 5.=
32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery200><B>Query200 (561.33,2+)   </A>: Elution from: 25.47 to 2=
5.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery201><B>Query201 (562.32,2+)   </A>: Elution from: 15.89 to 1=
6.02   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery202><B>Query202 (562.82,2+)   </A>: Elution from: 11.64 to 1=
1.64   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery203><B>Query203 (563.32,2+)   </A>: Elution from: 11.48 to 1=
1.48   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery204><B>Query204 (564.34,2+)   </A>: Elution from: 12.38 to 1=
2.38   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery205><B>Query205 (564.84,2+)   </A>: Elution from: 13.03 to 1=
3.03   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery206><B>Query206 (566.34,2+)   </A>: Elution from: 14.83 to 1=
4.83   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery207><B>Query207 (566.80,2+)   </A>: Elution from: 6.02 to 6.=
02   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery208><B>Query208 (566.84,2+)   </A>: Elution from: 14.93 to 1=
4.93   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery209><B>Query209 (567.34,2+)   </A>: Elution from: 15.53 to 1=
5.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery210><B>Query210 (567.88,2+)   </A>: Elution from: 60.43 to 6=
0.43   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery211><B>Query211 (568.27,2+)   </A>: Elution from: 8.39 to 8.=
39   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery212><B>Query212 (568.37,2+)   </A>: Elution from: 61.31 to 6=
1.31   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery213><B>Query213 (568.87,2+)   </A>: Elution from: 16.79 to 1=
6.79   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery214><B>Query214 (569.82,2+)   </A>: Elution from: 34.95 to 3=
4.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery215><B>Query215 (569.88,2+)   </A>: Elution from: 46.49 to 4=
6.49   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery216><B>Query216 (569.88,2+)   </A>: Elution from: 49.54 to 4=
9.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery217><B>Query217 (569.88,2+)   </A>: Elution from: 31.74 to 3=
1.74   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery218><B>Query218 (570.36,2+)   </A>: Elution from: 31.92 to 3=
1.92   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery219><B>Query219 (570.39,2+)   </A>: Elution from: 51.45 to 5=
1.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery220><B>Query220 (570.39,2+)   </A>: Elution from: 48.42 to 4=
8.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery221><B>Query221 (570.89,2+)   </A>: Elution from: 50.44 to 5=
0.44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery222><B>Query222 (571.34,2+)   </A>: Elution from: 13.67 to 1=
3.67   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery223><B>Query223 (572.32,2+)   </A>: Elution from: 31.22 to 3=
1.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery224><B>Query224 (572.32,2+)   </A>: Elution from: 19.71 to 1=
9.71   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery225><B>Query225 (572.34,2+)   </A>: Elution from: 22.78 to 2=
2.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery226><B>Query226 (572.35,2+)   </A>: Elution from: 9.45 to 9.=
58   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery227><B>Query227 (572.37,2+)   </A>: Elution from: 1.64 to 1.=
64   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery228><B>Query228 (572.81,2+)   </A>: Elution from: 19.91 to 1=
9.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery229><B>Query229 (572.85,2+)   </A>: Elution from: 9.65 to 9.=
65   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery230><B>Query230 (572.85,2+)   </A>: Elution from: 2.34 to 2.=
34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery231><B>Query231 (573.32,2+)   </A>: Elution from: 20.25 to 2=
0.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery232><B>Query232 (573.40,2+)   </A>: Elution from: 186.72 to =
186.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery233><B>Query233 (573.41,2+)   </A>: Elution from: 198.97 to =
198.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery234><B>Query234 (573.41,2+)   </A>: Elution from: 202 to 202=
   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery235><B>Query235 (573.90,2+)   </A>: Elution from: 187.89 to =
187.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery236><B>Query236 (577.82,2+)   </A>: Elution from: 15.91 to 1=
5.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery237><B>Query237 (578.33,2+)   </A>: Elution from: 16.04 to 1=
6.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery238><B>Query238 (578.87,2+)   </A>: Elution from: 22.01 to 2=
2.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery239><B>Query239 (578.87,2+)   </A>: Elution from: 18.88 to 1=
8.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery240><B>Query240 (579.36,2+)   </A>: Elution from: 18.16 to 1=
8.16   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery241><B>Query241 (579.37,2+)   </A>: Elution from: 21.26 to 2=
1.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery242><B>Query242 (579.88,2+)   </A>: Elution from: 20.51 to 2=
0.51   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery243><B>Query243 (580.36,2+)   </A>: Elution from: 17.13 to 1=
7.13   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery244><B>Query244 (581.35,2+)   </A>: Elution from: 9.47 to 9.=
47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery245><B>Query245 (581.85,2+)   </A>: Elution from: 10.5 to 10=
.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery246><B>Query246 (582.35,2+)   </A>: Elution from: 10.68 to 1=
0.68   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery247><B>Query247 (582.38,2+)   </A>: Elution from: 14.88 to 1=
4.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery248><B>Query248 (582.89,2+)   </A>: Elution from: 15.06 to 1=
5.06   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery249><B>Query249 (584.38,2+)   </A>: Elution from: 9.4 to 9.4=
   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery250><B>Query250 (585.79,2+)   </A>: Elution from: 8.7 to 8.7=
   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery251><B>Query251 (586.32,2+)   </A>: Elution from: 9.86 to 9.=
86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery252><B>Query252 (586.33,2+)   </A>: Elution from: 6.82 to 6.=
82   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery253><B>Query253 (586.33,2+)   </A>: Elution from: 3.83 to 3.=
83   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery254><B>Query254 (586.83,2+)   </A>: Elution from: 7.13 to 7.=
13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery255><B>Query255 (586.83,2+)   </A>: Elution from: 10.37 to 1=
0.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery256><B>Query256 (586.84,2+)   </A>: Elution from: 3.95 to 3.=
95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery257><B>Query257 (587.33,2+)   </A>: Elution from: 4.29 to 4.=
29   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery258><B>Query258 (587.33,2+)   </A>: Elution from: 10.84 to 1=
0.84   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery259><B>Query259 (587.33,2+)   </A>: Elution from: 7.34 to 7.=
34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery260><B>Query260 (589.99,2+)   </A>: Elution from: 211.12 to =
211.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery261><B>Query261 (590.28,2+)   </A>: Elution from: 9.81 to 9.=
81   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery262><B>Query262 (591.37,2+)   </A>: Elution from: 2.21 to 2.=
21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery263><B>Query263 (591.87,2+)   </A>: Elution from: 2.52 to 2.=
52   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery264><B>Query264 (592.34,2+)   </A>: Elution from: 9.91 to 9.=
91   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery265><B>Query265 (593.14,2+)   </A>: Elution from: 65.57 to 6=
5.57   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery266><B>Query266 (593.19,2+)   </A>: Elution from: 88.76 to 8=
8.76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery267><B>Query267 (593.19,2+)   </A>: Elution from: 77.8 to 77=
.8   period: 0   experiment: 2 cycles:  1  (Charge not auto determined)</B>=0D
<A name=3DQuery268><B>Query268 (593.88,2+)   </A>: Elution from: 21.62 to 2=
1.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery269><B>Query269 (593.88,2+)   </A>: Elution from: 14.7 to 14=
.7   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery270><B>Query270 (593.91,2+)   </A>: Elution from: 18.57 to 1=
8.57   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery271><B>Query271 (594.37,2+)   </A>: Elution from: 16.74 to 1=
6.74   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery272><B>Query272 (594.37,2+)   </A>: Elution from: 19.99 to 1=
9.99   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery273><B>Query273 (594.87,2+)   </A>: Elution from: 16.89 to 1=
6.89   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery274><B>Query274 (594.87,2+)   </A>: Elution from: 20.46 to 2=
0.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery275><B>Query275 (595.37,2+)   </A>: Elution from: 80.97 to 8=
0.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery276><B>Query276 (595.37,2+)   </A>: Elution from: 84 to 84  =
 period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery277><B>Query277 (595.41,2+)   </A>: Elution from: 201.31 to =
201.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery278><B>Query278 (595.42,2+)   </A>: Elution from: 187.27 to =
187.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery279><B>Query279 (595.85,2+)   </A>: Elution from: 8.83 to 8.=
83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery280><B>Query280 (595.85,2+)   </A>: Elution from: 12.18 to 1=
2.18   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery281><B>Query281 (595.86,2+)   </A>: Elution from: 82.62 to 8=
2.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery282><B>Query282 (595.89,2+)   </A>: Elution from: 37.59 to 3=
7.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery283><B>Query283 (595.92,2+)   </A>: Elution from: 188.93 to =
188.93   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery284><B>Query284 (596.35,2+)   </A>: Elution from: 8.96 to 8.=
96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery285><B>Query285 (596.36,2+)   </A>: Elution from: 12.36 to 1=
2.36   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery286><B>Query286 (596.40,2+)   </A>: Elution from: 38.08 to 3=
8.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery287><B>Query287 (596.84,2+)   </A>: Elution from: 7.9 to 7.9=
   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery288><B>Query288 (596.86,2+)   </A>: Elution from: 11.87 to 1=
1.87   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery289><B>Query289 (597.35,2+)   </A>: Elution from: 7.93 to 7.=
93   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery290><B>Query290 (597.35,2+)   </A>: Elution from: 17.02 to 1=
7.02   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery291><B>Query291 (597.38,2+)   </A>: Elution from: 37.69 to 3=
7.69   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery292><B>Query292 (597.38,2+)   </A>: Elution from: 60.9 to 60=
.9   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery293><B>Query293 (597.38,2+)   </A>: Elution from: 44.97 to 4=
4.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery294><B>Query294 (597.38,2+)   </A>: Elution from: 57.81 to 5=
7.81   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery295><B>Query295 (597.38,2+)   </A>: Elution from: 73.24 to 7=
3.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery296><B>Query296 (597.39,2+)   </A>: Elution from: 63.88 to 6=
3.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery297><B>Query297 (597.39,2+)   </A>: Elution from: 66.95 to 6=
6.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery298><B>Query298 (597.39,2+)   </A>: Elution from: 70.02 to 7=
0.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery299><B>Query299 (597.40,2+)   </A>: Elution from: 48.1 to 48=
.1   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery300><B>Query300 (597.86,2+)   </A>: Elution from: 12.41 to 1=
2.54   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery301><B>Query301 (597.89,2+)   </A>: Elution from: 66.47 to 6=
6.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery302><B>Query302 (597.89,2+)   </A>: Elution from: 63.31 to 6=
3.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery303><B>Query303 (597.89,2+)   </A>: Elution from: 45.34 to 4=
5.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery304><B>Query304 (597.89,2+)   </A>: Elution from: 60.27 to 6=
0.27   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery305><B>Query305 (597.89,2+)   </A>: Elution from: 69.53 to 6=
9.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery306><B>Query306 (598.39,2+)   </A>: Elution from: 69.86 to 6=
9.86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery307><B>Query307 (598.40,2+)   </A>: Elution from: 66.23 to 6=
6.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery308><B>Query308 (598.89,2+)   </A>: Elution from: 68.12 to 6=
8.12   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery309><B>Query309 (400.26,3+)   </A>: Elution from: 17.39 to 1=
7.39   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery310><B>Query310 (599.89,2+)   </A>: Elution from: 17.34 to 1=
7.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery311><B>Query311 (599.90,2+)   </A>: Elution from: 24.12 to 2=
4.12   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery312><B>Query312 (600.38,2+)   </A>: Elution from: 23.66 to 2=
3.79   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery313><B>Query313 (600.39,2+)   </A>: Elution from: 17.98 to 1=
7.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery314><B>Query314 (400.60,3+)   </A>: Elution from: 17.65 to 1=
7.65   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery315><B>Query315 (400.93,3+)   </A>: Elution from: 17.8 to 17=
.8   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery316><B>Query316 (601.38,2+)   </A>: Elution from: 20.64 to 2=
0.64   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery317><B>Query317 (601.85,2+)   </A>: Elution from: 24.79 to 2=
4.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery318><B>Query318 (601.87,2+)   </A>: Elution from: 20.79 to 2=
0.79   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery319><B>Query319 (602.34,2+)   </A>: Elution from: 24.98 to 2=
4.98   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery320><B>Query320 (602.84,2+)   </A>: Elution from: 5.48 to 5.=
48   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery321><B>Query321 (602.86,2+)   </A>: Elution from: 11.76 to 1=
1.76   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery322><B>Query322 (603.35,2+)   </A>: Elution from: 5.84 to 5.=
84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery323><B>Query323 (603.36,2+)   </A>: Elution from: 14.42 to 1=
4.42   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery324><B>Query324 (603.86,2+)   </A>: Elution from: 20.2 to 20=
.2   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery325><B>Query325 (603.87,2+)   </A>: Elution from: 14.5 to 14=
.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery326><B>Query326 (604.40,2+)   </A>: Elution from: 15.58 to 1=
5.58   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery327><B>Query327 (604.86,2+)   </A>: Elution from: 19.19 to 1=
9.19   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery328><B>Query328 (604.90,2+)   </A>: Elution from: 15.73 to 1=
5.73   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery329><B>Query329 (605.36,2+)   </A>: Elution from: 19.73 to 1=
9.73   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery330><B>Query330 (606.33,2+)   </A>: Elution from: 0.33 to 0.=
33   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery331><B>Query331 (606.83,2+)   </A>: Elution from: 0.54 to 0.=
54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery332><B>Query332 (404.92,3+)   </A>: Elution from: 15.5 to 15=
.63   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery333><B>Query333 (607.87,2+)   </A>: Elution from: 11.25 to 1=
1.38   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery334><B>Query334 (608.35,2+)   </A>: Elution from: 16.35 to 1=
6.35   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery335><B>Query335 (608.37,2+)   </A>: Elution from: 3.44 to 3.=
44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery336><B>Query336 (608.86,2+)   </A>: Elution from: 11.46 to 1=
1.46   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery337><B>Query337 (609.85,2+)   </A>: Elution from: 34.41 to 3=
4.41   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery338><B>Query338 (609.89,2+)   </A>: Elution from: 21.18 to 2=
1.18   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery339><B>Query339 (610.36,2+)   </A>: Elution from: 15.86 to 1=
5.86   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery340><B>Query340 (610.37,2+)   </A>: Elution from: 20.66 to 2=
0.66   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery341><B>Query341 (610.38,2+)   </A>: Elution from: 29.76 to 2=
9.76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery342><B>Query342 (610.87,2+)   </A>: Elution from: 13.9 to 13=
.9   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery343><B>Query343 (610.87,2+)   </A>: Elution from: 36.44 to 3=
6.44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery344><B>Query344 (610.88,2+)   </A>: Elution from: 29.01 to 2=
9.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery345><B>Query345 (610.88,2+)   </A>: Elution from: 25.91 to 2=
5.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery346><B>Query346 (610.90,2+)   </A>: Elution from: 32.07 to 3=
2.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery347><B>Query347 (611.38,2+)   </A>: Elution from: 29.33 to 2=
9.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery348><B>Query348 (612.30,2+)   </A>: Elution from: 11.02 to 1=
1.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery349><B>Query349 (612.36,2+)   </A>: Elution from: 16.15 to 1=
6.15   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery350><B>Query350 (612.36,2+)   </A>: Elution from: 19.96 to 1=
9.96   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery351><B>Query351 (612.86,2+)   </A>: Elution from: 20.23 to 2=
0.23   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery352><B>Query352 (614.35,2+)   </A>: Elution from: 42.35 to 4=
2.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery353><B>Query353 (614.36,2+)   </A>: Elution from: 39.26 to 3=
9.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery354><B>Query354 (614.45,2+)   </A>: Elution from: 36.18 to 3=
6.18   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery355><B>Query355 (614.85,2+)   </A>: Elution from: 39.15 to 3=
9.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery356><B>Query356 (614.85,2+)   </A>: Elution from: 6.51 to 6.=
51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery357><B>Query357 (614.86,2+)   </A>: Elution from: 42.25 to 4=
2.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery358><B>Query358 (614.88,2+)   </A>: Elution from: 12.56 to 1=
2.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery359><B>Query359 (614.88,2+)   </A>: Elution from: 32.78 to 3=
2.78   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery360><B>Query360 (615.35,2+)   </A>: Elution from: 6.08 to 6.=
08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery361><B>Query361 (615.36,2+)   </A>: Elution from: 42.19 to 4=
2.19   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery362><B>Query362 (615.37,2+)   </A>: Elution from: 34.14 to 3=
4.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery363><B>Query363 (615.86,2+)   </A>: Elution from: 7.42 to 7.=
42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery364><B>Query364 (615.87,2+)   </A>: Elution from: 31.56 to 3=
1.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery365><B>Query365 (616.88,2+)   </A>: Elution from: 22.58 to 2=
2.58   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery366><B>Query366 (617.29,2+)   </A>: Elution from: 4.7 to 4.7=
   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery367><B>Query367 (617.32,2+)   </A>: Elution from: 9.04 to 9.=
04   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery368><B>Query368 (617.34,2+)   </A>: Elution from: 0.08 to 0.=
08   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery369><B>Query369 (617.44,2+)   </A>: Elution from: 187.94 to =
187.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery370><B>Query370 (617.45,2+)   </A>: Elution from: 201.16 to =
201.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery371><B>Query371 (617.85,2+)   </A>: Elution from: 0.23 to 0.=
23   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery372><B>Query372 (617.93,2+)   </A>: Elution from: 189.79 to =
189.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery373><B>Query373 (618.36,2+)   </A>: Elution from: 30.65 to 3=
0.65   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery374><B>Query374 (618.84,2+)   </A>: Elution from: 30.07 to 3=
0.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery375><B>Query375 (619.34,2+)   </A>: Elution from: 8.16 to 8.=
29   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery376><B>Query376 (619.83,2+)   </A>: Elution from: 9.17 to 9.=
17   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery377><B>Query377 (621.38,2+)   </A>: Elution from: 4.88 to 4.=
88   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery378><B>Query378 (621.88,2+)   </A>: Elution from: 16.43 to 1=
6.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery379><B>Query379 (622.37,2+)   </A>: Elution from: 14.19 to 1=
4.19   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery380><B>Query380 (622.39,2+)   </A>: Elution from: 10.09 to 1=
0.09   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery381><B>Query381 (622.39,2+)   </A>: Elution from: 18.24 to 1=
8.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery382><B>Query382 (622.87,2+)   </A>: Elution from: 14.57 to 1=
4.57   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery383><B>Query383 (622.89,2+)   </A>: Elution from: 18.55 to 1=
8.55   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery384><B>Query384 (625.04,2+)   </A>: Elution from: 170.62 to =
170.62   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)=
</B>=0D
<A name=3DQuery385><B>Query385 (625.41,2+)   </A>: Elution from: 169.78 to =
169.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery386><B>Query386 (625.88,2+)   </A>: Elution from: 11.58 to 1=
1.58   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery387><B>Query387 (626.38,2+)   </A>: Elution from: 11.66 to 1=
1.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery388><B>Query388 (626.90,2+)   </A>: Elution from: 54.49 to 5=
4.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery389><B>Query389 (629.35,2+)   </A>: Elution from: 4.32 to 4.=
32   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery390><B>Query390 (630.86,2+)   </A>: Elution from: 28.03 to 2=
8.03   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery391><B>Query391 (631.36,2+)   </A>: Elution from: 28.13 to 2=
8.13   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery392><B>Query392 (631.37,2+)   </A>: Elution from: 21.24 to 2=
1.24   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery393><B>Query393 (631.37,2+)   </A>: Elution from: 31.11 to 3=
1.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery394><B>Query394 (631.87,2+)   </A>: Elution from: 28.32 to 2=
8.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery395><B>Query395 (633.35,2+)   </A>: Elution from: 44.42 to 4=
4.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery396><B>Query396 (633.35,2+)   </A>: Elution from: 8.65 to 8.=
65   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery397><B>Query397 (634.31,2+)   </A>: Elution from: 12.02 to 1=
2.15   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery398><B>Query398 (634.91,2+)   </A>: Elution from: 28.05 to 2=
8.19   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery399><B>Query399 (635.38,2+)   </A>: Elution from: 32.02 to 3=
2.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery400><B>Query400 (637.86,2+)   </A>: Elution from: 13.65 to 1=
3.65   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery401><B>Query401 (638.36,2+)   </A>: Elution from: 14.16 to 1=
4.16   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery402><B>Query402 (638.37,2+)   </A>: Elution from: 9.96 to 9.=
96   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery403><B>Query403 (638.86,2+)   </A>: Elution from: 13.8 to 13=
.8   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery404><B>Query404 (638.88,2+)   </A>: Elution from: 10.07 to 1=
0.07   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery405><B>Query405 (639.44,2+)   </A>: Elution from: 201.51 to =
201.51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery406><B>Query406 (639.45,2+)   </A>: Elution from: 188.7 to 1=
88.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery407><B>Query407 (639.84,2+)   </A>: Elution from: 17.85 to 1=
7.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery408><B>Query408 (427.24,3+)   </A>: Elution from: 4.01 to 4.=
01   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery409><B>Query409 (640.35,2+)   </A>: Elution from: 3.36 to 3.=
36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery410><B>Query410 (640.36,2+)   </A>: Elution from: 6.49 to 6.=
49   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery411><B>Query411 (640.37,2+)   </A>: Elution from: 10.63 to 1=
0.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery412><B>Query412 (640.86,2+)   </A>: Elution from: 11.28 to 1=
1.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery413><B>Query413 (640.87,2+)   </A>: Elution from: 3.57 to 3.=
57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery414><B>Query414 (641.36,2+)   </A>: Elution from: 11.2 to 11=
.2   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery415><B>Query415 (641.36,2+)   </A>: Elution from: 4.14 to 4.=
14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery416><B>Query416 (642.91,2+)   </A>: Elution from: 11.4 to 11=
.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery417><B>Query417 (643.37,2+)   </A>: Elution from: 18.99 to 1=
9.11   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery418><B>Query418 (643.41,2+)   </A>: Elution from: 11.53 to 1=
1.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery419><B>Query419 (643.87,2+)   </A>: Elution from: 19.24 to 1=
9.24   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery420><B>Query420 (643.91,2+)   </A>: Elution from: 11.74 to 1=
1.74   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery421><B>Query421 (644.39,2+)   </A>: Elution from: 5.5 to 5.5=
   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery422><B>Query422 (644.40,2+)   </A>: Elution from: 27.38 to 2=
7.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery423><B>Query423 (644.90,2+)   </A>: Elution from: 28.05 to 2=
8.05   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery424><B>Query424 (644.90,2+)   </A>: Elution from: 5.71 to 5.=
71   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery425><B>Query425 (645.35,2+)   </A>: Elution from: 10.71 to 1=
0.71   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery426><B>Query426 (646.36,2+)   </A>: Elution from: 0.8 to 0.8=
   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery427><B>Query427 (646.45,2+)   </A>: Elution from: 148.04 to =
148.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery428><B>Query428 (646.95,2+)   </A>: Elution from: 148.55 to =
148.55   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery429><B>Query429 (649.10,2+)   </A>: Elution from: 160.51 to =
160.51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery430><B>Query430 (649.64,2+)   </A>: Elution from: 150.01 to =
150.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery431><B>Query431 (649.89,2+)   </A>: Elution from: 164.85 to =
164.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery432><B>Query432 (652.35,2+)   </A>: Elution from: 15.45 to 1=
5.45   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery433><B>Query433 (652.86,2+)   </A>: Elution from: 15.6 to 15=
.6   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery434><B>Query434 (435.60,3+)   </A>: Elution from: 6.43 to 6.=
43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery435><B>Query435 (652.92,2+)   </A>: Elution from: 6.33 to 6.=
33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery436><B>Query436 (653.38,2+)   </A>: Elution from: 24.07 to 2=
4.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery437><B>Query437 (653.38,2+)   </A>: Elution from: 27.12 to 2=
7.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery438><B>Query438 (653.38,2+)   </A>: Elution from: 30.21 to 3=
0.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery439><B>Query439 (653.38,2+)   </A>: Elution from: 17.93 to 1=
7.93   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery440><B>Query440 (435.94,3+)   </A>: Elution from: 6.28 to 6.=
28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery441><B>Query441 (653.42,2+)   </A>: Elution from: 6.61 to 6.=
61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery442><B>Query442 (653.88,2+)   </A>: Elution from: 18.7 to 18=
.7   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery443><B>Query443 (653.89,2+)   </A>: Elution from: 22.24 to 2=
2.37   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery444><B>Query444 (653.89,2+)   </A>: Elution from: 25.39 to 2=
5.39   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery445><B>Query445 (654.36,2+)   </A>: Elution from: 32.31 to 3=
2.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery446><B>Query446 (654.38,2+)   </A>: Elution from: 26.11 to 2=
6.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery447><B>Query447 (436.92,3+)   </A>: Elution from: 8.91 to 8.=
91   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery448><B>Query448 (654.90,2+)   </A>: Elution from: 8.78 to 8.=
78   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery449><B>Query449 (655.39,2+)   </A>: Elution from: 9.19 to 9.=
19   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery450><B>Query450 (655.90,2+)   </A>: Elution from: 53.02 to 5=
3.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery451><B>Query451 (655.94,2+)   </A>: Elution from: 49.91 to 4=
9.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery452><B>Query452 (656.41,2+)   </A>: Elution from: 52.48 to 5=
2.48   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery453><B>Query453 (657.40,2+)   </A>: Elution from: 66.28 to 6=
6.28   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery454><B>Query454 (657.41,2+)   </A>: Elution from: 69.26 to 6=
9.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery455><B>Query455 (657.89,2+)   </A>: Elution from: 10.76 to 1=
0.76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery456><B>Query456 (657.91,2+)   </A>: Elution from: 66.31 to 6=
6.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery457><B>Query457 (657.91,2+)   </A>: Elution from: 69.34 to 6=
9.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery458><B>Query458 (657.92,2+)   </A>: Elution from: 60.03 to 6=
0.03   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery459><B>Query459 (657.92,2+)   </A>: Elution from: 26.19 to 2=
6.19   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery460><B>Query460 (657.92,2+)   </A>: Elution from: 63.2 to 63=
.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery461><B>Query461 (657.93,2+)   </A>: Elution from: 56.76 to 5=
6.76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery462><B>Query462 (657.96,2+)   </A>: Elution from: 163.58 to =
163.58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery463><B>Query463 (658.40,2+)   </A>: Elution from: 67.49 to 6=
7.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery464><B>Query464 (658.42,2+)   </A>: Elution from: 26.24 to 2=
6.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery465><B>Query465 (658.94,2+)   </A>: Elution from: 24.38 to 2=
4.38   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery466><B>Query466 (659.87,2+)   </A>: Elution from: 24.67 to 2=
4.67   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery467><B>Query467 (659.94,2+)   </A>: Elution from: 28.63 to 2=
8.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery468><B>Query468 (660.40,2+)   </A>: Elution from: 15.35 to 1=
5.35   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery469><B>Query469 (660.87,2+)   </A>: Elution from: 13.52 to 1=
3.52   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery470><B>Query470 (661.39,2+)   </A>: Elution from: 6.56 to 6.=
56   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery471><B>Query471 (661.48,2+)   </A>: Elution from: 190.35 to =
190.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery472><B>Query472 (442.26,3+)   </A>: Elution from: 6.79 to 6.=
79   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery473><B>Query473 (662.90,2+)   </A>: Elution from: 6.87 to 6.=
87   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery474><B>Query474 (442.59,3+)   </A>: Elution from: 7.54 to 7.=
54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery475><B>Query475 (663.40,2+)   </A>: Elution from: 6.95 to 6.=
95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery476><B>Query476 (442.93,3+)   </A>: Elution from: 7.21 to 7.=
21   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery477><B>Query477 (663.90,2+)   </A>: Elution from: 7.06 to 7.=
06   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery478><B>Query478 (664.36,2+)   </A>: Elution from: 30.8 to 30=
.8   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery479><B>Query479 (665.93,2+)   </A>: Elution from: 94.19 to 9=
4.19   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery480><B>Query480 (666.41,2+)   </A>: Elution from: 12.79 to 1=
2.79   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery481><B>Query481 (666.43,2+)   </A>: Elution from: 94.86 to 9=
4.86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery482><B>Query482 (666.86,2+)   </A>: Elution from: 7.62 to 7.=
62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery483><B>Query483 (666.91,2+)   </A>: Elution from: 13.31 to 1=
3.31   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery484><B>Query484 (667.41,2+)   </A>: Elution from: 9.71 to 9.=
71   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery485><B>Query485 (668.88,2+)   </A>: Elution from: 88.71 to 8=
8.71   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery486><B>Query486 (669.37,2+)   </A>: Elution from: 8.57 to 8.=
57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery487><B>Query487 (447.93,3+)   </A>: Elution from: 43.75 to 4=
3.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery488><B>Query488 (671.40,2+)   </A>: Elution from: 42.14 to 4=
2.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery489><B>Query489 (447.94,3+)   </A>: Elution from: 40.73 to 4=
0.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery490><B>Query490 (447.94,3+)   </A>: Elution from: 27.23 to 2=
7.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery491><B>Query491 (671.41,2+)   </A>: Elution from: 39.13 to 3=
9.13   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery492><B>Query492 (671.42,2+)   </A>: Elution from: 27.33 to 2=
7.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery493><B>Query493 (448.26,3+)   </A>: Elution from: 13.78 to 1=
3.78   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery494><B>Query494 (448.27,3+)   </A>: Elution from: 41.27 to 4=
1.27   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery495><B>Query495 (671.90,2+)   </A>: Elution from: 13.85 to 1=
3.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery496><B>Query496 (671.91,2+)   </A>: Elution from: 40.83 to 4=
0.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery497><B>Query497 (671.92,2+)   </A>: Elution from: 43.94 to 4=
3.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery498><B>Query498 (448.29,3+)   </A>: Elution from: 27.28 to 2=
7.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery499><B>Query499 (671.93,2+)   </A>: Elution from: 27.67 to 2=
7.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery500><B>Query500 (448.59,3+)   </A>: Elution from: 14.08 to 1=
4.08   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery501><B>Query501 (672.40,2+)   </A>: Elution from: 42.7 to 42=
.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery502><B>Query502 (672.40,2+)   </A>: Elution from: 14.06 to 1=
4.06   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery503><B>Query503 (673.40,2+)   </A>: Elution from: 13.42 to 1=
3.42   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery504><B>Query504 (673.86,2+)   </A>: Elution from: 25.13 to 2=
5.13   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery505><B>Query505 (674.35,2+)   </A>: Elution from: 25.21 to 2=
5.21   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery506><B>Query506 (674.39,2+)   </A>: Elution from: 18.47 to 1=
8.47   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery507><B>Query507 (674.86,2+)   </A>: Elution from: 4.58 to 4.=
58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery508><B>Query508 (674.87,2+)   </A>: Elution from: 1.49 to 1.=
49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery509><B>Query509 (450.27,3+)   </A>: Elution from: 8.03 to 8.=
03   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery510><B>Query510 (675.36,2+)   </A>: Elution from: 1.87 to 1.=
87   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery511><B>Query511 (675.41,2+)   </A>: Elution from: 23.53 to 2=
3.53   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery512><B>Query512 (675.42,2+)   </A>: Elution from: 18.83 to 1=
8.83   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery513><B>Query513 (675.92,2+)   </A>: Elution from: 23.76 to 2=
3.76   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery514><B>Query514 (676.36,2+)   </A>: Elution from: 52.3 to 52=
.3   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery515><B>Query515 (676.36,2+)   </A>: Elution from: 69.17 to 6=
9.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery516><B>Query516 (676.36,2+)   </A>: Elution from: 76.6 to 76=
.6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery517><B>Query517 (451.57,3+)   </A>: Elution from: 57.24 to 5=
7.24   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery518><B>Query518 (451.58,3+)   </A>: Elution from: 60.22 to 6=
0.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery519><B>Query519 (676.87,2+)   </A>: Elution from: 74.85 to 7=
4.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery520><B>Query520 (676.87,2+)   </A>: Elution from: 44.17 to 4=
4.17   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery521><B>Query521 (451.91,3+)   </A>: Elution from: 58.96 to 5=
8.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery522><B>Query522 (451.91,3+)   </A>: Elution from: 62.01 to 6=
2.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery523><B>Query523 (677.38,2+)   </A>: Elution from: 51.08 to 5=
1.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery524><B>Query524 (677.38,2+)   </A>: Elution from: 63.42 to 6=
3.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery525><B>Query525 (677.38,2+)   </A>: Elution from: 54.2 to 54=
.2   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery526><B>Query526 (677.38,2+)   </A>: Elution from: 66.52 to 6=
6.52   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery527><B>Query527 (677.38,2+)   </A>: Elution from: 60.38 to 6=
0.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery528><B>Query528 (677.38,2+)   </A>: Elution from: 69.67 to 6=
9.67   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery529><B>Query529 (677.40,2+)   </A>: Elution from: 26.37 to 2=
6.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery530><B>Query530 (677.88,2+)   </A>: Elution from: 60.85 to 6=
0.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery531><B>Query531 (452.27,3+)   </A>: Elution from: 41.8 to 41=
.8   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery532><B>Query532 (677.91,2+)   </A>: Elution from: 57.87 to 5=
7.87   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery533><B>Query533 (452.28,3+)   </A>: Elution from: 4.42 to 4.=
55   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery534><B>Query534 (677.92,2+)   </A>: Elution from: 3.67 to 3.=
67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery535><B>Query535 (677.92,2+)   </A>: Elution from: 6.72 to 6.=
72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery536><B>Query536 (677.93,2+)   </A>: Elution from: 40.81 to 4=
0.81   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery537><B>Query537 (678.41,2+)   </A>: Elution from: 38.55 to 3=
8.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery538><B>Query538 (678.41,2+)   </A>: Elution from: 44.65 to 4=
4.65   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery539><B>Query539 (678.42,2+)   </A>: Elution from: 41.59 to 4=
1.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery540><B>Query540 (678.42,2+)   </A>: Elution from: 3.72 to 3.=
72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery541><B>Query541 (678.88,2+)   </A>: Elution from: 45.28 to 4=
5.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery542><B>Query542 (678.88,2+)   </A>: Elution from: 42.33 to 4=
2.33   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery543><B>Query543 (678.92,2+)   </A>: Elution from: 4.04 to 4.=
04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery544><B>Query544 (679.89,2+)   </A>: Elution from: 45.56 to 4=
5.56   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery545><B>Query545 (454.25,3+)   </A>: Elution from: 9.94 to 9.=
94   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery546><B>Query546 (680.90,2+)   </A>: Elution from: 9.99 to 9.=
99   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery547><B>Query547 (454.59,3+)   </A>: Elution from: 10.19 to 1=
0.19   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery548><B>Query548 (681.40,2+)   </A>: Elution from: 7.47 to 7.=
47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery549><B>Query549 (681.90,2+)   </A>: Elution from: 7.6 to 7.6=
   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery550><B>Query550 (454.96,3+)   </A>: Elution from: 7.98 to 7.=
98   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery551><B>Query551 (456.27,3+)   </A>: Elution from: 12.1 to 12=
.1   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery552><B>Query552 (684.38,2+)   </A>: Elution from: 9.09 to 9.=
09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery553><B>Query553 (684.39,2+)   </A>: Elution from: 12.23 to 1=
2.23   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery554><B>Query554 (456.92,3+)   </A>: Elution from: 11.84 to 1=
1.84   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery555><B>Query555 (684.89,2+)   </A>: Elution from: 12.43 to 1=
2.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery556><B>Query556 (684.89,2+)   </A>: Elution from: 9.22 to 9.=
22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery557><B>Query557 (685.37,2+)   </A>: Elution from: 28.29 to 2=
8.29   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery558><B>Query558 (685.38,2+)   </A>: Elution from: 19.53 to 1=
9.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery559><B>Query559 (685.40,2+)   </A>: Elution from: 9.42 to 9.=
42   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery560><B>Query560 (685.43,2+)   </A>: Elution from: 0.03 to 0.=
03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery561><B>Query561 (685.86,2+)   </A>: Elution from: 19.78 to 1=
9.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery562><B>Query562 (685.93,2+)   </A>: Elution from: 0.28 to 0.=
28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery563><B>Query563 (457.93,3+)   </A>: Elution from: 16.22 to 1=
6.22   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery564><B>Query564 (686.40,2+)   </A>: Elution from: 19.63 to 1=
9.76   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery565><B>Query565 (686.40,2+)   </A>: Elution from: 16.53 to 1=
6.53   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery566><B>Query566 (458.27,3+)   </A>: Elution from: 17.21 to 1=
7.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery567><B>Query567 (686.92,2+)   </A>: Elution from: 17.05 to 1=
7.18   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery568><B>Query568 (458.60,3+)   </A>: Elution from: 17.96 to 1=
8.08   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery569><B>Query569 (688.91,2+)   </A>: Elution from: 4.52 to 4.=
52   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery570><B>Query570 (459.93,3+)   </A>: Elution from: 8.88 to 8.=
88   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery571><B>Query571 (689.41,2+)   </A>: Elution from: 8.75 to 8.=
75   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery572><B>Query572 (689.91,2+)   </A>: Elution from: 8.81 to 8.=
93   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery573><B>Query573 (689.94,2+)   </A>: Elution from: 147.58 to =
147.58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery574><B>Query574 (460.92,3+)   </A>: Elution from: 18.8 to 18=
.8   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery575><B>Query575 (461.97,3+)   </A>: Elution from: 19.09 to 1=
9.09   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery576><B>Query576 (693.43,2+)   </A>: Elution from: 7.08 to 7.=
08   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery577><B>Query577 (693.89,2+)   </A>: Elution from: 25.42 to 2=
5.42   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery578><B>Query578 (694.83,2+)   </A>: Elution from: 35.16 to 3=
5.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery579><B>Query579 (694.84,2+)   </A>: Elution from: 22.96 to 2=
2.96   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery580><B>Query580 (463.59,3+)   </A>: Elution from: 17.26 to 1=
7.26   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery581><B>Query581 (694.91,2+)   </A>: Elution from: 17.28 to 1=
7.28   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery582><B>Query582 (695.35,2+)   </A>: Elution from: 35.76 to 3=
5.76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery583><B>Query583 (695.35,2+)   </A>: Elution from: 23.04 to 2=
3.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery584><B>Query584 (463.92,3+)   </A>: Elution from: 23.27 to 2=
3.4   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery585><B>Query585 (698.94,2+)   </A>: Elution from: 21.57 to 2=
1.57   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery586><B>Query586 (698.94,2+)   </A>: Elution from: 18.19 to 1=
8.19   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery587><B>Query587 (466.58,3+)   </A>: Elution from: 17.7 to 17=
.7   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery588><B>Query588 (699.45,2+)   </A>: Elution from: 19.58 to 1=
9.58   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery589><B>Query589 (699.92,2+)   </A>: Elution from: 104.8 to 1=
04.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery590><B>Query590 (699.95,2+)   </A>: Elution from: 101.73 to =
101.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery591><B>Query591 (700.41,2+)   </A>: Elution from: 7.85 to 7.=
85   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery592><B>Query592 (700.43,2+)   </A>: Elution from: 105.03 to =
105.03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery593><B>Query593 (700.43,2+)   </A>: Elution from: 101.78 to =
101.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery594><B>Query594 (468.93,3+)   </A>: Elution from: 18.6 to 18=
.6   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery595><B>Query595 (702.90,2+)   </A>: Elution from: 12.28 to 1=
2.28   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery596><B>Query596 (702.92,2+)   </A>: Elution from: 20.09 to 2=
0.09   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery597><B>Query597 (469.27,3+)   </A>: Elution from: 18.96 to 1=
8.96   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery598><B>Query598 (703.42,2+)   </A>: Elution from: 20.15 to 2=
0.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery599><B>Query599 (469.60,3+)   </A>: Elution from: 20.61 to 2=
0.61   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery600><B>Query600 (703.91,2+)   </A>: Elution from: 14.68 to 1=
4.68   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery601><B>Query601 (703.94,2+)   </A>: Elution from: 21.21 to 2=
1.21   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery602><B>Query602 (469.92,3+)   </A>: Elution from: 13.08 to 1=
3.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery603><B>Query603 (704.40,2+)   </A>: Elution from: 13.18 to 1=
3.18   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery604><B>Query604 (705.89,2+)   </A>: Elution from: 10.58 to 1=
0.58   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery605><B>Query605 (706.39,2+)   </A>: Elution from: 11.1 to 11=
.1   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery606><B>Query606 (471.62,3+)   </A>: Elution from: 13.83 to 1=
3.83   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery607><B>Query607 (706.95,2+)   </A>: Elution from: 13.96 to 1=
3.96   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery608><B>Query608 (471.96,3+)   </A>: Elution from: 14.03 to 1=
4.03   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery609><B>Query609 (708.14,2+)   </A>: Elution from: 123.38 to =
123.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery610><B>Query610 (708.37,2+)   </A>: Elution from: 12.69 to 1=
2.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery611><B>Query611 (708.87,2+)   </A>: Elution from: 13 to 13  =
 period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery612><B>Query612 (708.89,2+)   </A>: Elution from: 6.9 to 6.9=
   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery613><B>Query613 (709.38,2+)   </A>: Elution from: 7.24 to 7.=
24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery614><B>Query614 (711.91,2+)   </A>: Elution from: 30.26 to 3=
0.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery615><B>Query615 (712.41,2+)   </A>: Elution from: 30.62 to 3=
0.62   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery616><B>Query616 (475.29,3+)   </A>: Elution from: 18.11 to 1=
8.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery617><B>Query617 (476.65,3+)   </A>: Elution from: 20.54 to 2=
0.54   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery618><B>Query618 (476.98,3+)   </A>: Elution from: 77.49 to 7=
7.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery619><B>Query619 (714.97,2+)   </A>: Elution from: 76.05 to 7=
6.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery620><B>Query620 (714.98,2+)   </A>: Elution from: 79.11 to 7=
9.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery621><B>Query621 (715.47,2+)   </A>: Elution from: 79.27 to 7=
9.27   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery622><B>Query622 (715.92,2+)   </A>: Elution from: 7.29 to 7.=
29   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery623><B>Query623 (715.97,2+)   </A>: Elution from: 77.83 to 7=
7.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery624><B>Query624 (716.42,2+)   </A>: Elution from: 7.39 to 7.=
39   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery625><B>Query625 (718.39,2+)   </A>: Elution from: 37.95 to 3=
7.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery626><B>Query626 (718.90,2+)   </A>: Elution from: 38.26 to 3=
8.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery627><B>Query627 (479.92,3+)   </A>: Elution from: 10.3 to 10=
.3   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery628><B>Query628 (719.40,2+)   </A>: Elution from: 13.26 to 1=
3.26   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery629><B>Query629 (719.40,2+)   </A>: Elution from: 10.12 to 1=
0.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery630><B>Query630 (719.90,2+)   </A>: Elution from: 13.39 to 1=
3.39   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery631><B>Query631 (719.90,2+)   </A>: Elution from: 10.25 to 1=
0.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery632><B>Query632 (480.27,3+)   </A>: Elution from: 10.45 to 1=
0.45   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery633><B>Query633 (720.42,2+)   </A>: Elution from: 22.7 to 22=
.7   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery634><B>Query634 (720.43,2+)   </A>: Elution from: 156.04 to =
156.04   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery635><B>Query635 (720.92,2+)   </A>: Elution from: 156.6 to 1=
56.6   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery636><B>Query636 (720.92,2+)   </A>: Elution from: 22.86 to 2=
2.86   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery637><B>Query637 (721.42,2+)   </A>: Elution from: 23.09 to 2=
3.09   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery638><B>Query638 (722.96,2+)   </A>: Elution from: 158.56 to =
158.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery639><B>Query639 (723.46,2+)   </A>: Elution from: 158.66 to =
158.66   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery640><B>Query640 (723.90,2+)   </A>: Elution from: 1.95 to 1.=
95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery641><B>Query641 (724.40,2+)   </A>: Elution from: 2.47 to 2.=
47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery642><B>Query642 (726.90,2+)   </A>: Elution from: 11.92 to 1=
1.92   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery643><B>Query643 (484.96,3+)   </A>: Elution from: 21.88 to 2=
1.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery644><B>Query644 (484.97,3+)   </A>: Elution from: 18.73 to 1=
8.73   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery645><B>Query645 (726.96,2+)   </A>: Elution from: 21.96 to 2=
1.96   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery646><B>Query646 (727.40,2+)   </A>: Elution from: 12.31 to 1=
2.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery647><B>Query647 (485.30,3+)   </A>: Elution from: 21.44 to 2=
1.44   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery648><B>Query648 (727.45,2+)   </A>: Elution from: 22.14 to 2=
2.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery649><B>Query649 (727.55,2+)   </A>: Elution from: 124.1 to 1=
24.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery650><B>Query650 (485.63,3+)   </A>: Elution from: 22.06 to 2=
2.06   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery651><B>Query651 (485.95,3+)   </A>: Elution from: 15.76 to 1=
5.76   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery652><B>Query652 (728.44,2+)   </A>: Elution from: 78.23 to 7=
8.23   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery653><B>Query653 (729.47,2+)   </A>: Elution from: 140.01 to =
140.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery654><B>Query654 (486.98,3+)   </A>: Elution from: 78 to 78  =
 period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery655><B>Query655 (729.98,2+)   </A>: Elution from: 140.16 to =
140.16   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery656><B>Query656 (729.98,2+)   </A>: Elution from: 77.4 to 77=
.4   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery657><B>Query657 (730.46,2+)   </A>: Elution from: 141.02 to =
141.02   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery658><B>Query658 (487.32,3+)   </A>: Elution from: 78.06 to 7=
8.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery659><B>Query659 (730.49,2+)   </A>: Elution from: 77.74 to 7=
7.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery660><B>Query660 (730.93,2+)   </A>: Elution from: 96.46 to 9=
6.46   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery661><B>Query661 (730.94,2+)   </A>: Elution from: 23.22 to 2=
3.22   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery662><B>Query662 (730.94,2+)   </A>: Elution from: 91.5 to 91=
.5   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery663><B>Query663 (730.96,2+)   </A>: Elution from: 99.46 to 9=
9.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery664><B>Query664 (730.97,2+)   </A>: Elution from: 79.05 to 7=
9.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery665><B>Query665 (731.01,2+)   </A>: Elution from: 156.5 to 1=
56.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery666><B>Query666 (488.65,3+)   </A>: Elution from: 16.76 to 1=
6.76   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery667><B>Query667 (732.48,2+)   </A>: Elution from: 16.87 to 1=
6.87   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery668><B>Query668 (734.44,2+)   </A>: Elution from: 174.64 to =
174.64   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery669><B>Query669 (490.31,3+)   </A>: Elution from: 19.22 to 1=
9.22   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery670><B>Query670 (735.94,2+)   </A>: Elution from: 11.79 to 1=
1.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery671><B>Query671 (491.61,3+)   </A>: Elution from: 5.15 to 5.=
15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery672><B>Query672 (491.95,3+)   </A>: Elution from: 5.25 to 5.=
25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery673><B>Query673 (737.96,2+)   </A>: Elution from: 30.83 to 3=
0.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery674><B>Query674 (740.91,2+)   </A>: Elution from: 27.72 to 2=
7.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery675><B>Query675 (740.91,2+)   </A>: Elution from: 24.69 to 2=
4.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery676><B>Query676 (494.28,3+)   </A>: Elution from: 61.06 to 6=
1.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery677><B>Query677 (740.91,2+)   </A>: Elution from: 18.21 to 1=
8.34   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery678><B>Query678 (494.28,3+)   </A>: Elution from: 64.1 to 64=
.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery679><B>Query679 (494.28,3+)   </A>: Elution from: 67.16 to 6=
7.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery680><B>Query680 (741.41,2+)   </A>: Elution from: 25.34 to 2=
5.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery681><B>Query681 (741.41,2+)   </A>: Elution from: 21.73 to 2=
1.85   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery682><B>Query682 (741.41,2+)   </A>: Elution from: 28.45 to 2=
8.45   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery683><B>Query683 (741.91,2+)   </A>: Elution from: 24.95 to 2=
4.95   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery684><B>Query684 (742.41,2+)   </A>: Elution from: 26.68 to 2=
6.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery685><B>Query685 (495.63,3+)   </A>: Elution from: 42.44 to 4=
2.44   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery686><B>Query686 (742.96,2+)   </A>: Elution from: 42.22 to 4=
2.22   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery687><B>Query687 (495.96,3+)   </A>: Elution from: 42.88 to 4=
2.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery688><B>Query688 (743.46,2+)   </A>: Elution from: 42.52 to 4=
2.52   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery689><B>Query689 (744.41,2+)   </A>: Elution from: 10.61 to 1=
0.61   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery690><B>Query690 (496.65,3+)   </A>: Elution from: 148.32 to =
148.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery691><B>Query691 (744.48,2+)   </A>: Elution from: 147.51 to =
147.51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery692><B>Query692 (744.49,2+)   </A>: Elution from: 150.55 to =
150.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery693><B>Query693 (744.91,2+)   </A>: Elution from: 10.86 to 1=
0.86   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery694><B>Query694 (496.99,3+)   </A>: Elution from: 148.5 to 1=
48.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery695><B>Query695 (745.00,2+)   </A>: Elution from: 148.09 to =
148.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery696><B>Query696 (745.00,2+)   </A>: Elution from: 151.13 to =
151.13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery697><B>Query697 (501.32,3+)   </A>: Elution from: 140.29 to =
140.29   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery698><B>Query698 (751.48,2+)   </A>: Elution from: 140.19 to =
140.19   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery699><B>Query699 (501.65,3+)   </A>: Elution from: 140.32 to =
140.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery700><B>Query700 (751.98,2+)   </A>: Elution from: 140.24 to =
140.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery701><B>Query701 (501.97,3+)   </A>: Elution from: 140.66 to =
140.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery702><B>Query702 (752.48,2+)   </A>: Elution from: 140.48 to =
140.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery703><B>Query703 (502.30,3+)   </A>: Elution from: 123.94 to =
123.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery704><B>Query704 (502.64,3+)   </A>: Elution from: 124.32 to =
124.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery705><B>Query705 (502.95,3+)   </A>: Elution from: 19.47 to 1=
9.47   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery706><B>Query706 (753.94,2+)   </A>: Elution from: 19.6 to 19=
.6   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery707><B>Query707 (502.96,3+)   </A>: Elution from: 28.47 to 2=
8.47   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery708><B>Query708 (503.28,3+)   </A>: Elution from: 28.83 to 2=
8.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery709><B>Query709 (503.32,3+)   </A>: Elution from: 19.37 to 1=
9.5   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery710><B>Query710 (505.31,3+)   </A>: Elution from: 16.92 to 1=
6.92   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery711><B>Query711 (757.95,2+)   </A>: Elution from: 17.07 to 1=
7.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery712><B>Query712 (505.93,3+)   </A>: Elution from: 21.34 to 2=
1.34   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery713><B>Query713 (505.94,3+)   </A>: Elution from: 40.78 to 4=
0.78   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery714><B>Query714 (505.94,3+)   </A>: Elution from: 31.16 to 3=
1.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery715><B>Query715 (505.95,3+)   </A>: Elution from: 43.81 to 4=
3.81   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery716><B>Query716 (758.44,2+)   </A>: Elution from: 21.49 to 2=
1.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery717><B>Query717 (505.97,3+)   </A>: Elution from: 26.16 to 2=
6.16   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery718><B>Query718 (506.27,3+)   </A>: Elution from: 0.13 to 0.=
13   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery719><B>Query719 (758.91,2+)   </A>: Elution from: 0.51 to 0.=
51   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery720><B>Query720 (506.28,3+)   </A>: Elution from: 43.86 to 4=
3.86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery721><B>Query721 (506.28,3+)   </A>: Elution from: 40.91 to 4=
0.91   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery722><B>Query722 (506.29,3+)   </A>: Elution from: 21.36 to 2=
1.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery723><B>Query723 (506.29,3+)   </A>: Elution from: 33.01 to 3=
3.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery724><B>Query724 (758.95,2+)   </A>: Elution from: 21.67 to 2=
1.67   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery725><B>Query725 (506.60,3+)   </A>: Elution from: 0.41 to 0.=
41   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery726><B>Query726 (506.61,3+)   </A>: Elution from: 42.41 to 4=
2.41   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery727><B>Query727 (762.98,2+)   </A>: Elution from: 22.63 to 2=
2.63   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery728><B>Query728 (509.00,3+)   </A>: Elution from: 22.6 to 22=
.6   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery729><B>Query729 (763.00,2+)   </A>: Elution from: 22.5 to 22=
.5   period: 0   experiment: 4 cycles:  1  (Charge not auto determined)</B>=0D
<A name=3DQuery730><B>Query730 (509.32,3+)   </A>: Elution from: 22.65 to 2=
2.65   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery731><B>Query731 (510.00,3+)   </A>: Elution from: 125.63 to =
125.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery732><B>Query732 (510.35,3+)   </A>: Elution from: 126.39 to =
126.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery733><B>Query733 (765.92,2+)   </A>: Elution from: 10.35 to 1=
0.48   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery734><B>Query734 (510.95,3+)   </A>: Elution from: 10.55 to 1=
0.55   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery735><B>Query735 (765.94,2+)   </A>: Elution from: 13.44 to 1=
3.44   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery736><B>Query736 (512.98,3+)   </A>: Elution from: 63.55 to 6=
3.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery737><B>Query737 (768.96,2+)   </A>: Elution from: 63.77 to 6=
3.77   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery738><B>Query738 (513.96,3+)   </A>: Elution from: 38.4 to 38=
.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery739><B>Query739 (770.45,2+)   </A>: Elution from: 39.23 to 3=
9.23   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery740><B>Query740 (514.30,3+)   </A>: Elution from: 38.32 to 3=
8.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery741><B>Query741 (514.62,3+)   </A>: Elution from: 17.83 to 1=
7.83   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery742><B>Query742 (771.44,2+)   </A>: Elution from: 18.44 to 1=
8.44   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery743><B>Query743 (514.63,3+)   </A>: Elution from: 39.34 to 3=
9.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery744><B>Query744 (514.96,3+)   </A>: Elution from: 18.06 to 1=
8.06   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery745><B>Query745 (772.44,2+)   </A>: Elution from: 23.63 to 2=
3.63   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery746><B>Query746 (515.33,3+)   </A>: Elution from: 17.72 to 1=
7.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery747><B>Query747 (515.34,3+)   </A>: Elution from: 23.89 to 2=
3.89   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery748><B>Query748 (772.91,2+)   </A>: Elution from: 12.49 to 1=
2.49   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery749><B>Query749 (773.41,2+)   </A>: Elution from: 12.67 to 1=
2.67   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery750><B>Query750 (773.98,2+)   </A>: Elution from: 16.12 to 1=
6.12   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery751><B>Query751 (516.65,3+)   </A>: Elution from: 24.18 to 2=
4.3   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery752><B>Query752 (774.48,2+)   </A>: Elution from: 24.59 to 2=
4.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery753><B>Query753 (516.98,3+)   </A>: Elution from: 24.33 to 2=
4.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery754><B>Query754 (774.98,2+)   </A>: Elution from: 24.74 to 2=
4.74   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery755><B>Query755 (779.99,2+)   </A>: Elution from: 16.63 to 1=
6.63   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery756><B>Query756 (520.65,3+)   </A>: Elution from: 16.51 to 1=
6.51   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery757><B>Query757 (781.39,2+)   </A>: Elution from: 27.61 to 2=
7.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery758><B>Query758 (781.89,2+)   </A>: Elution from: 27.82 to 2=
7.95   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery759><B>Query759 (782.94,2+)   </A>: Elution from: 14.62 to 1=
4.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery760><B>Query760 (523.61,3+)   </A>: Elution from: 0.72 to 0.=
72   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery761><B>Query761 (784.96,2+)   </A>: Elution from: 140.37 to =
140.37   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery762><B>Query762 (524.65,3+)   </A>: Elution from: 45.63 to 4=
5.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery763><B>Query763 (524.65,3+)   </A>: Elution from: 62.2 to 62=
.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery764><B>Query764 (524.65,3+)   </A>: Elution from: 42.57 to 4=
2.57   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery765><B>Query765 (524.65,3+)   </A>: Elution from: 65.24 to 6=
5.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery766><B>Query766 (786.49,2+)   </A>: Elution from: 63.94 to 6=
3.94   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery767><B>Query767 (524.99,3+)   </A>: Elution from: 42.59 to 4=
2.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery768><B>Query768 (524.99,3+)   </A>: Elution from: 65.54 to 6=
5.54   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery769><B>Query769 (525.00,3+)   </A>: Elution from: 62.5 to 62=
.5   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery770><B>Query770 (786.99,2+)   </A>: Elution from: 64.02 to 6=
4.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery771><B>Query771 (787.46,2+)   </A>: Elution from: 9.34 to 9.=
34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery772><B>Query772 (525.32,3+)   </A>: Elution from: 65.14 to 6=
5.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery773><B>Query773 (787.97,2+)   </A>: Elution from: 9.55 to 9.=
55   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery774><B>Query774 (789.00,2+)   </A>: Elution from: 198.23 to =
198.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery775><B>Query775 (527.32,3+)   </A>: Elution from: 34.75 to 3=
4.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery776><B>Query776 (790.98,2+)   </A>: Elution from: 5.68 to 5.=
68   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery777><B>Query777 (790.99,2+)   </A>: Elution from: 26.89 to 2=
6.89   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery778><B>Query778 (527.66,3+)   </A>: Elution from: 34.51 to 3=
4.51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery779><B>Query779 (527.66,3+)   </A>: Elution from: 39.99 to 3=
9.99   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery780><B>Query780 (527.66,3+)   </A>: Elution from: 42.99 to 4=
2.99   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery781><B>Query781 (527.67,3+)   </A>: Elution from: 26.55 to 2=
6.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery782><B>Query782 (791.00,2+)   </A>: Elution from: 41.85 to 4=
1.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery783><B>Query783 (527.97,3+)   </A>: Elution from: 5.58 to 5.=
58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery784><B>Query784 (791.46,2+)   </A>: Elution from: 74.3 to 74=
.3   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery785><B>Query785 (791.47,2+)   </A>: Elution from: 5.89 to 5.=
89   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery786><B>Query786 (527.99,3+)   </A>: Elution from: 26.65 to 2=
6.65   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery787><B>Query787 (527.99,3+)   </A>: Elution from: 41.01 to 4=
1.01   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery788><B>Query788 (528.00,3+)   </A>: Elution from: 44.02 to 4=
4.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery789><B>Query789 (791.52,2+)   </A>: Elution from: 42.12 to 4=
2.12   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery790><B>Query790 (528.30,3+)   </A>: Elution from: 5.76 to 5.=
76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery791><B>Query791 (791.96,2+)   </A>: Elution from: 5.97 to 5.=
97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery792><B>Query792 (528.33,3+)   </A>: Elution from: 26.81 to 2=
6.81   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery793><B>Query793 (528.33,3+)   </A>: Elution from: 41.22 to 4=
1.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery794><B>Query794 (528.34,3+)   </A>: Elution from: 44.47 to 4=
4.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery795><B>Query795 (528.34,3+)   </A>: Elution from: 30.54 to 3=
0.54   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery796><B>Query796 (528.36,3+)   </A>: Elution from: 47.52 to 4=
7.52   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery797><B>Query797 (528.65,3+)   </A>: Elution from: 16.25 to 1=
6.25   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery798><B>Query798 (528.67,3+)   </A>: Elution from: 41.75 to 4=
1.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery799><B>Query799 (528.68,3+)   </A>: Elution from: 38.21 to 3=
8.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery800><B>Query800 (528.82,3+)   </A>: Elution from: 33.24 to 3=
3.24   period: 0   experiment: 2 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery801><B>Query801 (528.99,3+)   </A>: Elution from: 16.38 to 1=
6.38   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery802><B>Query802 (529.01,3+)   </A>: Elution from: 38.61 to 3=
8.61   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery803><B>Query803 (529.29,3+)   </A>: Elution from: 15.01 to 1=
5.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery804><B>Query804 (793.44,2+)   </A>: Elution from: 15.09 to 1=
5.09   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery805><B>Query805 (529.62,3+)   </A>: Elution from: 15.14 to 1=
5.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery806><B>Query806 (793.94,2+)   </A>: Elution from: 15.12 to 1=
5.12   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery807><B>Query807 (529.63,3+)   </A>: Elution from: 46.8 to 46=
.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery808><B>Query808 (793.95,2+)   </A>: Elution from: 46.72 to 4=
6.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery809><B>Query809 (529.68,3+)   </A>: Elution from: 72.28 to 7=
2.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery810><B>Query810 (529.69,3+)   </A>: Elution from: 81.65 to 8=
1.65   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery811><B>Query811 (529.69,3+)   </A>: Elution from: 75.33 to 7=
5.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery812><B>Query812 (529.69,3+)   </A>: Elution from: 84.73 to 8=
4.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery813><B>Query813 (794.04,2+)   </A>: Elution from: 83.37 to 8=
3.37   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery814><B>Query814 (794.05,2+)   </A>: Elution from: 74.44 to 7=
4.44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery815><B>Query815 (529.97,3+)   </A>: Elution from: 47.27 to 4=
7.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery816><B>Query816 (794.46,2+)   </A>: Elution from: 47.44 to 4=
7.44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery817><B>Query817 (530.01,3+)   </A>: Elution from: 72.8 to 72=
.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery818><B>Query818 (530.02,3+)   </A>: Elution from: 81.73 to 8=
1.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery819><B>Query819 (530.02,3+)   </A>: Elution from: 84.78 to 8=
4.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery820><B>Query820 (530.03,3+)   </A>: Elution from: 75.86 to 7=
5.86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery821><B>Query821 (794.54,2+)   </A>: Elution from: 74.8 to 74=
.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery822><B>Query822 (794.55,2+)   </A>: Elution from: 83.56 to 8=
3.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery823><B>Query823 (530.32,3+)   </A>: Elution from: 95.94 to 9=
5.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery824><B>Query824 (530.35,3+)   </A>: Elution from: 82.9 to 82=
.9   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery825><B>Query825 (530.36,3+)   </A>: Elution from: 73.58 to 7=
3.58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery826><B>Query826 (795.06,2+)   </A>: Elution from: 154.35 to =
154.35   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)=
</B>=0D
<A name=3DQuery827><B>Query827 (795.34,2+)   </A>: Elution from: 157.92 to =
157.92   period: 0   experiment: 3 cycles:  1  (Charge not auto determined)=
</B>=0D
<A name=3DQuery828><B>Query828 (795.34,2+)   </A>: Elution from: 154.75 to =
154.75   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)=
</B>=0D
<A name=3DQuery829><B>Query829 (530.66,3+)   </A>: Elution from: 96.26 to 9=
6.26   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery830><B>Query830 (795.63,2+)   </A>: Elution from: 158.61 to =
158.61   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)=
</B>=0D
<A name=3DQuery831><B>Query831 (796.98,2+)   </A>: Elution from: 91.2 to 91=
.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery832><B>Query832 (797.99,2+)   </A>: Elution from: 92.36 to 9=
2.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery833><B>Query833 (534.64,3+)   </A>: Elution from: 27.92 to 2=
7.92   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery834><B>Query834 (801.46,2+)   </A>: Elution from: 27.77 to 2=
7.77   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery835><B>Query835 (534.97,3+)   </A>: Elution from: 27.69 to 2=
7.69   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery836><B>Query836 (801.97,2+)   </A>: Elution from: 27.9 to 27=
.9   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery837><B>Query837 (802.47,2+)   </A>: Elution from: 28.27 to 2=
8.27   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery838><B>Query838 (538.34,3+)   </A>: Elution from: 30.7 to 30=
.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery839><B>Query839 (538.34,3+)   </A>: Elution from: 33.73 to 3=
3.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery840><B>Query840 (538.63,3+)   </A>: Elution from: 25.52 to 2=
5.52   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery841><B>Query841 (538.67,3+)   </A>: Elution from: 32.88 to 3=
2.88   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery842><B>Query842 (538.96,3+)   </A>: Elution from: 25.6 to 25=
.6   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery843><B>Query843 (538.96,3+)   </A>: Elution from: 117.51 to =
117.51   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery844><B>Query844 (539.30,3+)   </A>: Elution from: 117.92 to =
117.92   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery845><B>Query845 (539.31,3+)   </A>: Elution from: 5.3 to 5.3=
   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery846><B>Query846 (541.00,3+)   </A>: Elution from: 79.19 to 7=
9.19   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery847><B>Query847 (541.31,3+)   </A>: Elution from: 79.22 to 7=
9.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery848><B>Query848 (812.47,2+)   </A>: Elution from: 43.99 to 4=
3.99   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery849><B>Query849 (541.99,3+)   </A>: Elution from: 43.09 to 4=
3.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery850><B>Query850 (542.32,3+)   </A>: Elution from: 43.2 to 43=
.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery851><B>Query851 (542.65,3+)   </A>: Elution from: 43.54 to 4=
3.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery852><B>Query852 (543.31,3+)   </A>: Elution from: 23.38 to 2=
3.38   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery853><B>Query853 (543.35,3+)   </A>: Elution from: 36.83 to 3=
6.83   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery854><B>Query854 (543.68,3+)   </A>: Elution from: 36.85 to 3=
6.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery855><B>Query855 (543.98,3+)   </A>: Elution from: 22.34 to 2=
2.34   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery856><B>Query856 (545.63,3+)   </A>: Elution from: 19.84 to 1=
9.84   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery857><B>Query857 (545.97,3+)   </A>: Elution from: 20.04 to 2=
0.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery858><B>Query858 (818.49,2+)   </A>: Elution from: 157.52 to =
157.52   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery859><B>Query859 (547.42,3+)   </A>: Elution from: 205.52 to =
205.52   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)=
</B>=0D
<A name=3DQuery860><B>Query860 (547.65,3+)   </A>: Elution from: 13.72 to 1=
3.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery861><B>Query861 (821.04,2+)   </A>: Elution from: 191.72 to =
191.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery862><B>Query862 (547.97,3+)   </A>: Elution from: 21.54 to 2=
1.54   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery863><B>Query863 (821.46,2+)   </A>: Elution from: 21.13 to 2=
1.13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery864><B>Query864 (821.46,2+)   </A>: Elution from: 16.09 to 1=
6.09   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery865><B>Query865 (547.98,3+)   </A>: Elution from: 13.98 to 1=
3.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery866><B>Query866 (548.31,3+)   </A>: Elution from: 0.21 to 0.=
21   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery867><B>Query867 (821.96,2+)   </A>: Elution from: 21.42 to 2=
1.42   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery868><B>Query868 (821.96,2+)   </A>: Elution from: 0.15 to 0.=
15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery869><B>Query869 (548.64,3+)   </A>: Elution from: 0.26 to 0.=
39   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery870><B>Query870 (822.46,2+)   </A>: Elution from: 0.59 to 0.=
59   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery871><B>Query871 (548.80,3+)   </A>: Elution from: 1.03 to 1.=
03   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</B>=0D
<A name=3DQuery872><B>Query872 (548.97,3+)   </A>: Elution from: 6.38 to 6.=
38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery873><B>Query873 (548.97,3+)   </A>: Elution from: 9.53 to 9.=
53   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery874><B>Query874 (548.98,3+)   </A>: Elution from: 2.13 to 2.=
13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery875><B>Query875 (822.97,2+)   </A>: Elution from: 6.67 to 6.=
67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery876><B>Query876 (549.30,3+)   </A>: Elution from: 4.34 to 4.=
34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery877><B>Query877 (549.31,3+)   </A>: Elution from: 7.7 to 7.7=
   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery878><B>Query878 (823.46,2+)   </A>: Elution from: 6.77 to 6.=
77   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery879><B>Query879 (824.94,2+)   </A>: Elution from: 29.17 to 2=
9.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery880><B>Query880 (825.46,2+)   </A>: Elution from: 12.64 to 1=
2.64   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery881><B>Query881 (825.96,2+)   </A>: Elution from: 12.74 to 1=
2.74   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery882><B>Query882 (551.01,3+)   </A>: Elution from: 46 to 46  =
 period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery883><B>Query883 (551.35,3+)   </A>: Elution from: 46.26 to 4=
6.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery884><B>Query884 (551.67,3+)   </A>: Elution from: 46.54 to 4=
6.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery885><B>Query885 (551.94,3+)   </A>: Elution from: 39.05 to 3=
9.05   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery886><B>Query886 (551.94,3+)   </A>: Elution from: 36.02 to 3=
6.02   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery887><B>Query887 (551.95,3+)   </A>: Elution from: 57.46 to 5=
7.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery888><B>Query888 (551.95,3+)   </A>: Elution from: 45.1 to 45=
.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery889><B>Query889 (551.95,3+)   </A>: Elution from: 42.06 to 4=
2.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery890><B>Query890 (551.96,3+)   </A>: Elution from: 54.25 to 5=
4.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery891><B>Query891 (551.96,3+)   </A>: Elution from: 51.18 to 5=
1.18   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery892><B>Query892 (551.97,3+)   </A>: Elution from: 48.15 to 4=
8.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery893><B>Query893 (551.98,3+)   </A>: Elution from: 32.15 to 3=
2.15   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery894><B>Query894 (552.29,3+)   </A>: Elution from: 39.94 to 3=
9.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery895><B>Query895 (552.29,3+)   </A>: Elution from: 36.91 to 3=
6.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery896><B>Query896 (552.29,3+)   </A>: Elution from: 43.04 to 4=
3.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery897><B>Query897 (552.29,3+)   </A>: Elution from: 46.13 to 4=
6.13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery898><B>Query898 (552.30,3+)   </A>: Elution from: 49.21 to 4=
9.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery899><B>Query899 (552.30,3+)   </A>: Elution from: 52.24 to 5=
2.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery900><B>Query900 (552.31,3+)   </A>: Elution from: 32.52 to 3=
2.52   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery901><B>Query901 (552.34,3+)   </A>: Elution from: 24.25 to 2=
4.25   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery902><B>Query902 (828.02,2+)   </A>: Elution from: 25.24 to 2=
5.24   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery903><B>Query903 (552.68,3+)   </A>: Elution from: 24.51 to 2=
4.51   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery904><B>Query904 (828.52,2+)   </A>: Elution from: 25.31 to 2=
5.44   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery905><B>Query905 (553.02,3+)   </A>: Elution from: 25.16 to 2=
5.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery906><B>Query906 (553.34,3+)   </A>: Elution from: 25.55 to 2=
5.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery907><B>Query907 (553.63,3+)   </A>: Elution from: 4.45 to 4.=
45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery908><B>Query908 (553.64,3+)   </A>: Elution from: 1.34 to 1.=
34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery909><B>Query909 (829.96,2+)   </A>: Elution from: 1.77 to 1.=
77   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery910><B>Query910 (553.97,3+)   </A>: Elution from: 4.65 to 4.=
65   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery911><B>Query911 (553.97,3+)   </A>: Elution from: 1.41 to 1.=
41   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery912><B>Query912 (554.00,3+)   </A>: Elution from: 23.87 to 2=
3.87   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery913><B>Query913 (554.01,3+)   </A>: Elution from: 29.06 to 2=
9.06   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery914><B>Query914 (830.51,2+)   </A>: Elution from: 20.87 to 2=
0.87   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery915><B>Query915 (554.01,3+)   </A>: Elution from: 20.43 to 2=
0.43   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery916><B>Query916 (554.34,3+)   </A>: Elution from: 29.14 to 2=
9.14   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery917><B>Query917 (554.35,3+)   </A>: Elution from: 20.77 to 2=
0.77   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery918><B>Query918 (554.68,3+)   </A>: Elution from: 21.1 to 21=
.1   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery919><B>Query919 (554.99,3+)   </A>: Elution from: 36.96 to 3=
6.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery920><B>Query920 (555.01,3+)   </A>: Elution from: 40.07 to 4=
0.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery921><B>Query921 (556.32,3+)   </A>: Elution from: 40.15 to 4=
0.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery922><B>Query922 (833.98,2+)   </A>: Elution from: 41.04 to 4=
1.04   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery923><B>Query923 (556.65,3+)   </A>: Elution from: 40.96 to 4=
0.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery924><B>Query924 (557.30,3+)   </A>: Elution from: 18.75 to 1=
8.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery925><B>Query925 (835.44,2+)   </A>: Elution from: 18.32 to 1=
8.32   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery926><B>Query926 (835.45,2+)   </A>: Elution from: 14.81 to 1=
4.81   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery927><B>Query927 (835.50,2+)   </A>: Elution from: 116.63 to =
116.63   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery928><B>Query928 (835.94,2+)   </A>: Elution from: 18.37 to 1=
8.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery929><B>Query929 (558.00,3+)   </A>: Elution from: 25.08 to 2=
5.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery930><B>Query930 (558.01,3+)   </A>: Elution from: 31.99 to 3=
1.99   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery931><B>Query931 (558.31,3+)   </A>: Elution from: 14.73 to 1=
4.73   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery932><B>Query932 (836.98,2+)   </A>: Elution from: 27.85 to 2=
7.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery933><B>Query933 (558.33,3+)   </A>: Elution from: 28.08 to 2=
8.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery934><B>Query934 (558.34,3+)   </A>: Elution from: 31.43 to 3=
1.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery935><B>Query935 (558.35,3+)   </A>: Elution from: 25.05 to 2=
5.05   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery936><B>Query936 (837.49,2+)   </A>: Elution from: 27.98 to 2=
7.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery937><B>Query937 (558.66,3+)   </A>: Elution from: 28.7 to 28=
.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery938><B>Query938 (558.96,3+)   </A>: Elution from: 23.92 to 2=
4.05   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery939><B>Query939 (837.94,2+)   </A>: Elution from: 23.99 to 2=
3.99   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery940><B>Query940 (558.99,3+)   </A>: Elution from: 28.21 to 2=
8.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery941><B>Query941 (838.02,2+)   </A>: Elution from: 128.51 to =
128.51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery942><B>Query942 (559.30,3+)   </A>: Elution from: 24.2 to 24=
.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery943><B>Query943 (838.44,2+)   </A>: Elution from: 24.15 to 2=
4.15   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery944><B>Query944 (838.52,2+)   </A>: Elution from: 161.35 to =
161.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery945><B>Query945 (838.54,2+)   </A>: Elution from: 128.84 to =
128.84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery946><B>Query946 (838.95,2+)   </A>: Elution from: 24.54 to 2=
4.54   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery947><B>Query947 (839.04,2+)   </A>: Elution from: 161.22 to =
161.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery948><B>Query948 (562.66,3+)   </A>: Elution from: 66.36 to 6=
6.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery949><B>Query949 (562.67,3+)   </A>: Elution from: 69.47 to 6=
9.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery950><B>Query950 (563.00,3+)   </A>: Elution from: 70.08 to 7=
0.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery951><B>Query951 (563.01,3+)   </A>: Elution from: 66.67 to 6=
6.67   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery952><B>Query952 (563.34,3+)   </A>: Elution from: 21.31 to 2=
1.31   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery953><B>Query953 (563.65,3+)   </A>: Elution from: 7.67 to 7.=
67   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery954><B>Query954 (563.66,3+)   </A>: Elution from: 21.8 to 21=
.8   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery955><B>Query955 (563.99,3+)   </A>: Elution from: 7.88 to 7.=
88   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery956><B>Query956 (848.48,2+)   </A>: Elution from: 167.42 to =
167.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery957><B>Query957 (566.97,3+)   </A>: Elution from: 38.45 to 3=
8.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery958><B>Query958 (566.98,3+)   </A>: Elution from: 21.02 to 2=
1.02   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery959><B>Query959 (566.98,3+)   </A>: Elution from: 8.14 to 8.=
14   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery960><B>Query960 (568.35,3+)   </A>: Elution from: 40.55 to 4=
0.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery961><B>Query961 (852.49,2+)   </A>: Elution from: 11.71 to 1=
1.71   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery962><B>Query962 (569.88,3+)   </A>: Elution from: 46.49 to 4=
6.49   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery963><B>Query963 (569.88,3+)   </A>: Elution from: 31.74 to 3=
1.74   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)</=
B>=0D
<A name=3DQuery964><B>Query964 (856.47,2+)   </A>: Elution from: 175.04 to =
175.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery965><B>Query965 (571.33,3+)   </A>: Elution from: 49.08 to 4=
9.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery966><B>Query966 (571.33,3+)   </A>: Elution from: 69.42 to 6=
9.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery967><B>Query967 (856.72,2+)   </A>: Elution from: 174.54 to =
174.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery968><B>Query968 (573.66,3+)   </A>: Elution from: 14.29 to 1=
4.29   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery969><B>Query969 (574.00,3+)   </A>: Elution from: 14.44 to 1=
4.44   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery970><B>Query970 (574.33,3+)   </A>: Elution from: 17 to 17  =
 period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery971><B>Query971 (576.36,3+)   </A>: Elution from: 65.3 to 65=
.3   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery972><B>Query972 (864.04,2+)   </A>: Elution from: 65.93 to 6=
5.93   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery973><B>Query973 (864.49,2+)   </A>: Elution from: 55.08 to 5=
5.08   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery974><B>Query974 (576.67,3+)   </A>: Elution from: 55.14 to 5=
5.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery975><B>Query975 (576.67,3+)   </A>: Elution from: 18.5 to 18=
.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery976><B>Query976 (576.69,3+)   </A>: Elution from: 65.33 to 6=
5.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery977><B>Query977 (577.00,3+)   </A>: Elution from: 55.03 to 5=
5.03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery978><B>Query978 (577.00,3+)   </A>: Elution from: 37.38 to 3=
7.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery979><B>Query979 (865.00,2+)   </A>: Elution from: 55.24 to 5=
5.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery980><B>Query980 (577.00,3+)   </A>: Elution from: 18.62 to 1=
8.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery981><B>Query981 (577.33,3+)   </A>: Elution from: 10.89 to 1=
0.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery982><B>Query982 (577.67,3+)   </A>: Elution from: 11.35 to 1=
1.35   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery983><B>Query983 (578.00,3+)   </A>: Elution from: 30.57 to 3=
0.57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery984><B>Query984 (578.34,3+)   </A>: Elution from: 30.49 to 3=
0.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery985><B>Query985 (578.67,3+)   </A>: Elution from: 30.75 to 3=
0.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery986><B>Query986 (579.69,3+)   </A>: Elution from: 117.38 to =
117.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery987><B>Query987 (869.05,2+)   </A>: Elution from: 117.59 to =
117.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery988><B>Query988 (580.03,3+)   </A>: Elution from: 117.28 to =
117.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery989><B>Query989 (869.54,2+)   </A>: Elution from: 117.67 to =
117.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery990><B>Query990 (580.36,3+)   </A>: Elution from: 117.87 to =
117.87   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery991><B>Query991 (581.01,3+)   </A>: Elution from: 24.41 to 2=
4.41   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery992><B>Query992 (581.35,3+)   </A>: Elution from: 24.43 to 2=
4.56   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery993><B>Query993 (871.95,2+)   </A>: Elution from: 144.21 to =
144.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery994><B>Query994 (581.98,3+)   </A>: Elution from: 51.02 to 5=
1.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery995><B>Query995 (582.00,3+)   </A>: Elution from: 54.15 to 5=
4.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery996><B>Query996 (582.00,3+)   </A>: Elution from: 60.29 to 6=
0.29   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery997><B>Query997 (582.00,3+)   </A>: Elution from: 63.36 to 6=
3.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery998><B>Query998 (582.00,3+)   </A>: Elution from: 57.27 to 5=
7.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery999><B>Query999 (872.51,2+)   </A>: Elution from: 60.54 to 6=
0.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1000><B>Query1000 (872.99,2+)  </A>: Elution from: 61.01 to =
61.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1001><B>Query1001 (582.34,3+)  </A>: Elution from: 56.16 to =
56.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1002><B>Query1002 (582.34,3+)  </A>: Elution from: 59.21 to =
59.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1003><B>Query1003 (582.34,3+)  </A>: Elution from: 52.35 to =
52.35   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1004><B>Query1004 (582.34,3+)  </A>: Elution from: 62.39 to =
62.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1005><B>Query1005 (582.67,3+)  </A>: Elution from: 60.05 to =
60.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1006><B>Query1006 (878.98,2+)  </A>: Elution from: 9.6 to 9.=
6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1007><B>Query1007 (586.36,3+)  </A>: Elution from: 49.46 to =
49.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1008><B>Query1008 (586.70,3+)  </A>: Elution from: 49.67 to =
49.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1009><B>Query1009 (589.04,3+)  </A>: Elution from: 21.47 to =
21.6   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery1010><B>Query1010 (589.37,3+)  </A>: Elution from: 21.83 to =
21.83   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1011><B>Query1011 (885.47,2+)  </A>: Elution from: 16.69 to =
16.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1012><B>Query1012 (885.48,2+)  </A>: Elution from: 21.98 to =
21.98   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1013><B>Query1013 (590.66,3+)  </A>: Elution from: 20.9 to 2=
0.9   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1014><B>Query1014 (590.67,3+)  </A>: Elution from: 16.48 to =
16.48   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1015><B>Query1015 (885.97,2+)  </A>: Elution from: 16.94 to =
16.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1016><B>Query1016 (885.98,2+)  </A>: Elution from: 22.09 to =
22.09   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1017><B>Query1017 (590.99,3+)  </A>: Elution from: 20.97 to =
20.97   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1018><B>Query1018 (590.99,3+)  </A>: Elution from: 16.61 to =
16.61   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1019><B>Query1019 (591.00,3+)  </A>: Elution from: 28.58 to =
28.58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1020><B>Query1020 (886.00,2+)  </A>: Elution from: 30.36 to =
30.36   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1021><B>Query1021 (886.47,2+)  </A>: Elution from: 22.19 to =
22.19   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1022><B>Query1022 (591.34,3+)  </A>: Elution from: 29.09 to =
29.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1023><B>Query1023 (591.36,3+)  </A>: Elution from: 16.27 to =
16.4   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery1024><B>Query1024 (591.67,3+)  </A>: Elution from: 17.44 to =
17.57   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery1025><B>Query1025 (592.01,3+)  </A>: Elution from: 14.47 to =
14.6   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery1026><B>Query1026 (593.14,3+)  </A>: Elution from: 65.57 to =
65.57   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)<=
/B>=0D
<A name=3DQuery1027><B>Query1027 (593.19,3+)  </A>: Elution from: 77.8 to 7=
7.8   period: 0   experiment: 2 cycles:  1  (Charge not auto determined)</B=
>=0D
<A name=3DQuery1028><B>Query1028 (593.66,3+)  </A>: Elution from: 66.2 to 6=
6.2   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1029><B>Query1029 (890.45,2+)  </A>: Elution from: 21.05 to =
21.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1030><B>Query1030 (594.02,3+)  </A>: Elution from: 93.44 to =
93.44   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1031><B>Query1031 (594.02,3+)  </A>: Elution from: 33.94 to =
33.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1032><B>Query1032 (594.02,3+)  </A>: Elution from: 96.95 to =
96.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1033><B>Query1033 (594.03,3+)  </A>: Elution from: 132.3 to =
132.3   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1034><B>Query1034 (594.03,3+)  </A>: Elution from: 74.63 to =
74.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1035><B>Query1035 (594.03,3+)  </A>: Elution from: 101.05 to=
 101.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1036><B>Query1036 (594.04,3+)  </A>: Elution from: 128.01 to=
 128.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1037><B>Query1037 (594.04,3+)  </A>: Elution from: 65.03 to =
65.03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1038><B>Query1038 (594.04,3+)  </A>: Elution from: 113.31 to=
 113.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1039><B>Query1039 (594.04,3+)  </A>: Elution from: 104.1 to =
104.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1040><B>Query1040 (594.04,3+)  </A>: Elution from: 116.5 to =
116.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1041><B>Query1041 (594.04,3+)  </A>: Elution from: 107.17 to=
 107.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1042><B>Query1042 (594.04,3+)  </A>: Elution from: 110.22 to=
 110.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1043><B>Query1043 (594.06,3+)  </A>: Elution from: 119.71 to=
 119.71   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1044><B>Query1044 (594.33,3+)  </A>: Elution from: 10.04 to =
10.04   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1045><B>Query1045 (594.35,3+)  </A>: Elution from: 23.14 to =
23.14   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1046><B>Query1046 (594.37,3+)  </A>: Elution from: 130.21 to=
 130.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1047><B>Query1047 (594.37,3+)  </A>: Elution from: 116.76 to=
 116.76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1048><B>Query1048 (594.37,3+)  </A>: Elution from: 110.55 to=
 110.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1049><B>Query1049 (594.37,3+)  </A>: Elution from: 101.3 to =
101.3   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1050><B>Query1050 (594.38,3+)  </A>: Elution from: 119.89 to=
 119.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1051><B>Query1051 (594.38,3+)  </A>: Elution from: 104.42 to=
 104.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1052><B>Query1052 (594.38,3+)  </A>: Elution from: 107.45 to=
 107.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1053><B>Query1053 (594.38,3+)  </A>: Elution from: 125.91 to=
 125.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1054><B>Query1054 (594.38,3+)  </A>: Elution from: 113.7 to =
113.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1055><B>Query1055 (594.69,3+)  </A>: Elution from: 115.75 to=
 115.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1056><B>Query1056 (594.71,3+)  </A>: Elution from: 108.2 to =
108.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1057><B>Query1057 (594.71,3+)  </A>: Elution from: 101.88 to=
 101.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1058><B>Query1058 (594.71,3+)  </A>: Elution from: 104.98 to=
 104.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1059><B>Query1059 (595.37,3+)  </A>: Elution from: 77.92 to =
77.92   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1060><B>Query1060 (596.69,3+)  </A>: Elution from: 22.73 to =
22.73   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1061><B>Query1061 (597.35,3+)  </A>: Elution from: 13.93 to =
13.93   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1062><B>Query1062 (896.01,2+)  </A>: Elution from: 19.27 to =
19.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1063><B>Query1063 (597.68,3+)  </A>: Elution from: 19.35 to =
19.35   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1064><B>Query1064 (896.01,2+)  </A>: Elution from: 27.79 to =
27.79   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1065><B>Query1065 (896.50,2+)  </A>: Elution from: 28.16 to =
28.16   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1066><B>Query1066 (598.01,3+)  </A>: Elution from: 19.45 to =
19.45   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1067><B>Query1067 (896.51,2+)  </A>: Elution from: 20.74 to =
20.74   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1068><B>Query1068 (598.67,3+)  </A>: Elution from: 72.69 to =
72.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1069><B>Query1069 (598.68,3+)  </A>: Elution from: 50.76 to =
50.76   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1070><B>Query1070 (598.98,3+)  </A>: Elution from: 24.64 to =
24.64   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1071><B>Query1071 (599.01,3+)  </A>: Elution from: 50.22 to =
50.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1072><B>Query1072 (599.02,3+)  </A>: Elution from: 72.61 to =
72.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1073><B>Query1073 (599.34,3+)  </A>: Elution from: 72.97 to =
72.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1074><B>Query1074 (599.35,3+)  </A>: Elution from: 40.88 to =
40.88   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1075><B>Query1075 (599.76,3+)  </A>: Elution from: 136.54 to=
 136.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1076><B>Query1076 (450.29,4+)  </A>: Elution from: 4.4 to 4.=
4   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1077><B>Query1077 (602.36,3+)  </A>: Elution from: 30.54 to =
30.54   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1078><B>Query1078 (602.37,3+)  </A>: Elution from: 44.33 to =
44.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1079><B>Query1079 (602.37,3+)  </A>: Elution from: 47.38 to =
47.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1080><B>Query1080 (602.70,3+)  </A>: Elution from: 45.02 to =
45.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1081><B>Query1081 (603.03,3+)  </A>: Elution from: 45.5 to 4=
5.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1082><B>Query1082 (603.70,3+)  </A>: Elution from: 54.09 to =
54.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1083><B>Query1083 (603.71,3+)  </A>: Elution from: 57.13 to =
57.13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1084><B>Query1084 (604.02,3+)  </A>: Elution from: 53.96 to =
53.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1085><B>Query1085 (604.04,3+)  </A>: Elution from: 57 to 57 =
  period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1086><B>Query1086 (604.38,3+)  </A>: Elution from: 55.38 to =
55.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1087><B>Query1087 (605.71,3+)  </A>: Elution from: 142.04 to=
 142.04   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1088><B>Query1088 (606.06,3+)  </A>: Elution from: 142.14 to=
 142.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1089><B>Query1089 (606.38,3+)  </A>: Elution from: 170.11 to=
 170.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1090><B>Query1090 (606.71,3+)  </A>: Elution from: 170.16 to=
 170.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1091><B>Query1091 (607.04,3+)  </A>: Elution from: 10.17 to =
10.17   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1092><B>Query1092 (607.05,3+)  </A>: Elution from: 170.24 to=
 170.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1093><B>Query1093 (607.32,3+)  </A>: Elution from: 56.27 to =
56.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1094><B>Query1094 (607.37,3+)  </A>: Elution from: 10.81 to =
10.81   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1095><B>Query1095 (609.00,3+)  </A>: Elution from: 35.11 to =
35.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1096><B>Query1096 (609.02,3+)  </A>: Elution from: 31.79 to =
31.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1097><B>Query1097 (609.02,3+)  </A>: Elution from: 24.77 to =
24.77   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1098><B>Query1098 (609.02,3+)  </A>: Elution from: 28.39 to =
28.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1099><B>Query1099 (609.03,3+)  </A>: Elution from: 15.99 to =
15.99   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1100><B>Query1100 (609.35,3+)  </A>: Elution from: 23.94 to =
23.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1101><B>Query1101 (609.36,3+)  </A>: Elution from: 11.61 to =
11.61   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1102><B>Query1102 (609.38,3+)  </A>: Elution from: 20.82 to =
20.82   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1103><B>Query1103 (609.65,3+)  </A>: Elution from: 32.26 to =
32.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1104><B>Query1104 (609.68,3+)  </A>: Elution from: 23.25 to =
23.25   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1105><B>Query1105 (609.85,3+)  </A>: Elution from: 34.41 to =
34.41   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)<=
/B>=0D
<A name=3DQuery1106><B>Query1106 (610.01,3+)  </A>: Elution from: 23.35 to =
23.35   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1107><B>Query1107 (610.37,3+)  </A>: Elution from: 35.89 to =
35.89   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1108><B>Query1108 (610.37,3+)  </A>: Elution from: 20.54 to =
20.54   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1109><B>Query1109 (610.37,3+)  </A>: Elution from: 23.74 to =
23.74   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1110><B>Query1110 (610.37,3+)  </A>: Elution from: 32.85 to =
32.85   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1111><B>Query1111 (610.38,3+)  </A>: Elution from: 26.73 to =
26.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1112><B>Query1112 (612.02,3+)  </A>: Elution from: 81.03 to =
81.03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1113><B>Query1113 (612.03,3+)  </A>: Elution from: 77.94 to =
77.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1114><B>Query1114 (612.35,3+)  </A>: Elution from: 81.25 to =
81.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1115><B>Query1115 (612.35,3+)  </A>: Elution from: 78.17 to =
78.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1116><B>Query1116 (612.69,3+)  </A>: Elution from: 78.97 to =
78.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1117><B>Query1117 (614.45,3+)  </A>: Elution from: 36.18 to =
36.18   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)<=
/B>=0D
<A name=3DQuery1118><B>Query1118 (615.36,3+)  </A>: Elution from: 30.44 to =
30.44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1119><B>Query1119 (615.37,3+)  </A>: Elution from: 39.07 to =
39.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1120><B>Query1120 (615.39,3+)  </A>: Elution from: 159.19 to=
 159.19   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1121><B>Query1121 (616.37,3+)  </A>: Elution from: 62.85 to =
62.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1122><B>Query1122 (924.53,2+)  </A>: Elution from: 36.54 to =
36.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1123><B>Query1123 (616.69,3+)  </A>: Elution from: 52.62 to =
52.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1124><B>Query1124 (924.54,2+)  </A>: Elution from: 54.71 to =
54.71   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1125><B>Query1125 (616.70,3+)  </A>: Elution from: 55.66 to =
55.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1126><B>Query1126 (616.71,3+)  </A>: Elution from: 39.39 to =
39.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1127><B>Query1127 (616.71,3+)  </A>: Elution from: 36.05 to =
36.05   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1128><B>Query1128 (616.71,3+)  </A>: Elution from: 62.61 to =
62.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1129><B>Query1129 (925.04,2+)  </A>: Elution from: 54.76 to =
54.76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1130><B>Query1130 (925.04,2+)  </A>: Elution from: 36.65 to =
36.65   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1131><B>Query1131 (617.03,3+)  </A>: Elution from: 36.07 to =
36.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1132><B>Query1132 (617.03,3+)  </A>: Elution from: 53.36 to =
53.36   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1133><B>Query1133 (617.04,3+)  </A>: Elution from: 63.26 to =
63.26   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1134><B>Query1134 (617.04,3+)  </A>: Elution from: 56.4 to 5=
6.4   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1135><B>Query1135 (617.04,3+)  </A>: Elution from: 39.2 to 3=
9.2   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1136><B>Query1136 (927.55,2+)  </A>: Elution from: 158.17 to=
 158.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1137><B>Query1137 (619.42,3+)  </A>: Elution from: 175.61 to=
 175.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1138><B>Query1138 (619.74,3+)  </A>: Elution from: 175.73 to=
 175.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1139><B>Query1139 (620.02,3+)  </A>: Elution from: 98.01 to =
98.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1140><B>Query1140 (620.36,3+)  </A>: Elution from: 98.1 to 9=
8.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1141><B>Query1141 (930.50,2+)  </A>: Elution from: 160.72 to=
 160.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1142><B>Query1142 (620.68,3+)  </A>: Elution from: 158.86 to=
 158.86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1143><B>Query1143 (620.68,3+)  </A>: Elution from: 161.91 to=
 161.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1144><B>Query1144 (620.70,3+)  </A>: Elution from: 98.43 to =
98.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1145><B>Query1145 (621.01,3+)  </A>: Elution from: 161.83 to=
 161.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1146><B>Query1146 (621.01,3+)  </A>: Elution from: 158.83 to=
 158.83   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1147><B>Query1147 (931.04,2+)  </A>: Elution from: 160.41 to=
 160.41   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1148><B>Query1148 (621.35,3+)  </A>: Elution from: 159.32 to=
 159.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1149><B>Query1149 (621.38,3+)  </A>: Elution from: 175.32 to=
 175.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1150><B>Query1150 (621.71,3+)  </A>: Elution from: 175.45 to=
 175.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1151><B>Query1151 (623.37,3+)  </A>: Elution from: 83.31 to =
83.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1152><B>Query1152 (623.70,3+)  </A>: Elution from: 81.9 to 8=
1.9   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1153><B>Query1153 (624.03,3+)  </A>: Elution from: 83.49 to =
83.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1154><B>Query1154 (935.55,2+)  </A>: Elution from: 32.62 to =
32.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1155><B>Query1155 (624.04,3+)  </A>: Elution from: 114.69 to=
 114.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1156><B>Query1156 (624.04,3+)  </A>: Elution from: 22.83 to =
22.83   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1157><B>Query1157 (935.56,2+)  </A>: Elution from: 116.03 to=
 116.03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1158><B>Query1158 (624.04,3+)  </A>: Elution from: 117.74 to=
 117.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1159><B>Query1159 (624.04,3+)  </A>: Elution from: 31.66 to =
31.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1160><B>Query1160 (936.05,2+)  </A>: Elution from: 116.08 to=
 116.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1161><B>Query1161 (936.05,2+)  </A>: Elution from: 32.72 to =
32.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1162><B>Query1162 (624.37,3+)  </A>: Elution from: 170.32 to=
 170.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1163><B>Query1163 (624.37,3+)  </A>: Elution from: 23.17 to =
23.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1164><B>Query1164 (624.37,3+)  </A>: Elution from: 31.94 to =
31.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1165><B>Query1165 (624.37,3+)  </A>: Elution from: 117.79 to=
 117.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1166><B>Query1166 (624.38,3+)  </A>: Elution from: 114.58 to=
 114.58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1167><B>Query1167 (624.69,3+)  </A>: Elution from: 48.95 to =
48.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1168><B>Query1168 (624.70,3+)  </A>: Elution from: 115.57 to=
 115.57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1169><B>Query1169 (624.70,3+)  </A>: Elution from: 61.33 to =
61.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1170><B>Query1170 (624.70,3+)  </A>: Elution from: 32.36 to =
32.36   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1171><B>Query1171 (624.70,3+)  </A>: Elution from: 58.27 to =
58.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1172><B>Query1172 (624.70,3+)  </A>: Elution from: 55.19 to =
55.19   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1173><B>Query1173 (624.71,3+)  </A>: Elution from: 170.37 to=
 170.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1174><B>Query1174 (624.71,3+)  </A>: Elution from: 52.14 to =
52.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1175><B>Query1175 (624.71,3+)  </A>: Elution from: 38.74 to =
38.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1176><B>Query1176 (625.03,3+)  </A>: Elution from: 38.81 to =
38.81   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1177><B>Query1177 (625.04,3+)  </A>: Elution from: 58.64 to =
58.64   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1178><B>Query1178 (625.04,3+)  </A>: Elution from: 52.43 to =
52.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1179><B>Query1179 (625.04,3+)  </A>: Elution from: 61.96 to =
61.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1180><B>Query1180 (625.04,3+)  </A>: Elution from: 170.62 to=
 170.62   period: 0   experiment: 1 cycles:  1  (Charge not auto determined=
)</B>=0D
<A name=3DQuery1181><B>Query1181 (625.04,3+)  </A>: Elution from: 49.26 to =
49.26   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1182><B>Query1182 (625.04,3+)  </A>: Elution from: 55.46 to =
55.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1183><B>Query1183 (625.37,3+)  </A>: Elution from: 144.47 to=
 144.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1184><B>Query1184 (625.72,3+)  </A>: Elution from: 144.64 to=
 144.64   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1185><B>Query1185 (628.04,3+)  </A>: Elution from: 96.57 to =
96.57   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1186><B>Query1186 (630.05,3+)  </A>: Elution from: 141.43 to=
 141.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1187><B>Query1187 (630.05,3+)  </A>: Elution from: 118.6 to =
118.6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1188><B>Query1188 (630.38,3+)  </A>: Elution from: 141.38 to=
 141.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1189><B>Query1189 (630.39,3+)  </A>: Elution from: 118.39 to=
 118.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1190><B>Query1190 (630.72,3+)  </A>: Elution from: 141.98 to=
 141.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1191><B>Query1191 (630.73,3+)  </A>: Elution from: 119.24 to=
 119.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1192><B>Query1192 (633.04,3+)  </A>: Elution from: 112.14 to=
 112.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1193><B>Query1193 (633.06,3+)  </A>: Elution from: 99.21 to =
99.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1194><B>Query1194 (633.37,3+)  </A>: Elution from: 111.71 to=
 111.71   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1195><B>Query1195 (633.71,3+)  </A>: Elution from: 112.64 to=
 112.64   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1196><B>Query1196 (633.71,3+)  </A>: Elution from: 149.18 to=
 149.18   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1197><B>Query1197 (634.04,3+)  </A>: Elution from: 149.02 to=
 149.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1198><B>Query1198 (635.71,3+)  </A>: Elution from: 30.31 to =
30.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1199><B>Query1199 (635.71,3+)  </A>: Elution from: 38 to 38 =
  period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1200><B>Query1200 (635.71,3+)  </A>: Elution from: 22.22 to =
22.22   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1201><B>Query1201 (635.71,3+)  </A>: Elution from: 33.52 to =
33.52   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1202><B>Query1202 (477.27,4+)  </A>: Elution from: 22.91 to =
22.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1203><B>Query1203 (636.04,3+)  </A>: Elution from: 29.97 to =
29.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1204><B>Query1204 (636.04,3+)  </A>: Elution from: 22.39 to =
22.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1205><B>Query1205 (636.04,3+)  </A>: Elution from: 33.11 to =
33.11   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1206><B>Query1206 (636.04,3+)  </A>: Elution from: 37.82 to =
37.82   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1207><B>Query1207 (636.05,3+)  </A>: Elution from: 26.06 to =
26.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1208><B>Query1208 (636.06,3+)  </A>: Elution from: 198.1 to =
198.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1209><B>Query1209 (636.37,3+)  </A>: Elution from: 38.79 to =
38.79   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1210><B>Query1210 (636.38,3+)  </A>: Elution from: 34.09 to =
34.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1211><B>Query1211 (636.38,3+)  </A>: Elution from: 198.15 to=
 198.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1212><B>Query1212 (636.39,3+)  </A>: Elution from: 30.93 to =
30.93   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1213><B>Query1213 (636.70,3+)  </A>: Elution from: 32.12 to =
32.12   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1214><B>Query1214 (477.79,4+)  </A>: Elution from: 34.67 to =
34.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1215><B>Query1215 (636.73,3+)  </A>: Elution from: 198.48 to=
 198.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1216><B>Query1216 (637.03,3+)  </A>: Elution from: 32.49 to =
32.49   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1217><B>Query1217 (638.05,3+)  </A>: Elution from: 117.72 to=
 117.72   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1218><B>Query1218 (638.35,3+)  </A>: Elution from: 18.42 to =
18.42   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1219><B>Query1219 (638.38,3+)  </A>: Elution from: 117.64 to=
 117.64   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1220><B>Query1220 (638.71,3+)  </A>: Elution from: 118.2 to =
118.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1221><B>Query1221 (639.70,3+)  </A>: Elution from: 22.47 to =
22.47   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1222><B>Query1222 (959.06,2+)  </A>: Elution from: 22.11 to =
22.11   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1223><B>Query1223 (640.04,3+)  </A>: Elution from: 22.32 to =
22.32   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1224><B>Query1224 (960.07,2+)  </A>: Elution from: 64.42 to =
64.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1225><B>Query1225 (640.38,3+)  </A>: Elution from: 56.22 to =
56.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1226><B>Query1226 (640.38,3+)  </A>: Elution from: 65.38 to =
65.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1227><B>Query1227 (640.38,3+)  </A>: Elution from: 46.32 to =
46.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1228><B>Query1228 (640.39,3+)  </A>: Elution from: 59.26 to =
59.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1229><B>Query1229 (640.39,3+)  </A>: Elution from: 68.42 to =
68.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1230><B>Query1230 (640.40,3+)  </A>: Elution from: 62.31 to =
62.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1231><B>Query1231 (960.52,2+)  </A>: Elution from: 14.32 to =
14.32   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1232><B>Query1232 (640.69,3+)  </A>: Elution from: 14.24 to =
14.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1233><B>Query1233 (960.57,2+)  </A>: Elution from: 64.29 to =
64.29   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1234><B>Query1234 (640.72,3+)  </A>: Elution from: 66.89 to =
66.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1235><B>Query1235 (640.72,3+)  </A>: Elution from: 59.97 to =
59.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1236><B>Query1236 (640.72,3+)  </A>: Elution from: 63.01 to =
63.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1237><B>Query1237 (640.72,3+)  </A>: Elution from: 69.97 to =
69.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1238><B>Query1238 (640.73,3+)  </A>: Elution from: 56.87 to =
56.87   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1239><B>Query1239 (641.02,3+)  </A>: Elution from: 14.37 to =
14.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1240><B>Query1240 (641.05,3+)  </A>: Elution from: 67.24 to =
67.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1241><B>Query1241 (641.05,3+)  </A>: Elution from: 62.69 to =
62.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1242><B>Query1242 (641.37,3+)  </A>: Elution from: 166.99 to=
 166.99   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1243><B>Query1243 (641.70,3+)  </A>: Elution from: 166.79 to=
 166.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1244><B>Query1244 (644.71,3+)  </A>: Elution from: 96.85 to =
96.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1245><B>Query1245 (645.05,3+)  </A>: Elution from: 96.67 to =
96.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1246><B>Query1246 (648.36,3+)  </A>: Elution from: 14.21 to =
14.34   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery1247><B>Query1247 (648.39,3+)  </A>: Elution from: 32.57 to =
32.57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1248><B>Query1248 (972.63,2+)  </A>: Elution from: 161.61 to=
 161.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1249><B>Query1249 (648.77,3+)  </A>: Elution from: 160.67 to=
 160.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1250><B>Query1250 (973.11,2+)  </A>: Elution from: 161.45 to=
 161.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1251><B>Query1251 (649.42,3+)  </A>: Elution from: 161.3 to =
161.3   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1252><B>Query1252 (649.69,3+)  </A>: Elution from: 23.43 to =
23.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1253><B>Query1253 (652.06,3+)  </A>: Elution from: 27.46 to =
27.46   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1254><B>Query1254 (977.59,2+)  </A>: Elution from: 19.65 to =
19.65   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1255><B>Query1255 (652.07,3+)  </A>: Elution from: 19.4 to 1=
9.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1256><B>Query1256 (652.40,3+)  </A>: Elution from: 27.51 to =
27.51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1257><B>Query1257 (652.41,3+)  </A>: Elution from: 21.75 to =
21.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1258><B>Query1258 (652.75,3+)  </A>: Elution from: 28.37 to =
28.37   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1259><B>Query1259 (653.08,3+)  </A>: Elution from: 20.69 to =
20.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1260><B>Query1260 (979.34,2+)  </A>: Elution from: 190.6 to =
190.6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1261><B>Query1261 (653.40,3+)  </A>: Elution from: 20.92 to =
20.92   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1262><B>Query1262 (653.70,3+)  </A>: Elution from: 126.67 to=
 126.67   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1263><B>Query1263 (654.05,3+)  </A>: Elution from: 30.12 to =
30.12   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1264><B>Query1264 (654.36,3+)  </A>: Elution from: 35.35 to =
35.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1265><B>Query1265 (654.36,3+)  </A>: Elution from: 15.19 to =
15.19   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1266><B>Query1266 (654.38,3+)  </A>: Elution from: 29.28 to =
29.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1267><B>Query1267 (654.39,3+)  </A>: Elution from: 22.89 to =
23.01   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery1268><B>Query1268 (654.40,3+)  </A>: Elution from: 44.12 to =
44.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1269><B>Query1269 (981.52,2+)  </A>: Elution from: 23.61 to =
23.61   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1270><B>Query1270 (654.69,3+)  </A>: Elution from: 36.23 to =
36.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1271><B>Query1271 (654.69,3+)  </A>: Elution from: 33.19 to =
33.19   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1272><B>Query1272 (654.69,3+)  </A>: Elution from: 23.56 to =
23.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1273><B>Query1273 (654.70,3+)  </A>: Elution from: 30.15 to =
30.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1274><B>Query1274 (654.76,3+)  </A>: Elution from: 151.38 to=
 151.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1275><B>Query1275 (655.02,3+)  </A>: Elution from: 31.87 to =
31.87   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1276><B>Query1276 (655.03,3+)  </A>: Elution from: 35 to 35 =
  period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1277><B>Query1277 (655.03,3+)  </A>: Elution from: 23.3 to 2=
3.3   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1278><B>Query1278 (655.72,3+)  </A>: Elution from: 74.35 to =
74.35   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1279><B>Query1279 (655.73,3+)  </A>: Elution from: 77.35 to =
77.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1280><B>Query1280 (656.07,3+)  </A>: Elution from: 77.15 to =
77.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1281><B>Query1281 (656.07,3+)  </A>: Elution from: 74.11 to =
74.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1282><B>Query1282 (657.42,3+)  </A>: Elution from: 24.28 to =
24.28   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1283><B>Query1283 (658.69,3+)  </A>: Elution from: 18.93 to =
18.93   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1284><B>Query1284 (658.71,3+)  </A>: Elution from: 13.21 to =
13.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1285><B>Query1285 (659.03,3+)  </A>: Elution from: 37.14 to =
37.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1286><B>Query1286 (659.10,3+)  </A>: Elution from: 42.01 to =
42.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1287><B>Query1287 (659.10,3+)  </A>: Elution from: 64.48 to =
64.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1288><B>Query1288 (659.37,3+)  </A>: Elution from: 37.09 to =
37.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1289><B>Query1289 (659.40,3+)  </A>: Elution from: 19.86 to =
19.86   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1290><B>Query1290 (659.43,3+)  </A>: Elution from: 64.68 to =
64.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1291><B>Query1291 (659.44,3+)  </A>: Elution from: 41.96 to =
41.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1292><B>Query1292 (659.69,3+)  </A>: Elution from: 37.74 to =
37.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1293><B>Query1293 (659.73,3+)  </A>: Elution from: 19.89 to =
20.02   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery1294><B>Query1294 (660.41,3+)  </A>: Elution from: 28.94 to =
28.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1295><B>Query1295 (661.38,3+)  </A>: Elution from: 24.02 to =
24.02   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1296><B>Query1296 (661.39,3+)  </A>: Elution from: 18.03 to =
18.03   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1297><B>Query1297 (662.70,3+)  </A>: Elution from: 79.16 to =
79.16   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1298><B>Query1298 (663.04,3+)  </A>: Elution from: 78.94 to =
78.94   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1299><B>Query1299 (663.39,3+)  </A>: Elution from: 153.83 to=
 153.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1300><B>Query1300 (663.41,3+)  </A>: Elution from: 139.93 to=
 139.93   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1301><B>Query1301 (663.72,3+)  </A>: Elution from: 154.4 to =
154.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1302><B>Query1302 (663.74,3+)  </A>: Elution from: 140.06 to=
 140.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1303><B>Query1303 (664.07,3+)  </A>: Elution from: 154.58 to=
 154.58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1304><B>Query1304 (664.09,3+)  </A>: Elution from: 140.54 to=
 140.54   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1305><B>Query1305 (666.06,3+)  </A>: Elution from: 149.83 to=
 149.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1306><B>Query1306 (998.58,2+)  </A>: Elution from: 149.7 to =
149.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1307><B>Query1307 (666.06,3+)  </A>: Elution from: 152.87 to=
 152.87   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1308><B>Query1308 (666.06,3+)  </A>: Elution from: 143.73 to=
 143.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1309><B>Query1309 (666.06,3+)  </A>: Elution from: 146.79 to=
 146.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1310><B>Query1310 (666.07,3+)  </A>: Elution from: 131.32 to=
 131.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1311><B>Query1311 (666.07,3+)  </A>: Elution from: 140.72 to=
 140.72   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1312><B>Query1312 (666.07,3+)  </A>: Elution from: 134.6 to =
134.6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1313><B>Query1313 (500.04,4+)  </A>: Elution from: 150.29 to=
 150.29   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1314><B>Query1314 (666.39,3+)  </A>: Elution from: 83.62 to =
83.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1315><B>Query1315 (666.39,3+)  </A>: Elution from: 154.63 to=
 154.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1316><B>Query1316 (666.39,3+)  </A>: Elution from: 131.17 to=
 131.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1317><B>Query1317 (666.39,3+)  </A>: Elution from: 143.91 to=
 143.91   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1318><B>Query1318 (999.09,2+)  </A>: Elution from: 149.88 to=
 149.88   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1319><B>Query1319 (666.39,3+)  </A>: Elution from: 151.59 to=
 151.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1320><B>Query1320 (666.40,3+)  </A>: Elution from: 140.64 to=
 140.64   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1321><B>Query1321 (666.40,3+)  </A>: Elution from: 134.2 to =
134.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1322><B>Query1322 (666.40,3+)  </A>: Elution from: 146.97 to=
 146.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1323><B>Query1323 (999.58,2+)  </A>: Elution from: 150.11 to=
 150.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1324><B>Query1324 (666.73,3+)  </A>: Elution from: 145.68 to=
 145.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1325><B>Query1325 (666.73,3+)  </A>: Elution from: 152.4 to =
152.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1326><B>Query1326 (666.73,3+)  </A>: Elution from: 142.09 to=
 142.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1327><B>Query1327 (666.73,3+)  </A>: Elution from: 133.09 to=
 133.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1328><B>Query1328 (668.40,3+)  </A>: Elution from: 141.86 to=
 141.86   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1329><B>Query1329 (668.72,3+)  </A>: Elution from: 141.7 to =
141.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1330><B>Query1330 (668.72,3+)  </A>: Elution from: 97.57 to =
97.57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1331><B>Query1331 (668.75,3+)  </A>: Elution from: 100.62 to=
 100.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1332><B>Query1332 (669.05,3+)  </A>: Elution from: 142.32 to=
 142.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1333><B>Query1333 (669.06,3+)  </A>: Elution from: 97.45 to =
97.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1334><B>Query1334 (669.06,3+)  </A>: Elution from: 100.49 to=
 100.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1335><B>Query1335 (669.40,3+)  </A>: Elution from: 98.48 to =
98.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1336><B>Query1336 (669.73,3+)  </A>: Elution from: 98.63 to =
98.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1337><B>Query1337 (671.43,3+)  </A>: Elution from: 84.25 to =
84.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1338><B>Query1338 (671.43,3+)  </A>: Elution from: 87.3 to 8=
7.3   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1339><B>Query1339 (671.76,3+)  </A>: Elution from: 84.64 to =
84.64   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1340><B>Query1340 (671.77,3+)  </A>: Elution from: 87.69 to =
87.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1341><B>Query1341 (672.10,3+)  </A>: Elution from: 85.67 to =
85.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1342><B>Query1342 (672.39,3+)  </A>: Elution from: 63.61 to =
63.61   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1343><B>Query1343 (673.09,3+)  </A>: Elution from: 121.34 to=
 121.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1344><B>Query1344 (673.41,3+)  </A>: Elution from: 87.14 to =
87.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1345><B>Query1345 (673.41,3+)  </A>: Elution from: 69.59 to =
69.59   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1346><B>Query1346 (673.41,3+)  </A>: Elution from: 120.92 to=
 120.92   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1347><B>Query1347 (673.41,3+)  </A>: Elution from: 66.58 to =
66.58   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1348><B>Query1348 (673.42,3+)  </A>: Elution from: 124.07 to=
 124.07   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1349><B>Query1349 (673.74,3+)  </A>: Elution from: 69.78 to =
69.78   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1350><B>Query1350 (673.75,3+)  </A>: Elution from: 66.61 to =
66.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1351><B>Query1351 (673.75,3+)  </A>: Elution from: 122.06 to=
 122.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1352><B>Query1352 (675.40,3+)  </A>: Elution from: 107.6 to =
107.6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1353><B>Query1353 (675.73,3+)  </A>: Elution from: 107.98 to=
 107.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1354><B>Query1354 (676.08,3+)  </A>: Elution from: 115.39 to=
 115.39   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1355><B>Query1355 (1013.82,2+) </A>: Elution from: 204.29 to=
 204.29   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1356><B>Query1356 (676.40,3+)  </A>: Elution from: 114.33 to=
 114.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1357><B>Query1357 (676.42,3+)  </A>: Elution from: 117.46 to=
 117.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1358><B>Query1358 (676.75,3+)  </A>: Elution from: 115.44 to=
 115.44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1359><B>Query1359 (676.87,3+)  </A>: Elution from: 44.17 to =
44.17   period: 0   experiment: 1 cycles:  1  (Charge not auto determined)<=
/B>=0D
<A name=3DQuery1360><B>Query1360 (677.38,3+)  </A>: Elution from: 48 to 48 =
  period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1361><B>Query1361 (677.38,3+)  </A>: Elution from: 57.19 to =
57.19   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1362><B>Query1362 (678.40,3+)  </A>: Elution from: 35.5 to 3=
5.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1363><B>Query1363 (678.43,3+)  </A>: Elution from: 129.7 to =
129.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1364><B>Query1364 (678.74,3+)  </A>: Elution from: 38.87 to =
38.87   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1365><B>Query1365 (678.77,3+)  </A>: Elution from: 35.81 to =
35.81   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1366><B>Query1366 (679.07,3+)  </A>: Elution from: 52.81 to =
52.81   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1367><B>Query1367 (679.07,3+)  </A>: Elution from: 35.94 to =
35.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1368><B>Query1368 (679.08,3+)  </A>: Elution from: 31.61 to =
31.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1369><B>Query1369 (679.08,3+)  </A>: Elution from: 49.77 to =
49.77   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1370><B>Query1370 (679.08,3+)  </A>: Elution from: 39 to 39 =
  period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1371><B>Query1371 (679.39,3+)  </A>: Elution from: 44.07 to =
44.07   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1372><B>Query1372 (679.40,3+)  </A>: Elution from: 50.7 to 5=
0.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1373><B>Query1373 (679.41,3+)  </A>: Elution from: 39.63 to =
39.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1374><B>Query1374 (680.73,3+)  </A>: Elution from: 7.75 to 7=
.75   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1375><B>Query1375 (681.07,3+)  </A>: Elution from: 7.8 to 7.=
8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1376><B>Query1376 (681.40,3+)  </A>: Elution from: 11.07 to =
11.07   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1377><B>Query1377 (683.71,3+)  </A>: Elution from: 102.48 to=
 102.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1378><B>Query1378 (683.71,3+)  </A>: Elution from: 105.53 to=
 105.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1379><B>Query1379 (683.71,3+)  </A>: Elution from: 80.34 to =
80.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1380><B>Query1380 (684.04,3+)  </A>: Elution from: 102.66 to=
 102.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1381><B>Query1381 (684.04,3+)  </A>: Elution from: 80.22 to =
80.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1382><B>Query1382 (684.04,3+)  </A>: Elution from: 105.71 to=
 105.71   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1383><B>Query1383 (684.38,3+)  </A>: Elution from: 102.79 to=
 102.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1384><B>Query1384 (684.38,3+)  </A>: Elution from: 105.99 to=
 105.99   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1385><B>Query1385 (684.38,3+)  </A>: Elution from: 80.57 to =
80.57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1386><B>Query1386 (684.73,3+)  </A>: Elution from: 102.84 to=
 102.84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1387><B>Query1387 (684.74,3+)  </A>: Elution from: 127.26 to=
 127.26   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1388><B>Query1388 (685.06,3+)  </A>: Elution from: 126.22 to=
 126.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1389><B>Query1389 (685.06,3+)  </A>: Elution from: 102.61 to=
 102.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1390><B>Query1390 (685.07,3+)  </A>: Elution from: 129.37 to=
 129.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1391><B>Query1391 (685.40,3+)  </A>: Elution from: 103.1 to =
103.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1392><B>Query1392 (685.41,3+)  </A>: Elution from: 126.46 to=
 126.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1393><B>Query1393 (685.74,3+)  </A>: Elution from: 127.91 to=
 127.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1394><B>Query1394 (686.73,3+)  </A>: Elution from: 176.21 to=
 176.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1395><B>Query1395 (687.08,3+)  </A>: Elution from: 175.96 to=
 175.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1396><B>Query1396 (689.43,3+)  </A>: Elution from: 147.2 to =
147.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1397><B>Query1397 (695.09,3+)  </A>: Elution from: 132.05 to=
 132.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1398><B>Query1398 (695.43,3+)  </A>: Elution from: 131.87 to=
 131.87   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1399><B>Query1399 (696.42,3+)  </A>: Elution from: 129.75 to=
 129.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1400><B>Query1400 (696.42,3+)  </A>: Elution from: 126.72 to=
 126.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1401><B>Query1401 (696.44,3+)  </A>: Elution from: 105.63 to=
 105.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1402><B>Query1402 (696.75,3+)  </A>: Elution from: 129.44 to=
 129.44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1403><B>Query1403 (696.75,3+)  </A>: Elution from: 94.7 to 9=
4.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1404><B>Query1404 (696.75,3+)  </A>: Elution from: 126.27 to=
 126.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1405><B>Query1405 (696.75,3+)  </A>: Elution from: 103.36 to=
 103.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1406><B>Query1406 (696.75,3+)  </A>: Elution from: 97.75 to =
97.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1407><B>Query1407 (697.05,3+)  </A>: Elution from: 12 to 12 =
  period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1408><B>Query1408 (523.05,4+)  </A>: Elution from: 95.84 to =
95.84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1409><B>Query1409 (697.08,3+)  </A>: Elution from: 127.86 to=
 127.86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1410><B>Query1410 (697.08,3+)  </A>: Elution from: 102.38 to=
 102.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1411><B>Query1411 (697.09,3+)  </A>: Elution from: 97.7 to 9=
7.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1412><B>Query1412 (697.09,3+)  </A>: Elution from: 94.6 to 9=
4.6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1413><B>Query1413 (697.42,3+)  </A>: Elution from: 97.63 to =
97.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1414><B>Query1414 (697.72,3+)  </A>: Elution from: 77.89 to =
77.89   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1415><B>Query1415 (697.72,3+)  </A>: Elution from: 61.2 to 6=
1.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1416><B>Query1416 (697.72,3+)  </A>: Elution from: 80.88 to =
80.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1417><B>Query1417 (697.73,3+)  </A>: Elution from: 58.16 to =
58.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1418><B>Query1418 (698.05,3+)  </A>: Elution from: 77.54 to =
77.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1419><B>Query1419 (698.06,3+)  </A>: Elution from: 58.21 to =
58.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1420><B>Query1420 (698.06,3+)  </A>: Elution from: 61.25 to =
61.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1421><B>Query1421 (698.06,3+)  </A>: Elution from: 80.63 to =
80.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1422><B>Query1422 (698.39,3+)  </A>: Elution from: 81.53 to =
81.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1423><B>Query1423 (698.39,3+)  </A>: Elution from: 59.31 to =
59.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1424><B>Query1424 (1049.54,2+) </A>: Elution from: 158.12 to=
 158.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1425><B>Query1425 (702.08,3+)  </A>: Elution from: 22.52 to =
22.52   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1426><B>Query1426 (702.41,3+)  </A>: Elution from: 131.9 to =
131.9   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1427><B>Query1427 (702.75,3+)  </A>: Elution from: 131.74 to=
 131.74   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1428><B>Query1428 (703.10,3+)  </A>: Elution from: 131.67 to=
 131.67   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1429><B>Query1429 (703.10,3+)  </A>: Elution from: 79.02 to =
79.02   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1430><B>Query1430 (703.43,3+)  </A>: Elution from: 78.84 to =
78.84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1431><B>Query1431 (703.74,3+)  </A>: Elution from: 182.57 to=
 182.57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1432><B>Query1432 (703.76,3+)  </A>: Elution from: 80.71 to =
80.71   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1433><B>Query1433 (1055.43,2+) </A>: Elution from: 23.48 to =
23.48   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1434><B>Query1434 (1055.43,2+) </A>: Elution from: 20.38 to =
20.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1435><B>Query1435 (704.08,3+)  </A>: Elution from: 79.66 to =
79.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1436><B>Query1436 (704.40,3+)  </A>: Elution from: 13.06 to =
13.06   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1437><B>Query1437 (704.74,3+)  </A>: Elution from: 175.78 to=
 175.78   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1438><B>Query1438 (1056.62,2+) </A>: Elution from: 176.62 to=
 176.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1439><B>Query1439 (704.76,3+)  </A>: Elution from: 178.78 to=
 178.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1440><B>Query1440 (705.07,3+)  </A>: Elution from: 178.58 to=
 178.58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1441><B>Query1441 (1057.11,2+) </A>: Elution from: 176.67 to=
 176.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1442><B>Query1442 (705.08,3+)  </A>: Elution from: 175.55 to=
 175.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1443><B>Query1443 (705.40,3+)  </A>: Elution from: 21.93 to =
21.93   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1444><B>Query1444 (705.42,3+)  </A>: Elution from: 175.86 to=
 175.86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1445><B>Query1445 (706.08,3+)  </A>: Elution from: 23.12 to =
23.12   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1446><B>Query1446 (706.41,3+)  </A>: Elution from: 138.87 to=
 138.87   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1447><B>Query1447 (706.74,3+)  </A>: Elution from: 163.81 to=
 163.81   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1448><B>Query1448 (707.09,3+)  </A>: Elution from: 163.74 to=
 163.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1449><B>Query1449 (707.41,3+)  </A>: Elution from: 164.01 to=
 164.01   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1450><B>Query1450 (707.74,3+)  </A>: Elution from: 164.45 to=
 164.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1451><B>Query1451 (709.40,3+)  </A>: Elution from: 69.75 to =
69.75   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1452><B>Query1452 (709.41,3+)  </A>: Elution from: 47.73 to =
47.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1453><B>Query1453 (709.74,3+)  </A>: Elution from: 47.81 to =
47.81   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1454><B>Query1454 (710.07,3+)  </A>: Elution from: 48.07 to =
48.07   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1455><B>Query1455 (710.08,3+)  </A>: Elution from: 85.87 to =
85.87   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1456><B>Query1456 (710.41,3+)  </A>: Elution from: 84.53 to =
84.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1457><B>Query1457 (710.44,3+)  </A>: Elution from: 98.84 to =
98.84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1458><B>Query1458 (710.79,3+)  </A>: Elution from: 98.79 to =
98.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1459><B>Query1459 (714.76,3+)  </A>: Elution from: 16.82 to =
16.82   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1460><B>Query1460 (715.09,3+)  </A>: Elution from: 17.9 to 1=
7.9   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1461><B>Query1461 (715.45,3+)  </A>: Elution from: 109.74 to=
 109.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1462><B>Query1462 (715.46,3+)  </A>: Elution from: 76.16 to =
76.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1463><B>Query1463 (715.75,3+)  </A>: Elution from: 47.86 to =
47.86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1464><B>Query1464 (715.75,3+)  </A>: Elution from: 65.79 to =
65.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1465><B>Query1465 (716.07,3+)  </A>: Elution from: 48.02 to =
48.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1466><B>Query1466 (716.10,3+)  </A>: Elution from: 65.98 to =
65.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1467><B>Query1467 (716.41,3+)  </A>: Elution from: 48.23 to =
48.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1468><B>Query1468 (716.43,3+)  </A>: Elution from: 66.76 to =
66.76   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1469><B>Query1469 (716.72,3+)  </A>: Elution from: 119.48 to=
 119.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1470><B>Query1470 (717.06,3+)  </A>: Elution from: 119.56 to=
 119.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1471><B>Query1471 (718.43,3+)  </A>: Elution from: 89.42 to =
89.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1472><B>Query1472 (719.44,3+)  </A>: Elution from: 196.04 to=
 196.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1473><B>Query1473 (719.76,3+)  </A>: Elution from: 196.02 to=
 196.02   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1474><B>Query1474 (720.11,3+)  </A>: Elution from: 161.58 to=
 161.58   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1475><B>Query1475 (720.11,3+)  </A>: Elution from: 196.24 to=
 196.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1476><B>Query1476 (725.42,3+)  </A>: Elution from: 143.22 to=
 143.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1477><B>Query1477 (725.74,3+)  </A>: Elution from: 143.17 to=
 143.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1478><B>Query1478 (726.10,3+)  </A>: Elution from: 143.48 to=
 143.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1479><B>Query1479 (727.43,3+)  </A>: Elution from: 117.95 to=
 117.95   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1480><B>Query1480 (727.44,3+)  </A>: Elution from: 127.13 to=
 127.13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1481><B>Query1481 (727.77,3+)  </A>: Elution from: 124.15 to=
 124.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1482><B>Query1482 (727.77,3+)  </A>: Elution from: 127.18 to=
 127.18   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1483><B>Query1483 (727.78,3+)  </A>: Elution from: 118.27 to=
 118.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1484><B>Query1484 (728.10,3+)  </A>: Elution from: 118.57 to=
 118.57   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1485><B>Query1485 (728.11,3+)  </A>: Elution from: 124.72 to=
 124.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1486><B>Query1486 (731.43,3+)  </A>: Elution from: 96.72 to =
96.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1487><B>Query1487 (732.07,3+)  </A>: Elution from: 18.29 to =
18.29   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1488><B>Query1488 (733.10,3+)  </A>: Elution from: 105.81 to=
 105.81   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1489><B>Query1489 (733.44,3+)  </A>: Elution from: 106.36 to=
 106.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1490><B>Query1490 (733.76,3+)  </A>: Elution from: 116.37 to=
 116.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1491><B>Query1491 (733.76,3+)  </A>: Elution from: 155.99 to=
 155.99   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1492><B>Query1492 (733.76,3+)  </A>: Elution from: 162.11 to=
 162.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1493><B>Query1493 (733.76,3+)  </A>: Elution from: 113.37 to=
 113.37   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1494><B>Query1494 (733.76,3+)  </A>: Elution from: 159.04 to=
 159.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1495><B>Query1495 (733.76,3+)  </A>: Elution from: 119.4 to =
119.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1496><B>Query1496 (733.76,3+)  </A>: Elution from: 105.58 to=
 105.58   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1497><B>Query1497 (733.76,3+)  </A>: Elution from: 152.95 to=
 152.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1498><B>Query1498 (733.76,3+)  </A>: Elution from: 149.91 to=
 149.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1499><B>Query1499 (733.76,3+)  </A>: Elution from: 131.59 to=
 131.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1500><B>Query1500 (733.76,3+)  </A>: Elution from: 146.84 to=
 146.84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1501><B>Query1501 (733.76,3+)  </A>: Elution from: 143.78 to=
 143.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1502><B>Query1502 (733.76,3+)  </A>: Elution from: 125.48 to=
 125.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1503><B>Query1503 (733.77,3+)  </A>: Elution from: 110.02 to=
 110.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1504><B>Query1504 (733.77,3+)  </A>: Elution from: 134.65 to=
 134.65   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1505><B>Query1505 (733.77,3+)  </A>: Elution from: 137.68 to=
 137.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1506><B>Query1506 (733.77,3+)  </A>: Elution from: 140.74 to=
 140.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1507><B>Query1507 (733.77,3+)  </A>: Elution from: 128.56 to=
 128.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1508><B>Query1508 (733.78,3+)  </A>: Elution from: 122.45 to=
 122.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1509><B>Query1509 (734.08,3+)  </A>: Elution from: 167.06 to=
 167.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1510><B>Query1510 (550.81,4+)  </A>: Elution from: 139.8 to =
139.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1511><B>Query1511 (550.81,4+)  </A>: Elution from: 142.89 to=
 142.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1512><B>Query1512 (550.82,4+)  </A>: Elution from: 153.78 to=
 153.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1513><B>Query1513 (550.82,4+)  </A>: Elution from: 133.19 to=
 133.19   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1514><B>Query1514 (550.82,4+)  </A>: Elution from: 129.27 to=
 129.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1515><B>Query1515 (550.82,4+)  </A>: Elution from: 150.47 to=
 150.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1516><B>Query1516 (550.82,4+)  </A>: Elution from: 145.98 to=
 145.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1517><B>Query1517 (550.82,4+)  </A>: Elution from: 125.21 to=
 125.21   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1518><B>Query1518 (734.09,3+)  </A>: Elution from: 163.96 to=
 163.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1519><B>Query1519 (734.09,3+)  </A>: Elution from: 174.28 to=
 174.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1520><B>Query1520 (734.09,3+)  </A>: Elution from: 142.44 to=
 142.44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1521><B>Query1521 (734.10,3+)  </A>: Elution from: 118.15 to=
 118.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1522><B>Query1522 (734.10,3+)  </A>: Elution from: 160.94 to=
 160.94   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1523><B>Query1523 (734.10,3+)  </A>: Elution from: 157.84 to=
 157.84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1524><B>Query1524 (734.10,3+)  </A>: Elution from: 139.4 to =
139.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1525><B>Query1525 (734.10,3+)  </A>: Elution from: 102.89 to=
 102.89   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1526><B>Query1526 (734.10,3+)  </A>: Elution from: 145.48 to=
 145.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1527><B>Query1527 (734.10,3+)  </A>: Elution from: 151.68 to=
 151.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1528><B>Query1528 (734.10,3+)  </A>: Elution from: 127.28 to=
 127.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1529><B>Query1529 (734.10,3+)  </A>: Elution from: 154.8 to =
154.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1530><B>Query1530 (734.10,3+)  </A>: Elution from: 124.23 to=
 124.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1531><B>Query1531 (734.10,3+)  </A>: Elution from: 136.37 to=
 136.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1532><B>Query1532 (734.10,3+)  </A>: Elution from: 133.34 to=
 133.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1533><B>Query1533 (734.10,3+)  </A>: Elution from: 121.2 to =
121.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1534><B>Query1534 (734.10,3+)  </A>: Elution from: 148.59 to=
 148.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1535><B>Query1535 (734.10,3+)  </A>: Elution from: 130.31 to=
 130.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1536><B>Query1536 (550.83,4+)  </A>: Elution from: 156.93 to=
 156.93   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1537><B>Query1537 (550.83,4+)  </A>: Elution from: 136.72 to=
 136.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1538><B>Query1538 (734.10,3+)  </A>: Elution from: 115.12 to=
 115.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1539><B>Query1539 (734.10,3+)  </A>: Elution from: 108.94 to=
 108.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1540><B>Query1540 (734.11,3+)  </A>: Elution from: 105.89 to=
 105.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1541><B>Query1541 (734.42,3+)  </A>: Elution from: 133.24 to=
 133.24   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1542><B>Query1542 (734.43,3+)  </A>: Elution from: 158.02 to=
 158.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1543><B>Query1543 (734.43,3+)  </A>: Elution from: 125.26 to=
 125.26   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1544><B>Query1544 (734.43,3+)  </A>: Elution from: 154.95 to=
 154.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1545><B>Query1545 (734.44,3+)  </A>: Elution from: 138.56 to=
 138.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1546><B>Query1546 (551.08,4+)  </A>: Elution from: 140.56 to=
 140.56   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1547><B>Query1547 (551.08,4+)  </A>: Elution from: 150.67 to=
 150.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1548><B>Query1548 (734.46,3+)  </A>: Elution from: 129.62 to=
 129.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1549><B>Query1549 (735.45,3+)  </A>: Elution from: 156.07 to=
 156.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1550><B>Query1550 (735.77,3+)  </A>: Elution from: 156.14 to=
 156.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1551><B>Query1551 (736.10,3+)  </A>: Elution from: 156.63 to=
 156.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1552><B>Query1552 (736.43,3+)  </A>: Elution from: 143.96 to=
 143.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1553><B>Query1553 (736.43,3+)  </A>: Elution from: 150.16 to=
 150.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1554><B>Query1554 (736.43,3+)  </A>: Elution from: 153.2 to =
153.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1555><B>Query1555 (736.44,3+)  </A>: Elution from: 140.89 to=
 140.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1556><B>Query1556 (736.44,3+)  </A>: Elution from: 156.24 to=
 156.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1557><B>Query1557 (736.45,3+)  </A>: Elution from: 147.13 to=
 147.13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1558><B>Query1558 (736.77,3+)  </A>: Elution from: 157.16 to=
 157.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1559><B>Query1559 (736.77,3+)  </A>: Elution from: 150.39 to=
 150.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1560><B>Query1560 (736.77,3+)  </A>: Elution from: 144.26 to=
 144.26   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1561><B>Query1561 (736.77,3+)  </A>: Elution from: 147.36 to=
 147.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1562><B>Query1562 (736.77,3+)  </A>: Elution from: 153.46 to=
 153.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1563><B>Query1563 (736.77,3+)  </A>: Elution from: 141.05 to=
 141.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1564><B>Query1564 (737.11,3+)  </A>: Elution from: 149.28 to=
 149.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1565><B>Query1565 (737.11,3+)  </A>: Elution from: 157.26 to=
 157.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1566><B>Query1566 (737.11,3+)  </A>: Elution from: 140.97 to=
 140.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1567><B>Query1567 (737.76,3+)  </A>: Elution from: 24.46 to =
24.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1568><B>Query1568 (737.77,3+)  </A>: Elution from: 36 to 36 =
  period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1569><B>Query1569 (738.10,3+)  </A>: Elution from: 36.12 to =
36.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1570><B>Query1570 (738.10,3+)  </A>: Elution from: 24.9 to 2=
4.9   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1571><B>Query1571 (738.46,3+)  </A>: Elution from: 31.03 to =
31.03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1572><B>Query1572 (738.78,3+)  </A>: Elution from: 25 to 25 =
  period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1573><B>Query1573 (739.08,3+)  </A>: Elution from: 42.3 to 4=
2.3   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1574><B>Query1574 (739.09,3+)  </A>: Elution from: 32.8 to 3=
2.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1575><B>Query1575 (739.09,3+)  </A>: Elution from: 35.84 to =
35.84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1576><B>Query1576 (739.09,3+)  </A>: Elution from: 26.78 to =
26.78   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1577><B>Query1577 (739.09,3+)  </A>: Elution from: 38.94 to =
38.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1578><B>Query1578 (739.09,3+)  </A>: Elution from: 29.82 to =
29.82   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1579><B>Query1579 (739.09,3+)  </A>: Elution from: 23.69 to =
23.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1580><B>Query1580 (739.42,3+)  </A>: Elution from: 42.83 to =
42.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1581><B>Query1581 (739.42,3+)  </A>: Elution from: 36.31 to =
36.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1582><B>Query1582 (739.42,3+)  </A>: Elution from: 26.91 to =
26.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1583><B>Query1583 (739.42,3+)  </A>: Elution from: 33.06 to =
33.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1584><B>Query1584 (739.42,3+)  </A>: Elution from: 39.45 to =
39.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1585><B>Query1585 (739.42,3+)  </A>: Elution from: 30.02 to =
30.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1586><B>Query1586 (739.43,3+)  </A>: Elution from: 23.81 to =
23.81   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1587><B>Query1587 (739.76,3+)  </A>: Elution from: 33.57 to =
33.57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1588><B>Query1588 (739.76,3+)  </A>: Elution from: 37.64 to =
37.64   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1589><B>Query1589 (739.76,3+)  </A>: Elution from: 25.29 to =
25.29   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1590><B>Query1590 (740.09,3+)  </A>: Elution from: 32.44 to =
32.44   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1591><B>Query1591 (740.09,3+)  </A>: Elution from: 24.85 to =
24.85   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1592><B>Query1592 (740.09,3+)  </A>: Elution from: 37.22 to =
37.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1593><B>Query1593 (740.43,3+)  </A>: Elution from: 34.82 to =
34.82   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1594><B>Query1594 (741.13,3+)  </A>: Elution from: 122 to 12=
2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1595><B>Query1595 (741.43,3+)  </A>: Elution from: 109.69 to=
 109.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1596><B>Query1596 (741.76,3+)  </A>: Elution from: 106.67 to=
 106.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1597><B>Query1597 (741.76,3+)  </A>: Elution from: 110.1 to =
110.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1598><B>Query1598 (746.41,3+)  </A>: Elution from: 35.45 to =
35.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1599><B>Query1599 (746.75,3+)  </A>: Elution from: 35.63 to =
35.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1600><B>Query1600 (749.09,3+)  </A>: Elution from: 13.57 to =
13.7   period: 0   experiment: 4 cycles:  2  </B>=0D
<A name=3DQuery1601><B>Query1601 (749.43,3+)  </A>: Elution from: 161.96 to=
 161.96   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1602><B>Query1602 (749.45,3+)  </A>: Elution from: 158.78 to=
 158.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1603><B>Query1603 (749.78,3+)  </A>: Elution from: 158.91 to=
 158.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1604><B>Query1604 (752.45,3+)  </A>: Elution from: 14.11 to =
14.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1605><B>Query1605 (754.11,3+)  </A>: Elution from: 132.58 to=
 132.58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1606><B>Query1606 (754.11,3+)  </A>: Elution from: 96.31 to =
96.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1607><B>Query1607 (754.12,3+)  </A>: Elution from: 93.26 to =
93.26   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1608><B>Query1608 (754.44,3+)  </A>: Elution from: 132.52 to=
 132.52   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1609><B>Query1609 (754.44,3+)  </A>: Elution from: 99.04 to =
99.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1610><B>Query1610 (754.45,3+)  </A>: Elution from: 95.99 to =
95.99   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1611><B>Query1611 (754.77,3+)  </A>: Elution from: 133.54 to=
 133.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1612><B>Query1612 (756.42,3+)  </A>: Elution from: 15.48 to =
15.48   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1613><B>Query1613 (756.47,3+)  </A>: Elution from: 163.23 to=
 163.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1614><B>Query1614 (567.81,4+)  </A>: Elution from: 15.71 to =
15.71   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1615><B>Query1615 (756.75,3+)  </A>: Elution from: 15.66 to =
15.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1616><B>Query1616 (756.80,3+)  </A>: Elution from: 163.15 to=
 163.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1617><B>Query1617 (757.43,3+)  </A>: Elution from: 16.66 to =
16.66   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1618><B>Query1618 (758.11,3+)  </A>: Elution from: 16.17 to =
16.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1619><B>Query1619 (758.43,3+)  </A>: Elution from: 27.43 to =
27.43   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1620><B>Query1620 (759.77,3+)  </A>: Elution from: 36.78 to =
36.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1621><B>Query1621 (760.11,3+)  </A>: Elution from: 36.73 to =
36.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1622><B>Query1622 (761.13,3+)  </A>: Elution from: 91.45 to =
91.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1623><B>Query1623 (761.14,3+)  </A>: Elution from: 88.42 to =
88.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1624><B>Query1624 (761.15,3+)  </A>: Elution from: 68.18 to =
68.18   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1625><B>Query1625 (761.46,3+)  </A>: Elution from: 88.65 to =
88.65   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1626><B>Query1626 (761.47,3+)  </A>: Elution from: 68.07 to =
68.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1627><B>Query1627 (761.47,3+)  </A>: Elution from: 91.78 to =
91.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1628><B>Query1628 (763.00,3+)  </A>: Elution from: 22.5 to 2=
2.5   period: 0   experiment: 4 cycles:  1  (Charge not auto determined)</B=
>=0D
<A name=3DQuery1629><B>Query1629 (764.41,3+)  </A>: Elution from: 73.05 to =
73.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1630><B>Query1630 (764.42,3+)  </A>: Elution from: 79.3 to 7=
9.3   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1631><B>Query1631 (764.42,3+)  </A>: Elution from: 69.61 to =
69.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1632><B>Query1632 (764.43,3+)  </A>: Elution from: 76.1 to 7=
6.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1633><B>Query1633 (764.49,3+)  </A>: Elution from: 126.56 to=
 126.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1634><B>Query1634 (764.75,3+)  </A>: Elution from: 72.75 to =
72.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1635><B>Query1635 (764.75,3+)  </A>: Elution from: 69.69 to =
69.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1636><B>Query1636 (764.75,3+)  </A>: Elution from: 78.91 to =
78.91   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1637><B>Query1637 (764.76,3+)  </A>: Elution from: 75.8 to 7=
5.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1638><B>Query1638 (765.09,3+)  </A>: Elution from: 73.77 to =
73.77   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1639><B>Query1639 (575.12,4+)  </A>: Elution from: 46.78 to =
46.78   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1640><B>Query1640 (768.16,3+)  </A>: Elution from: 138.24 to=
 138.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1641><B>Query1641 (576.59,4+)  </A>: Elution from: 138.14 to=
 138.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1642><B>Query1642 (768.47,3+)  </A>: Elution from: 138.06 to=
 138.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1643><B>Query1643 (770.11,3+)  </A>: Elution from: 91.89 to =
91.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1644><B>Query1644 (770.14,3+)  </A>: Elution from: 126.51 to=
 126.51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1645><B>Query1645 (770.47,3+)  </A>: Elution from: 107.27 to=
 107.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1646><B>Query1646 (770.48,3+)  </A>: Elution from: 126.62 to=
 126.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1647><B>Query1647 (770.78,3+)  </A>: Elution from: 107.4 to =
107.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1648><B>Query1648 (770.81,3+)  </A>: Elution from: 127.23 to=
 127.23   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1649><B>Query1649 (771.12,3+)  </A>: Elution from: 107.93 to=
 107.93   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1650><B>Query1650 (773.82,3+)  </A>: Elution from: 156.45 to=
 156.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1651><B>Query1651 (774.14,3+)  </A>: Elution from: 156.55 to=
 156.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1652><B>Query1652 (778.41,3+)  </A>: Elution from: 26.83 to =
26.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1653><B>Query1653 (778.75,3+)  </A>: Elution from: 27.18 to =
27.18   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1654><B>Query1654 (780.10,3+)  </A>: Elution from: 148.74 to=
 148.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1655><B>Query1655 (780.46,3+)  </A>: Elution from: 149.13 to=
 149.13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1656><B>Query1656 (781.86,3+)  </A>: Elution from: 187.78 to=
 187.78   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1657><B>Query1657 (784.50,3+)  </A>: Elution from: 186.79 to=
 186.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1658><B>Query1658 (784.83,3+)  </A>: Elution from: 186.61 to=
 186.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1659><B>Query1659 (789.80,3+)  </A>: Elution from: 157.94 to=
 157.94   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1660><B>Query1660 (789.83,3+)  </A>: Elution from: 144.59 to=
 144.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1661><B>Query1661 (790.13,3+)  </A>: Elution from: 157.67 to=
 157.67   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1662><B>Query1662 (790.17,3+)  </A>: Elution from: 144.54 to=
 144.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1663><B>Query1663 (790.48,3+)  </A>: Elution from: 64.95 to =
64.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1664><B>Query1664 (790.81,3+)  </A>: Elution from: 64.78 to =
64.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1665><B>Query1665 (791.14,3+)  </A>: Elution from: 65.62 to =
65.62   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1666><B>Query1666 (795.06,3+)  </A>: Elution from: 154.35 to=
 154.35   period: 0   experiment: 1 cycles:  1  (Charge not auto determined=
)</B>=0D
<A name=3DQuery1667><B>Query1667 (795.34,3+)  </A>: Elution from: 157.92 to=
 157.92   period: 0   experiment: 3 cycles:  1  (Charge not auto determined=
)</B>=0D
<A name=3DQuery1668><B>Query1668 (795.34,3+)  </A>: Elution from: 154.75 to=
 154.75   period: 0   experiment: 1 cycles:  1  (Charge not auto determined=
)</B>=0D
<A name=3DQuery1669><B>Query1669 (795.63,3+)  </A>: Elution from: 158.61 to=
 158.61   period: 0   experiment: 1 cycles:  1  (Charge not auto determined=
)</B>=0D
<A name=3DQuery1670><B>Query1670 (795.79,3+)  </A>: Elution from: 154.27 to=
 154.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1671><B>Query1671 (795.81,3+)  </A>: Elution from: 146.92 to=
 146.92   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1672><B>Query1672 (795.81,3+)  </A>: Elution from: 143.85 to=
 143.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1673><B>Query1673 (795.81,3+)  </A>: Elution from: 140.82 to=
 140.82   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1674><B>Query1674 (795.81,3+)  </A>: Elution from: 137.78 to=
 137.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1675><B>Query1675 (796.15,3+)  </A>: Elution from: 137.47 to=
 137.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1676><B>Query1676 (796.15,3+)  </A>: Elution from: 140.59 to=
 140.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1677><B>Query1677 (796.15,3+)  </A>: Elution from: 146.74 to=
 146.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1678><B>Query1678 (796.15,3+)  </A>: Elution from: 143.68 to=
 143.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1679><B>Query1679 (796.15,3+)  </A>: Elution from: 150.95 to=
 150.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1680><B>Query1680 (796.48,3+)  </A>: Elution from: 145.07 to=
 145.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1681><B>Query1681 (796.80,3+)  </A>: Elution from: 143.55 to=
 143.55   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1682><B>Query1682 (797.83,3+)  </A>: Elution from: 95.41 to =
95.41   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1683><B>Query1683 (598.86,4+)  </A>: Elution from: 93.88 to =
93.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1684><B>Query1684 (798.15,3+)  </A>: Elution from: 93.36 to =
93.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1685><B>Query1685 (798.16,3+)  </A>: Elution from: 96.41 to =
96.41   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1686><B>Query1686 (599.10,4+)  </A>: Elution from: 96.18 to =
96.18   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1687><B>Query1687 (798.49,3+)  </A>: Elution from: 95.25 to =
95.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1688><B>Query1688 (803.80,3+)  </A>: Elution from: 102.3 to =
102.3   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1689><B>Query1689 (804.14,3+)  </A>: Elution from: 102.15 to=
 102.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1690><B>Query1690 (808.46,3+)  </A>: Elution from: 17.31 to =
17.31   period: 0   experiment: 4 cycles:  1  </B>=0D
<A name=3DQuery1691><B>Query1691 (606.84,4+)  </A>: Elution from: 17.16 to =
17.16   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1692><B>Query1692 (608.42,4+)  </A>: Elution from: 123.69 to=
 123.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1693><B>Query1693 (810.89,3+)  </A>: Elution from: 124 to 12=
4   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1694><B>Query1694 (609.98,4+)  </A>: Elution from: 32.39 to =
32.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1695><B>Query1695 (813.15,3+)  </A>: Elution from: 157.39 to=
 157.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1696><B>Query1696 (813.48,3+)  </A>: Elution from: 157.36 to=
 157.36   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1697><B>Query1697 (611.35,4+)  </A>: Elution from: 102.04 to=
 102.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1698><B>Query1698 (817.81,3+)  </A>: Elution from: 131.69 to=
 131.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1699><B>Query1699 (818.15,3+)  </A>: Elution from: 131.64 to=
 131.64   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1700><B>Query1700 (614.35,4+)  </A>: Elution from: 26.45 to =
26.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1701><B>Query1701 (818.84,3+)  </A>: Elution from: 147.25 to=
 147.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1702><B>Query1702 (819.18,3+)  </A>: Elution from: 147.31 to=
 147.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1703><B>Query1703 (819.19,3+)  </A>: Elution from: 197.29 to=
 197.29   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1704><B>Query1704 (615.04,4+)  </A>: Elution from: 159.09 to=
 159.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1705><B>Query1705 (822.16,3+)  </A>: Elution from: 114.16 to=
 114.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1706><B>Query1706 (822.51,3+)  </A>: Elution from: 114.03 to=
 114.03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1707><B>Query1707 (823.14,3+)  </A>: Elution from: 95.12 to =
95.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1708><B>Query1708 (823.14,3+)  </A>: Elution from: 98.17 to =
98.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1709><B>Query1709 (617.86,4+)  </A>: Elution from: 96.36 to =
96.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1710><B>Query1710 (823.47,3+)  </A>: Elution from: 98.35 to =
98.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1711><B>Query1711 (823.47,3+)  </A>: Elution from: 95.07 to =
95.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1712><B>Query1712 (823.81,3+)  </A>: Elution from: 98.74 to =
98.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1713><B>Query1713 (618.35,4+)  </A>: Elution from: 96.51 to =
96.51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1714><B>Query1714 (824.79,3+)  </A>: Elution from: 21.7 to 2=
1.7   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1715><B>Query1715 (825.12,3+)  </A>: Elution from: 22.27 to =
22.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1716><B>Query1716 (825.13,3+)  </A>: Elution from: 29.87 to =
29.87   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1717><B>Query1717 (825.43,3+)  </A>: Elution from: 29.22 to =
29.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1718><B>Query1718 (828.47,3+)  </A>: Elution from: 63.72 to =
63.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1719><B>Query1719 (828.81,3+)  </A>: Elution from: 63.47 to =
63.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1720><B>Query1720 (828.85,3+)  </A>: Elution from: 115.29 to=
 115.29   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1721><B>Query1721 (829.17,3+)  </A>: Elution from: 115.07 to=
 115.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1722><B>Query1722 (830.47,3+)  </A>: Elution from: 73.16 to =
73.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1723><B>Query1723 (830.80,3+)  </A>: Elution from: 73.11 to =
73.11   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1724><B>Query1724 (831.79,3+)  </A>: Elution from: 66.41 to =
66.41   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1725><B>Query1725 (832.12,3+)  </A>: Elution from: 66.55 to =
66.55   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1726><B>Query1726 (832.46,3+)  </A>: Elution from: 166.02 to=
 166.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1727><B>Query1727 (832.46,3+)  </A>: Elution from: 172.12 to=
 172.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1728><B>Query1728 (832.47,3+)  </A>: Elution from: 157.74 to=
 157.74   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1729><B>Query1729 (832.47,3+)  </A>: Elution from: 169.07 to=
 169.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1730><B>Query1730 (832.80,3+)  </A>: Elution from: 169.17 to=
 169.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1731><B>Query1731 (832.80,3+)  </A>: Elution from: 166.12 to=
 166.12   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1732><B>Query1732 (832.80,3+)  </A>: Elution from: 172.45 to=
 172.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1733><B>Query1733 (832.81,3+)  </A>: Elution from: 157.79 to=
 157.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1734><B>Query1734 (833.13,3+)  </A>: Elution from: 158.07 to=
 158.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1735><B>Query1735 (833.13,3+)  </A>: Elution from: 173.29 to=
 173.29   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1736><B>Query1736 (837.25,3+)  </A>: Elution from: 195 to 19=
5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1737><B>Query1737 (628.61,4+)  </A>: Elution from: 118.52 to=
 118.52   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1738><B>Query1738 (839.18,3+)  </A>: Elution from: 166.35 to=
 166.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1739><B>Query1739 (839.21,3+)  </A>: Elution from: 75.5 to 7=
5.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1740><B>Query1740 (839.53,3+)  </A>: Elution from: 75.16 to =
75.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1741><B>Query1741 (853.44,3+)  </A>: Elution from: 113.49 to=
 113.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1742><B>Query1742 (858.45,3+)  </A>: Elution from: 97.22 to =
97.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1743><B>Query1743 (858.77,3+)  </A>: Elution from: 96.23 to =
96.23   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1744><B>Query1744 (859.11,3+)  </A>: Elution from: 97.34 to =
97.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1745><B>Query1745 (859.12,3+)  </A>: Elution from: 165.84 to=
 165.84   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1746><B>Query1746 (859.12,3+)  </A>: Elution from: 162.79 to=
 162.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1747><B>Query1747 (859.12,3+)  </A>: Elution from: 156.7 to =
156.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1748><B>Query1748 (859.13,3+)  </A>: Elution from: 151.43 to=
 151.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1749><B>Query1749 (859.13,3+)  </A>: Elution from: 171.15 to=
 171.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1750><B>Query1750 (859.46,3+)  </A>: Elution from: 157.03 to=
 157.03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1751><B>Query1751 (859.46,3+)  </A>: Elution from: 150.9 to =
150.9   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1752><B>Query1752 (859.46,3+)  </A>: Elution from: 171.05 to=
 171.05   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1753><B>Query1753 (859.46,3+)  </A>: Elution from: 160.1 to =
160.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1754><B>Query1754 (859.46,3+)  </A>: Elution from: 166.63 to=
 166.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1755><B>Query1755 (859.80,3+)  </A>: Elution from: 160.18 to=
 160.18   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1756><B>Query1756 (865.84,3+)  </A>: Elution from: 150.21 to=
 150.21   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1757><B>Query1757 (865.85,3+)  </A>: Elution from: 158.48 to=
 158.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1758><B>Query1758 (865.85,3+)  </A>: Elution from: 161.53 to=
 161.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1759><B>Query1759 (649.64,4+)  </A>: Elution from: 160.79 to=
 160.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1760><B>Query1760 (649.65,4+)  </A>: Elution from: 165.16 to=
 165.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1761><B>Query1761 (866.18,3+)  </A>: Elution from: 157.89 to=
 157.89   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1762><B>Query1762 (649.89,4+)  </A>: Elution from: 161.78 to=
 161.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1763><B>Query1763 (866.19,3+)  </A>: Elution from: 164.04 to=
 164.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1764><B>Query1764 (866.19,3+)  </A>: Elution from: 150.34 to=
 150.34   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1765><B>Query1765 (649.89,4+)  </A>: Elution from: 158.73 to=
 158.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1766><B>Query1766 (866.19,3+)  </A>: Elution from: 160.89 to=
 160.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1767><B>Query1767 (649.91,4+)  </A>: Elution from: 150.06 to=
 150.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1768><B>Query1768 (649.92,4+)  </A>: Elution from: 155.56 to=
 155.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1769><B>Query1769 (650.14,4+)  </A>: Elution from: 164.09 to=
 164.09   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1770><B>Query1770 (866.52,3+)  </A>: Elution from: 150.72 to=
 150.72   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1771><B>Query1771 (650.15,4+)  </A>: Elution from: 159.68 to=
 159.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1772><B>Query1772 (650.15,4+)  </A>: Elution from: 151.51 to=
 151.51   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1773><B>Query1773 (867.54,3+)  </A>: Elution from: 172.5 to =
172.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1774><B>Query1774 (651.15,4+)  </A>: Elution from: 172.63 to=
 172.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1775><B>Query1775 (867.88,3+)  </A>: Elution from: 172.17 to=
 172.17   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1776><B>Query1776 (871.53,3+)  </A>: Elution from: 132.98 to=
 132.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1777><B>Query1777 (653.91,4+)  </A>: Elution from: 132.47 to=
 132.47   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1778><B>Query1778 (873.50,3+)  </A>: Elution from: 145.23 to=
 145.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1779><B>Query1779 (880.86,3+)  </A>: Elution from: 149.07 to=
 149.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1780><B>Query1780 (881.19,3+)  </A>: Elution from: 148.97 to=
 148.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1781><B>Query1781 (886.20,3+)  </A>: Elution from: 190.2 to =
190.2   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1782><B>Query1782 (890.52,3+)  </A>: Elution from: 187.73 to=
 187.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1783><B>Query1783 (675.41,4+)  </A>: Elution from: 26.6 to 2=
6.6   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1784><B>Query1784 (676.36,4+)  </A>: Elution from: 72.23 to =
72.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1785><B>Query1785 (676.36,4+)  </A>: Elution from: 63.09 to =
63.09   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1786><B>Query1786 (676.36,4+)  </A>: Elution from: 55.32 to =
55.32   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1787><B>Query1787 (676.36,4+)  </A>: Elution from: 58.56 to =
58.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1788><B>Query1788 (676.37,4+)  </A>: Elution from: 66.14 to =
66.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1789><B>Query1789 (676.37,4+)  </A>: Elution from: 48.34 to =
48.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1790><B>Query1790 (901.50,3+)  </A>: Elution from: 23.5 to 2=
3.5   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1791><B>Query1791 (676.61,4+)  </A>: Elution from: 59.13 to =
59.13   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1792><B>Query1792 (676.86,4+)  </A>: Elution from: 37.48 to =
37.48   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1793><B>Query1793 (676.87,4+)  </A>: Elution from: 41.14 to =
41.14   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1794><B>Query1794 (676.87,4+)  </A>: Elution from: 78.65 to =
78.65   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1795><B>Query1795 (676.87,4+)  </A>: Elution from: 71.7 to 7=
1.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1796><B>Query1796 (676.87,4+)  </A>: Elution from: 56.35 to =
56.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1797><B>Query1797 (676.87,4+)  </A>: Elution from: 65.49 to =
65.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1798><B>Query1798 (676.87,4+)  </A>: Elution from: 47.22 to =
47.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1799><B>Query1799 (676.87,4+)  </A>: Elution from: 59.39 to =
59.39   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1800><B>Query1800 (676.88,4+)  </A>: Elution from: 50.28 to =
50.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1801><B>Query1801 (676.88,4+)  </A>: Elution from: 62.45 to =
62.45   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1802><B>Query1802 (676.88,4+)  </A>: Elution from: 53.31 to =
53.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1803><B>Query1803 (676.88,4+)  </A>: Elution from: 68.53 to =
68.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1804><B>Query1804 (910.25,3+)  </A>: Elution from: 124.62 to=
 124.62   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1805><B>Query1805 (910.58,3+)  </A>: Elution from: 124.02 to=
 124.02   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1806><B>Query1806 (683.19,4+)  </A>: Elution from: 124.83 to=
 124.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1807><B>Query1807 (913.20,3+)  </A>: Elution from: 124.57 to=
 124.57   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1808><B>Query1808 (914.20,3+)  </A>: Elution from: 160.23 to=
 160.23   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1809><B>Query1809 (914.52,3+)  </A>: Elution from: 160.03 to=
 160.03   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1810><B>Query1810 (686.15,4+)  </A>: Elution from: 160.28 to=
 160.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1811><B>Query1811 (686.39,4+)  </A>: Elution from: 160.36 to=
 160.36   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1812><B>Query1812 (927.56,3+)  </A>: Elution from: 153.99 to=
 153.99   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1813><B>Query1813 (927.56,3+)  </A>: Elution from: 161.66 to=
 161.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1814><B>Query1814 (696.05,4+)  </A>: Elution from: 159.63 to=
 159.63   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1815><B>Query1815 (699.68,4+)  </A>: Elution from: 184.73 to=
 184.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1816><B>Query1816 (702.91,4+)  </A>: Elution from: 73.66 to =
73.66   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1817><B>Query1817 (938.58,3+)  </A>: Elution from: 199.96 to=
 199.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1818><B>Query1818 (938.91,3+)  </A>: Elution from: 199.94 to=
 199.94   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1819><B>Query1819 (704.44,4+)  </A>: Elution from: 200.7 to =
200.7   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1820><B>Query1820 (708.38,4+)  </A>: Elution from: 104.47 to=
 104.47   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1821><B>Query1821 (708.38,4+)  </A>: Elution from: 144.42 to=
 144.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1822><B>Query1822 (708.38,4+)  </A>: Elution from: 122.68 to=
 122.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1823><B>Query1823 (708.38,4+)  </A>: Elution from: 101.37 to=
 101.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1824><B>Query1824 (708.38,4+)  </A>: Elution from: 98.22 to =
98.22   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1825><B>Query1825 (708.39,4+)  </A>: Elution from: 131.82 to=
 131.82   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1826><B>Query1826 (708.39,4+)  </A>: Elution from: 134.93 to=
 134.93   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1827><B>Query1827 (708.39,4+)  </A>: Elution from: 113.54 to=
 113.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1828><B>Query1828 (708.39,4+)  </A>: Elution from: 116.58 to=
 116.58   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1829><B>Query1829 (708.39,4+)  </A>: Elution from: 110.5 to =
110.5   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1830><B>Query1830 (708.39,4+)  </A>: Elution from: 125.71 to=
 125.71   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1831><B>Query1831 (708.39,4+)  </A>: Elution from: 138.01 to=
 138.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1832><B>Query1832 (708.39,4+)  </A>: Elution from: 128.79 to=
 128.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1833><B>Query1833 (708.39,4+)  </A>: Elution from: 141.1 to =
141.1   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1834><B>Query1834 (708.39,4+)  </A>: Elution from: 107.5 to =
107.5   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1835><B>Query1835 (708.39,4+)  </A>: Elution from: 119.61 to=
 119.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1836><B>Query1836 (708.39,4+)  </A>: Elution from: 95.18 to =
95.18   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1837><B>Query1837 (708.39,4+)  </A>: Elution from: 91.99 to =
91.99   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1838><B>Query1838 (944.49,3+)  </A>: Elution from: 58.08 to =
58.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1839><B>Query1839 (708.63,4+)  </A>: Elution from: 140.39 to=
 140.39   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1840><B>Query1840 (708.64,4+)  </A>: Elution from: 113.9 to =
113.9   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1841><B>Query1841 (708.64,4+)  </A>: Elution from: 127.08 to=
 127.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1842><B>Query1842 (708.64,4+)  </A>: Elution from: 102.53 to=
 102.53   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1843><B>Query1843 (708.64,4+)  </A>: Elution from: 108.86 to=
 108.86   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1844><B>Query1844 (708.65,4+)  </A>: Elution from: 117.54 to=
 117.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1845><B>Query1845 (708.65,4+)  </A>: Elution from: 130.38 to=
 130.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1846><B>Query1846 (708.88,4+)  </A>: Elution from: 111.16 to=
 111.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1847><B>Query1847 (708.89,4+)  </A>: Elution from: 114.23 to=
 114.23   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1848><B>Query1848 (948.22,3+)  </A>: Elution from: 182.8 to =
182.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1849><B>Query1849 (953.57,3+)  </A>: Elution from: 192.38 to=
 192.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1850><B>Query1850 (962.57,3+)  </A>: Elution from: 140.95 to=
 140.95   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1851><B>Query1851 (967.63,3+)  </A>: Elution from: 197.36 to=
 197.36   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1852><B>Query1852 (976.86,3+)  </A>: Elution from: 167.98 to=
 167.98   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1853><B>Query1853 (995.89,3+)  </A>: Elution from: 160.16 to=
 160.16   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1854><B>Query1854 (996.24,3+)  </A>: Elution from: 159.85 to=
 159.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1855><B>Query1855 (747.43,4+)  </A>: Elution from: 159.93 to=
 159.93   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1856><B>Query1856 (756.47,4+)  </A>: Elution from: 112.71 to=
 112.71   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1857><B>Query1857 (756.47,4+)  </A>: Elution from: 93.42 to =
93.42   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1858><B>Query1858 (756.72,4+)  </A>: Elution from: 94.07 to =
94.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1859><B>Query1859 (768.44,4+)  </A>: Elution from: 157.31 to=
 157.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1860><B>Query1860 (768.69,4+)  </A>: Elution from: 157.46 to=
 157.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1861><B>Query1861 (1051.34,3+) </A>: Elution from: 199.1 to =
199.1   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1862><B>Query1862 (789.00,4+)  </A>: Elution from: 194.34 to=
 194.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1863><B>Query1863 (1051.67,3+) </A>: Elution from: 198.89 to=
 198.89   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1864><B>Query1864 (789.25,4+)  </A>: Elution from: 199.88 to=
 199.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1865><B>Query1865 (793.23,4+)  </A>: Elution from: 133.41 to=
 133.41   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1866><B>Query1866 (793.23,4+)  </A>: Elution from: 136.46 to=
 136.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1867><B>Query1867 (793.48,4+)  </A>: Elution from: 133.61 to=
 133.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1868><B>Query1868 (793.49,4+)  </A>: Elution from: 136.64 to=
 136.64   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1869><B>Query1869 (796.98,4+)  </A>: Elution from: 74.75 to =
74.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1870><B>Query1870 (796.98,4+)  </A>: Elution from: 78.03 to =
78.03   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1871><B>Query1871 (797.23,4+)  </A>: Elution from: 76.43 to =
76.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1872><B>Query1872 (797.23,4+)  </A>: Elution from: 91.38 to =
91.38   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1873><B>Query1873 (797.48,4+)  </A>: Elution from: 74.91 to =
74.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1874><B>Query1874 (1080.36,3+) </A>: Elution from: 200.73 to=
 200.73   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1875><B>Query1875 (810.54,4+)  </A>: Elution from: 200.83 to=
 200.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1876><B>Query1876 (810.77,4+)  </A>: Elution from: 200.65 to=
 200.65   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1877><B>Query1877 (811.02,4+)  </A>: Elution from: 200.78 to=
 200.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1878><B>Query1878 (1081.03,3+) </A>: Elution from: 201.95 to=
 201.95   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1879><B>Query1879 (819.97,4+)  </A>: Elution from: 189.25 to=
 189.25   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1880><B>Query1880 (821.02,4+)  </A>: Elution from: 197.62 to=
 197.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1881><B>Query1881 (821.27,4+)  </A>: Elution from: 197.54 to=
 197.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1882><B>Query1882 (825.48,4+)  </A>: Elution from: 180.56 to=
 180.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1883><B>Query1883 (831.71,4+)  </A>: Elution from: 185.04 to=
 185.04   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1884><B>Query1884 (831.97,4+)  </A>: Elution from: 184.96 to=
 184.96   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1885><B>Query1885 (832.01,4+)  </A>: Elution from: 115.34 to=
 115.34   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1886><B>Query1886 (832.26,4+)  </A>: Elution from: 115.62 to=
 115.62   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1887><B>Query1887 (833.74,4+)  </A>: Elution from: 141.75 to=
 141.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1888><B>Query1888 (834.01,4+)  </A>: Elution from: 143.43 to=
 143.43   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1889><B>Query1889 (835.76,4+)  </A>: Elution from: 117.06 to=
 117.06   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1890><B>Query1890 (836.75,4+)  </A>: Elution from: 194.79 to=
 194.79   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1891><B>Query1891 (842.70,4+)  </A>: Elution from: 183.69 to=
 183.69   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1892><B>Query1892 (848.53,4+)  </A>: Elution from: 146.37 to=
 146.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1893><B>Query1893 (848.73,4+)  </A>: Elution from: 167.78 to=
 167.78   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1894><B>Query1894 (848.77,4+)  </A>: Elution from: 146.61 to=
 146.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1895><B>Query1895 (850.52,4+)  </A>: Elution from: 189.97 to=
 189.97   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1896><B>Query1896 (855.72,4+)  </A>: Elution from: 140.42 to=
 140.42   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1897><B>Query1897 (855.98,4+)  </A>: Elution from: 140.11 to=
 140.11   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1898><B>Query1898 (856.72,4+)  </A>: Elution from: 180.61 to=
 180.61   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1899><B>Query1899 (856.72,4+)  </A>: Elution from: 177.56 to=
 177.56   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1900><B>Query1900 (856.73,4+)  </A>: Elution from: 184.08 to=
 184.08   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1901><B>Query1901 (856.98,4+)  </A>: Elution from: 174.49 to=
 174.49   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1902><B>Query1902 (856.98,4+)  </A>: Elution from: 182.52 to=
 182.52   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1903><B>Query1903 (857.22,4+)  </A>: Elution from: 182.91 to=
 182.91   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1904><B>Query1904 (857.46,4+)  </A>: Elution from: 183.59 to=
 183.59   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1905><B>Query1905 (857.71,4+)  </A>: Elution from: 183.77 to=
 183.77   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1906><B>Query1906 (857.95,4+)  </A>: Elution from: 183.46 to=
 183.46   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1907><B>Query1907 (859.13,4+)  </A>: Elution from: 159.75 to=
 159.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1908><B>Query1908 (860.99,4+)  </A>: Elution from: 191.54 to=
 191.54   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1909><B>Query1909 (863.71,4+)  </A>: Elution from: 141.28 to=
 141.28   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1910><B>Query1910 (863.97,4+)  </A>: Elution from: 141.15 to=
 141.15   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1911><B>Query1911 (864.21,4+)  </A>: Elution from: 141.8 to =
141.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1912><B>Query1912 (871.71,4+)  </A>: Elution from: 144.16 to=
 144.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1913><B>Query1913 (872.71,4+)  </A>: Elution from: 196.86 to=
 196.86   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1914><B>Query1914 (872.71,4+)  </A>: Elution from: 199.83 to=
 199.83   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1915><B>Query1915 (872.96,4+)  </A>: Elution from: 197.24 to=
 197.24   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1916><B>Query1916 (872.96,4+)  </A>: Elution from: 200.27 to=
 200.27   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1917><B>Query1917 (876.96,4+)  </A>: Elution from: 147.07 to=
 147.07   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1918><B>Query1918 (877.21,4+)  </A>: Elution from: 146.89 to=
 146.89   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1919><B>Query1919 (877.80,4+)  </A>: Elution from: 188.85 to=
 188.85   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1920><B>Query1920 (887.50,4+)  </A>: Elution from: 164.68 to=
 164.68   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1921><B>Query1921 (887.75,4+)  </A>: Elution from: 164.9 to =
164.9   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1922><B>Query1922 (920.05,4+)  </A>: Elution from: 189.31 to=
 189.31   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1923><B>Query1923 (920.31,4+)  </A>: Elution from: 189.36 to=
 189.36   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1924><B>Query1924 (932.54,4+)  </A>: Elution from: 164.95 to=
 164.95   period: 0   experiment: 2 cycles:  1  </B>=0D
<A name=3DQuery1925><B>Query1925 (932.79,4+)  </A>: Elution from: 164.98 to=
 164.98   period: 0   experiment: 3 cycles:  1  </B>=0D
<A name=3DQuery1926><B>Query1926 (968.56,4+)  </A>: Elution from: 156.4 to =
156.4   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1927><B>Query1927 (968.80,4+)  </A>: Elution from: 156.35 to=
 156.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1928><B>Query1928 (979.58,4+)  </A>: Elution from: 190.75 to=
 190.75   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1929><B>Query1929 (985.58,4+)  </A>: Elution from: 193.37 to=
 193.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1930><B>Query1930 (986.09,4+)  </A>: Elution from: 173.37 to=
 173.37   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1931><B>Query1931 (986.34,4+)  </A>: Elution from: 173.7 to =
173.7   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1932><B>Query1932 (992.53,4+)  </A>: Elution from: 97.8 to 9=
7.8   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1933><B>Query1933 (992.79,4+)  </A>: Elution from: 97.88 to =
97.88   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1934><B>Query1934 (1006.09,4+) </A>: Elution from: 168.16 to=
 168.16   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1935><B>Query1935 (1006.34,4+) </A>: Elution from: 168.33 to=
 168.33   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1936><B>Query1936 (1014.06,4+) </A>: Elution from: 204.01 to=
 204.01   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1937><B>Query1937 (1049.80,4+) </A>: Elution from: 158.35 to=
 158.35   period: 0   experiment: 1 cycles:  1  </B>=0D
<A name=3DQuery1938><B>Query1938 (1053.79,4+) </A>: Elution from: 158.43 to=
 158.43   period: 0   experiment: 1 cycles:  1  </B>=0D
</PRE></FONT>=0D
<P>=0D
<TABLE cellSpacing=3D2 cellPadding=3D1 width=3D"100%" border=3D2>=0D
  <TBODY>=0D
  <TR>=0D
    <TD noWrap align=3Dmiddle><B>Mascot:</B>&nbsp; <A=20=0D
      href=3D"http://www.matrixscience.com/index.html">http://www.matrixsci=
ence.com/index.html</A>=20=0D
    </TD></TR></TBODY></TABLE><SPAN id=3Dspantest style=3D"POSITION: absolu=
te"></SPAN>=0D
<SCRIPT language=3DJavaScript1.2>
<!--

var style =3D ((NS4 && document.spantest) || IE4) ? 1 : 0;
var timerID =3D null;
var padding =3D 3;
var bgcolor =3D "#ffffcc";
var borWid =3D 2;
var borCol =3D "#0000cc";
var borSty =3D "solid";
var width =3D 350;

var str =3D "<STYLE TYPE=3D'text/css'>";
str +=3D ".tooltip {";
str +=3D "position: absolute;";
str +=3D "visibility: hidden;";
str +=3D "left: 0; top: 0;";
if (borWid > 0) { // if a border is specified
  str +=3D "border-width: " + borWid + ";";
  str +=3D "border-color: " + borCol + ";";
  str +=3D "border-style: " + borSty + ";";
}
if (NS4) {
  if (borWid > 0 && padding <=3D 3) {
    str +=3D "padding: 0;";
    str +=3D "layer-background-color: " + bgcolor + ";";
  } else if (borWid > 0 && padding > 3) {
    str +=3D "padding: " + (padding - 3) + ";";
    str +=3D "background-color: " + bgcolor + ";";
  } else if (borWid =3D=3D 0) {
    str +=3D "padding: " + padding + ";";
    str +=3D "layer-background-color: " + bgcolor + ";";
  }
} else {
  str +=3D "padding: " + padding + ";";
  str +=3D "background-color: " + bgcolor + ";";
}
str +=3D "width: " + width + ";";
str +=3D "}";
str +=3D "</STYLE>";

if (style) {
  document.write(str);
  if (NS4) window.onload =3D init;
}

function init() {
  setTimeout("window.onresize =3D redo", 1000);
}

function redo() {
  window.location.reload();
}

var statusString =3D " "

function displayEl(left, top) {
  if (NS4) document.releaseEvents(Event.MOUSEMOVE);
  document.onmousemove =3D null;
  var whichEl =3D (NS4) ? document[active] : document.all[active].style;
  whichEl.left =3D left;
  whichEl.top =3D top;
  whichEl.visibility =3D (NS4) ? "show" : "visible";
  self.status =3D statusString;
}

function clearEl() {
  self.status =3D "";
  if (!style) return;
  var whichEl =3D (NS4) ? document[active] : document.all[active].style;
  whichEl.visibility =3D (NS4) ? "hide" : "hidden";
  active =3D null;
  if (timerID) clearTimeout(timerID);
  if (NS4) document.releaseEvents(Event.MOUSEMOVE);
  document.onmousemove =3D null;
}

function activateEl(id, e) {
  self.status =3D statusString;
  if (!style) return;
  active =3D id;
  if (NS4) document.captureEvents(Event.MOUSEMOVE);
  document.onmousemove =3D checkEl;
  checkEl(e);
}

function checkEl(e) {
  if (timerID) clearTimeout(timerID);
  var left =3D (NS4) ? e.pageX : event.clientX + document.body.scrollLeft;
  var top =3D (NS4) ? e.pageY + 20 : event.clientY + document.body.scrollTo=
p + 20;
  timerID =3D setTimeout("displayEl(" + left + ", " + top + ")", 300);
  self.status =3D statusString;
}

// -->
</SCRIPT>=0D
=0D
<DIV class=3Dtooltip id=3DQ1><PRE>Top scoring peptide matches to query 1<BR=
>Score greater than 37 indicates identity<BR><I>Status bar shows all hits f=
or this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B><=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ2><PRE>Top scoring peptide matches to query 2<BR=
>Score greater than 33 indicates identity<BR><I>Status bar shows all hits f=
or this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B><=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ3><PRE>Top scoring peptide matches to query 3<BR=
><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   Delta=
  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ4><PRE>Top scoring peptide matches to query 4<BR=
>Score greater than 30 indicates identity<BR><I>Status bar shows all hits f=
or this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B><=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ5><PRE>Top scoring peptide matches to query 5<BR=
>Score greater than 29 indicates identity<BR><I>Status bar shows all hits f=
or this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B><=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ6><PRE>Top scoring peptide matches to query 6<BR=
><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   Delta=
  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ7><PRE>Top scoring peptide matches to query 7<BR=
>Score greater than 28 indicates homology<BR>Score greater than 30 indicate=
s identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>=
Score   Delta  Hit    Protein   Peptide</B><BR> 22.1    0.04   6+IPI:IPI000=
21439  RGILTLK<BR> 22.1    0.05  72 IPI:IPI00017287  LNVLTLK<BR> 22.1    0.=
11  67 IPI:IPI00023635  RDPATLK<BR> 14.5    0.07                   KSKPVNK<=
BR> 14.1    0.05                   KIIADIK<BR> 14.1    0.09                =
   QILEGLK<BR> 13.3    0.05                   AGLSVLLK<BR> 13.1    0.09    =
               QLILEGK<BR> 12.9    0.13                   KLHSGMK<BR> 12.2 =
   0.13                   QFHQIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ8><PRE>Top scoring peptide matches to query 8<BR=
>Score greater than 19 indicates homology<BR>Score greater than 32 indicate=
s identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>=
Score   Delta  Hit    Protein   Peptide</B><BR> 10.7    0.04   2+IPI:IPI000=
04497  VGDLFQK<BR>  6.1   -0.01                   VVKASFR<BR>  4.2    0.10 =
                  VGDWMAK<BR>  2.7    0.07                   VTGPYNR<BR>  1=
.8    0.07  59 IPI:IPI00016774  VGVDGFGR<BR>  0.1    0.07                  =
 VSAMSSPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ9><PRE>Top scoring peptide matches to query 9<BR=
>Score greater than 13 indicates identity<BR><I>Status bar shows all hits f=
or this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B><=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ10><PRE>Top scoring peptide matches to query 10<=
BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ11><PRE>Top scoring peptide matches to query 11<=
BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ12><PRE>Top scoring peptide matches to query 12<=
BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ13><PRE>Top scoring peptide matches to query 13<=
BR>Score greater than 19 indicates homology<BR>Score greater than 29 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.6    0.13             =
      TYQCIK<BR>  7.6    0.10                   TYSWKK<BR>  7.2    0.11    =
               TYSTGRK<BR>  7.2    0.12                   TYNSISK<BR>  6.5 =
   0.11                   TTAPSHAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ14><PRE>Top scoring peptide matches to query 14<=
BR>Score greater than 17 indicates homology<BR>Score greater than 29 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.2    0.11             =
      VLNYCR<BR>  3.7   -0.00                   VVKLHTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ15><PRE>Top scoring peptide matches to query 15<=
BR>Score greater than 17 indicates homology<BR>Score greater than 29 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.4    0.05             =
      IIEVPEK<BR>  4.4    0.03                   LLERSPL<BR>  4.4   -0.00  =
                 LLEAIIR<BR>  4.4    0.03                   IIEPSLR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ16><PRE>Top scoring peptide matches to query 16<=
BR>Score greater than 19 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.2    0.07             =
      GSSLSAPSK<BR>  7.8    0.10                   GSEAREGK<BR>  7.8    0.1=
0                   GSSLADQR<BR>  5.8    0.06                   NNIMVVK<BR>=
  5.8    0.04                   MIFPVAR<BR>  5.8   -0.04                   =
LVLYVVK<BR>  5.8    0.07                   QCSLVAR<BR>  5.8    0.06        =
           MNVKDVK<BR>  5.4    0.06                   DSTRGVAK<BR>  2.5    =
0.01                   NFVRIGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ17><PRE>Top scoring peptide matches to query 17<=
BR>Score greater than 16 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.8    0.04             =
      VAGAATPKK<BR>  5.8    0.05                   GISLLPDK<BR>  5.8    0.0=
7                   GLVTPPMK<BR>  3.3    0.05                   EEKIVPK<BR>=
  3.3    0.04                   LEKTVPR<BR>  3.0    0.08                   =
ESALAVPR<BR>  2.7    0.08                   AAGKGDVPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ18><PRE>Top scoring peptide matches to query 18<=
BR>Score greater than 13 indicates homology<BR>Score greater than 29 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.0    0.06             =
      GISLLPDK<BR>  4.0    0.08                   GLVTPPMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ19><PRE>Top scoring peptide matches to query 19<=
BR>Score greater than 18 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 18.7    0.08  93 IPI:IPI0=
0025320  GPTVSNIR<BR>  4.7    0.04                   ALAVEGKR<BR>  2.0    0=
.02                   LGTTVKPK<BR>  0.8    0.10                   MPRSGAPK<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ20><PRE>Top scoring peptide matches to query 20<=
BR>Score greater than 17 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 18.5    0.08  93 IPI:IPI0=
0025320  GPTVSNIR<BR>  3.8    0.05                   ALAVEGKR<BR>  0.8    0=
.01                   VATKLGVR<BR>  0.5    0.08                   VAHFLEK<B=
R>  0.4    0.02                   VAAKDVLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ21><PRE>Top scoring peptide matches to query 21<=
BR>Score greater than 20 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.2    0.06             =
      TAQAKVAR<BR>  6.6    0.12                   GDTPVLDK<BR>  5.8    0.02=
                   VKPFVVR<BR>  5.8    0.04                   CILLVAR<BR>  =
5.8    0.07                   KEELVAR<BR>  5.8    0.08                   LC=
VIPRS<BR>  5.8    0.11                   NEIDVVR<BR>  5.8    0.04          =
         MALRVVR<BR>  5.8    0.03                   RIETVVK<BR>  5.8    0.0=
6                   LWISVAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ22><PRE>Top scoring peptide matches to query 22<=
BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ23><PRE>Top scoring peptide matches to query 23<=
BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ24><PRE>Top scoring peptide matches to query 24<=
BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ25><PRE>Top scoring peptide matches to query 25<=
BR>Score greater than 13 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9   -0.01             =
      LGLTIAIR<BR>  0.7    0.05                   RQAEKPK<BR>  0.7    0.05 =
                  FHALIQK<BR>  0.7    0.01                   QRALLQK<BR>  0=
.4    0.05  29 IPI:IPI00007188  GNLANVIR<BR>  0.1    0.05                  =
 ARGAIPSGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ26><PRE>Top scoring peptide matches to query 26<=
BR>Score greater than 19 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.7    0.05             =
      GGGNAVKVR<BR>  5.1    0.09                   TTSQKHR<BR>  5.1    0.12=
                   QSSDKHR<BR>  3.1    0.09                   NNGVLQGR<BR> =
 2.1    0.04                   NLELQLK<BR>  2.1   -0.00                   N=
IELLKK<BR>  2.1   -0.00                   VDAALKIK<BR>  2.1    0.01        =
           LTAARLGR<BR>  1.8    0.11                   MGPASPAAR<BR>  0.7  =
  0.07                   NGHVFRK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ27><PRE>Top scoring peptide matches to query 27<=
BR>Score greater than 16 indicates homology<BR>Score greater than 32 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.3    0.06   5+IPI:IPI0=
0018231  VADFGLSR<BR>  2.8    0.09                   GIDMEKR<BR>  2.5    0.=
06                   LGDFGLSR<BR>  0.5    0.09                   VAMLDGSR</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ28><PRE>Top scoring peptide matches to query 28<=
BR>Score greater than 13 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.1    0.07             =
      VLGTGAYGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ29><PRE>Top scoring peptide matches to query 29<=
BR>Score greater than 17 indicates homology<BR>Score greater than 29 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.7   -0.05             =
      VLQRLIK<BR> 10.5    0.03  42 IPI:IPI00024093  VIPELNGK<BR>  3.4   -0.=
02                   LVKKPER<BR>  3.4    0.02                   DPKQIIR<BR>=
  0.9   -0.05                   VIAVLKAR<BR>  0.9   -0.01                  =
 VILNVPSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ30><PRE>Top scoring peptide matches to query 30<=
BR>Score greater than 18 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.3    0.07             =
      VNKAPEGR<BR>  7.8    0.10                   RGPPCQR<BR>  4.6    0.10 =
                  VNVYYGR<BR>  4.4    0.03                   VNVPKTGR<BR>  =
3.4    0.07                   VPDLDRR<BR>  3.0   -0.03                   NV=
GKVIIK<BR>  0.9    0.06                   LVEEGVPK<BR>  0.8    0.07        =
           VPIKWGNG</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ31><PRE>Top scoring peptide matches to query 31<=
BR>Score greater than 13 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.8    0.05             =
      KQSQLLR<BR>  0.3    0.07                   EEIAVALK<BR>  0.3    0.11 =
                  ELDTVPAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ32><PRE>Top scoring peptide matches to query 32<=
BR>Score greater than 32 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ33><PRE>Top scoring peptide matches to query 33<=
BR>Score greater than 14 indicates homology<BR>Score greater than 32 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.6    0.04             =
      DRSSLPAK<BR>  0.9    0.06                   AQLESTPK<BR>  0.4    0.01=
                   TVAAEVRK<BR>  0.4    0.09                   MARGDAPR<BR>=
  0.4    0.01                   SALAEKVR<BR>  0.4    0.10                  =
 ECTAPAPK<BR>  0.2    0.06                   EAAAAVDVK<BR>  0.2    0.06    =
               YGAAPAAPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ34><PRE>Top scoring peptide matches to query 34<=
BR>Score greater than 21 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.4    0.10             =
      ASGAQLEAK<BR>  8.2    0.12                   ASPSNSRR<BR>  6.3    0.0=
7  48 IPI:IPI00029036  AAEAGKVTK<BR>  4.1    0.05                   AAILLMA=
R<BR>  4.1    0.10                   AALETVDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ35><PRE>Top scoring peptide matches to query 35<=
BR>Score greater than 16 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.4    0.06             =
      LTVLCLR<BR> 14.5    0.05                   TLVLLMGK<BR>  2.8    0.10 =
                  LTVDGLEK<BR>  2.8    0.09                   LTVVATDR<BR> =
 2.8    0.05                   ITVPFGIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ36><PRE>Top scoring peptide matches to query 36<=
BR>Score greater than 13 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.11             =
      MDDAAVLK<BR>  0.3    0.05                   MMSKLLR<BR>  0.1    0.04 =
                  LIISMSAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ37><PRE>Top scoring peptide matches to query 37<=
BR>Score greater than 22 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.0    0.04             =
      YSLELKK<BR> 16.2    0.04   5+IPI:IPI00018231  YSLTVAVK<BR>  8.3    0.=
05                   LHPWVTK<BR>  8.2    0.08                   YSQLLEK<BR>=
  8.2    0.07                   YLRDVSK<BR>  7.9    0.07                   =
AFQKATSK<BR>  7.8    0.10                   YSASTPVR<BR>  6.9    0.10      =
             YLSVQDR<BR>  6.9    0.08  96 IPI:IPI00020647  YLSLEQK<BR>  5.8=
    0.07                   FTELRSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ38><PRE>Top scoring peptide matches to query 38<=
BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ39><PRE>Top scoring peptide matches to query 39<=
BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
><BR> 27.9    0.03  45 IPI:IPI00026621  IGPLGLSPK<BR> 14.0    0.03         =
          LGIPTVPGK<BR>  6.6    0.07                   LHLIEEK<BR>  6.2    =
0.06                   IHLKAGDK<BR>  4.1    0.05                   LGYLLFR<=
BR>  4.1    0.11                   LGCYIQK<BR>  4.1    0.07                =
   LGYICKK<BR>  3.8    0.08                   IGQAHTVR<BR>  3.8    0.11    =
               LGVFSACK<BR>  3.8    0.10                   IGTVMTFL</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ40><PRE>Top scoring peptide matches to query 40<=
BR>Score greater than 14 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.03             =
      RLSPEQR<BR>  1.4   -0.03                   IRSALPTK<BR>  1.2   -0.03 =
                  VGISAVALR<BR>  0.2    0.00                   LDKVWPK<BR> =
 0.2    0.05                   MSQKVHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ41><PRE>Top scoring peptide matches to query 41<=
BR>Score greater than 16 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.6    0.04   1+IPI:IPI0=
0019502  ADEWLMK<BR>  2.9    0.01                   ADGDFLVR<BR>  2.9    0.=
01                   ADNPGKYK<BR>  2.9    0.06                   ADVDMVDK<B=
R>  1.3   -0.07                   ARTLIYR<BR>  1.0   -0.02                 =
  APVSSLYR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ42><PRE>Top scoring peptide matches to query 42<=
BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ43><PRE>Top scoring peptide matches to query 43<=
BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ44><PRE>Top scoring peptide matches to query 44<=
BR>Score greater than 13 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0    0.09             =
      YDYAGVGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ45><PRE>Top scoring peptide matches to query 45<=
BR>Score greater than 13 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.4    0.10             =
      QSALTQPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ46><PRE>Top scoring peptide matches to query 46<=
BR>Score greater than 31 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ47><PRE>Top scoring peptide matches to query 47<=
BR>Score greater than 31 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ48><PRE>Top scoring peptide matches to query 48<=
BR>Score greater than 19 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.2    0.03   1 IPI:IPI0=
0019502  FVSELWK<BR>  5.5    0.11                   MVEEEQK<BR>  5.5    0.0=
4                   FVIVDCR<BR>  5.5    0.00                   FVSRLMR<BR> =
 5.5    0.04                   FVKNMNR<BR>  5.2    0.01                   M=
VGFIIGR<BR>  5.2    0.06                   MVADTISR<BR>  5.2    0.12  92 IP=
I:IPI00009181  MVMADGPR<BR>  1.0    0.06                   EWEAFVK<BR>  0.9=
    0.03                   EVFERTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ49><PRE>Top scoring peptide matches to query 49<=
BR>Score greater than 19 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.5    0.06             =
      MVASMSKR<BR>  6.0    0.08  71 IPI:IPI00019567  MVCSSVAR<BR>  5.9    0=
.04                   TRMSLGTK<BR>  5.2    0.11                   CSSEVEAK<=
BR>  1.5    0.05                   DSFLAQTK<BR>  1.1    0.11               =
    MDSTGVSGR<BR>  0.7    0.05                   FVADSKDK<BR>  0.6    0.00 =
                  FVFLLDR<BR>  0.3    0.02                   FVVKDSSK<BR>  =
0.0    0.02                   SAFSVAVTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ50><PRE>Top scoring peptide matches to query 50<=
BR>Score greater than 16 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.0    0.03  23+IPI:IPI0=
0015344  QTVAVGVIK<BR>  2.5    0.03                   EAKKPTIK<BR>  1.9    =
0.05                   VLVEWLR<BR>  1.6    0.05                   IVVMPIAR<=
BR>  0.5    0.12                   EQATPRGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ51><PRE>Top scoring peptide matches to query 51<=
BR>Score greater than 18 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3    0.03             =
      IVWLQEK<BR>  5.6    0.03                   LVGSLDRR<BR>  5.5    0.04 =
                  IVDIRDGK<BR>  2.5    0.05  65 IPI:IPI00013003  LVPSKEDK<B=
R>  2.2    0.01                   LVKPTTEK<BR>  0.9    0.06                =
   LRIDENR<BR>  0.9    0.06                   IRLDQDR<BR>  0.5    0.04     =
              IREPCLK<BR>  0.5    0.03                   LRELTQR<BR>  0.5  =
  0.04                   IREQELK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ52><PRE>Top scoring peptide matches to query 52<=
BR>Score greater than 31 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ53><PRE>Top scoring peptide matches to query 53<=
BR>Score greater than 19 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.6    0.05             =
      QNQIKCK<BR> 16.6    0.00                   LEKLMIR<BR> 16.6    0.03  =
15 IPI:IPI00021327  NQQIFLR<BR>  5.2    0.03                   SLGLLCQK<BR>=
  4.2    0.06                   ELQNMKR<BR>  4.2    0.04                   =
LEKQWSK<BR>  3.8    0.03                   QPKGYGLR<BR>  3.8    0.05       =
            LEKASQSR<BR>  3.6    0.05                   LEGAGSRTK<BR>  1.3 =
  -0.01                   AWLLFLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ54><PRE>Top scoring peptide matches to query 54<=
BR>Score greater than 19 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.1   -0.01             =
      VSFTIKPK<BR> 15.1    0.02                   TSVFIQPK<BR>  6.0    0.01=
  40 IPI:IPI00027230  NKEIFLR<BR>  5.5    0.05                   AGNEIIFR<B=
R>  4.6    0.14                   QDQSANEK<BR>  4.6   -0.02                =
   KQPPPKPK<BR>  4.6    0.05                   SANFQKPK<BR>  4.6    0.02   =
                IIKEAMAK<BR>  2.0    0.03                   SVGVVTTTR<BR>  =
1.7    0.09                   DKVNNSSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ55><PRE>Top scoring peptide matches to query 55<=
BR>Score greater than 13 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.04             =
      DLHAPGRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ56><PRE>Top scoring peptide matches to query 56<=
BR>Score greater than 21 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 31.1    0.03   1 IPI:IPI0=
0019502  VVFQEFR<BR>  7.0   -0.03                   VVPTANPVK<BR>  5.3   -0=
.03                   VVSHLIEK<BR>  5.3   -0.03                   VVTVHLEK<=
BR>  5.3   -0.05                   VVPRQVAR<BR>  5.3    0.01               =
    VVITYSSR<BR>  5.3    0.01                   VVHALEEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ57><PRE>Top scoring peptide matches to query 57<=
BR>Score greater than 17 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.2    0.05             =
      QAGPPQATR<BR>  4.5    0.11                   KAMMDAAR<BR>  3.7    0.1=
0                   GAAGCTFGGK<BR>  1.9    0.08                   EAEQRHR</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ58><PRE>Top scoring peptide matches to query 58<=
BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ59><PRE>Top scoring peptide matches to query 59<=
BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ60><PRE>Top scoring peptide matches to query 60<=
BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ61><PRE>Top scoring peptide matches to query 61<=
BR>Score greater than 15 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.6    0.02   2+IPI:IPI0=
0004497  GPPASVAALR<BR>  1.7   -0.00                   HVILSEIK<BR>  0.1   =
 0.04                   HLVLMGPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ62><PRE>Top scoring peptide matches to query 62<=
BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ63><PRE>Top scoring peptide matches to query 63<=
BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ64><PRE>Top scoring peptide matches to query 64<=
BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ65><PRE>Top scoring peptide matches to query 65<=
BR>Score greater than 17 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.8    0.07             =
      ETIKDLPK<BR>  5.8    0.07                   LLVEDINK<BR>  3.6    0.13=
                   GWFMKFK<BR>  3.6    0.09                   IFIMLYK<BR>  =
3.6    0.05                   LFLYFLK<BR>  3.3    0.12                   DK=
LPPSMR<BR>  3.3    0.05                   LFIGQIPR<BR>  3.3    0.03        =
           RSLVLDLK<BR>  3.3    0.06                   ENLQLKAK<BR>  3.3   =
 0.10                   ENIAIVER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ66><PRE>Top scoring peptide matches to query 66<=
BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ67><PRE>Top scoring peptide matches to query 67<=
BR>Score greater than 31 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ68><PRE>Top scoring peptide matches to query 68<=
BR>Score greater than 26 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 21.7    0.03  69 IPI:IPI0=
0004071  AGLQFPVGR<BR> 12.2    0.09                   QLQEEAAR<BR> 10.0    =
0.03                   KIQNQWK<BR>  9.3    0.02                   QLKGLEEK<=
BR>  7.5    0.01                   QLFQLPAK<BR>  4.4    0.02               =
    IKQGELEK<BR>  4.4    0.01                   LQKLTGER<BR>  4.2    0.06  =
                 GSPQDLVTK<BR>  3.9    0.05                   KLEEAAQR<BR> =
 3.6    0.04                   VRPMNRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ69><PRE>Top scoring peptide matches to query 69<=
BR>Score greater than 32 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ70><PRE>Top scoring peptide matches to query 70<=
BR>Score greater than 19 indicates homology<BR>Score greater than 32 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.2    0.08             =
      SGTLLPSDR<BR>  7.0    0.05                   GLFNKNPR<BR>  6.2    0.0=
7                   GFLPPASEK<BR>  6.2    0.13                   MEGPEGLGR<=
BR>  5.5    0.00                   STELLVRK<BR>  5.4   -0.00               =
    MAVLALLAK<BR>  5.4    0.08                   GENALKDAK<BR>  4.0    0.10=
                   AFVHSDAAK<BR>  3.7    0.08                   GTASPGSQLK<=
BR>  1.5    0.08                   ENDLSVLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ71><PRE>Top scoring peptide matches to query 71<=
BR>Score greater than 31 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ72><PRE>Top scoring peptide matches to query 72<=
BR>Score greater than 15 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0    0.06             =
      GLSSAARER<BR>  2.7    0.07                   SAVGATSPTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ73><PRE>Top scoring peptide matches to query 73<=
BR>Score greater than 17 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.6    0.08             =
      LAMGIWIK<BR> 11.0    0.03  54 IPI:IPI00013296  IAFAITAIK<BR>  3.9    =
0.01                   LASLLFKR<BR>  3.1    0.10                   LKANAESS=
K<BR>  0.2    0.10                   LADLEKMK<BR>  0.2    0.04             =
      LALAFRTR<BR>  0.2   -0.01                   IAVLYLKK<BR>  0.2    0.01=
                   LAILYAKR<BR>  0.2    0.05                   LAERFLAK<BR>=
  0.2    0.08                   LAEVGFRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ74><PRE>Top scoring peptide matches to query 74<=
BR>Score greater than 16 indicates homology<BR>Score greater than 29 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.5    0.10  30+IPI:IPI0=
0018158  NAFVTGIAR<BR>  3.0    0.06                   ANFSIKIR<BR>  2.8    =
0.07                   QGFILSGVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ75><PRE>Top scoring peptide matches to query 75<=
BR>Score greater than 29 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.6    0.07  98 IPI:IPI0=
0000705  VNMTELDK<BR> 15.1    0.05  20 IPI:IPI00021826  VDFNVPMK<BR>  2.9  =
  0.04                   VDTGHKHR<BR>  2.7    0.08                   VDSSSG=
EIR<BR>  1.3   -0.00                   VTDFGLAVK<BR>  0.9    0.05          =
         VRTNSMNK<BR>  0.0   -0.06                   VPKLHSIR<BR>  0.0   -0=
.00                   VAQYLLDK<BR>  0.0   -0.00                   VYLAQDIK<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ76><PRE>Top scoring peptide matches to query 76<=
BR>Score greater than 22 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.1    0.08             =
      SFLVGEAAR<BR>  8.8    0.04                   TFVRDIAK<BR>  6.4    0.0=
9                   DIFDQLAK<BR>  5.4    0.08                   SFLLGCPR<BR=
>  5.1    0.05                   SLTMVALAK<BR>  3.2    0.03                =
   MLINFLAK<BR>  3.2    0.04                   AYLQKQAK<BR>  3.2    0.04   =
                HPLPEKTK<BR>  3.0    0.04                   KAYGQALAK<BR>  =
1.3    0.06                   AYMPLRAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ77><PRE>Top scoring peptide matches to query 77<=
BR>Score greater than 13 indicates homology<BR>Score greater than 25 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.13             =
      AFAKASDLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ78><PRE>Top scoring peptide matches to query 78<=
BR>Score greater than 13 indicates homology<BR>Score greater than 28 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.4    0.04             =
      VKEPPILR<BR>  3.2    0.00                   VAGLLPLLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ79><PRE>Top scoring peptide matches to query 79<=
BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
><BR> 18.3    0.02  95 IPI:IPI00018290  LLLGATLPR<BR> 16.7    0.09         =
          LLLFEYR<BR> 15.9    0.03                   IIIPEIQK<BR> 15.9    0=
.04                   LLLKSHSR<BR> 15.3    0.03                   LLLPGELAK=
<BR> 15.3    0.03                   ILLLEAGPK<BR>  3.8    0.05             =
      ILKSHVEK<BR>  2.1    0.08                   LLKNFYR<BR>  2.1    0.08 =
                  LLYFNKR<BR>  2.1    0.07                   ILCVHRR</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ80><PRE>Top scoring peptide matches to query 80<=
BR>Score greater than 14 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0    0.04             =
      GHWTAARR<BR>  1.6    0.01                   MYLSLIAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ81><PRE>Top scoring peptide matches to query 81<=
BR>Score greater than 13 indicates homology<BR>Score greater than 29 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.8    0.07             =
      YFIIQDR<BR>  2.8    0.03  15 IPI:IPI00021327  YFLWVVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ82><PRE>Top scoring peptide matches to query 82<=
BR>Score greater than 20 indicates homology<BR>Score greater than 29 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.2    0.09             =
      YFIIQDR<BR> 15.2    0.05  15 IPI:IPI00021327  YFLWVVK<BR>  6.1    0.0=
6                   MYLSLIAK<BR>  4.0    0.05                   LQQYKFK<BR>=
  4.0    0.11                   YFPSERR<BR>  3.7    0.06                   =
IYGEVVFK<BR>  3.7    0.05                   IKGQAYFK<BR>  3.7    0.06      =
             ILASEFFK<BR>  3.5    0.07                   ASTKSVSFK<BR>  3.3=
    0.10                   FPRMLMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ83><PRE>Top scoring peptide matches to query 83<=
BR>Score greater than 14 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.1    0.09             =
      MFKLDTGK<BR>  1.0    0.01                   LFNAIIHK<BR>  1.0   -0.01=
                   LPTLKDIR<BR>  1.0    0.04                   SHSLSIRR</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ84><PRE>Top scoring peptide matches to query 84<=
BR>Score greater than 20 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.2    0.04  43 IPI:IPI0=
0029137  EAFSLFDK<BR>  6.7   -0.00                   AEQPLSVGR<BR>  3.8   -=
0.05                   EALQARLR<BR>  3.1    0.04                   TVFVMTDK=
<BR>  3.0   -0.00                   EALEPNKR<BR>  1.8   -0.02              =
     ELSQAPRR<BR>  1.7   -0.04                   STVPTPAKR<BR>  0.6   -0.00=
                   EAIPGEGRK<BR>  0.3   -0.00                   EENPALRK<BR=
>  0.1   -0.05                   AELLRAQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ85><PRE>Top scoring peptide matches to query 85<=
BR>Score greater than 31 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ86><PRE>Top scoring peptide matches to query 86<=
BR>Score greater than 15 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.03             =
      GLFTGLTPR<BR>  2.2    0.12                   YHEAWQK<BR>  2.2    0.10=
                   HYEEKQK<BR>  2.0    0.05                   STEELKVR<BR> =
 2.0    0.10                   YHEQVSAK<BR>  2.0    0.10                   =
YHEKAADK<BR>  2.0    0.12                   NVSEELDR<BR>  1.8    0.08      =
             ILSNSEGNK<BR>  1.8    0.12                   LPSSTGEDR<BR>  1.=
8    0.12                   NSVEAADQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ87><PRE>Top scoring peptide matches to query 87<=
BR>Score greater than 13 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.0    0.10             =
      QAQFALQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ88><PRE>Top scoring peptide matches to query 88<=
BR>Score greater than 31 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ89><PRE>Top scoring peptide matches to query 89<=
BR>Score greater than 31 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ90><PRE>Top scoring peptide matches to query 90<=
BR>Score greater than 15 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0    0.07             =
      ADYEKALR<BR>  2.4    0.04                   SVNELIYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ91><PRE>Top scoring peptide matches to query 91<=
BR>Score greater than 13 indicates homology<BR>Score greater than 27 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.0    0.11             =
      QMLIHLAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ92><PRE>Top scoring peptide matches to query 92<=
BR>Score greater than 13 indicates homology<BR>Score greater than 27 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.12             =
      ELAPAGRAGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ93><PRE>Top scoring peptide matches to query 93<=
BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ94><PRE>Top scoring peptide matches to query 94<=
BR>Score greater than 18 indicates homology<BR>Score greater than 31 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.1    0.04  38 IPI:IPI0=
0022753  YDGIILPGK<BR>  4.5    0.01                   LVPYLKDK<BR>  2.8    =
0.06                   SLTELDGLK<BR>  1.9    0.07                   LVDIICD=
K<BR>  1.9    0.05                   TIRTLEDK<BR>  1.9    0.06             =
      TELKLEDK<BR>  1.9    0.00                   LIIMKVDK<BR>  1.8    0.06=
                   LLLASTDDK<BR>  0.3    0.04                   FLPTLEQK<BR=
>  0.2    0.04                   VIMAELATK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ95><PRE>Top scoring peptide matches to query 95<=
BR>Score greater than 13 indicates homology<BR>Score greater than 28 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.1    0.14             =
      LRHNGPPPV</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ96><PRE>Top scoring peptide matches to query 96<=
BR>Score greater than 31 indicates identity<BR><I>Status bar shows all hits=
 for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</B=
></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ97><PRE>Top scoring peptide matches to query 97<=
BR>Score greater than 13 indicates homology<BR>Score greater than 27 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.13             =
      DTLWLALR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ98><PRE>Top scoring peptide matches to query 98<=
BR>Score greater than 18 indicates homology<BR>Score greater than 30 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.1   -0.04             =
      IPILGVHLK<BR>  4.5    0.05  91 IPI:IPI00002233  VNSLVCLGK<BR>  1.5   =
-0.02                   LLGLVRYR<BR>  1.3    0.03                   EVAPVPK=
IH<BR>  1.0    0.03                   VFLENVIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ99><PRE>Top scoring peptide matches to query 99<=
BR>Score greater than 14 indicates homology<BR>Score greater than 29 indica=
tes identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><=
B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.9    0.10             =
      RLELEMAK<BR>  1.3    0.11                   DLKQEQTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ100><PRE>Top scoring peptide matches to query 10=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.05           =
        LSNIFVIGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ101><PRE>Top scoring peptide matches to query 10=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0    0.12           =
        KIHHDLTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ102><PRE>Top scoring peptide matches to query 10=
2<BR>Score greater than 17 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.5    0.04   7 IPI:IP=
I00003865  EIAEAYLGK<BR>  4.6    0.07                   ELLSSDAMK<BR>  2.4 =
  -0.04                   EILSKIYK<BR>  2.2    0.09                   NQEAS=
LGMK<BR>  0.3   -0.00                   KPAPPHPHL</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ103><PRE>Top scoring peptide matches to query 10=
3<BR>Score greater than 27 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 39.0    0.04  12 IPI:IP=
I00028646  HVLVTLGEK<BR> 12.1    0.05                   HVLDRSLR<BR> 11.5  =
  0.06  49 IPI:IPI00029286  HVLATLGER<BR>  4.5    0.13                   HV=
AQQQER<BR>  2.4    0.06  71 IPI:IPI00019567  HVQKQIDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ104><PRE>Top scoring peptide matches to query 10=
4<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 46.0    0.04  12 IPI:IPI00028646  HVLVTLGEK<BR> 14.4    0.06       =
            HVLDRSLR<BR> 13.8    0.07  49 IPI:IPI00029286  HVLATLGER<BR>  4=
.9    0.07  71 IPI:IPI00019567  HVQKQIDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ105><PRE>Top scoring peptide matches to query 10=
5<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ106><PRE>Top scoring peptide matches to query 10=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.07           =
        HVLTTLGEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ107><PRE>Top scoring peptide matches to query 10=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.2    0.04   6+IPI:IP=
I00021439  DLTDYLMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ108><PRE>Top scoring peptide matches to query 10=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.3   -0.03           =
        VLMPPDAIK<BR>  1.0    0.01                   YTPLTYNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ109><PRE>Top scoring peptide matches to query 10=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.8    0.05           =
        NDLAVVDVR<BR>  1.3    0.06                   FEHVGKQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ110><PRE>Top scoring peptide matches to query 11=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.07           =
        EPGVFNGKR<BR>  0.6    0.11                   GLSEDFHAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ111><PRE>Top scoring peptide matches to query 11=
1<BR>Score greater than 14 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.05           =
        ASTAGMILPK<BR>  1.1    0.01                   AATITPFRK<BR>  0.9   =
 0.05                   VEGFLTPNK<BR>  0.9    0.15                   MEPEAG=
TNR<BR>  0.9    0.00                   IVPPWAPPK<BR>  0.9    0.03          =
         RVSHSPPPK<BR>  0.9    0.09                   YGINTDPPK<BR>  0.9   =
 0.11                   SDSSSSLPPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ112><PRE>Top scoring peptide matches to query 11=
2<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ113><PRE>Top scoring peptide matches to query 11=
3<BR>Score greater than 16 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.3    0.04   2+IPI:IP=
I00004497  LASQLGVYR<BR>  2.5    0.07                   LAFRSGEAR<BR>  2.4 =
   0.10                   SMSPFRGPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ114><PRE>Top scoring peptide matches to query 11=
4<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.9    0.04   2+IPI:IP=
I00004497  LASQLGVYR<BR>  0.8    0.07                   ISASYPRGR</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ115><PRE>Top scoring peptide matches to query 11=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.9    0.04   5 IPI:IP=
I00018231  TNLFSALIK<BR>  1.2    0.10                   TNIPYDKR<BR>  1.0  =
  0.05                   TPLHLAAQR<BR>  1.0    0.07                   NTLSL=
AMLK<BR>  0.5    0.13                   QAEMEVKR<BR>  0.5    0.12          =
         ITFADFHR<BR>  0.4    0.08                   SQMLLSRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ116><PRE>Top scoring peptide matches to query 11=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.04   5 IPI:IP=
I00018231  TNLFSALIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ117><PRE>Top scoring peptide matches to query 11=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.1    0.04  64 IPI:IP=
I00002844  LFMLLLEK<BR>  1.7    0.01                   LFVKLATSK<BR>  0.7  =
  0.09                   LFELSELR<BR>  0.7    0.09                   LFELTV=
ER<BR>  0.7    0.11                   LMRTQDVK<BR>  0.6    0.08            =
       LMSALTQVK<BR>  0.6    0.12                   IMESVNGLK<BR>  0.5    0=
.09                   LFVGTAVDGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ118><PRE>Top scoring peptide matches to query 11=
8<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.9    0.06   5 IPI:IP=
I00018231  TNLFSALIK<BR>  3.4    0.12                   TNIPYDKR<BR>  3.2  =
  0.07                   TPLHLAAQR<BR>  3.2    0.09                   NTLSL=
AMLK<BR>  2.4    0.10                   SQMLLSRR<BR>  2.4    0.14          =
         ITFADFHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ119><PRE>Top scoring peptide matches to query 11=
9<BR>Score greater than 16 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.4    0.07           =
        KGGNHIPER<BR>  3.0   -0.03                   NPKGPLILR<BR>  2.0    =
0.08                   GGERNAYLK<BR>  0.5    0.08  17 IPI:IPI00027488  SCNC=
LLLK<BR>  0.5    0.09                   TWFSIPEK<BR>  0.5    0.00          =
         MLRLFSLK<BR>  0.5    0.10                   CFVDLPTR<BR>  0.3    0=
.03                   FSSSLLILQ<BR>  0.3    0.12                   NAESVKGM=
R</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ120><PRE>Top scoring peptide matches to query 12=
0<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.6   -0.01           =
        KAIFIFIR<BR>  4.0    0.13                   TDLKTNCR<BR>  1.4    0.=
02                   AQLLGPRPR<BR>  1.4    0.12                   SELDMLVGK=
<BR>  0.8    0.15                   SEIMELNR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ121><PRE>Top scoring peptide matches to query 12=
1<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.8   -0.01           =
        KAIFIFIR<BR>  5.5    0.13                   TDLKTNCR<BR>  2.5    0.=
02                   AQLLGPRPR<BR>  2.5    0.13                   SELDMLVGK=
<BR>  0.9    0.12                   SEFLSTAPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ122><PRE>Top scoring peptide matches to query 12=
2<BR>Score greater than 18 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.5    0.00           =
        KAIFIFIR<BR>  4.3    0.13                   TDLKTNCR<BR>  3.2    0.=
13                   SELDMLVGK<BR>  1.1    0.03                   AQLLGPRPR=
<BR>  0.3    0.12                   SEFLSTAPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ123><PRE>Top scoring peptide matches to query 12=
3<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ124><PRE>Top scoring peptide matches to query 12=
4<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ125><PRE>Top scoring peptide matches to query 12=
5<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ126><PRE>Top scoring peptide matches to query 12=
6<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ127><PRE>Top scoring peptide matches to query 12=
7<BR>Score greater than 16 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3    0.10           =
        MLCPLPER<BR>  5.9    0.11  83 IPI:IPI00030790  NTATPGELGR<BR>  2.8 =
   0.09                   GGRDGVVAER<BR>  2.6    0.05                   NKW=
IGEIR<BR>  0.3    0.11                   VDKSAADGPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ128><PRE>Top scoring peptide matches to query 12=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.8    0.05  22 IPI:IP=
I00027214  GDYPLEAVR<BR>  1.7    0.03                   MGWLGAIQK<BR>  1.4 =
   0.03                   TAENKLDTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ129><PRE>Top scoring peptide matches to query 12=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.07           =
        YRPPQGMR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ130><PRE>Top scoring peptide matches to query 13=
0<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.5    0.05  47+IPI:IP=
I00013485  GTGIVSAPVPK<BR>  4.8    0.13                   ASGISFCKGV<BR>  4=
.5    0.11                   VKEEEVHR<BR>  4.3    0.06                   HY=
LIAVPGR<BR>  4.3    0.10                   QAEVHTGRK<BR>  4.3    0.00      =
             SLKVPRPTK<BR>  4.3    0.11                   TELAAEVHR<BR>  4.=
3    0.05                   VLVVDPDLR<BR>  4.1    0.02                   AA=
GISLIVPGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ131><PRE>Top scoring peptide matches to query 13=
1<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.5    0.06  23+IPI:IP=
I00015344  IGGIGTVPVGR<BR>  1.6    0.09                   LRAFYLDK<BR>  1.2=
    0.10                   WIQRTHGK<BR>  0.7    0.15                   MAHG=
IPSQGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ132><PRE>Top scoring peptide matches to query 13=
2<BR>Score greater than 25 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.6   -0.08           =
        IRVLLQER<BR> 11.4    0.07                   EAFELFDR<BR> 11.3   -0.=
08                   LALRINAQK<BR>  9.8    0.04                   LKAMIMCK<=
BR>  4.8    0.01                   LPISASHSSK<BR>  4.3    0.01             =
      YCIIRSSK<BR>  3.5    0.04                   EAKMICFK<BR>  3.2    0.04=
                   AIFEEVYR<BR>  2.2    0.04                   LFTDLFDR<BR>=
  2.0    0.13                   TSCAGSCGAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ133><PRE>Top scoring peptide matches to query 13=
3<BR>Score greater than 19 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.4    0.06           =
        VDLATVPRR<BR>  6.4    0.12                   NGGIPHYLR<BR>  5.0    =
0.11                   LPGGSADGKPK<BR>  1.8    0.09                   LREEA=
RPR<BR>  0.1    0.03                   IREPALLSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ134><PRE>Top scoring peptide matches to query 13=
4<BR>Score greater than 16 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.1    0.07           =
        DARNGLLLR<BR>  3.5    0.09                   QVAELGSPVK<BR>  3.4   =
 0.09                   KPTAEASPVK<BR>  2.5    0.10                   GGVGG=
AGATPRK<BR>  0.1    0.09                   DPLLVEVSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ135><PRE>Top scoring peptide matches to query 13=
5<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.9    0.12           =
        FPSIMVYR<BR>  4.0   -0.01                   VKLLLMPAK<BR>  2.3    0=
.12                   HTLDGAKMR<BR>  2.3    0.02                   ALILLAQM=
R<BR>  1.2   -0.02                   VLKIISVEK<BR>  0.5    0.11            =
       VSFYQLSGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ136><PRE>Top scoring peptide matches to query 13=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3   -0.01           =
        EVPLFRLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ137><PRE>Top scoring peptide matches to query 13=
7<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ138><PRE>Top scoring peptide matches to query 13=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.06           =
        KMTGKPEPK<BR>  0.3    0.06                   KYTTLSYR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ139><PRE>Top scoring peptide matches to query 13=
9<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ140><PRE>Top scoring peptide matches to query 14=
0<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ141><PRE>Top scoring peptide matches to query 14=
1<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.2    0.06  64 IPI:IP=
I00002844  DLLFILTAK<BR> 12.4    0.08                   LDIFRIEK<BR>  1.4  =
  0.08                   VELLEKFR<BR>  1.4    0.14                   IDIQMK=
NR<BR>  1.4    0.08                   EVLLEFRK<BR>  1.2    0.10            =
       NNLPGHLLR<BR>  1.2    0.11                   VEITTETIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ142><PRE>Top scoring peptide matches to query 14=
2<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.4    0.06   9 IPI:IP=
I00033494  ELLTTMGDR<BR>  3.9    0.05                   QPIYMEVR<BR>  3.7  =
 -0.01                   IQLVGYSQK<BR>  3.4    0.12                   NSHTF=
NCR<BR>  3.4    0.06                   LIETQMER<BR>  0.0    0.06           =
        ELFSGSNPGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ143><PRE>Top scoring peptide matches to query 14=
3<BR>Score greater than 19 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.9    0.07           =
        NELTEMKR<BR>  5.2    0.06                   EPLRQHQE<BR>  3.9    0.=
11                   ENLADMEAK<BR>  3.9    0.08                   ENIASLMDK=
<BR>  2.4    0.08                   DQLEQYLQ<BR>  2.4   -0.00              =
     ENLKTLYR<BR>  2.3    0.08                   HMATHSPQK<BR>  2.3    0.06=
                   AVWTMGDIK<BR>  2.2    0.05                   MSHPPNIPK<B=
R>  2.2   -0.01                   PELPVPAWK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ144><PRE>Top scoring peptide matches to query 14=
4<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ145><PRE>Top scoring peptide matches to query 14=
5<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 27.2    0.03  10 IPI:IP=
I00011042  YLTVAAVFR<BR>  4.4   -0.04                   LRPITAQLK<BR>  3.8 =
   0.08  71+IPI:IPI00019567  FQWFKAGR<BR>  3.7    0.09                   CE=
AVGKFTK<BR>  3.6    0.10                   FEEAMKLR<BR>  3.6    0.03       =
            RFFESIIK<BR>  3.2   -0.04                   LLPGKVVWK<BR>  2.8 =
   0.08                   LYTTMPVAK<BR>  2.8    0.08                   YLTA=
TQNTK<BR>  2.8    0.10                   YLTPMASTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ146><PRE>Top scoring peptide matches to query 14=
6<BR>Score greater than 25 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.9    0.05  10 IPI:IP=
I00011042  YLTVAAVFR<BR> 12.2    0.04                   MFYIKPIK<BR> 11.5  =
  0.03                   ALPLCPQLK<BR>  7.5    0.05                   RFFES=
IIK<BR>  6.2    0.10                   YLTATQNTK<BR>  6.2    0.12          =
         YLTPMASTR<BR>  4.6    0.02                   KLCQHIIK<BR>  4.3    =
0.00                   LEDLPVIIK<BR>  4.3    0.01                   LLVHMGL=
LK<BR>  4.3   -0.02  99 IPI:IPI00030246  LKPGDRLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ147><PRE>Top scoring peptide matches to query 14=
7<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ148><PRE>Top scoring peptide matches to query 14=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.5    0.05   1 IPI:IP=
I00019502  VKPLLQVSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ149><PRE>Top scoring peptide matches to query 14=
9<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ150><PRE>Top scoring peptide matches to query 15=
0<BR>Score greater than 26 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.3    0.06           =
        KIVAELQDK<BR> 12.2    0.08                   QIVASQLER<BR> 12.2    =
0.06                   KIVAENLEK<BR>  4.2    0.08                   QIEEQIK=
R<BR>  4.0    0.08                   QLAVELQSR<BR>  2.9    0.13            =
       VCASERPPK<BR>  2.8    0.01                   AVAVPAKLFK<BR>  2.8    =
0.05                   AVAVAALSVSR<BR>  2.4    0.10                   SNTPI=
LVDGK<BR>  1.8    0.12                   QLLDTPNSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ151><PRE>Top scoring peptide matches to query 15=
1<BR>Score greater than 14 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.0   -0.09           =
        LKSATGSEVR<BR>  1.1   -0.03                   EEKTPGCVK<BR>  0.1   =
-0.03                   QLQMERDK<BR>  0.1   -0.09                   QIMKMRP=
K</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ152><PRE>Top scoring peptide matches to query 15=
2<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ153><PRE>Top scoring peptide matches to query 15=
3<BR>Score greater than 20 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.1    0.05  55 IPI:IP=
I00029191  YSVDIPLDK<BR>  6.1    0.05                   ANSTKSQVSK<BR>  5.1=
    0.06                   QGSLSESTLK<BR>  2.6    0.07                   YS=
QTPQIGR<BR>  2.0    0.04                   YEDGIALLR<BR>  1.9    0.07      =
             MREGLNVSK<BR>  0.4    0.03                   ARQLFEASK<BR>  0.=
3    0.01                   APSITSAFKK<BR>  0.3   -0.00                   G=
SKIYVLGGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ154><PRE>Top scoring peptide matches to query 15=
4<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ155><PRE>Top scoring peptide matches to query 15=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 25.2    0.06  36 IPI:IP=
I00030575  VSFELFADK<BR>  0.0    0.02                   VSSFEVFLK<BR>  0.0 =
  -0.00                   VSQPKPFPR<BR>  0.0    0.01                   VSGQ=
KFVYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ156><PRE>Top scoring peptide matches to query 15=
6<BR>Score greater than 16 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.4    0.03           =
        AVGHFELRK<BR>  3.1    0.05                   GIGWIPLDSV<BR>  2.8   =
 0.12                   DGGIHLECR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ157><PRE>Top scoring peptide matches to query 15=
7<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ158><PRE>Top scoring peptide matches to query 15=
8<BR>Score greater than 18 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.8    0.05           =
        RLSTLQLVK<BR>  7.8    0.06                   KLITQDLVK<BR>  7.8    =
0.11                   TPLCNLLVK<BR>  5.1    0.10                   SSALDLK=
PVK<BR>  4.5    0.12                   DIWAKIPSK<BR>  0.8    0.12          =
         ALRTLEQAR<BR>  0.6    0.14                   IQDLEQLAK<BR>  0.6   =
 0.11                   ELIEELIAK<BR>  0.3    0.06                   AVLSLD=
KIAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ159><PRE>Top scoring peptide matches to query 15=
9<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ160><PRE>Top scoring peptide matches to query 16=
0<BR>Score greater than 23 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.8    0.14           =
        IATEAGRLAR<BR>  9.8    0.12                   MPLLAMLLR<BR>  7.6   =
 0.07                   RLSTLQLVK<BR>  7.6    0.09                   KLITQD=
LVK<BR>  7.6    0.13                   TPLCNLLVK<BR>  4.4    0.14          =
         DIWAKIPSK<BR>  3.1    0.12                   SSALDLKPVK<BR>  0.4  =
  0.13                   ELIEELIAK<BR>  0.4    0.14                   QTALE=
LARR<BR>  0.2    0.09                   AVLSLDKIAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ161><PRE>Top scoring peptide matches to query 16=
1<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ162><PRE>Top scoring peptide matches to query 16=
2<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ163><PRE>Top scoring peptide matches to query 16=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.1    0.07           =
        KVWLHQTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ164><PRE>Top scoring peptide matches to query 16=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.3    0.06  60 IPI:IP=
I00020052  ESTLHLVLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ165><PRE>Top scoring peptide matches to query 16=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.14  91 IPI:IP=
I00002233  EDGLQNKHK<BR>  1.6    0.12                   QSPTPVPTNK</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ166><PRE>Top scoring peptide matches to query 16=
6<BR>Score greater than 25 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.2   -0.01           =
        LEIKQLGNR<BR> 11.5   -0.01                   LEIGQNLRK<BR> 10.1   -=
0.00                   GQGLWRVVR<BR>  5.7   -0.01                   IEIPLPF=
GGK<BR>  5.5    0.05                   LDGSPAAQRR<BR>  1.5   -0.06         =
          ELISVVIAVK<BR>  1.3   -0.04                   LEKLQAQLK<BR>  1.1 =
   0.06                   LEQNGSPLGR<BR>  0.8    0.03                   SHS=
SLEGLLK<BR>  0.5    0.02                   GGKASDVALPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ167><PRE>Top scoring peptide matches to query 16=
7<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.6    0.05  54 IPI:IP=
I00013296  VITIMQNPR<BR>  4.1    0.04                   VFLNGTHRK</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ168><PRE>Top scoring peptide matches to query 16=
8<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.6    0.06  28 IPI:IP=
I00034297  LNNLVLFDK<BR>  2.8    0.03                   IGRQAVIYR<BR>  2.8 =
   0.05                   LGISCTRLR<BR>  1.0    0.11                   NQHE=
LAVHK<BR>  1.0    0.10                   LNARMADLR<BR>  0.5    0.01        =
           LGIHARPRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ169><PRE>Top scoring peptide matches to query 16=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.6    0.11           =
        DPFQKATLR<BR>  4.6    0.04                   VLFKAQLEK<BR>  1.5    =
0.12                   GAEGSVSKVNK<BR>  0.3    0.08                   NLTSV=
MIVAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ170><PRE>Top scoring peptide matches to query 17=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.6    0.12           =
        DPYALRSVR<BR>  1.7    0.11                   VIQSADSKTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ171><PRE>Top scoring peptide matches to query 17=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.07           =
        SSYADKAPSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ172><PRE>Top scoring peptide matches to query 17=
2<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.3    0.06           =
        FNPFVTSDR<BR>  5.4    0.04                   NMTEIFRR<BR>  2.9    0=
.09                   YYSYLMSR<BR>  2.2    0.02                   VMILNHPDK=
<BR>  2.2    0.04                   YMRVASPSR<BR>  2.0    0.06             =
      LHAEDSAPSR<BR>  2.0   -0.06                   VLALLDVPDK<BR>  1.8   -=
0.05                   TVARGPVAPSK<BR>  1.0    0.06                   GFHGH=
ERSR<BR>  0.9   -0.08                   LPKNGIVVSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ173><PRE>Top scoring peptide matches to query 17=
3<BR>Score greater than 18 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.8   -0.02           =
        LLEDPVIKR<BR>  5.0    0.02                   IGGRIFTYR<BR>  4.1   -=
0.03                   LPKNGIVVSR<BR>  2.2   -0.07                   LLKPRS=
IQK<BR>  1.5    0.09                   NIYRDVMR<BR>  1.5    0.09           =
        NLYRDVMR<BR>  1.5    0.11                   NIEKMYER<BR>  1.2   -0.=
04                   PIWVVLLSR<BR>  1.2    0.02                   NIVPGWLQR=
<BR>  1.2   -0.04                   LLPQVLLMR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ174><PRE>Top scoring peptide matches to query 17=
4<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.7    0.09           =
        DTLRQWHK<BR>  3.7   -0.04                   LLQLLRTAR<BR>  3.3    0=
.02                   LDEQKILPK<BR>  3.1    0.03                   ILRGPDGL=
SR<BR>  2.9    0.08                   LLPSCSPGPR<BR>  2.8    0.04          =
         LIEPNAAVTR<BR>  1.1    0.14                   NLFQQYDR<BR>  0.5   =
 0.02                   LLLLGPGESGK<BR>  0.4    0.10                   LLFF=
WSDR<BR>  0.4    0.02                   LLKYMFIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ175><PRE>Top scoring peptide matches to query 17=
5<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 43.1    0.05  28 IPI:IPI00034297  LITPAVVSER<BR> 14.5    0.00      =
             IITIRNINK<BR> 10.2    0.11                   IVDSKYFGR<BR>  9.=
2    0.04                   ILVVQDRNK<BR>  8.7   -0.02                   IL=
IRISIEK<BR>  4.5    0.05                   LIRDPETIK<BR>  2.9    0.10      =
             LLHSSQMLR<BR>  2.0    0.11                   LLAMENIHK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ176><PRE>Top scoring peptide matches to query 17=
6<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.1    0.02           =
        GFSHQAGLIR<BR>  2.0   -0.02                   GLAGAVSELLR<BR>  2.0 =
   0.07                   GFDNHSPIAK<BR>  1.2   -0.02                   DLA=
SVQALLR<BR>  1.1    0.04                   DLDNSPLRR<BR>  0.5   -0.01      =
             GFSLQHKIR<BR>  0.5    0.12                   GMSYLEDVR<BR>  0.=
5    0.08                   GFSCPKSFR<BR>  0.5    0.02                   GF=
RPNPELR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ177><PRE>Top scoring peptide matches to query 17=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.11           =
        APQLPVCEGD<BR>  1.1    0.03                   GSAPGNGRTLR</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ178><PRE>Top scoring peptide matches to query 17=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.03           =
        AKKPAAATVTK<BR>  0.4    0.10                   GSKGDGGLIGPK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ179><PRE>Top scoring peptide matches to query 17=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.0    0.01           =
        HTGVGKSLHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ180><PRE>Top scoring peptide matches to query 18=
0<BR>Score greater than 26 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 36.1    0.05  33 IPI:IP=
I00011253  AELNEFLTR<BR> 10.8    0.06                   SLLCCARGR<BR>  6.5 =
  -0.04                   ANQIHKLLR<BR>  3.8    0.06                   TVLQ=
MDELK<BR>  3.8    0.05                   AEIMESIKR<BR>  3.1    0.03        =
           LEALDYLQK<BR>  3.1   -0.01                   LVTLLENYK<BR>  2.1 =
   0.03                   VTLWLSTCL<BR>  2.0    0.03                   LSIT=
KSACGR<BR>  1.9    0.02                   SLKDLMELK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ181><PRE>Top scoring peptide matches to query 18=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.1    0.08           =
        GSDLPELFSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ182><PRE>Top scoring peptide matches to query 18=
2<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR>  2.1    0.13                   KIIAVATLHK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ183><PRE>Top scoring peptide matches to query 18=
3<BR>Score greater than 8 indicates identity<BR><I>Status bar shows all hit=
s for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</=
B><BR>  0.3    0.15  82 IPI:IPI00012321  LLEPVLLLGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ184><PRE>Top scoring peptide matches to query 18=
4<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ185><PRE>Top scoring peptide matches to query 18=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.06  15 IPI:IP=
I00021327  ATADDELSFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ186><PRE>Top scoring peptide matches to query 18=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.1    0.07  15 IPI:IP=
I00021327  ATADDELSFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ187><PRE>Top scoring peptide matches to query 18=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1   -0.01           =
        RATVDVPPSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ188><PRE>Top scoring peptide matches to query 18=
8<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 21.4    0.11  61 IPI:IPI00007781  ESGVVAVSPEK<BR> 18.6    0.03  94 =
IPI:IPI00010109  DLNVISSLLK<BR> 16.2    0.07                   VLGPCSDILK<B=
R> 13.5    0.05                   QVFEPQLLK<BR> 13.5    0.06               =
    KMIQHAVFK<BR> 13.4    0.07                   HHPKDNLIK<BR> 12.9    0.02=
                   QLLTERTLK<BR> 12.9   -0.00                   TGDKLTILIK<=
BR> 12.4    0.09  91 IPI:IPI00002233  EQEQAQKLK<BR> 11.6    0.07           =
        KEDLLDQLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ189><PRE>Top scoring peptide matches to query 18=
9<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ190><PRE>Top scoring peptide matches to query 19=
0<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ191><PRE>Top scoring peptide matches to query 19=
1<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ192><PRE>Top scoring peptide matches to query 19=
2<BR>Score greater than 24 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.9    0.08  97 IPI:IP=
I00027824  LNVTDSVINK<BR> 10.2    0.02                   FLLQPPIFK<BR>  9.6=
    0.04                   ITTAAALSLNK<BR>  6.8    0.03                   L=
MLLLEINK<BR>  6.8    0.08                   NLHHNLLNK<BR>  6.8    0.10     =
              ENISQVKER<BR>  6.4    0.08                   ICILDGGINK<BR>  =
3.2    0.04                   GLEKTSLNIK<BR>  1.8    0.08                  =
 CPFDLLIPK<BR>  1.8    0.08                   MCLLDLLPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ193><PRE>Top scoring peptide matches to query 19=
3<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ194><PRE>Top scoring peptide matches to query 19=
4<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ195><PRE>Top scoring peptide matches to query 19=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.3    0.05           =
        LALHWKLTK<BR> 12.2    0.07                   IAIYELLFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ196><PRE>Top scoring peptide matches to query 19=
6<BR>Score greater than 25 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.4    0.06   1 IPI:IP=
I00019502  DLGEELEALK<BR> 10.7    0.04  70 IPI:IPI00033922  ATIEELRER<BR>  =
4.3    0.09                   EVWEMLGPR<BR>  4.3    0.05                   =
VMKTIEHMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ197><PRE>Top scoring peptide matches to query 19=
7<BR>Score greater than 16 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3    0.06           =
        DNETLREIK<BR>  3.4    0.06                   TQADLDSLVR<BR>  0.9   =
 0.02                   VEGLERSLSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ198><PRE>Top scoring peptide matches to query 19=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.8    0.01           =
        LGFLLNLDSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ199><PRE>Top scoring peptide matches to query 19=
9<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ200><PRE>Top scoring peptide matches to query 20=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.4   -0.01           =
        SLELKVAFSK<BR>  3.4    0.06                   DDVILNAFSK<BR>  2.0  =
  0.08                   ESFSLSPQAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ201><PRE>Top scoring peptide matches to query 20=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.9    0.09           =
        ETIQPFMNK<BR>  0.9    0.08                   QTNQTTTTTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ202><PRE>Top scoring peptide matches to query 20=
2<BR>Score greater than 22 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.6    0.07  31 IPI:IP=
I00021266  FPLTTESAMK<BR>  8.4    0.03                   IMITDFGLSK<BR>  8.=
2    0.01                   MPIVHRDLK<BR>  4.1   -0.04                   RL=
AEVSKPPK<BR>  3.8    0.01                   FLPAFVRMK<BR>  3.1    0.00     =
              FPEGLLRHR<BR>  2.7    0.02                   EPLVDIVDPK<BR>  =
2.0   -0.03                   LIVYPPPPTK<BR>  1.5    0.07                  =
 NLISFCQSR<BR>  0.8    0.04                   SPPEAGTQLPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ203><PRE>Top scoring peptide matches to query 20=
3<BR>Score greater than 16 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.08           =
        QNVSPAPEGQV<BR>  3.6    0.04                   FDDKNFIVK<BR>  2.0  =
 -0.02                   MPLPVALQTR<BR>  1.6    0.06                   SPTE=
PGPERR<BR>  1.3    0.01                   ELASPEAPLAK<BR>  1.1   -0.07     =
              GTIREIVLPK<BR>  0.1    0.04                   MPKIHMSGPK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ204><PRE>Top scoring peptide matches to query 20=
4<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 32.2    0.07  53 IPI:IPI00001376  WQNNLLPSR<BR> 16.3    0.04       =
            QADIMLPALR<BR> 11.3    0.04  100 IPI:IPI00026320  NNFIPQPIGK<BR=
> 10.4    0.09                   AGEEVIAGPER<BR>  7.0   -0.00              =
     GTTLVVELAPK<BR>  6.9    0.08                   GNELQPLSNR<BR>  5.9    =
0.06                   LISDPAGELGR<BR>  5.8    0.11                   APEGN=
GAAERR<BR>  4.2   -0.01                   MRAAPLLLAR<BR>  4.1   -0.05      =
             ALILVDSLRK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ205><PRE>Top scoring peptide matches to query 20=
5<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.5    0.04           =
        VLLNWEQVK<BR>  4.0    0.00                   VVQETGIKVR<BR>  1.8   =
 0.06                   AAAILEAWQR<BR>  0.1    0.08                   YYLCL=
QLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ206><PRE>Top scoring peptide matches to query 20=
6<BR>Score greater than 23 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 30.2    0.06  13 IPI:IP=
I00000230  MEIQEIQLK<BR> 30.2    0.06  26 IPI:IPI00011335  MELQELQLK<BR> 30=
.2    0.06  11 IPI:IPI00023528  MELQEIQLK<BR>  9.1    0.05                 =
  DRLASSQINK<BR>  5.3    0.08                   NELEGLISEK<BR>  5.3    0.07=
                   MELRSTAAPR<BR>  4.2    0.06                   LARCEGLAGG=
K<BR>  2.1    0.11                   TPSSEESGLPK<BR>  2.1    0.05          =
         LENKLIDMR<BR>  2.0   -0.03                   TLTISDKLLK</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ207><PRE>Top scoring peptide matches to query 20=
7<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.1    0.06   6 IPI:IP=
I00021439  GYSFTTTAER<BR>  4.1    0.03                   ENHFARSSGK<BR>  3.=
9   -0.04                   KSLESPLSSGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ208><PRE>Top scoring peptide matches to query 20=
8<BR>Score greater than 20 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.6    0.03           =
        ATQTDIKLSR<BR>  8.5    0.04                   IEIEMLGLSK<BR>  7.4  =
  0.08                   LWAQMQIDK<BR>  4.0    0.06                   SAQQA=
GSKTVR<BR>  3.2    0.01                   DKLLTSSLQK<BR>  3.1    0.02      =
             RITYLQNPK<BR>  3.0    0.09                   DEELEEIKK<BR>  2.=
5    0.04                   DHIHRVLDK<BR>  2.5    0.02                   EP=
IYRVLSR<BR>  2.0    0.03                   TGQPHPRLAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ209><PRE>Top scoring peptide matches to query 20=
9<BR>Score greater than 23 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.6    0.09           =
        DMEQLLALGK<BR> 10.1    0.06                   AQAKTASELSK<BR>  9.3 =
   0.12                   DEIEEMVLR<BR>  7.8    0.05                   VYLC=
LPNVR<BR>  5.9    0.01                   DMLVASKLIK<BR>  4.0    0.01       =
            TLVGMKLLDK<BR>  2.9    0.14                   MEKQPQNSR<BR>  2.=
9    0.11                   EDMKVLQDR<BR>  2.9    0.07                   DT=
VTSELAAVK<BR>  2.7    0.09                   VELACGKSNR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ210><PRE>Top scoring peptide matches to query 21=
0<BR>Score greater than 24 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.7    0.06   5 IPI:IP=
I00018231  KTNLFSALIK<BR> 10.1    0.09                   EILTSRFLR<BR>  5.5=
    0.08                   KNLWIFVSK<BR>  4.2    0.06                   SAQ=
KFSLILK<BR>  2.8    0.09                   QTALASRFLK<BR>  1.7    0.15     =
              QARTGNNFVK<BR>  1.1    0.11                   DELKEFLLK<BR>  =
1.1    0.07                   FHINIHILK<BR>  1.1    0.07                   =
YLKDIEIIK<BR>  1.1    0.05                   MFLIEKLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ211><PRE>Top scoring peptide matches to query 21=
1<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.0   -0.09           =
        EQSIVEKFR<BR>  4.3   -0.06                   NSGISQVFQR<BR>  3.2   =
-0.09                   ALGAHLEAEPK<BR>  3.2   -0.07                   QLEM=
LARMK<BR>  2.5   -0.11                   QLFLPSMRK<BR>  2.3   -0.09        =
           SEIVGSIKMR<BR>  0.1   -0.06                   AHLQTHSDVK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ212><PRE>Top scoring peptide matches to query 21=
2<BR>Score greater than 16 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.13           =
        ETNFVREIK<BR>  3.5    0.09                   VFQALSTKNK<BR>  1.6   =
 0.05                   QIPVLGPGLNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ213><PRE>Top scoring peptide matches to query 21=
3<BR>Score greater than 26 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 25.3    0.06  29 IPI:IP=
I00007188  LLLQVQHASK<BR> 24.6    0.12  63 IPI:IPI00020165  LILGMPTYGR<BR> =
11.6   -0.04                   LIKLNPIVVK<BR> 11.1    0.10                 =
  LLIEHGADIR<BR> 11.1   -0.08                   LLLLLLLGLR<BR> 10.6    0.12=
                   LIMGIPTYGR<BR>  3.5    0.10                   ILNEIELHR<=
BR>  3.4    0.02                   LIRGGSLPPVK<BR>  0.4    0.07            =
       LVSFPIGIYK<BR>  0.1    0.06                   ILKHLQEQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ214><PRE>Top scoring peptide matches to query 21=
4<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ215><PRE>Top scoring peptide matches to query 21=
5<BR>Score greater than 20 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.1    0.06   2+IPI:IP=
I00004497  STLVLHDLLK<BR>  6.9    0.13                   SSLSARHPQR<BR>  2.=
6    0.14                   LQCLSFSGVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ216><PRE>Top scoring peptide matches to query 21=
6<BR>Score greater than 15 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.6    0.07   2+IPI:IP=
I00004497  STLVLHDLLK<BR>  1.4    0.13                   YLPQTYVVR<BR>  0.9=
    0.11                   ALAKLSSTYGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ217><PRE>Top scoring peptide matches to query 21=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.13           =
        YLPQTYVVR<BR>  0.5    0.07   2+IPI:IPI00004497  STLVLHDLLK</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ218><PRE>Top scoring peptide matches to query 21=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.6    0.02           =
        GLLRQGIVQR<BR>  0.9    0.04                   STLPATALPLR</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ219><PRE>Top scoring peptide matches to query 21=
9<BR>Score greater than 17 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.5    0.06           =
        GLLRQGIVQR<BR>  3.7    0.08                   STLPATALPLR<BR>  1.6 =
   0.15                   LLSMAYSAVGK<BR>  1.1    0.03                   IW=
ILVLQVR<BR>  1.1    0.10                   TWPKEIPLR<BR>  1.0    0.07      =
             GKNWIALIPK<BR>  1.0    0.11                   HRGHPGLPLR<BR>  =
1.0    0.08                   LLDDGKLLPR<BR>  1.0    0.08                  =
 LQNNSLLPIK<BR>  0.8    0.15                   ITSVLYNAMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ220><PRE>Top scoring peptide matches to query 22=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.2    0.06           =
        GLLRQGIVQR<BR>  2.2    0.11                   HRGHPGLPLR<BR>  0.4  =
  0.03                   IWILVLQVR<BR>  0.4    0.11                   TWPKE=
IPLR<BR>  0.3    0.07                   GKNWIALIPK<BR>  0.3    0.08        =
           LLDDGKLLPR<BR>  0.3    0.08                   LQNNSLLPIK<BR>  0.=
2    0.08                   STLPATALPLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ221><PRE>Top scoring peptide matches to query 22=
1<BR>Score greater than 16 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.0    0.09           =
        EPQLKGIVTR<BR>  2.6    0.08                   GLVGSRPVVTR<BR>  2.2 =
   0.05                   QEKLILLQR<BR>  2.1    0.09                   IAEP=
NKLTVR<BR>  0.6    0.15                   KSWLHNDLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ222><PRE>Top scoring peptide matches to query 22=
2<BR>Score greater than 27 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 55.5    0.06  22 IPI:IP=
I00027214  GDLGIEIPAEK<BR> 11.2    0.10                   VTSGDPELPQV<BR>  =
7.8    0.13                   ENVITYSCR<BR>  4.6    0.05                   =
STPAVIQGPSGK<BR>  3.5    0.07                   ERVALSHSSR<BR>  2.4    0.01=
                   EVNILREIR<BR>  2.2   -0.01                   DKVISLPELK<=
BR>  2.2   -0.00                   NMPLSVVLIR<BR>  2.2    0.04             =
      VRSLPGEDLR<BR>  2.1   -0.03                   AAVTLQRAALK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ223><PRE>Top scoring peptide matches to query 22=
3<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ224><PRE>Top scoring peptide matches to query 22=
4<BR>Score greater than 18 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.1    0.09   2+IPI:IP=
I00004497  EFYDGLFPR<BR>  4.6    0.03                   NPTLQSQLSR<BR>  3.9=
    0.02                   IQHNIDYLK<BR>  3.9    0.11                   EKN=
FDEFSK<BR>  2.7   -0.01                   HQVEIKVYK<BR>  2.4    0.14       =
            EKPAEMFEF<BR>  2.4    0.11                   KTVYNEMDK<BR>  0.6=
    0.06                   ELSPGAMAVPR<BR>  0.5    0.11                   E=
MIDIYSTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ225><PRE>Top scoring peptide matches to query 22=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9    0.04  10+IPI:IP=
I00011042  LAVNMVPFPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ226><PRE>Top scoring peptide matches to query 22=
6<BR>Score greater than 18 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 32.7    0.07  17 IPI:IP=
I00027488  IGAEVYHNLK<BR>  3.4    0.07                   IKELQNAGDR<BR>  3.=
4    0.06                   LQELAELEAK<BR>  3.2    0.03                   I=
IEPVAAMRK<BR>  1.1    0.04                   IQESIERLR<BR>  1.1    0.05    =
               LKELEEQVR<BR>  0.9    0.05                   LQEEIQAKGK<BR> =
 0.2    0.08                   IESGEGTVPVR<BR>  0.2    0.10                =
   ACGRGAEVPAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ227><PRE>Top scoring peptide matches to query 22=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0    0.05           =
        VLTVINQTQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ228><PRE>Top scoring peptide matches to query 22=
8<BR>Score greater than 15 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0   -0.04           =
        IAELESLTLR<BR>  3.0   -0.01  26 IPI:IPI00011335  LVTIEGDLER<BR>  2.=
2   -0.02                   LSINKPTSER<BR>  1.8    0.03                   E=
LALQQEEGK<BR>  0.3    0.06                   ELSPEEERR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ229><PRE>Top scoring peptide matches to query 22=
9<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.8    0.05           =
        NKDLVEWLK<BR>  5.9    0.09                   GQGEVATIANGK<BR>  0.5 =
   0.08                   LEEQLGRGSR<BR>  0.0    0.09                   NID=
QEERLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ230><PRE>Top scoring peptide matches to query 23=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.11           =
        VEKDYSYLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ231><PRE>Top scoring peptide matches to query 23=
1<BR>Score greater than 14 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.05           =
        EALKDEANQK<BR>  1.5    0.10                   GTTAMTSAYSR<BR>  0.4 =
  -0.03  25 IPI:IPI00002965  VNKITITNDK<BR>  0.4   -0.05                   =
LEIDLLKSSK<BR>  0.4   -0.01                   LYPVVPTNSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ232><PRE>Top scoring peptide matches to query 23=
2<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ233><PRE>Top scoring peptide matches to query 23=
3<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ234><PRE>Top scoring peptide matches to query 23=
4<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ235><PRE>Top scoring peptide matches to query 23=
5<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ236><PRE>Top scoring peptide matches to query 23=
6<BR>Score greater than 16 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.0    0.06  36 IPI:IP=
I00030575  FEDENFILK<BR>  3.3    0.06                   MQIMEFLAR<BR>  3.0 =
   0.07                   MSSLSQSMRK<BR>  1.9    0.04                   IQF=
VCSLCK<BR>  1.6    0.07                   CYLVTGEGQK<BR>  0.7    0.11      =
             LHMSHETDGK<BR>  0.5    0.05                   YAALFSQNQL</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ237><PRE>Top scoring peptide matches to query 23=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.05           =
        MLCVCVVFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ238><PRE>Top scoring peptide matches to query 23=
8<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.6    0.07  11 IPI:IP=
I00023528  LVIIEGDLER<BR>  2.7    0.04                   VLLEELEALK<BR>  1.=
9    0.08                   NHGLVFVKDK<BR>  1.0    0.02                   V=
LLRQQLMR<BR>  0.9    0.11                   LVLSHMDVSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ239><PRE>Top scoring peptide matches to query 23=
9<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.1    0.07  11 IPI:IP=
I00023528  LVIIEGDLER<BR>  2.8    0.08                   NHGLVFVKDK<BR>  0.=
2    0.02                   VLLRQQLMR<BR>  0.1    0.11                   LV=
LSHMDVSR<BR>  0.1    0.04                   VLLEELEALK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ240><PRE>Top scoring peptide matches to query 24=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.3    0.12           =
        RYNEATLYK<BR>  1.1    0.13                   DSEFKQIYK<BR>  1.1    =
0.13                   YKDEAQLYK<BR>  1.1    0.08                   EIIIHQN=
YK<BR>  0.3    0.11                   QSFLIEHQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ241><PRE>Top scoring peptide matches to query 24=
1<BR>Score greater than 19 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.0    0.14           =
        DSEFKQIYK<BR>  5.5    0.13                   RYNEATLYK<BR>  5.3    =
0.14                   YKDEAQLYK<BR>  3.2    0.06                   GIRLTIA=
EER<BR>  3.2    0.09                   QTPLLLSEEK<BR>  3.2    0.03         =
          AVRILACGVAK<BR>  2.3    0.12                   QSFLIEHQR<BR>  2.2=
    0.12                   QPDVEEILSK<BR>  2.2    0.14                   MG=
SSPLEVPKP<BR>  2.1    0.08  99 IPI:IPI00030246  VNIMLLNGQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ242><PRE>Top scoring peptide matches to query 24=
2<BR>Score greater than 17 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.1    0.12  86 IPI:IP=
I00025806  DVLPGSAVCLK<BR>  3.5    0.11                   AQQLLSSGNLK<BR>  =
3.3    0.12                   VPLIVAACCR<BR>  2.5    0.14                  =
 VDLQGAELWK<BR>  2.4    0.12                   AQLKEIEAEK<BR>  2.4    0.12 =
                  IILTEQANEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ243><PRE>Top scoring peptide matches to query 24=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.5    0.06           =
        VTQLEDLTLK<BR>  1.7    0.08                   VKHPDWLHK<BR>  1.1   =
 0.07                   RSTVISGPGTGK<BR>  0.7    0.07                   VGG=
RSNSEILK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ244><PRE>Top scoring peptide matches to query 24=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.3    0.07   6+IPI:IP=
I00021439  EITALAPSTMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ245><PRE>Top scoring peptide matches to query 24=
5<BR>Score greater than 18 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.8    0.05           =
        ARHATPPSTPK<BR>  4.3    0.12                   RSGLDPTVTGC<BR>  4.2=
    0.03                   SVGVGSFLLQR<BR>  3.9    0.06                   N=
KGVLMFPEK<BR>  3.5    0.03                   HWQIPLGRR<BR>  2.0    0.08    =
               KEESCLLQR<BR>  2.0    0.07                   RTASISWWR<BR>  =
2.0    0.00                   RELLDLLYK<BR>  2.0    0.04                   =
HNFLLLFMK<BR>  1.9   -0.05                   LSHPNIIKLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ246><PRE>Top scoring peptide matches to query 24=
6<BR>Score greater than 20 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.6    0.12           =
        YPSATNNTPAK<BR>  6.7    0.08                   HSQSPRAAGPR<BR>  5.1=
    0.10                   CNTNTAIELK<BR>  4.0    0.08                   AA=
AMTTAILER<BR>  3.6   -0.03                   IHRIPFRPK<BR>  3.3    0.14    =
               ENREAQMAAK<BR>  3.2    0.07                   KTVAMSNLQR<BR>=
  2.8    0.04                   LSKMSSLLER<BR>  2.5    0.02                =
   HVLAAAAAAAAAR<BR>  1.7    0.12                   VQDVACRCR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ247><PRE>Top scoring peptide matches to query 24=
7<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ248><PRE>Top scoring peptide matches to query 24=
8<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ249><PRE>Top scoring peptide matches to query 24=
9<BR>Score greater than 15 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.2    0.06  30+IPI:IP=
I00018158  LGTPQQIAIAR<BR>  2.2    0.15                   KPGPSGPSESPK<BR> =
 0.4    0.05                   GLTPKLHVFR<BR>  0.1    0.03                 =
  ILPKPTQKSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ250><PRE>Top scoring peptide matches to query 25=
0<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 37.0    0.07   1 IPI:IP=
I00019502  TEMEDLMSSK<BR>  1.9   -0.08                   RPIVACELGR<BR>  1.=
1   -0.01                   MVMYLNMLR<BR>  0.3   -0.07                   RG=
MLVNHLSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ251><PRE>Top scoring peptide matches to query 25=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.8    0.05   6+IPI:IP=
I00021439  HQGVMVGMGQK<BR>  0.3    0.03                   SGFEGMFIRK<BR>  0=
.3    0.12                   MGESLGMSSTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ252><PRE>Top scoring peptide matches to query 25=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0    0.07   6+IPI:IP=
I00021439  HQGVMVGMGQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ253><PRE>Top scoring peptide matches to query 25=
3<BR>Score greater than 16 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.4    0.07   6+IPI:IP=
I00021439  HQGVMVGMGQK<BR>  2.6    0.00                   GSLSPARSATPK<BR> =
 1.0    0.10                   CSPATQQSHR<BR>  0.1   -0.03                 =
  QGRPIILCSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ254><PRE>Top scoring peptide matches to query 25=
4<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ255><PRE>Top scoring peptide matches to query 25=
5<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ256><PRE>Top scoring peptide matches to query 25=
6<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ257><PRE>Top scoring peptide matches to query 25=
7<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ258><PRE>Top scoring peptide matches to query 25=
8<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ259><PRE>Top scoring peptide matches to query 25=
9<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ260><PRE>Top scoring peptide matches to query 26=
0<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ261><PRE>Top scoring peptide matches to query 26=
1<BR>Score greater than 14 indicates homology<BR>Score greater than 31 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.3   -0.11           =
        LGTDLEYLKK<BR>  1.3   -0.07                   DLKDSFLWR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ262><PRE>Top scoring peptide matches to query 26=
2<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ263><PRE>Top scoring peptide matches to query 26=
3<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ264><PRE>Top scoring peptide matches to query 26=
4<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.5    0.08           =
        EYVKCLESR<BR>  3.7    0.11                   CDVCQKAFR<BR>  3.7    =
0.08                   QFVEMTRTR<BR>  3.5    0.02                   VTFVNFT=
VTR<BR>  3.5    0.01                   TPHRVAFVEK<BR>  3.5    0.05         =
          SVHFQTHVTK<BR>  3.4    0.04  61 IPI:IPI00007781  GLSSHVEVVEK<BR> =
 3.3   -0.01                   LSLTGHISTVR<BR>  3.2    0.12                =
   TYEDQLSEAK<BR>  3.2    0.08                   RLSYSDSDLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ265><PRE>Top scoring peptide matches to query 26=
5<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ266><PRE>Top scoring peptide matches to query 26=
6<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ267><PRE>Top scoring peptide matches to query 26=
7<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ268><PRE>Top scoring peptide matches to query 26=
8<BR>Score greater than 23 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 34.3    0.08  13 IPI:IP=
I00000230  LVIIESDLER<BR>  8.6    0.10                   THSIESSGKLK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ269><PRE>Top scoring peptide matches to query 26=
9<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3    0.04           =
        LALNLHQHLK<BR>  5.9    0.04                   LALSLFRPGGR<BR>  5.0 =
   0.07                   IATLASGLEVGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ270><PRE>Top scoring peptide matches to query 27=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.2    0.14  13 IPI:IP=
I00000230  LVIIESDLER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ271><PRE>Top scoring peptide matches to query 27=
1<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.4    0.07  82 IPI:IP=
I00012321  GPLQSVQVFGR<BR>  0.5    0.11                   HLQVFLDCR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ272><PRE>Top scoring peptide matches to query 27=
2<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.1    0.08           =
        TLQEQLEKAK<BR>  3.6    0.08                   LVLVGDVQCGK<BR>  1.9 =
   0.08                   TVLPATSTIER<BR>  1.1    0.05                   RG=
LIPQNYVK<BR>  1.1    0.05                   GRLLILMEAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ273><PRE>Top scoring peptide matches to query 27=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.0    0.10           =
        LKNQVTDTNR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ274><PRE>Top scoring peptide matches to query 27=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.7    0.05           =
        QAQLRNFLAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ275><PRE>Top scoring peptide matches to query 27=
5<BR>Score greater than 24 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.2    0.03           =
        VFGLLVELSGR<BR> 10.6    0.07  57 IPI:IPI00013889  DSTLIMQLLR<BR>  9=
.7    0.07                   VVIMNSILER<BR>  9.3    0.07                   =
ASQILSTDARK<BR>  9.0    0.05                   AASGLLSIGLCK<BR>  5.5    0.1=
1                   AMTEPSALIEK<BR>  3.1    0.12                   RELTEDGL=
EK<BR>  1.1    0.03                   FLEVAQITLR<BR>  1.1    0.09          =
         LCEDAVLNKK<BR>  1.1    0.05                   STTKVGNIEIK</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ276><PRE>Top scoring peptide matches to query 27=
6<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 28.4    0.07  57 IPI:IPI00013889  DSTLIMQLLR<BR> 14.5    0.07      =
             VVIMNSILER<BR> 14.0    0.04                   VFGLLVELSGR<BR> =
11.2    0.08                   ASQILSTDARK<BR> 10.9    0.06                =
   AASGLLSIGLCK<BR>  4.5    0.04                   FLEVAQITLR<BR>  4.4    0=
.12                   AMTEPSALIEK<BR>  3.3    0.06                   WVNFLE=
LIR<BR>  2.9    0.10                   LCEDAVLNKK<BR>  2.9    0.06         =
          STTKVGNIEIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ277><PRE>Top scoring peptide matches to query 27=
7<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ278><PRE>Top scoring peptide matches to query 27=
8<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ279><PRE>Top scoring peptide matches to query 27=
9<BR>Score greater than 18 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 21.8    0.07   2+IPI:IP=
I00004497  DALVSGALESTK<BR>  4.6    0.08                   LNDKEGYVPR<BR>  =
3.9    0.10                   GIIDSTVSDQR<BR>  2.6    0.02                 =
  HQIWVGVVPR<BR>  2.4    0.05                   IPGNSNFVKSK<BR>  1.6    0.0=
1                   WVIRQPVHR<BR>  1.0    0.13                   GPGSVGKGSC=
ER<BR>  0.1   -0.01                   RHSSILKPPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ280><PRE>Top scoring peptide matches to query 28=
0<BR>Score greater than 18 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 33.2    0.07   2+IPI:IP=
I00004497  DALVSGALESTK<BR>  3.8    0.10                   DVIAQSQSGTGK<BR>=
  3.4    0.02                   HQIWVGVVPR<BR>  3.4    0.08                =
   LNDKEGYVPR<BR>  2.3    0.01                   WVIRQPVHR<BR>  0.4    0.04=
                   YLTNRGLTPR<BR>  0.0    0.10                   GIIDSTVSDQ=
R</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ281><PRE>Top scoring peptide matches to query 28=
1<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.4    0.07           =
        LLSDKMLENK<BR>  3.6    0.06                   GRAVMISAIEK<BR>  2.8 =
   0.05                   YLTNRGLTPR<BR>  2.8    0.12                   SAQ=
MLEEARR<BR>  2.8    0.03                   NPIYSLIDKK<BR>  2.8    0.08     =
              SNAACIALDKK<BR>  2.8    0.03                   TLMALGSVAVTK<B=
R>  1.6    0.07                   TWLDSAKEIK<BR>  1.6   -0.05              =
     TLQKLPHILK<BR>  1.5    0.06                   CNTLISLIEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ282><PRE>Top scoring peptide matches to query 28=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.7    0.06           =
        VANVSLLALYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ283><PRE>Top scoring peptide matches to query 28=
3<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ284><PRE>Top scoring peptide matches to query 28=
4<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.5   -0.01           =
        LGVLHPDVITK<BR>  4.4    0.01                   HYYKLNIIK<BR>  3.9  =
  0.04                   TTERHIAVHK<BR>  3.9   -0.00                   LIRS=
VFMGLR<BR>  3.9    0.10                   DEITFVSGAPR<BR>  3.9    0.09     =
              TPELPPSSAHR<BR>  3.9    0.10                   VGPESSPYLSR<BR=
>  3.9    0.10                   TETTGRSSQPK<BR>  1.2    0.03              =
     QRPSPRPTPR<BR>  0.8    0.03                   EALVPLVADHK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ285><PRE>Top scoring peptide matches to query 28=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.7    0.01           =
        LIRSVFMGLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ286><PRE>Top scoring peptide matches to query 28=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.0    0.05           =
        DAVVRLIHLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ287><PRE>Top scoring peptide matches to query 28=
7<BR>Score greater than 24 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.4   -0.03           =
        KLVLSVYSAGR<BR> 10.8    0.08                   AGNFYVPAEPK<BR>  4.1=
    0.08                   AGNYFVPAEPK<BR>  2.9   -0.03                   G=
DGVVLVAPPLR<BR>  1.8    0.01                   VQISLVQYSR<BR>  0.7    0.03 =
                  KTASLIANSCK<BR>  0.0    0.12                   DPCYLAGPGS=
R</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ288><PRE>Top scoring peptide matches to query 28=
8<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.6    0.13           =
        DREFGQWVR<BR>  4.0   -0.00                   KEALHQIVVR<BR>  4.0   =
 0.12                   CMTNTPVVVR<BR>  3.9    0.04                   AKLMS=
SSVVVR<BR>  1.9    0.01                   ALVVSVAPSPPR<BR>  0.5    0.03    =
               AGRVLVFVMGK<BR>  0.3   -0.01                   VRHVAAASLIR</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ289><PRE>Top scoring peptide matches to query 28=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.7    0.08           =
        ARDVVMDMIK<BR>  0.8    0.10                   KSEQLMNDTK</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ290><PRE>Top scoring peptide matches to query 29=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.6    0.07   1 IPI:IP=
I00019502  ALELDSNLYR<BR>  1.2    0.04                   SLFQKNLMGR<BR>  0.=
4    0.09                   AIQLSMQGSSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ291><PRE>Top scoring peptide matches to query 29=
1<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ292><PRE>Top scoring peptide matches to query 29=
2<BR>Score greater than 18 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 24.7    0.05   2+IPI:IP=
I00004497  MIYLQTLLAK<BR>  3.8    0.10                   TYDPLIKSTR<BR>  2.=
2    0.08                   IFMLAASVGIR<BR>  0.7    0.11                   =
FGATLEIVTDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ293><PRE>Top scoring peptide matches to query 29=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.08           =
        IFMLAASVGIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ294><PRE>Top scoring peptide matches to query 29=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.0    0.15           =
        MTIQSPCTKK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ295><PRE>Top scoring peptide matches to query 29=
5<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ296><PRE>Top scoring peptide matches to query 29=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.07   2+IPI:IP=
I00004497  MIYLQTLLAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ297><PRE>Top scoring peptide matches to query 29=
7<BR>Score greater than 16 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.6    0.08   2+IPI:IP=
I00004497  MIYLQTLLAK<BR>  2.3    0.10                   IFMLAASVGIR</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ298><PRE>Top scoring peptide matches to query 29=
8<BR>Score greater than 25 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 39.2    0.08   2+IPI:IP=
I00004497  MIYLQTLLAK<BR> 10.0    0.10                   MIHILLYYK<BR>  3.6=
    0.13                   SLFQKNLMGR<BR>  2.2    0.10                   IF=
MLAASVGIR<BR>  2.1    0.06                   IYISLLKESK<BR>  2.1    0.12   =
                TYDPLIKSTR<BR>  1.8    0.08                   LFIFQLIDGK<BR=
>  1.5    0.10                   LYKLALEESK<BR>  1.1    0.07               =
    NLDHVNKILK<BR>  1.1    0.06                   NLIAPIFLHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ299><PRE>Top scoring peptide matches to query 29=
9<BR>Score greater than 16 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.1    0.09   2+IPI:IP=
I00004497  MIYLQTLLAK<BR>  3.0    0.14                   AGEFKNKPFR<BR>  2.=
5    0.11                   IFMLAASVGIR<BR>  1.2    0.08                   =
QVEHVLSLLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ300><PRE>Top scoring peptide matches to query 30=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.9    0.07  14 IPI:IP=
I00033619  IDIIPNPQER<BR>  1.1    0.15                   MGSPRSALSCL</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ301><PRE>Top scoring peptide matches to query 30=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.8    0.10           =
        DIYQKSTVLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ302><PRE>Top scoring peptide matches to query 30=
2<BR>Score greater than 14 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.14           =
        RMENLVAYAK<BR>  1.0    0.14                   VEYQKMLQR<BR>  0.8   =
 0.10                   DIYQKSTVLK<BR>  0.1    0.15                   ESLQR=
AEHPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ303><PRE>Top scoring peptide matches to query 30=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.0    0.13           =
        MLGHLVSNAPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ304><PRE>Top scoring peptide matches to query 30=
4<BR>Score greater than 16 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.2    0.10           =
        DIYQKSTVLK<BR>  3.1    0.08                   HRLPVSLSSAK<BR>  2.9 =
   0.05                   HILTGKEVAVK<BR>  1.1    0.11                   CA=
TGVLVYLAK<BR>  0.9    0.13                   LPYGELLFDK<BR>  0.2    0.12   =
                HDRDLLVGAAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ305><PRE>Top scoring peptide matches to query 30=
5<BR>Score greater than 20 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.1    0.10           =
        DIYQKSTVLK<BR>  6.3    0.06                   HILTGKEVAVK<BR>  5.3 =
   0.08                   HRLPVSLSSAK<BR>  4.4    0.11                   CA=
TGVLVYLAK<BR>  3.9    0.14                   LPYGELLFDK<BR>  3.7    0.14   =
                LSSGNSKLSSSK<BR>  2.8    0.15                   VEYQKMLQR<B=
R>  2.7    0.15                   RMENLVAYAK<BR>  2.1    0.14              =
     VYEILELCR<BR>  2.0    0.15                   MKLQGDLSFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ306><PRE>Top scoring peptide matches to query 30=
6<BR>Score greater than 16 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.0    0.09           =
        IQEYIIAFAK<BR>  3.3    0.13                   VFKMLLGDEK<BR>  1.3  =
  0.12                   TAAFVLAMLSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ307><PRE>Top scoring peptide matches to query 30=
7<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ308><PRE>Top scoring peptide matches to query 30=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.11           =
        VMKVLNFTTK<BR>  1.5    0.15                   AMAHLRAEAAR</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ309><PRE>Top scoring peptide matches to query 30=
9<BR>Score greater than 26 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.2    0.06   6+IPI:IP=
I00021439  AVFPSIVGRPR<BR> 12.0    0.13                   MRPAVLGSPDR<BR> 1=
0.4    0.08                   MWRLPGLLGR<BR>  1.4    0.04                  =
 LRAGTLEALVR<BR>  1.0    0.05                   ELEKQLAVLR<BR>  0.6    0.05=
                   IGGIGTVLGGQVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ310><PRE>Top scoring peptide matches to query 31=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.0    0.07   6+IPI:IP=
I00021439  AVFPSIVGRPR<BR>  0.6    0.10                   MAVQHLRSLK<BR>  0=
.5    0.11                   QIDIMVAHKK<BR>  0.5    0.05                   =
LFAKEVAPVPK<BR>  0.5    0.14                   MRPAVLGSPDR<BR>  0.2    0.09=
                   MWRLPGLLGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ311><PRE>Top scoring peptide matches to query 31=
1<BR>Score greater than 18 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.7    0.08   6+IPI:IP=
I00021439  AVFPSIVGRPR<BR>  5.3    0.09                   AKVCLQARPR<BR>  2=
.7    0.02                   IMVIINKVLR<BR>  0.1    0.07                   =
QLTIQVLLDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ312><PRE>Top scoring peptide matches to query 31=
2<BR>Score greater than 20 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 36.0    0.08   7 IPI:IP=
I00003865  DAGTIAGLNVLR<BR>  5.3    0.06                   SQLEAQRVIR<BR>  =
5.2    0.13                   QTPMASSPRPK<BR>  5.0    0.05                 =
  IVDLVKELDR<BR>  5.0    0.02                   SYLKIHLGLR<BR>  5.0    0.06=
                   KAQIEIIPCK<BR>  5.0    0.06                   EKSIFLVAHR=
<BR>  5.0    0.02                   IMDLRILVAR<BR>  5.0    0.05            =
       VVELNEKLQK<BR>  4.9    0.15                   DDPLSSPQKGR</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ313><PRE>Top scoring peptide matches to query 31=
3<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ314><PRE>Top scoring peptide matches to query 31=
4<BR>Score greater than 16 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.1    0.09           =
        LENARISQLR<BR>  3.5    0.07                   LIVDGNLLTNK<BR>  3.5 =
   0.04                   IMDLRILVAR<BR>  1.7    0.04                   QLN=
ITIEKLK<BR>  1.7    0.10                   QIKADLDQLR<BR>  0.6    0.06     =
              LAVLITNSNVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ315><PRE>Top scoring peptide matches to query 31=
5<BR>Score greater than 16 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.2    0.13           =
        ESAKSPVIVDR<BR>  3.6    0.14                   AAVQVLDDIEK<BR>  2.0=
    0.10                   LEILETIVDR<BR>  1.9    0.13                   AQ=
EDELVKIR<BR>  1.2    0.12  45 IPI:IPI00026621  LPKFDPNEIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ316><PRE>Top scoring peptide matches to query 31=
6<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.1    0.05           =
        QLILLAQQMK<BR>  6.6    0.05                   QISKPLMEKK<BR>  3.1  =
  0.05                   QLPPPSPQLPK<BR>  3.0    0.09                   IKL=
LNNSDER<BR>  2.8    0.05                   HSLLQTLYKV<BR>  2.4    0.03     =
              LQLLCSQVLK<BR>  1.7    0.11                   LLTSSDPPTLAS<BR=
>  1.5    0.05                   GALLEITNSKR<BR>  0.9    0.05              =
     IIHTGEKLYK<BR>  0.7    0.03                   LQILHIHTAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ317><PRE>Top scoring peptide matches to query 31=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.7    0.09  41 IPI:IP=
I00010796  EADDIVNWLK<BR>  0.6    0.08                   MALLDVCGAPR</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ318><PRE>Top scoring peptide matches to query 31=
8<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.8    0.02           =
        ELILQQIAFK<BR>  1.9    0.03                   KLLSSLGIDTR<BR>  1.6 =
   0.01                   LKAQAIFLGNK<BR>  1.1    0.11                   DQ=
MPGLLGFPK<BR>  0.5    0.11                   NLENELELTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ319><PRE>Top scoring peptide matches to query 31=
9<BR>Score greater than 22 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.9    0.08           =
        SPCSARLPCR<BR>  9.6   -0.01                   LKCPCLTALK<BR>  9.6  =
  0.08                   RVDVGCLDNR<BR>  8.8   -0.03                   FGII=
LREDIK<BR>  6.3    0.05                   VSLDIDLWDK<BR>  3.8    0.09      =
             GFAGNPGEKGNR<BR>  2.0    0.08                   HKFDDLTAEK<BR>=
  1.8   -0.01  64 IPI:IPI00002844  IAVMELFRPK<BR>  1.7    0.06             =
      VTVEDLDREK<BR>  1.2    0.02  33 IPI:IPI00011253  GCEVVVSGKLR</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ320><PRE>Top scoring peptide matches to query 32=
0<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.1    0.09   1 IPI:IP=
I00019502  ALEQQVEEMK<BR>  5.5   -0.00                   VVNERATLFR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ321><PRE>Top scoring peptide matches to query 32=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.09           =
        MLEENTNILK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ322><PRE>Top scoring peptide matches to query 32=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.14           =
        EQGVPSAMQDK<BR>  0.5    0.05                   VTPAAANYRSR</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ323><PRE>Top scoring peptide matches to query 32=
3<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 28.9    0.08   1 IPI:IP=
I00019502  TDLLLEPYNK<BR>  2.9    0.01                   AGIPTRVINHK<BR>  2=
.6    0.11                   VCTVGAPSSATR<BR>  2.2    0.09                 =
  AKQDMACLIR<BR>  2.2    0.11                   DLLTMNEELK<BR>  1.5    0.06=
                   VASPPPGAPEKR<BR>  0.1    0.09                   KPSENFSQ=
IR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ324><PRE>Top scoring peptide matches to query 32=
4<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.1    0.08  41 IPI:IP=
I00010796  LITLEEEMTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ325><PRE>Top scoring peptide matches to query 32=
5<BR>Score greater than 22 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.7    0.12           =
        MKALIENVSDS<BR>  9.1   -0.03  73 IPI:IPI00005269  EALLKLGPLPR<BR>  =
4.2    0.09                   SAAFSGRGAQVR<BR>  4.2   -0.05                =
   TKPIHTIIRK<BR>  3.1   -0.05                   NIVLTHLIKR<BR>  3.1    0.0=
3                   QAMLQLYVLK<BR>  3.0    0.03                   VGVGIRSSY=
IR<BR>  2.9    0.07                   GLQAFCNLRK<BR>  2.8    0.14          =
         CLQAGMNLGAR<BR>  2.3    0.13                   SQWMLEQLR</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ326><PRE>Top scoring peptide matches to query 32=
6<BR>Score greater than 19 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.6    0.14           =
        AVHQIDQLQR<BR>  6.4    0.15                   DFHFSVSLKK<BR>  3.9  =
  0.12                   LRYCAGNIIK<BR>  2.9    0.01                   VKPL=
LLQLQR<BR>  1.4   -0.03                   ILKLKPVLQR<BR>  1.3    0.09      =
             VTRLHGQLQR<BR>  1.3    0.09                   SKLYISQLQK</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ327><PRE>Top scoring peptide matches to query 32=
7<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ328><PRE>Top scoring peptide matches to query 32=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.3    0.14           =
        YRQFPQLTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ329><PRE>Top scoring peptide matches to query 32=
9<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ330><PRE>Top scoring peptide matches to query 33=
0<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.4    0.02           =
        HLGGITEEDLK<BR>  3.9    0.07                   EFQKAMEGQK<BR>  2.2 =
   0.01                   FLSLEYSPAGK<BR>  0.9    0.00                   RQ=
LYEFDIK<BR>  0.8    0.08                   ENPGDTHSVQK<BR>  0.7   -0.01    =
               EWYTKILMK<BR>  0.7    0.07                   MEFNEKELR<BR>  =
0.7    0.07                   SMRSVCPMVL<BR>  0.2    0.06                  =
 WRGCCFLGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ331><PRE>Top scoring peptide matches to query 33=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.01           =
        ETFVVSSSKTK<BR>  0.2    0.03                   NQSVSPAPKER</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ332><PRE>Top scoring peptide matches to query 33=
2<BR>Score greater than 23 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 25.5    0.08  15 IPI:IP=
I00021327  QRHDGAFLIR<BR>  9.0    0.10                   VVHRTATADDK<BR>  4=
.7    0.06                   VDELAHFLLR<BR>  2.6    0.09                   =
HHYNLKCLK<BR>  2.1    0.15                   RYLCQQCGK<BR>  1.3    0.10    =
               AMTLMEYLIK<BR>  0.3    0.08                   LREEHILMR</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ333><PRE>Top scoring peptide matches to query 33=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.01           =
        LLLICDVALGK<BR>  0.8    0.03                   CVAEIIAGLIR<BR>  0.3=
   -0.01                   IISSAQKVQIK<BR>  0.2    0.03                   L=
KECVSILPR<BR>  0.0    0.00                   LLEATELKGIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ334><PRE>Top scoring peptide matches to query 33=
4<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.5   -0.00           =
        LLSSPNSASVLK<BR>  6.2    0.04                   LEKLQAEEQK<BR>  5.8=
   -0.04                   EQKIISLLSGK<BR>  5.4    0.00                   K=
AAWEILAWK<BR>  4.8    0.10                   AQEAEEAGAALR<BR>  4.7    0.04 =
                  VAAAMPVRAADK<BR>  1.6    0.07                   SSKPAWPTW=
R<BR>  0.7   -0.10                   LAVAHPLLLLR<BR>  0.6    0.06          =
         ITLLENNDQR<BR>  0.4   -0.04                   ITLLSALVETR</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ335><PRE>Top scoring peptide matches to query 33=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2    0.08           =
        KLTGGSNWQPK<BR>  1.0    0.11                   VPGEMEIERR<BR>  0.7 =
   0.13                   AQEAEEAGAALR<BR>  0.6    0.08                   A=
AQSQEVRAQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ336><PRE>Top scoring peptide matches to query 33=
6<BR>Score greater than 16 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.4    0.09           =
        NFGIGQDIQPK<BR>  3.2    0.06                   EVLESGLARSR<BR>  3.0=
    0.09                   SQSKSPTGTPAR<BR>  2.5    0.07                   =
IEDGGKAALSQK<BR>  2.3   -0.03                   ILECVIKTIK<BR>  1.9    0.06=
                   VDQGAATALSRK<BR>  1.8    0.07                   RGLEELSL=
AQT<BR>  1.4    0.03  61 IPI:IPI00007781  GSKEVEVTLVR<BR>  1.4    0.03     =
              LSTIQNSPTKK<BR>  1.1    0.14                   SQSWRQGPDR</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ337><PRE>Top scoring peptide matches to query 33=
7<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.8    0.05           =
        IEVIEIMTDR<BR>  2.1    0.04                   TLHQYTGSALK<BR>  0.0 =
   0.01                   IKMATADEIVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ338><PRE>Top scoring peptide matches to query 33=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.14           =
        ELESQVSGLEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ339><PRE>Top scoring peptide matches to query 33=
9<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.10   1 IPI:IP=
I00019502  AQFERDLQGR<BR>  1.8    0.07                   QRLLESAMSGK<BR>  1=
.1    0.04                   YKPSSSGLKPR<BR>  0.1    0.02                  =
 LHLFSPPPGVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ340><PRE>Top scoring peptide matches to query 34=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2    0.12           =
        DFGTEAARPQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ341><PRE>Top scoring peptide matches to query 34=
1<BR>Score greater than 25 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 38.0    0.08  29 IPI:IP=
I00007188  DFLAGGVAAAISK<BR> 10.5    0.12                   CTNIGGLELSR<BR>=
  2.6    0.11                   SILAETEGMLR<BR>  2.5    0.14               =
    DMAIFWHRK<BR>  2.3    0.00                   LSVFFVPIAVK<BR>  1.9    0.=
07                   MKQLEQVLSK<BR>  0.0    0.11                   NMRTLWIN=
R</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ342><PRE>Top scoring peptide matches to query 34=
2<BR>Score greater than 24 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.9    0.07   1+IPI:IP=
I00019502  KFDQLLAEEK<BR>  9.9    0.04                   KYGSLVPLSEK<BR>  6=
.9    0.04                   AGKDFLVETIK<BR>  5.2    0.04                  =
 IQIALKYDEK<BR>  5.0   -0.01                   SGLFVLTVRTK<BR>  4.5    0.13=
                   ASSKASGAGGSQGR<BR>  3.9    0.07                   VMAGTL=
KLEDK<BR>  3.9    0.05                   LKEMSQLMLK<BR>  3.8    0.05       =
            KYIVAYHAAGK<BR>  3.3    0.10                   EFELSQLQAR</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ343><PRE>Top scoring peptide matches to query 34=
3<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ344><PRE>Top scoring peptide matches to query 34=
4<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.12           =
        QKNMPSATISK<BR>  2.3    0.15                   SRGTPSGTQSSR<BR>  0.=
9    0.12                   GIYPASTQLDR<BR>  0.6    0.10                   =
LSYPAQTLKAE<BR>  0.2    0.12                   QQPTSTTSSRK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ345><PRE>Top scoring peptide matches to query 34=
5<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ346><PRE>Top scoring peptide matches to query 34=
6<BR>Score greater than 14 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.4    0.14           =
        VFKDLGTPSEK<BR>  5.4    0.12                   GLLPPPGERER<BR>  1.4=
    0.13                   CSLEITLKEK<BR>  0.4    0.07                   TM=
AKVITTVLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ347><PRE>Top scoring peptide matches to query 34=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.7    0.03           =
        LLKPYTGSKSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ348><PRE>Top scoring peptide matches to query 34=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2   -0.05           =
        EQHVLAELER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ349><PRE>Top scoring peptide matches to query 34=
9<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.9    0.07   1+IPI:IP=
I00019502  AGVLAHLEEER<BR>  1.9    0.06                   ARYIGGGPSAFK<BR> =
 1.6   -0.00                   EPPASGRVALVK<BR>  1.2   -0.06               =
    LPPSKLQTIVK<BR>  0.8    0.08                   TDGTLLSFVDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ350><PRE>Top scoring peptide matches to query 35=
0<BR>Score greater than 19 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 25.9    0.08   1+IPI:IP=
I00019502  AGVLAHLEEER<BR>  5.3    0.06                   RSPPPSPTTQR<BR>  =
3.0    0.00                   EPPASGRVALVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ351><PRE>Top scoring peptide matches to query 35=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.8    0.06           =
        ARPAMQIFFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ352><PRE>Top scoring peptide matches to query 35=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4   -0.03           =
        KPASLMAPLKR<BR>  1.4    0.01                   LEAARAAEQLR</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ353><PRE>Top scoring peptide matches to query 35=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.01           =
        LQQGGLTAARGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ354><PRE>Top scoring peptide matches to query 35=
4<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ355><PRE>Top scoring peptide matches to query 35=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.8    0.05           =
        LTGREGTGQPGR<BR>  0.3    0.11                   VSVAAGSEEDHK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ356><PRE>Top scoring peptide matches to query 35=
6<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 38.4    0.08   9 IPI:IP=
I00033494  LNGTDPEDVIR<BR>  4.3    0.03                   LNQQQLSELR<BR>  0=
.8    0.12                   YAQERPDHGR<BR>  0.8    0.07                   =
SAKVDGVSYFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ357><PRE>Top scoring peptide matches to query 35=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.02           =
        WQLKANEALR<BR>  1.6    0.02                   SNIIAHFLWK<BR>  1.4  =
  0.05                   VNTLEEGKGGPK<BR>  1.1   -0.04                   KG=
EIIILWTR<BR>  1.1    0.01                   AILTAAIVDADR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ358><PRE>Top scoring peptide matches to query 35=
8<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.6    0.00           =
        VFLNGNKLPVK<BR>  1.8    0.11                   MNPQIRNPMK</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ359><PRE>Top scoring peptide matches to query 35=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.9    0.06           =
        YLYTLVITDK<BR>  1.1    0.14                   AQEKVHEMEK<BR>  0.5  =
  0.10                   SALPATGHFTAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ360><PRE>Top scoring peptide matches to query 36=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.2    0.01           =
        DLPLAQGIKFQ<BR>  1.2    0.09                   VPHFMQDLAR<BR>  0.8 =
   0.04                   NPSWFLGRPR<BR>  0.2    0.05                   SEP=
GLLIPEMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ361><PRE>Top scoring peptide matches to query 36=
1<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.1    0.10           =
        EADLGPQKDTR<BR>  6.4   -0.05                   TTLLHILYKK<BR>  4.0 =
   0.02                   AETTPSGGKILR<BR>  2.3   -0.03                   L=
LFLNNNLLR<BR>  1.2    0.03                   SCLPGVSQLLR<BR>  1.0    0.07  =
                 EREALAWAQR<BR>  0.8    0.01                   NVLTESARIAR<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ362><PRE>Top scoring peptide matches to query 36=
2<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ363><PRE>Top scoring peptide matches to query 36=
3<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.4    0.03           =
        LVSELWDAGIK<BR>  4.0    0.04                   GTQTKAEGPTIK<BR>  0.=
8    0.08                   DLLCHTSGLSK<BR>  0.5    0.02                   =
LVSWPLCSLR<BR>  0.5    0.02                   GSSQLVRDIQK<BR>  0.5    0.04 =
                  LSVNQITDGGVK<BR>  0.1    0.08                   AVVSENNPC=
IK<BR>  0.1    0.05                   IRSESNQQIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ364><PRE>Top scoring peptide matches to query 36=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.5    0.15           =
        NYIMDFQVGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ365><PRE>Top scoring peptide matches to query 36=
5<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.2    0.08  80 IPI:IP=
I00008406  LWTLVSEQTR<BR>  1.4    0.10                   QALSNMLQRR<BR>  1.=
0    0.12                   VGVVQFSDEPR<BR>  0.9    0.07                   =
AELSLKDDLTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ366><PRE>Top scoring peptide matches to query 36=
6<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ367><PRE>Top scoring peptide matches to query 36=
7<BR>Score greater than 22 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.7   -0.02           =
        IRMDIDVVEK<BR>  9.0   -0.06                   LYGVVLTPPMK<BR>  5.7 =
  -0.05                   QKSDTVLFPAK<BR>  3.8    0.11                   TM=
RQEDYMK<BR>  3.8   -0.09  86 IPI:IPI00025806  KAVPEAPTPVPK<BR>  3.4   -0.03=
                   IRMDIDVVTR<BR>  3.4    0.00                   SICEVLDLER=
<BR>  3.3    0.04                   ENVPASSLCEK<BR>  3.1   -0.10           =
        LVVNYLRTQK<BR>  2.9   -0.06                   AVMISAIEKQK</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ368><PRE>Top scoring peptide matches to query 36=
8<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 21.3    0.08  49 IPI:IP=
I00029286  EGNGTVMGAELR<BR> 21.3    0.08  12 IPI:IPI00028646  EGNGTVMGAEIR<=
BR>  5.1    0.05                   GAMQVAMNGKAR<BR>  4.5   -0.04           =
        WPRPASPPVVK<BR>  4.3    0.01                   QDPVVHLSPNK<BR>  3.9=
   -0.02                   SGLLLHGPPGTGK<BR>  3.0   -0.05  86 IPI:IPI000258=
06  KAVPEAPTPVPK<BR>  1.3    0.01                   DAPGAGAPPAPGKK<BR>  0.5=
    0.10                   QASMEEVFHR<BR>  0.5    0.10                   DY=
YVSTAVCR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ369><PRE>Top scoring peptide matches to query 36=
9<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ370><PRE>Top scoring peptide matches to query 37=
0<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ371><PRE>Top scoring peptide matches to query 37=
1<BR>Score greater than 25 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.6    0.07           =
        NFPEAMLKER<BR> 11.3    0.04                   DPAFQMITIAK<BR> 10.8 =
  -0.02                   LSFLDKSLGVR<BR> 10.7    0.07                   MM=
PGRMVGVTR<BR>  4.8    0.06  65 IPI:IPI00013003  MIMTLNVQER<BR>  4.7    0.04=
                   RANTFLEEVR<BR>  3.7    0.04                   QTESLESLLS=
K<BR>  3.5    0.06                   LWCVETGEIK<BR>  2.7    0.06           =
        ENDFALIIDGK<BR>  2.7    0.00                   AGLAFLSLMPSK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ372><PRE>Top scoring peptide matches to query 37=
2<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ373><PRE>Top scoring peptide matches to query 37=
3<BR>Score greater than 16 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.3    0.09   7 IPI:IP=
I00003865  MVNHFIAEFK<BR>  3.1    0.06                   FVETLVVADDK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ374><PRE>Top scoring peptide matches to query 37=
4<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ375><PRE>Top scoring peptide matches to query 37=
5<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 52.3    0.11   9 IPI:IPI00033494  EAFNMIDQNR<BR> 14.0    0.09      =
             EMAIMIEEQK<BR> 11.4    0.04  96 IPI:IPI00020647  EALMTELSTVK<B=
R>  7.9    0.05                   GISGFNSKSGQR<BR>  6.2    0.03            =
       FKETSEVLER<BR>  5.2    0.03                   FVTWIEGVMR<BR>  4.7   =
 0.07                   GRGAPHISDDGR<BR>  4.5    0.13                   MGS=
PCLGSTGDR<BR>  4.3    0.11                   DKSSTGDGTQNK<BR>  4.0    0.07 =
                  YNLATEEIER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ376><PRE>Top scoring peptide matches to query 37=
6<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.7    0.02           =
        KYLDGLDVCR<BR>  5.7    0.03                   IMTTLNMLGGR<BR>  3.2 =
   0.09                   MCERAEGTVSV<BR>  2.4    0.04                   LW=
ARYDTEGK<BR>  2.4    0.07                   FNEALDIMNR<BR>  2.3    0.05    =
               FGRTDVAESEK<BR>  2.3    0.11                   LERSGMDGSDR<B=
R>  2.2    0.10                   DPGGSEFDSISK<BR>  1.6    0.03            =
       LDTSEVVFNSK<BR>  1.4    0.09                   IEECVVCSDK</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ377><PRE>Top scoring peptide matches to query 37=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.12           =
        WAREADQPLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ378><PRE>Top scoring peptide matches to query 37=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.08           =
        IIEVGDTPKDR<BR>  0.7    0.06                   VQELEERLAR<BR>  0.6 =
  -0.01                   ILSGGSKLQIAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ379><PRE>Top scoring peptide matches to query 37=
9<BR>Score greater than 19 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 40.1    0.07  11+IPI:IP=
I00023528  IQLVEEELDR<BR>  4.4    0.11                   EEPQVEQLGSK<BR>  3=
.2    0.06                   QLLQEAEVWK<BR>  3.2    0.01                   =
LQLMEQKVVR<BR>  3.2    0.05                   LQLEATERQR<BR>  3.2    0.02  =
                 VVRVVDLCAGR<BR>  3.1    0.00                   IQLKGELDSLK=
<BR>  3.1   -0.01                   LQLLSKETGVR<BR>  3.1   -0.01           =
        QLLPITLGFNK<BR>  2.4    0.08                   VWKYEVTYR</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ380><PRE>Top scoring peptide matches to query 38=
0<BR>Score greater than 24 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.8    0.09  30+IPI:IP=
I00018158  TVEVLEPEVTK<BR> 10.2    0.10                   ISMPLDFKHR<BR>  1=
.6    0.11                   KVEAPETNIDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ381><PRE>Top scoring peptide matches to query 38=
1<BR>Score greater than 18 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.0    0.13           =
        HRPDLIDYSK<BR>  4.6    0.07                   LQEAAEIVKSR<BR>  2.5 =
   0.08                   HYIQKPSSRK<BR>  2.5    0.08                   LPV=
SQNVHPPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ382><PRE>Top scoring peptide matches to query 38=
2<BR>Score greater than 25 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.7    0.01  75 IPI:IP=
I00016856  NKLVQTAELTK<BR> 11.6    0.09                   NKLMIMHWR<BR>  3.=
6   -0.04                   ELNLIIKVFR<BR>  2.9    0.07                   N=
KIANISGDGQK<BR>  2.1    0.03                   ELLGWVSTLAR<BR>  2.0    0.05=
                   IKQITEEVER<BR>  2.0    0.03                   VQKVQSVSQN=
K<BR>  0.8    0.05                   LAGLDITDASLR<BR>  0.8    0.02  71 IPI:=
IPI00019567  GGIQIMAGKTLR<BR>  0.1   -0.01                   LLQVIAMSTLR</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ383><PRE>Top scoring peptide matches to query 38=
3<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.5    0.08           =
        LETANKQLAEK<BR>  4.9    0.11                   SRMHNIPVYK<BR>  4.8 =
   0.11                   LQASENDLLNK<BR>  4.5    0.10                   VE=
FLLNAHSSK<BR>  4.4    0.10                   QEGAMLELVVR<BR>  3.6    0.13  =
                 LEESSPLNLDK<BR>  2.8    0.07                   FAAEDIIGPIA=
K</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ384><PRE>Top scoring peptide matches to query 38=
4<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ385><PRE>Top scoring peptide matches to query 38=
5<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ386><PRE>Top scoring peptide matches to query 38=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.07           =
        FLPEFAGTQLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ387><PRE>Top scoring peptide matches to query 38=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.05           =
        LTPLSHEVISR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ388><PRE>Top scoring peptide matches to query 38=
8<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ389><PRE>Top scoring peptide matches to query 38=
9<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ390><PRE>Top scoring peptide matches to query 39=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.06           =
        LMMDPLTGLNR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ391><PRE>Top scoring peptide matches to query 39=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.2    0.04           =
        VTGVPGTEFVQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ392><PRE>Top scoring peptide matches to query 39=
2<BR>Score greater than 24 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 56.9    0.05  35 IPI:IP=
I00007805  AITGASLADIMAK<BR>  8.3    0.09                   AGLTASLSPSSDR<B=
R>  7.8    0.11                   LEEELEGMRR<BR>  1.2    0.11              =
     MEATSREAAPAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ393><PRE>Top scoring peptide matches to query 39=
3<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ394><PRE>Top scoring peptide matches to query 39=
4<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ395><PRE>Top scoring peptide matches to query 39=
5<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ396><PRE>Top scoring peptide matches to query 39=
6<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 26.6    0.09  43 IPI:IPI00029137  DGNGYISAAELR<BR> 21.7    0.13  68=
 IPI:IPI00005753  MMGQRSPASER<BR> 13.2    0.05                   TRLCCLWTR<=
BR>  9.9    0.08                   QTMTALGTDTAR<BR>  8.1    0.07           =
        IHQKCHTGER<BR>  7.9    0.03                   SAKDAFNLLMR<BR>  5.0 =
   0.05                   TFVGIQASEASR<BR>  3.9    0.01                   R=
PPGVLHCTTK<BR>  3.3    0.04                   MVFTPKDGSGVK<BR>  2.3    0.05=
                   NFDKVLSEWK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ397><PRE>Top scoring peptide matches to query 39=
7<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.8    0.00           =
        LDNYSTQELGK<BR>  4.2   -0.06                   TIISTTSTTSQK<BR>  0.=
6   -0.02                   FKTMDEVIER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ398><PRE>Top scoring peptide matches to query 39=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.3    0.06  76 IPI:IP=
I00003918  NIPGITLLNVSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ399><PRE>Top scoring peptide matches to query 39=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.04           =
        LHQQDIKLMK<BR>  1.4    0.06                   RLAAYLMLMR</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ400><PRE>Top scoring peptide matches to query 40=
0<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 45.8    0.08   2+IPI:IPI00004497  SVGDIEQELER<BR> 16.1    0.05     =
              IEVQNQEMRK<BR> 11.5   -0.02                   WYRAPELVLK<BR> =
10.3   -0.05                   LRYLGVTLSPR<BR>  9.0    0.00                =
   WMALESILRR<BR>  8.6    0.05                   MVQLKEDQQR<BR>  8.1    0.0=
3                   TNSQPFKLDPK<BR>  7.5    0.11                   EEADQEER=
IR<BR>  7.2   -0.00                   IGLSTEKGSVQR<BR>  1.8    0.04        =
           CQESLGRLSPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ401><PRE>Top scoring peptide matches to query 40=
1<BR>Score greater than 20 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.2    0.06           =
        LNDEVIMNRR<BR>  6.7    0.07                   STGPTAATGSNRR<BR>  3.=
1    0.12                   MVPEEEQELR<BR>  2.4    0.10                   V=
GADLQDDMRR<BR>  1.8   -0.03                   VSGDLVALKMVK<BR>  0.5   -0.03=
                   ALYLANWIRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ402><PRE>Top scoring peptide matches to query 40=
2<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 44.0    0.09  14+IPI:IP=
I00033619  ELISNASDALDK<BR>  1.5    0.03                   EILLAMLMVDK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ403><PRE>Top scoring peptide matches to query 40=
3<BR>Score greater than 25 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 18.8   -0.02  90 IPI:IP=
I00012587  MTAIIKEIVSR<BR> 11.0    0.07                   VEMQPTELVSK<BR>  =
7.4    0.03                   ALEDAFLAIDAK<BR>  7.4    0.12                =
   GGGGGGGGGNFRGGGR<BR>  7.1    0.10                   GMGTVQKGMSHK<BR>  6.=
0    0.05                   LNFGNKDQNVK<BR>  5.4    0.11                   =
TKENEEELER<BR>  5.2   -0.01                   LITQFKEEIR<BR>  4.3    0.01  =
                 NMVLQTTKGLR<BR>  3.4    0.05                   DRLMSEVLTGR=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ404><PRE>Top scoring peptide matches to query 40=
4<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.8    0.09           =
        MSPRCANLALK<BR>  6.0    0.02                   DKIIHSIHSVK<BR>  5.8=
    0.09                   DLSQNFPTKAR<BR>  5.8    0.04                   Q=
DLLFDVSVLK<BR>  4.2    0.06                   IIEAMGFTGPLK<BR>  4.1    0.03=
                   TSLKQASPVAFK<BR>  3.0    0.14  86 IPI:IPI00025806  VLGSS=
IHMECK<BR>  1.0    0.09                   VEQQDNFLKR<BR>  0.8    0.08      =
             RGPAYVMELPK<BR>  0.1    0.13                   ELALMGETQER</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ405><PRE>Top scoring peptide matches to query 40=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 20 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4    0.07           =
        RPSIPVKQKPK<BR>  0.3    0.13                   TLELAKVTQFK</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ406><PRE>Top scoring peptide matches to query 40=
6<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ407><PRE>Top scoring peptide matches to query 40=
7<BR>Score greater than 22 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.9    0.09  36 IPI:IP=
I00030575  EGMNIVEAMER<BR>  8.6   -0.04                   AENGPGPGVLVLR<BR>=
  3.0    0.04                   TADFVEAIEGAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ408><PRE>Top scoring peptide matches to query 40=
8<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 31.0    0.07   5 IPI:IP=
I00018231  KNEEAADEVFK<BR>  4.6    0.13                   QSMAQAEEETR<BR>  =
3.0    0.03                   DCPKIVEPHGK<BR>  2.7    0.01                 =
  APGAPCGPARGLR<BR>  2.1    0.05                   SSVINAMLWDK<BR>  2.1   -=
0.02                   RPEATAAPLTPR<BR>  1.0    0.08                   EQGF=
GSRQTNR<BR>  1.0    0.06                   ASGTTAGTMLPTR<BR>  0.6   -0.04  =
                 EIFHRLHLSK<BR>  0.1    0.14                   CQSSYWTYGK</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ409><PRE>Top scoring peptide matches to query 40=
9<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ410><PRE>Top scoring peptide matches to query 41=
0<BR>Score greater than 20 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.8    0.09   5 IPI:IP=
I00018231  KNEEAADEVFK<BR>  6.8    0.01                   EAVKSFIETQK<BR>  =
2.6   -0.01                   TFQSRTLALSR<BR>  2.2    0.03  92 IPI:IPI00009=
181  VMADGPRHLQR<BR>  0.3    0.04                   QEQKGSVGATFK</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ411><PRE>Top scoring peptide matches to query 41=
1<BR>Score greater than 21 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 47.2    0.09   5 IPI:IP=
I00018231  WTAPESLAYNK<BR>  5.9   -0.05                   KHVSGITLLSPK<BR> =
 4.3   -0.03                   YCKISALALLK<BR>  0.8    0.06                =
   KDDILGVSYNR<BR>  0.3    0.08                   SVACDVGYPALK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ412><PRE>Top scoring peptide matches to query 41=
2<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.7   -0.01           =
        GVVLKEYLTMK<BR>  7.6    0.05                   HSQALEALQQR<BR>  0.7=
   -0.00                   EQDKPPNLVLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ413><PRE>Top scoring peptide matches to query 41=
3<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ414><PRE>Top scoring peptide matches to query 41=
4<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.0    0.03           =
        GNTALHEAVIEK<BR>  8.9    0.01                   EPVWIQVPASR<BR>  1.=
8   -0.01                   ANASPQKPLDLK<BR>  1.6    0.08                  =
 AYTNGESEVAIK<BR>  1.4    0.01                   ASGKPVNHSTRK<BR>  0.8    0=
.12                   WTSRDVGMADK<BR>  0.1    0.02                   HHHQRP=
KVDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ415><PRE>Top scoring peptide matches to query 41=
5<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ416><PRE>Top scoring peptide matches to query 41=
6<BR>Score greater than 20 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 32.1    0.09   1 IPI:IP=
I00019502  VEAQLQELQVK<BR>  5.8    0.14                   DLPHAVQETFK<BR>  =
0.6    0.05                   LLELAEQSLLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ417><PRE>Top scoring peptide matches to query 41=
7<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.9    0.03           =
        ILHLPTYSVDK<BR>  4.8    0.00                   GVRAPSFAQKPK<BR>  4.=
4    0.07                   HAHELMLKYK<BR>  3.5    0.03                   L=
QEDLRAAIEK<BR>  3.0    0.03                   EKVNILEAQNK<BR>  2.0    0.04 =
                  AGSRPTQKGDLR<BR>  2.0    0.04                   RTVPPMVNV=
TR<BR>  1.1    0.09                   VQELQQQAEGR<BR>  1.1    0.09         =
          NLQEIQQAGER<BR>  0.9    0.05                   RPLFGSPSPAEK</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ418><PRE>Top scoring peptide matches to query 41=
8<BR>Score greater than 21 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.0    0.06           =
        AVEELQSIIKR<BR>  8.0    0.02                   VALQILMSGIIK<BR>  1.=
1    0.13                   GDLIGCELPRR<BR>  1.1    0.10                   =
EVTPDQKLLSR<BR>  0.1    0.11                   FGQSSVLAIHAR<BR>  0.1    0.0=
9                   QPWLGRLMIR<BR>  0.1    0.11                   EAIRGFSLQ=
HK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ419><PRE>Top scoring peptide matches to query 41=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.3    0.00           =
        IKAIGNEVTVDK<BR>  0.9    0.15                   SPDELPSAGGDGGK<BR> =
 0.3    0.15                   ISYQSSSTEER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ420><PRE>Top scoring peptide matches to query 42=
0<BR>Score greater than 17 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.1    0.13           =
        ETAQLREQVGR<BR>  3.5    0.08                   IEATQKLEQVK<BR>  3.3=
    0.13                   GARAALNEIESR<BR>  2.3    0.04                   =
QTILKESIQVK<BR>  2.1    0.09                   LAKVMQNQQVK<BR>  1.9    0.08=
                   EATLKEVDILR<BR>  1.7    0.10                   NVMILTNPV=
AAK<BR>  1.3    0.12                   NGEKLQDLELK<BR>  0.5    0.14        =
           SGSSPEVKDKPR<BR>  0.3    0.02                   MLKGGQLLVSLK</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ421><PRE>Top scoring peptide matches to query 42=
1<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.3    0.01           =
        LLSPAQRALYR<BR>  0.8    0.06                   IIHTRVNFCK</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ422><PRE>Top scoring peptide matches to query 42=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.09           =
        HALIIYDDLSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ423><PRE>Top scoring peptide matches to query 42=
3<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ424><PRE>Top scoring peptide matches to query 42=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0    0.13           =
        IGDLGAVQAAAMR<BR>  1.9    0.08                   GRVVNISSMLGR<BR>  =
0.7    0.11                   EHKNIVHQQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ425><PRE>Top scoring peptide matches to query 42=
5<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0   -0.04           =
        ASKVIPVMLMGK<BR>  2.7   -0.00                   TNVPDIRVGYR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ426><PRE>Top scoring peptide matches to query 42=
6<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.3    0.08  27 IPI:IP=
I00013921  ELISNSSDALDK<BR>  0.3    0.01                   VRVAVVQYSDR</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ427><PRE>Top scoring peptide matches to query 42=
7<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ428><PRE>Top scoring peptide matches to query 42=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 20 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.12           =
        AVQIVLHSLGQK<BR>  0.4    0.08                   NPVTAVPVVLKR</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ429><PRE>Top scoring peptide matches to query 42=
9<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ430><PRE>Top scoring peptide matches to query 43=
0<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ431><PRE>Top scoring peptide matches to query 43=
1<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ432><PRE>Top scoring peptide matches to query 43=
2<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 28.2    0.10   7 IPI:IP=
I00003865  NSLESYAFNMK<BR>  0.6    0.00                   SQSSLSGKPKER</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ433><PRE>Top scoring peptide matches to query 43=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.1   -0.03   5 IPI:IP=
I00018231  QVTVAPASGLPHK<BR>  3.0   -0.00                   LKHVSHGEELR<BR>=
  2.1   -0.02                   SPVKTIEDFLR<BR>  2.1    0.03               =
    NALQEAEARFR<BR>  1.4    0.03                   FCGIYGYRLR<BR>  0.9   -0=
.00                   ESPLHPARELR<BR>  0.1    0.00                   FLPQPF=
TGEIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ434><PRE>Top scoring peptide matches to query 43=
4<BR>Score greater than 16 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.6    0.06   5 IPI:IP=
I00018231  QVTVAPASGLPHK<BR>  2.2    0.06                   EAGVPLGLPAPGAR<=
BR>  0.2    0.02                   RPKQRPAPAQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ435><PRE>Top scoring peptide matches to query 43=
5<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ436><PRE>Top scoring peptide matches to query 43=
6<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.2    0.00           =
        ISHLPLVEELR<BR>  1.4    0.09  34 IPI:IPI00016087  EQADFALEALAK<BR> =
 1.4    0.09   1 IPI:IPI00019502  EQADFAIEALAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ437><PRE>Top scoring peptide matches to query 43=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.5    0.09  34 IPI:IP=
I00016087  EQADFALEALAK<BR> 17.5    0.09   1 IPI:IPI00019502  EQADFAIEALAK<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ438><PRE>Top scoring peptide matches to query 43=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0    0.09  34 IPI:IP=
I00016087  EQADFALEALAK<BR>  2.0    0.09   1 IPI:IPI00019502  EQADFAIEALAK<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ439><PRE>Top scoring peptide matches to query 43=
9<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 28.8    0.09  34 IPI:IP=
I00016087  EQADFALEALAK<BR> 28.8    0.09   1 IPI:IPI00019502  EQADFAIEALAK<=
BR>  2.0    0.02                   KPFASPSRFIR<BR>  1.5    0.07            =
       GAISGGKGFLENR<BR>  1.2    0.08                   LWAYQISQLPS<BR>  1.=
1    0.01                   ISHLPLVEELR<BR>  0.5    0.08                   =
VQTASSANTLWK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ440><PRE>Top scoring peptide matches to query 44=
0<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ441><PRE>Top scoring peptide matches to query 44=
1<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ442><PRE>Top scoring peptide matches to query 44=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.07           =
        AQPSLFVEMLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ443><PRE>Top scoring peptide matches to query 44=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.0    0.12           =
        EGTEASASKGLEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ444><PRE>Top scoring peptide matches to query 44=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.00           =
        SKFLDALISLLS<BR>  0.2    0.11                   DTLDNDIMLIK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ445><PRE>Top scoring peptide matches to query 44=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.5   -0.01           =
        TVSFESKIQLR<BR>  1.3    0.08                   EFRSNQELER</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ446><PRE>Top scoring peptide matches to query 44=
6<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3    0.02           =
        NQYKLIQCLK<BR>  5.1    0.06                   AKGYQLLEEEK<BR>  1.9 =
  -0.00                   VLEEQIGVHRK<BR>  1.6    0.08                   MA=
GEGEPVPPPVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ447><PRE>Top scoring peptide matches to query 44=
7<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.6    0.02           =
        YYSVPVAVVPSK<BR>  3.4    0.06  14 IPI:IPI00033619  IRYESLTDPSK<BR> =
 2.7    0.06                   NSETDTIIFIR<BR>  1.1    0.08                =
   TLIMTTNNQTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ448><PRE>Top scoring peptide matches to query 44=
8<BR>Score greater than 16 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.9    0.11  14 IPI:IP=
I00033619  IRYESLTDPSK<BR>  3.3   -0.08                   ALLVVVNALLRK<BR> =
 3.3    0.07                   YYSVPVAVVPSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ449><PRE>Top scoring peptide matches to query 44=
9<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ450><PRE>Top scoring peptide matches to query 45=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.1    0.09           =
        TVTAMDVVYALK<BR>  0.6    0.05                   TVTAMAVVYVLK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ451><PRE>Top scoring peptide matches to query 45=
1<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ452><PRE>Top scoring peptide matches to query 45=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3    0.04           =
        RVPSAVVISQQK<BR>  0.5    0.02                   AIESLVKPQAKK<BR>  0=
.3    0.09                   VWHIAMAQLVK<BR>  0.1    0.07                  =
 LQDLLVVPMQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ453><PRE>Top scoring peptide matches to query 45=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0    0.09  58 IPI:IP=
I00008530  TSFFQALGITTK<BR>  0.7    0.14                   FMPLSDVLYGR</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ454><PRE>Top scoring peptide matches to query 45=
4<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.9    0.09  58 IPI:IP=
I00008530  TSFFQALGITTK<BR>  0.3    0.06                   VRSLPEIDGLSK</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ455><PRE>Top scoring peptide matches to query 45=
5<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ456><PRE>Top scoring peptide matches to query 45=
6<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ457><PRE>Top scoring peptide matches to query 45=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.12           =
        LLGGTRTPINDAS<BR>  0.2    0.06                   DHTLKFVVVTR<BR>  0=
.2    0.04                   LKELQSLSLQR<BR>  0.2    0.08                  =
 EIQLQKEASLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ458><PRE>Top scoring peptide matches to query 45=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.08           =
        QALRTAELSLGR<BR>  1.0    0.07   1 IPI:IPI00019502  LRLEVNLQAMK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ459><PRE>Top scoring peptide matches to query 45=
9<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ460><PRE>Top scoring peptide matches to query 46=
0<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ461><PRE>Top scoring peptide matches to query 46=
1<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ462><PRE>Top scoring peptide matches to query 46=
2<BR>Score greater than 15 indicates homology<BR>Score greater than 18 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.5    0.14           =
        SNQLLLVKGSQK<BR>  1.7    0.10                   VVLPTFILEKR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ463><PRE>Top scoring peptide matches to query 46=
3<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ464><PRE>Top scoring peptide matches to query 46=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.09           =
        AEIEALAALKMR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ465><PRE>Top scoring peptide matches to query 46=
5<BR>Score greater than 16 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.4    0.13           =
        TSIAIDTIINQK<BR>  2.5    0.13                   VDLRFNNLGLR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ466><PRE>Top scoring peptide matches to query 46=
6<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.8    0.05           =
        DISTILDEERK<BR>  5.4    0.09                   KCAGHLGYAADR<BR>  3.=
4    0.08                   WMALESIHFGK<BR>  1.3    0.07                   =
TVIEPMASEGLR<BR>  1.1    0.05                   CLQAGMNLGARK<BR>  0.9    0.=
05                   SIHRDHIESPK<BR>  0.1    0.04                   LSLENCG=
LTRR<BR>  0.1    0.11                   GQSKYCYSGIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ467><PRE>Top scoring peptide matches to query 46=
7<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ468><PRE>Top scoring peptide matches to query 46=
8<BR>Score greater than 22 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 61.0    0.08  10+IPI:IP=
I00011042  IMNTFSVVPSPK<BR>  5.3    0.01                   IHNELSPLKLR<BR> =
 4.1    0.07                   KIQSSLSSASPSK<BR>  1.6    0.05              =
     LLDTAQQIVYR<BR>  1.4    0.04                   LNNAKYAISVAR<BR>  1.1  =
  0.10                   WTAPERALYGR<BR>  0.9    0.12                   VES=
LDVDSEAKK<BR>  0.5    0.05                   VFPQPGSLYLAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ469><PRE>Top scoring peptide matches to query 46=
9<BR>Score greater than 21 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.2    0.07           =
        MPAVLGFEGSANK<BR>  7.7    0.07                   DQVRAAMTCIR<BR>  7=
.6    0.02                   CPALGCVRIFK<BR>  7.6    0.05                  =
 MIVDKLLDDSR<BR>  6.3    0.04                   GEFGSVREAQLK<BR>  5.6   -0.=
08                   KTLVLLGAHGVGR<BR>  3.6    0.13                   DQQTD=
KEQNSK<BR>  3.1   -0.06                   SKLLYQIQSLK<BR>  3.0    0.01     =
              VIMAELATKNSK<BR>  2.7    0.04                   FAVSAEAENKVR<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ470><PRE>Top scoring peptide matches to query 47=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.1    0.09  54 IPI:IP=
I00013296  YSQVLANGLDNK<BR>  0.7    0.14                   ELEKNMVEDSK<BR> =
 0.3    0.01                   HLLEGLLQKDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ471><PRE>Top scoring peptide matches to query 47=
1<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ472><PRE>Top scoring peptide matches to query 47=
2<BR>Score greater than 19 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.1    0.07   2+IPI:IP=
I00004497  DDRGPPASVAALR<BR>  4.8    0.08                   SSIATMTSVGKSR<B=
R>  1.4    0.07                   VPSEAPGAGVERR<BR>  1.1   -0.05           =
        VIRWIQAIGLR<BR>  0.5    0.13                   ELQGTSSMLQSK<BR>  0.=
4    0.05                   VEEPVLQNQIR<BR>  0.2    0.11                   =
SWSPSVPPPQSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ473><PRE>Top scoring peptide matches to query 47=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3    0.09   2+IPI:IP=
I00004497  DDRGPPASVAALR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ474><PRE>Top scoring peptide matches to query 47=
4<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.8    0.07           =
        MAPAAASPPEVIR<BR>  3.2    0.12                   ASRDVDCAYLR<BR>  0=
.9    0.06                   RSWWPQRPGR<BR>  0.8    0.12                   =
GSLLSWYDQEK<BR>  0.8    0.07                   EVAFWTNLFAK<BR>  0.4    0.11=
                   RAEAESMYQIK<BR>  0.4    0.08                   GSAVHQLSE=
ELR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ475><PRE>Top scoring peptide matches to query 47=
5<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ476><PRE>Top scoring peptide matches to query 47=
6<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.1    0.11           =
        MNPSVGPANQRR<BR>  3.8    0.13                   DTETVYSEVRK<BR>  3.=
8   -0.00                   EKPLIRSQSLR<BR>  3.1    0.07                   =
MLLTVYCVRR<BR>  2.7    0.13                   EAIENHQNMIK<BR>  2.7   -0.07 =
                  IINGIIISVKTR<BR>  2.5    0.11                   NQLSNSTQG=
LHK<BR>  2.3    0.10                   SPQVAWEVAPSR<BR>  1.0    0.09       =
            VNFRGSLNTYR<BR>  0.9    0.07                   VPGQQALSQRDK</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ477><PRE>Top scoring peptide matches to query 47=
7<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ478><PRE>Top scoring peptide matches to query 47=
8<BR>Score greater than 18 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.0    0.09           =
        MFVGGLSWDTSK<BR>  4.5   -0.00                   THHGVPLPQVSR<BR>  1=
.1   -0.03                   TFAGVRVHVVDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ479><PRE>Top scoring peptide matches to query 47=
9<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ480><PRE>Top scoring peptide matches to query 48=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.0    0.06           =
        IGSLRVGDPVYR<BR>  1.8    0.09                   KQLEEVSLETR<BR>  0.=
7    0.09                   ARELGDPIAHPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ481><PRE>Top scoring peptide matches to query 48=
1<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ482><PRE>Top scoring peptide matches to query 48=
2<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ483><PRE>Top scoring peptide matches to query 48=
3<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ484><PRE>Top scoring peptide matches to query 48=
4<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.9    0.12           =
        LGEEATVLCVSR<BR>  1.1    0.02                   VSQALFAKVAATK<BR>  =
1.1    0.09                   SQAQATISFPKR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ485><PRE>Top scoring peptide matches to query 48=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4   -0.11           =
        TVPLAVLQLRVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ486><PRE>Top scoring peptide matches to query 48=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.9    0.11           =
        YALYDATYETK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ487><PRE>Top scoring peptide matches to query 48=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.5    0.09           =
        GSFRYAWVLDK<BR>  1.5    0.08                   TAEDQALGVPVNK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ488><PRE>Top scoring peptide matches to query 48=
8<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.0    0.10           =
        GSFRYAWVLDK<BR>  3.9   -0.00                   RPLVPAGPAPPAAK<BR>  =
1.2    0.10                   CTLVTTLQMFK<BR>  1.1    0.07                 =
  MPLVTRNIEPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ489><PRE>Top scoring peptide matches to query 48=
9<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ490><PRE>Top scoring peptide matches to query 49=
0<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ491><PRE>Top scoring peptide matches to query 49=
1<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.5    0.11           =
        EENVPEILDRK<BR>  3.6    0.03                   TVLRVQLLEDR<BR>  1.9=
    0.04                   ELNLVLDEIKR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ492><PRE>Top scoring peptide matches to query 49=
2<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ493><PRE>Top scoring peptide matches to query 49=
3<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.3    0.06           =
        ADDGRPFPQVIK<BR>  1.6    0.05                   AFNQSSGLIIHR<BR>  1=
.1    0.13                   CVTGMSCLMRK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ494><PRE>Top scoring peptide matches to query 49=
4<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.7    0.00           =
        LRLDALPFQAAK<BR>  2.1    0.04                   LEHTTKTFPLR<BR>  1.=
3    0.10                   MQKSSHTAVPTR<BR>  0.6    0.04                  =
 LTGSTPSPSALRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ495><PRE>Top scoring peptide matches to query 49=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.08           =
        ADDGRPFPQVIK<BR>  0.8    0.06                   QAIFCYTKALK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ496><PRE>Top scoring peptide matches to query 49=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.07           =
        LISNFSKVSGYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ497><PRE>Top scoring peptide matches to query 49=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3    0.10           =
        LISNFSKVSGYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ498><PRE>Top scoring peptide matches to query 49=
8<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ499><PRE>Top scoring peptide matches to query 49=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.11           =
        LIPGAGATEMALAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ500><PRE>Top scoring peptide matches to query 50=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9   -0.01           =
        LEQYIPSRPLK<BR>  2.8    0.03                   QSSAVSSALALGPR<BR>  =
2.1    0.05                   VELLNQLEEEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ501><PRE>Top scoring peptide matches to query 50=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.11           =
        MACPWKFLFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ502><PRE>Top scoring peptide matches to query 50=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2    0.14           =
        MTLMTKSMNVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ503><PRE>Top scoring peptide matches to query 50=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.09           =
        CSQAIPQVDISK<BR>  0.1    0.10                   MTKFQEAVTFK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ504><PRE>Top scoring peptide matches to query 50=
4<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ505><PRE>Top scoring peptide matches to query 50=
5<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ506><PRE>Top scoring peptide matches to query 50=
6<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.2   -0.01           =
        LLVRLSDVYNR<BR>  1.9   -0.05                   ELPVGIVHKLSR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ507><PRE>Top scoring peptide matches to query 50=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.03           =
        TGGAVDRLTDTSR<BR>  1.5    0.03                   YSIIYGRFDSK<BR>  1=
.1    0.00                   LMVTPAGRNAFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ508><PRE>Top scoring peptide matches to query 50=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.9    0.10   1 IPI:IP=
I00019502  DELADEIANSSGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ509><PRE>Top scoring peptide matches to query 50=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.07           =
        HVTLGPGQSPLSR<BR>  0.3    0.10                   NMLPGLSLFQGR</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ510><PRE>Top scoring peptide matches to query 51=
0<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ511><PRE>Top scoring peptide matches to query 51=
1<BR>Score greater than 22 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 46.0    0.08  27 IPI:IP=
I00013921  TLTIVDTGIGMTK<BR> 46.0    0.08  14 IPI:IPI00033619  TLTLVDTGIGMT=
K<BR>  6.3   -0.01                   KLESLHLQLIR<BR>  6.0   -0.02          =
         SALWLLAPPLLR<BR>  2.4    0.10                   LNTCAMKGGLLR<BR>  =
0.2    0.12                   EWINAAFRAGSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ512><PRE>Top scoring peptide matches to query 51=
2<BR>Score greater than 15 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 36.1    0.10  27 IPI:IP=
I00013921  TLTIVDTGIGMTK<BR> 36.1    0.10  14 IPI:IPI00033619  TLTLVDTGIGMT=
K</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ513><PRE>Top scoring peptide matches to query 51=
3<BR>Score greater than 19 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.1    0.10           =
        LEGIVNKMFQR<BR>  5.6    0.12                   EDEGLYTIRVR<BR>  0.4=
    0.03                   LLWVYMIRIK<BR>  0.2    0.06                   AG=
AIYVFQVRAR<BR>  0.2    0.10                   QGERLEHAAALR<BR>  0.2    0.13=
                   FEGPHGQPVGGLR<BR>  0.2    0.07                   GVHGTLS=
PTVVQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ514><PRE>Top scoring peptide matches to query 51=
4<BR>Score greater than 16 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.5   -0.00           =
        MITSVLEKEASK<BR>  3.6   -0.07                   WFKVTIPYGIK<BR>  3.=
4   -0.03  71 IPI:IPI00019567  ITGYLLEMRQK<BR>  3.1    0.02                =
   EGIYITNEERK<BR>  2.5    0.02                   AHGELHEQFKR<BR>  1.8   -0=
.11                   INHPKTLFLLR<BR>  0.8    0.08                   YSLIPD=
EEEEK<BR>  0.8    0.07                   ELTLMTEEETR<BR>  0.8    0.09      =
             NKDENAETQFR<BR>  0.2    0.01  32 IPI:IPI00030960  TVLPFSQEFQR<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ515><PRE>Top scoring peptide matches to query 51=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.7   -0.02  71 IPI:IP=
I00019567  ITGYLLEMRQK<BR>  9.3    0.00                   MITSVLEKEASK<BR> =
 0.8   -0.10                   INHPKTLFLLR<BR>  0.8   -0.03                =
   AAKQLNFVFTGR<BR>  0.2    0.00                   RECVYIIPSSK<BR>  0.2    =
0.09                   FEIWDTAGQER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ516><PRE>Top scoring peptide matches to query 51=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.8   -0.02  71 IPI:IP=
I00019567  ITGYLLEMRQK<BR>  4.6    0.00                   MITSVLEKEASK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ517><PRE>Top scoring peptide matches to query 51=
7<BR>Score greater than 26 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 18.2    0.05   2+IPI:IP=
I00004497  DSFMVELVEGAR<BR> 12.4    0.03  83 IPI:IPI00030790  DSLSQLEEYLR<B=
R>  7.3    0.06                   GKHWANQCHSK<BR>  2.2   -0.05             =
      ILPPQCLPVCR<BR>  2.1   -0.04                   LECQISAIPPPK<BR>  2.0 =
  -0.02                   VAPGTPADLCVPR<BR>  1.7   -0.01                   =
ISEYSEAAITIR<BR>  1.4   -0.04                   DFLSIELFRGR<BR>  0.3    0.0=
1                   HFSHAGALFTHK<BR>  0.2   -0.14                   GVPIPNK=
VIFIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ518><PRE>Top scoring peptide matches to query 51=
8<BR>Score greater than 25 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.2    0.07   2+IPI:IP=
I00004497  DSFMVELVEGAR<BR> 11.1    0.05  83 IPI:IPI00030790  DSLSQLEEYLR<B=
R>  1.6   -0.02                   ILPPQCLPVCR<BR>  1.6   -0.02             =
      LLGFNMIPYLR<BR>  1.6   -0.02                   LECQISAIPPPK<BR>  1.5 =
   0.01                   VAPGTPADLCVPR<BR>  1.4   -0.01                   =
DFLSIELFRGR<BR>  1.4    0.08                   GKHWANQCHSK<BR>  1.1   -0.12=
                   GVPIPNKVIFIR<BR>  0.9    0.02                   ISEYSEAA=
ITIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ519><PRE>Top scoring peptide matches to query 51=
9<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.2    0.07   2+IPI:IP=
I00004497  DSFMVELVEGAR<BR>  1.5    0.06  83 IPI:IPI00030790  DSLSQLEEYLR</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ520><PRE>Top scoring peptide matches to query 52=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.3    0.08   2+IPI:IP=
I00004497  DSFMVELVEGAR<BR>  1.3    0.06                   HLLFCMVFNR</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ521><PRE>Top scoring peptide matches to query 52=
1<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.2    0.05           =
        KYECELENLR<BR>  0.8    0.04                   MSFVPVGFWQR<BR>  0.4 =
   0.00                   YAAICNPLLYR<BR>  0.4    0.06                   SL=
ESLMEMNKR<BR>  0.3    0.10                   SLFSEEAANEEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ522><PRE>Top scoring peptide matches to query 52=
2<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ523><PRE>Top scoring peptide matches to query 52=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.09           =
        KYECELENLR<BR>  0.4    0.09                   SLESLMEMNKR</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ524><PRE>Top scoring peptide matches to query 52=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.1    0.09           =
        KYECELENLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ525><PRE>Top scoring peptide matches to query 52=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.8    0.09           =
        KYECELENLR<BR>  0.3   -0.00                   LTNAGSKLDHGIK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ526><PRE>Top scoring peptide matches to query 52=
6<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0    0.09           =
        KYECELENLR<BR>  2.0    0.10                   SLESLMEMNKR</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ527><PRE>Top scoring peptide matches to query 52=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.2    0.09           =
        KYECELENLR<BR>  0.9    0.08                   DAYVMIAEKGEK</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ528><PRE>Top scoring peptide matches to query 52=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.8    0.10           =
        KYECELENLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ529><PRE>Top scoring peptide matches to query 52=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9   -0.02           =
        DLVSRLLVVDPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ530><PRE>Top scoring peptide matches to query 53=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.7   -0.06           =
        VGLELSPKVAVSR<BR>  2.4    0.04                   EGFFTNGLTLGAK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ531><PRE>Top scoring peptide matches to query 53=
1<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.4    0.02           =
        LVAIVDVIDQNR<BR>  1.9    0.13                   SFTCTPELFPR<BR>  1.=
7    0.08                   YNCRVIFLNR<BR>  1.7    0.13                   F=
ADRSLLEMEK<BR>  1.7    0.12                   GFNLMNIICTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ532><PRE>Top scoring peptide matches to query 53=
2<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ533><PRE>Top scoring peptide matches to query 53=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.5   -0.03           =
        AVLTPAVTKVISR<BR>  2.1   -0.04                   VFLALAAKGPVLR<BR> =
 0.5    0.08  12 IPI:IPI00028646  ALGQNPTNAEVLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ534><PRE>Top scoring peptide matches to query 53=
4<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ535><PRE>Top scoring peptide matches to query 53=
5<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ536><PRE>Top scoring peptide matches to query 53=
6<BR>Score greater than 15 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.4    0.09           =
        LVAIVDVIDQNR<BR>  2.2    0.10                   HLDLISQMIIR<BR>  1.=
2    0.13                   TGHSLLHTLYGR<BR>  1.2    0.13                  =
 TGHSILHTLYGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ537><PRE>Top scoring peptide matches to query 53=
7<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ538><PRE>Top scoring peptide matches to query 53=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.05           =
        LCPLPGYLPPTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ539><PRE>Top scoring peptide matches to query 53=
9<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ540><PRE>Top scoring peptide matches to query 54=
0<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ541><PRE>Top scoring peptide matches to query 54=
1<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ542><PRE>Top scoring peptide matches to query 54=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.3   -0.03           =
        GNLNVLKTELQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ543><PRE>Top scoring peptide matches to query 54=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.8    0.07           =
        VSGGAPLHLGRHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ544><PRE>Top scoring peptide matches to query 54=
4<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.04           =
        KTSLLANCQAPR<BR>  1.5    0.10                   FEEHAVEALWK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ545><PRE>Top scoring peptide matches to query 54=
5<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.4    0.04   1 IPI:IP=
I00019502  RALEQQVEEMK<BR>  3.6   -0.02                   LQVEKMLENLK<BR>  =
1.6    0.01                   SAGALLLAGMSVDR<BR>  0.7   -0.00              =
     YLSSPSGPLRQR<BR>  0.6   -0.00                   SWGRVGTVIGSNK<BR>  0.5=
   -0.07                   GPAGGPVLPQLKAR<BR>  0.4    0.12                 =
  NPSCSYVYTNR<BR>  0.1    0.07                   TTSHQPQDRYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ546><PRE>Top scoring peptide matches to query 54=
6<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.9    0.10   1 IPI:IP=
I00019502  RALEQQVEEMK<BR>  3.6    0.08                   LNKELASSEQNK<BR> =
 1.2    0.05                   SWGRVGTVIGSNK<BR>  0.9    0.03              =
     AVLGVSSTQGKWK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ547><PRE>Top scoring peptide matches to query 54=
7<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ548><PRE>Top scoring peptide matches to query 54=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.07           =
        LAKEEMLQMIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ549><PRE>Top scoring peptide matches to query 54=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0    0.02           =
        EIETFVSLLRR<BR>  0.6    0.06                   TVSLSQMLREAK<BR>  0.=
6    0.07                   CLKELMELQAK<BR>  0.5    0.10                   =
ESLMSLQAQLDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ550><PRE>Top scoring peptide matches to query 55=
0<BR>Score greater than 16 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.6    0.10           =
        LSSFIGAGSPSLVK<BR>  3.1    0.09                   DISLIKQYVQR<BR>  =
2.7    0.13                   YLEAGAAGLRWR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ551><PRE>Top scoring peptide matches to query 55=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.9    0.04           =
        IIAPANMERPVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ552><PRE>Top scoring peptide matches to query 55=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.10           =
        MKDAAEELSFAR<BR>  0.8    0.06                   QMKNFVSQELK<BR>  0.=
6    0.13                   DQAYSARDSAQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ553><PRE>Top scoring peptide matches to query 55=
3<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.4    0.08           =
        LHPSSVPGPDFSK<BR>  4.8    0.13                   LMNKCEDISNK<BR>  3=
.2    0.14                   ELTLMTEEETR<BR>  3.1    0.14                  =
 VTETEDTQMVSK<BR>  2.5    0.08                   LDEAFDFVKQR<BR>  2.1   -0.=
03                   LQAILGVPWKDK<BR>  1.9    0.14                   DQAYSA=
RDSAQR<BR>  1.8    0.01                   LAAAISKHSENVK<BR>  0.7    0.03   =
                IYQRAFGGQSLK<BR>  0.2    0.02                   MKCIPYSVLLK=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ554><PRE>Top scoring peptide matches to query 55=
4<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ555><PRE>Top scoring peptide matches to query 55=
5<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.7    0.07           =
        TIMGWTLDFLR<BR>  3.6    0.07                   RVHPDTGIWCK<BR>  3.5=
    0.05                   GPAVPRLTSAEDR<BR>  3.2    0.06                  =
 ELAYQTFEVLR<BR>  2.2    0.09                   IMETFKIDSER<BR>  0.6    0.0=
8                   LSFSVSRDGASSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ556><PRE>Top scoring peptide matches to query 55=
6<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.4    0.08           =
        TIMGWTLDFLR<BR>  3.2    0.05                   GPAVPRLTSAEDR<BR>  2=
.0    0.09                   IMETFKIDSER<BR>  0.9    0.12                  =
 ANCLVSFCPTTV<BR>  0.6    0.09                   LSFSVSRDGASSR<BR>  0.0    =
0.05                   LLPAAGPAGGEPYR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ557><PRE>Top scoring peptide matches to query 55=
7<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.5    0.03           =
        KGTISFFEIDGR<BR>  3.8    0.12   5+IPI:IPI00018231  EDTMEVEEFLK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ558><PRE>Top scoring peptide matches to query 55=
8<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.2    0.13   5+IPI:IP=
I00018231  EDTMEVEEFLK<BR>  2.2    0.07                   CQGQDVRQPGPK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ559><PRE>Top scoring peptide matches to query 55=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.02           =
        GHVLAKELEAFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ560><PRE>Top scoring peptide matches to query 56=
0<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 25.7    0.10  59 IPI:IPI00016774  GAAQNLIPASTGAAK<BR> 15.6    0.06 =
                  FLLESELLLHR<BR> 15.1    0.05                   QAQQVIQKGI=
TR<BR>  6.2    0.05                   LLQLSLERNGAR<BR>  6.1   -0.04        =
           VVIGSVLTLISLR<BR>  5.6    0.09                   EYMLNLFKALK<BR>=
  4.3    0.09                   VQEKVMEHLLK<BR>  0.8    0.14               =
    TSLVEEAEKHAR<BR>  0.8    0.15                   SPVESTTEPPAVR<BR>  0.5 =
   0.06                   AHLLSKPFESLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ561><PRE>Top scoring peptide matches to query 56=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.1    0.03           =
        CSETWKTIFAK<BR>  0.8   -0.12                   LPPSNPLPLVPVK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ562><PRE>Top scoring peptide matches to query 56=
2<BR>Score greater than 20 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.7    0.08  66 IPI:IP=
I00022003  SLQNIIPASTGAAK<BR>  6.2   -0.01                   KPSLLAHPGPLLK<=
BR>  5.4    0.06                   TIIPLISQCTPK<BR>  5.3    0.10           =
        AQELARLEGEVR<BR>  5.3    0.14                   SPVWPTFPFHR<BR>  3.=
4    0.00                   LPPSNPLPLVPVK<BR>  3.1    0.09                 =
  NVDILKDPETVK<BR>  2.5    0.07                   QILMDTIQLPAK<BR>  2.5    =
0.09                   GACLHLNIRIGF<BR>  1.7    0.10                   HNVF=
GLALKDEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ563><PRE>Top scoring peptide matches to query 56=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.10           =
        LTICGWDFGFR<BR>  0.6   -0.01                   TIILIPSDLACR<BR>  0.=
6   -0.02                   TLILEGLEKAER<BR>  0.6    0.10                  =
 ITLSSSSEEYQK<BR>  0.6   -0.05                   VDLLSLEVSRIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ564><PRE>Top scoring peptide matches to query 56=
4<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.09           =
        MAYGIKETMLAK<BR>  1.5    0.13                   SKLCMGSIMNSK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ565><PRE>Top scoring peptide matches to query 56=
5<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ566><PRE>Top scoring peptide matches to query 56=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.3    0.14           =
        DAPAFYELQYR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ567><PRE>Top scoring peptide matches to query 56=
7<BR>Score greater than 16 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.12           =
        KQLAEQEELER<BR>  2.9    0.09                   VPMLEMTLPGLR<BR>  2.=
2    0.10                   QEALEETLRQR<BR>  1.2    0.11                   =
WQVHGIVSFGSR<BR>  0.9    0.14                   EEAAVDAQQQKR<BR>  0.9    0.=
08                   ICALENELAALR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ568><PRE>Top scoring peptide matches to query 56=
8<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.0    0.04           =
        SELLCLWLPSR<BR>  4.7    0.05                   QSINETPLGSLSK<BR>  2=
.3    0.01                   SLQNASAIESILK<BR>  2.2    0.06                =
   TLVDEVQELEAK<BR>  2.1    0.13                   QELGDGLDDEIAV<BR>  2.1  =
  0.01                   TDLPSSLVSVSLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ569><PRE>Top scoring peptide matches to query 56=
9<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ570><PRE>Top scoring peptide matches to query 57=
0<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.8    0.01           =
        TLTFLQLYHNK<BR> 12.1    0.05  73 IPI:IPI00005269  FMEREHLIFR<BR>  3=
.4    0.14                   VYLCGQDEEHK<BR>  3.4    0.09                  =
 CLDPAQQNLYR<BR>  3.2    0.03                   IMSFPKSPFPAR<BR>  3.2   -0.=
00                   FLDAEKDISVLK<BR>  2.5    0.04                   LAKEEM=
LQMIR<BR>  2.4    0.03                   NSHSLYLAGIFR<BR>  1.2    0.01     =
              SLKLCLLCQDK<BR>  1.0    0.09  52 IPI:IPI00000880  MAMTLPRNCQR=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ571><PRE>Top scoring peptide matches to query 57=
1<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.08           =
        IQSSLSVNSDISK<BR>  0.8    0.07                   FSACYFTLKLK<BR>  0=
.8    0.08                   VSMAIQLTEELK<BR>  0.0    0.04                 =
  QFLETIEKELK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ572><PRE>Top scoring peptide matches to query 57=
2<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ573><PRE>Top scoring peptide matches to query 57=
3<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ574><PRE>Top scoring peptide matches to query 57=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.04  50 IPI:IP=
I00005762  LDHKFDLMYAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ575><PRE>Top scoring peptide matches to query 57=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.4    0.06           =
        SAPSLILDKALQK<BR>  1.3    0.12                   GFIHNSIMVLPR</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ576><PRE>Top scoring peptide matches to query 57=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.5    0.07           =
        LGPALATGNVVVMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ577><PRE>Top scoring peptide matches to query 57=
7<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.3    0.02           =
        ALFAFMALSFIR<BR>  4.8    0.09  47 IPI:IPI00013485  TYSYLTPDLWK<BR> =
 4.0    0.12                   ADSYLKNFASDR<BR>  1.6    0.04               =
    ARYNLGTIHWR<BR>  1.5    0.08                   AQEENRNVAVEK<BR>  0.9   =
 0.13                   RHAFSEHSSSNK<BR>  0.8    0.04                   EQI=
TRTGNLQAR<BR>  0.6    0.02                   QNLESNLTNLIK<BR>  0.4    0.07 =
                  AHSNNIDIISFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ578><PRE>Top scoring peptide matches to query 57=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.0   -0.09           =
        WSLLQQQKMAR<BR>  0.8    0.09   1 IPI:IPI00019502  DMFQETMEAMR</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ579><PRE>Top scoring peptide matches to query 57=
9<BR>Score greater than 19 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.1    0.11   1 IPI:IP=
I00019502  DMFQETMEAMR<BR>  5.6   -0.10                   NALGAIHHTISVR<BR>=
  2.6   -0.11                   MAVLSGVRWLTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ580><PRE>Top scoring peptide matches to query 58=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.1    0.05   9 IPI:IP=
I00033494  KGNFNYIEFTR<BR>  2.2    0.03                   IGEAEAAVIEAMGK<BR=
>  1.1    0.13                   RDMGFTEEEFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ581><PRE>Top scoring peptide matches to query 58=
1<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 31.8    0.12   9 IPI:IP=
I00033494  KGNFNYIEFTR<BR>  1.6    0.08                   SDNILVWSLDVK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ582><PRE>Top scoring peptide matches to query 58=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0   -0.02           =
        FPFNQWGLQPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ583><PRE>Top scoring peptide matches to query 58=
3<BR>Score greater than 14 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0   -0.02           =
        ATGANATPLDFPSK<BR>  1.1    0.12                   CHPGCPSAMGCR<BR> =
 0.7   -0.08                   LEKADILEMTVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ584><PRE>Top scoring peptide matches to query 58=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.07           =
        CSSASSLQEHRK<BR>  0.6    0.03                   CRTTFYTALTR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ585><PRE>Top scoring peptide matches to query 58=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.5    0.04           =
        ELALGQDRILIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ586><PRE>Top scoring peptide matches to query 58=
6<BR>Score greater than 23 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.8    0.08  74 IPI:IP=
I00019412  LATQLTGPVMPIR<BR>  8.8    0.13                   LKDTLENTIGHR<BR=
>  6.7    0.13                   ALRAMPITQHSR<BR>  0.7    0.08             =
      SGRIIPKPEFPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ587><PRE>Top scoring peptide matches to query 58=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.1   -0.03           =
        VFLQQLEVFMK<BR>  0.4   -0.00                   KPVLNDQNWAGR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ588><PRE>Top scoring peptide matches to query 58=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.8    0.09  24 IPI:IP=
I00003362  ELEEIVQPIISK<BR>  0.4    0.11                   LCVALKHEQTAK<BR>=
  0.3    0.10                   SELGAVKPDGRLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ589><PRE>Top scoring peptide matches to query 58=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.08           =
        IQFHQYLGKHK<BR>  0.5    0.12                   AFNRSSHLTTHK<BR>  0.=
5    0.03                   TVQANIQELRVK<BR>  0.5    0.10  84 IPI:IPI000303=
90  TTPDVIFVFGFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ590><PRE>Top scoring peptide matches to query 59=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.4    0.15  84 IPI:IP=
I00030390  TTPDVIFVFGFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ591><PRE>Top scoring peptide matches to query 59=
1<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ592><PRE>Top scoring peptide matches to query 59=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.06           =
        KQEEVSAVIIQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ593><PRE>Top scoring peptide matches to query 59=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.13           =
        GDIDPLNFLPGNK<BR>  2.6    0.06                   KQEEVSAVIIQR<BR>  =
0.5    0.14                   RTLEQMDVVHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ594><PRE>Top scoring peptide matches to query 59=
4<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.4    0.04  23 IPI:IP=
I00015344  YYVTIIDAPGHR<BR>  3.6    0.05                   SALGRPDLAVPDGH<B=
R>  1.2    0.08                   STNSHLGTSNMKK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ595><PRE>Top scoring peptide matches to query 59=
5<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 39.6    0.09  31 IPI:IP=
I00021266  LAPDYDALDVANK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ596><PRE>Top scoring peptide matches to query 59=
6<BR>Score greater than 25 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 52.4    0.10  23 IPI:IP=
I00015344  YYVTIIDAPGHR<BR>  9.6    0.10                   SALGRPDLAVPDGH<B=
R>  9.2    0.13                   STNSHLGTSNMKK<BR>  4.0    0.03           =
        RGVLEPLENLHK<BR>  0.9    0.01                   DWLQPLLHRVK<BR>  0.=
9    0.01                   IDIIKGLFVACR<BR>  0.8    0.13                  =
 ASGSPEPAISWFR<BR>  0.8    0.06                   VHSATLAIAEQHK<BR>  0.5   =
 0.07                   GIQLAVDWFLDK<BR>  0.4    0.01                   KLG=
LLGDSVDIFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ597><PRE>Top scoring peptide matches to query 59=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.9    0.09           =
        HKTNCILFCGR<BR>  1.8   -0.01                   LLDIEGLYSKVR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ598><PRE>Top scoring peptide matches to query 59=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.8    0.02           =
        LLDIEGLYSKVR<BR>  1.1    0.02                   LRQENLQLVHR<BR>  1.=
1    0.12                   HKTNCILFCGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ599><PRE>Top scoring peptide matches to query 59=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0    0.11           =
        SPFLHSGMKMQK<BR>  1.8    0.06                   LVYLYLMNYAK</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ600><PRE>Top scoring peptide matches to query 60=
0<BR>Score greater than 21 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 46.2    0.10  37 IPI:IP=
I00012815  GNPTVEVDLYTAK<BR> 46.2    0.10  17 IPI:IPI00027488  GNPTVEVDLFTS=
K<BR>  6.0   -0.13                   VLALIAVIVAGIVR<BR>  4.8    0.11       =
            QLREEVVACMR<BR>  0.8   -0.04                   NGLAKLVFIIYR</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ601><PRE>Top scoring peptide matches to query 60=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.09           =
        GLYMANDLKLLR<BR>  0.7    0.12                   ERGSPLLGDHAVR</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ602><PRE>Top scoring peptide matches to query 60=
2<BR>Score greater than 20 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.1    0.03           =
        ASEEVSKSLQAMK<BR>  7.3    0.06  55 IPI:IPI00029191  VYNYNHLMPTR<BR>=
  3.3    0.06                   FHGMFLQNASQK<BR>  2.8    0.05              =
     QCGKTLSHSSFR<BR>  1.6    0.02                   TRIQGFLCDAAR<BR>  1.5 =
   0.07                   EELSPVLCMASR<BR>  1.3    0.06                   E=
EWEILFNATR<BR>  0.9    0.04                   VDDFLANEAKGTK<BR>  0.5    0.0=
6                   TFNEQKDELQR<BR>  0.5    0.04                   TPATEEAA=
YLVSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ603><PRE>Top scoring peptide matches to query 60=
3<BR>Score greater than 22 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.8    0.10           =
        QELLEEYEQVK<BR>  8.4    0.05                   LNMHNLVEPVNK<BR>  7.=
3    0.10                   NQLEENTFTRR<BR>  6.1    0.15                   =
NPATTNQTEFER<BR>  4.7    0.01                   IKLTPEEEAHLK<BR>  3.2    0.=
11                   NQLRGELDTMSK<BR>  2.1    0.13                   QHSDLE=
EEHRK<BR>  0.8   -0.04                   GIASETHVVLILR<BR>  0.1    0.00    =
               QEYLKLEMLLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ604><PRE>Top scoring peptide matches to query 60=
4<BR>Score greater than 19 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 29.5    0.10   7 IPI:IP=
I00003865  RFDDAVVQSDMK<BR>  4.6    0.08                   TYLQQIGVDMDK<BR>=
  4.2    0.11                   RLYTEAWDNDK<BR>  1.5    0.09               =
    MEVSKGPMMQIK<BR>  0.1    0.03                   HRIFFFSFPGR<BR>  0.0   =
 0.00                   YISILTNTQVMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ605><PRE>Top scoring peptide matches to query 60=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.1   -0.05           =
        SFFAALVAAFVLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ606><PRE>Top scoring peptide matches to query 60=
6<BR>Score greater than 26 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 18.4    0.04   1 IPI:IP=
I00019502  KVEAQLQELQVK<BR> 11.9    0.02                   ELIEALQEVLKK<BR>=
  4.0    0.08                   IIDVDLVTGSAPGR<BR>  3.7    0.11            =
       QGLQELITGNPDK<BR>  2.2    0.03                   QIVKSLIPSWNK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ607><PRE>Top scoring peptide matches to query 60=
7<BR>Score greater than 22 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 21.4    0.09   1 IPI:IP=
I00019502  KVEAQLQELQVK<BR>  7.9    0.06                   ELIEALQEVLKK<BR>=
  3.6    0.12                   IIDVDLVTGSAPGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ608><PRE>Top scoring peptide matches to query 60=
8<BR>Score greater than 15 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9    0.13           =
        MPLAQLADPWQK<BR>  2.9   -0.02                   LSCLAVGLALLKR<BR>  =
2.2    0.09                   FQDLIRELSHR<BR>  0.8    0.04                 =
  KQEEVSAIIIQR<BR>  0.1    0.04                   VSLEKAVISGPWK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ609><PRE>Top scoring peptide matches to query 60=
9<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ610><PRE>Top scoring peptide matches to query 61=
0<BR>Score greater than 20 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 33.5    0.11   9 IPI:IP=
I00033494  FTDEEVDELYR<BR>  4.9    0.03                   EPTPSLTASRGDGK<BR=
>  2.1    0.01                   KHINDLYEDLR<BR>  1.1    0.04              =
     SMSMFRSLEVTK<BR>  0.2    0.14                   MSEESDMDKAIK</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ611><PRE>Top scoring peptide matches to query 61=
1<BR>Score greater than 17 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.8    0.03           =
        EPWNVNTEKTAK<BR>  4.2   -0.09                   ATSSEEVLLIVKK<BR>  =
1.1    0.06                   MTEIQTPENTPR<BR>  0.1   -0.02                =
   LNHELRGWVHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ612><PRE>Top scoring peptide matches to query 61=
2<BR>Score greater than 22 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.2    0.13  14+IPI:IP=
I00033619  EGLELPEDEEEK<BR>  9.2   -0.06                   LANILFTRELAR<BR>=
  9.0   -0.01                   EIGELKAVMEGIK<BR>  3.7    0.02             =
      WLKPGGLMFPDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ613><PRE>Top scoring peptide matches to query 61=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.8    0.04           =
        SLEAEALAEDIEK<BR>  2.0    0.10                   VHMPMDCINIR<BR>  1=
.0   -0.03                   ATCPGLSTLKEIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ614><PRE>Top scoring peptide matches to query 61=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.1    0.05           =
        GKEFEFSQLPLK<BR>  0.1    0.08                   NLSFFLTPPCAR</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ615><PRE>Top scoring peptide matches to query 61=
5<BR>Score greater than 22 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.2    0.09  78 IPI:IP=
I00028654  TTLMNTLMDVLR<BR>  7.9   -0.05                   GVRPVRPKVLMR<BR>=
  2.8    0.10                   MSMPSSLLALSMR<BR>  2.8    0.07             =
      STWSPTMVVLFR<BR>  1.9    0.04                   NIANIMKTLAYR</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ616><PRE>Top scoring peptide matches to query 61=
6<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ617><PRE>Top scoring peptide matches to query 61=
7<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ618><PRE>Top scoring peptide matches to query 61=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.7    0.08           =
        DEVIAVSEKVIVK<BR>  4.6    0.07                   ITITVVSAQGLQAK</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ619><PRE>Top scoring peptide matches to query 61=
9<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ620><PRE>Top scoring peptide matches to query 62=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 22 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.4    0.11  58 IPI:IP=
I00008530  GTIEILSDVQLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ621><PRE>Top scoring peptide matches to query 62=
1<BR>Score greater than 17 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.4    0.06           =
        CKLLILSNSLLR<BR>  3.6    0.13                   LQQQLKITTDNK<BR>  3=
.5    0.04                   LAALELILHLAPR<BR>  0.9    0.09                =
   LTLESNATLKALR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ622><PRE>Top scoring peptide matches to query 62=
2<BR>Score greater than 20 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.4    0.13  24 IPI:IP=
I00003362  TWNDPSVQQDIK<BR>  6.7    0.04                   ILEALASSEDVRK<BR=
>  4.9   -0.05                   VRELVVIIFSQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ623><PRE>Top scoring peptide matches to query 62=
3<BR>Score greater than 14 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.09           =
        AVSKLSAALSSLQR<BR>  1.2    0.14                   SVQSNLELLTQAK</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ624><PRE>Top scoring peptide matches to query 62=
4<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.04           =
        FLGHAQTFGGIKR<BR>  2.2   -0.07                   VIRLVVHVNINR<BR>  =
1.5    0.04                   NKEPGEIQYLIK<BR>  1.3    0.04                =
   LGGVKYDIDLPNK<BR>  0.4   -0.06                   WKPLALQPLIPR</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ625><PRE>Top scoring peptide matches to query 62=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.6    0.12           =
        GEKPNECKECGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ626><PRE>Top scoring peptide matches to query 62=
6<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ627><PRE>Top scoring peptide matches to query 62=
7<BR>Score greater than 23 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 51.7    0.07   2+IPI:IP=
I00004497  ISSLGSQAMQMER<BR>  7.0    0.01                   SMAGVVKSMDATLK<=
BR>  0.7   -0.11                   LIFMIIQKLFR<BR>  0.7   -0.07            =
       HLESLKNAGSLLR<BR>  0.5    0.01                   SAFPKACIAGLMR<BR>  =
0.4   -0.01                   EGSDPQPPLGSLLK<BR>  0.2    0.03              =
     MSCTIEKALADAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ628><PRE>Top scoring peptide matches to query 62=
8<BR>Score greater than 21 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 25.9    0.10   2+IPI:IP=
I00004497  ISSLGSQAMQMER<BR>  6.7   -0.03                   HLESLKNAGSLLR<B=
R>  5.9   -0.12                   LWGALRLGAVILR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ629><PRE>Top scoring peptide matches to query 62=
9<BR>Score greater than 24 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 28.3    0.10   2+IPI:IP=
I00004497  ISSLGSQAMQMER<BR>  9.6   -0.03                   TEDIITAIRHLR<BR=
>  7.5   -0.12                   IKVIEGSLQPIIK<BR>  6.1   -0.12            =
       LWGALRLGAVILR<BR>  5.8   -0.02                   SVTLGTVVGSSKFR<BR> =
 5.2    0.08                   LSWASKTSCNQR<BR>  4.5   -0.06               =
    RLQEALQPILEK<BR>  4.3   -0.03                   HLESLKNAGSLLR<BR>  4.3 =
   0.01                   LEELYRGMGLLK<BR>  2.4    0.12                   D=
PGNGTHGLSPEEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ630><PRE>Top scoring peptide matches to query 63=
0<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.9   -0.08           =
        LKILPEEITNLR<BR>  2.9   -0.11                   LGPALVPLHRLPR</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ631><PRE>Top scoring peptide matches to query 63=
1<BR>Score greater than 20 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.0   -0.06           =
        AASSRLAAIPAALAR<BR>  7.0   -0.05                   IDILDSALLRPGR<BR=
>  5.7   -0.07                   LKILPEEITNLR<BR>  5.0   -0.01             =
      QNQSSLSPVLLPR<BR>  2.9   -0.07                   KQKPVLEEQVIK<BR>  2.=
4    0.06                   TGSPGEGAHVSAAVAK<BR>  0.9    0.07              =
     HSQKQIEEHFR<BR>  0.9    0.01                   EDNVAPLRFHLK<BR>  0.9  =
 -0.04                   LGYKFLESLLQK<BR>  0.8   -0.09                   QI=
EASVVAIRPKK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ632><PRE>Top scoring peptide matches to query 63=
2<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.6    0.15           =
        MMLMSTATAFYR<BR>  2.3    0.08                   LKLEEDMEYLR<BR>  2.=
0   -0.04                   IDILDSALLRPGR<BR>  1.6    0.02                 =
  LKDYGLWQLFR<BR>  1.4    0.14                   MFGWGDFHSNIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ633><PRE>Top scoring peptide matches to query 63=
3<BR>Score greater than 18 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.5    0.05           =
        AEPLAVGKEDPVSK<BR>  4.8    0.01                   ALQQVGGLKSPWR</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ634><PRE>Top scoring peptide matches to query 63=
4<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 25.0    0.09  30+IPI:IP=
I00018158  FINMFAVLDELK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ635><PRE>Top scoring peptide matches to query 63=
5<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ636><PRE>Top scoring peptide matches to query 63=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.02           =
        SLDSSTPLPIVRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ637><PRE>Top scoring peptide matches to query 63=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.0    0.00           =
        ILEQRQVVLSEK<BR>  1.2   -0.04                   VSAKIQQLVNTLK</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ638><PRE>Top scoring peptide matches to query 63=
8<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ639><PRE>Top scoring peptide matches to query 63=
9<BR>Score greater than 21 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.2    0.02           =
        IAFAVMIVLALIR<BR>  8.0    0.14                   DKLVYNVLYYR<BR>  0=
.4    0.09                   TYFSPRIPPLVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ640><PRE>Top scoring peptide matches to query 64=
0<BR>Score greater than 30 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ641><PRE>Top scoring peptide matches to query 64=
1<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ642><PRE>Top scoring peptide matches to query 64=
2<BR>Score greater than 22 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 34.1    0.11  15 IPI:IP=
I00021327  ESESAPGDFSLSVK<BR>  7.8   -0.04                   FIIHNIVEAAAVR<=
BR>  3.6    0.06                   MTPPRPRPEEAR<BR>  2.3    0.07           =
        TYEQVLENLESK<BR>  2.2   -0.02                   RVAMPHVIGLSTR<BR>  =
2.2   -0.07                   IYKVPSIHLLNR<BR>  2.1    0.09                =
   ECGKTFSSPGNLR<BR>  2.1    0.04                   VESTSPKTFLESK<BR>  2.1 =
  -0.01                   ELKPGGANIPVTEK<BR>  2.1   -0.01                  =
 IPPVPSTTSPISTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ643><PRE>Top scoring peptide matches to query 64=
3<BR>Score greater than 18 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 25.2    0.08  16 IPI:IP=
I00019512  VIQYLAHVASSHK<BR>  3.7    0.06                   ELRHIMGLLQAR<BR=
>  3.3    0.07                   IPPVPSTTSPISTR<BR>  1.8    0.04           =
        GVQELLLKLLPDD</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ644><PRE>Top scoring peptide matches to query 64=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.02           =
        RVLPDVAVLMALR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ645><PRE>Top scoring peptide matches to query 64=
5<BR>Score greater than 15 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 32.6    0.11  16 IPI:IP=
I00019512  VIQYLAHVASSHK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ646><PRE>Top scoring peptide matches to query 64=
6<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.3    0.03           =
        ALGAHSSLCPAELK<BR>  4.0   -0.05                   RPLGPHAPPAATLR<BR=
>  3.1    0.10                   YNINPVSMDICK<BR>  3.0    0.06             =
      NAQAPCPLPGSVSR<BR>  3.0   -0.12                   IISAILKIPSSVGR<BR> =
 1.6    0.02                   LDLIFVTFQDSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ647><PRE>Top scoring peptide matches to query 64=
7<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ648><PRE>Top scoring peptide matches to query 64=
8<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ649><PRE>Top scoring peptide matches to query 64=
9<BR>Score greater than 4 indicates identity<BR><I>Status bar shows all hit=
s for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</=
B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ650><PRE>Top scoring peptide matches to query 65=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.5    0.01           =
        ELVEEGLLIQALK<BR>  0.3    0.11                   TMLESYKLDNIK</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ651><PRE>Top scoring peptide matches to query 65=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.8    0.04           =
        CGAQAGIKISSVHK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ652><PRE>Top scoring peptide matches to query 65=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.11           =
        LLFEYLCQLEK<BR>  0.8    0.04                   LLPLASAITSQVDK</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ653><PRE>Top scoring peptide matches to query 65=
3<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ654><PRE>Top scoring peptide matches to query 65=
4<BR>Score greater than 16 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.8    0.08           =
        RADPEAGLLLYLK<BR>  2.3    0.14                   RALDYATEGPLPR<BR> =
 0.9    0.07                   LHIEALLHGNITK<BR>  0.8    0.02              =
     EKTMLVLALLLAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ655><PRE>Top scoring peptide matches to query 65=
5<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ656><PRE>Top scoring peptide matches to query 65=
6<BR>Score greater than 14 indicates homology<BR>Score greater than 22 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.13           =
        RADPEAGLLLYLK<BR>  1.3    0.12                   LHIEALLHGNITK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ657><PRE>Top scoring peptide matches to query 65=
7<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ658><PRE>Top scoring peptide matches to query 65=
8<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ659><PRE>Top scoring peptide matches to query 65=
9<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ660><PRE>Top scoring peptide matches to query 66=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.0    0.09           =
        LMKEESPVVSWR<BR>  1.1    0.03                   QRLQMLTSSVLGK</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ661><PRE>Top scoring peptide matches to query 66=
1<BR>Score greater than 22 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 30.9    0.11  24 IPI:IP=
I00003362  SDIDEIVLVGGSTR<BR>  8.0    0.01                   GLYDVVSVLRIAR<=
BR>  2.0    0.06                   NKGISCKPVTQTK<BR>  0.2    0.14          =
         GDIDSNVAIDLSNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ662><PRE>Top scoring peptide matches to query 66=
2<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ663><PRE>Top scoring peptide matches to query 66=
3<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ664><PRE>Top scoring peptide matches to query 66=
4<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ665><PRE>Top scoring peptide matches to query 66=
5<BR>Score greater than 14 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ666><PRE>Top scoring peptide matches to query 66=
6<BR>Score greater than 16 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.4    0.06   2+IPI:IP=
I00004497  LQTVHSIPLTINK<BR>  2.8    0.13                   MFIWSQINIRR<BR>=
  2.6    0.10                   AGLLRSSLFVGSEK<BR>  1.8    0.14            =
       EVFETATRAALQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ667><PRE>Top scoring peptide matches to query 66=
7<BR>Score greater than 14 indicates homology<BR>Score greater than 22 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.1    0.09   2+IPI:IP=
I00004497  LQTVHSIPLTINK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ668><PRE>Top scoring peptide matches to query 66=
8<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ669><PRE>Top scoring peptide matches to query 66=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.9    0.11           =
        YTIVSGNNKGLFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ670><PRE>Top scoring peptide matches to query 67=
0<BR>Score greater than 19 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 21.3    0.11  33 IPI:IP=
I00011253  DEILPTTPISEQK<BR>  5.5   -0.07                   QVLIFLVLLGLSR<B=
R>  1.8    0.10                   IPIEDGSGEVVLSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ671><PRE>Top scoring peptide matches to query 67=
1<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ672><PRE>Top scoring peptide matches to query 67=
2<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ673><PRE>Top scoring peptide matches to query 67=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9    0.10           =
        ELWNLLKIACSK<BR>  2.4    0.13                   TFNEPGSPIVKSAK<BR> =
 1.8    0.06                   SLKFILENLIER<BR>  0.7    0.09               =
    AVASLSVKLEQAMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ674><PRE>Top scoring peptide matches to query 67=
4<BR>Score greater than 21 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 18.4    0.11   2+IPI:IP=
I00004497  SYTFLISSDYER<BR>  7.2    0.04                   SESPPPLSDPKQAK<B=
R>  5.8   -0.04                   LHACLAVAVLATNK<BR>  5.3    0.07  64 IPI:I=
PI00002844  QGQGQLVTCSGAFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ675><PRE>Top scoring peptide matches to query 67=
5<BR>Score greater than 24 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 33.3    0.11   2+IPI:IP=
I00004497  SYTFLISSDYER<BR>  9.2    0.04                   SESPPPLSDPKQAK<B=
R>  7.5   -0.03                   LHACLAVAVLATNK<BR>  6.9    0.07  64 IPI:I=
PI00002844  QGQGQLVTCSGAFK<BR>  3.7    0.06                   AHRMPFLEAAGHK=
<BR>  2.7    0.08                   KVDNHLQMHSQK<BR>  2.5    0.13          =
         NYYAANSCPPPAR<BR>  0.9    0.03                   RLQTICLSGTGMK<BR>=
  0.1    0.03                   AQLERSAISGFSSK<BR>  0.1    0.01            =
       TRSLSVEIVYEGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ676><PRE>Top scoring peptide matches to query 67=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.6    0.06   2+IPI:IP=
I00004497  DSFMVELVEGARK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ677><PRE>Top scoring peptide matches to query 67=
7<BR>Score greater than 22 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 30.0    0.13   2+IPI:IP=
I00004497  SYTFLISSDYER<BR>  7.5    0.06                   SESPPPLSDPKQAK<B=
R>  7.4    0.02                   SIVEKSELWVYK<BR>  5.7    0.09  64 IPI:IPI=
00002844  QGQGQLVTCSGAFK<BR>  3.5    0.07                   AHRMPFLEAAGHK<B=
R>  1.2    0.14                   NYYAANSCPPPAR<BR>  0.2   -0.01           =
        VLWVTLTGIEGHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ678><PRE>Top scoring peptide matches to query 67=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.6    0.08   2+IPI:IP=
I00004497  DSFMVELVEGARK<BR>  0.6    0.06  83 IPI:IPI00030790  KDSLSQLEEYLR=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ679><PRE>Top scoring peptide matches to query 67=
9<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ680><PRE>Top scoring peptide matches to query 68=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.0   -0.06           =
        MNGLSRPLIKPQK<BR>  2.1    0.02                   TTDDYLSNLIKAK<BR> =
 0.8    0.11                   AKYSYFQGDSTSK<BR>  0.5   -0.01              =
     DFHKDILKPSPGK<BR>  0.5    0.01                   AFGHTSSLIKHQR<BR>  0.=
5    0.08                   QMSCNFIPLDIK<BR>  0.5   -0.01                  =
 SLGRAEVALGAQGPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ681><PRE>Top scoring peptide matches to query 68=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.4   -0.05           =
        MNGLSRPLIKPQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ682><PRE>Top scoring peptide matches to query 68=
2<BR>Score greater than 21 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.3    0.03           =
        TTDDYLSNLIKAK<BR>  8.1   -0.05                   MNGLSRPLIKPQK<BR> =
 1.9    0.01                   GEAELELQLRPAR<BR>  0.9    0.07              =
     KSLPSPSSSGHQNR<BR>  0.5    0.14                   QLEELEEEFCR<BR>  0.4=
    0.05                   QLEALMAEHQRR<BR>  0.2   -0.02  89 IPI:IPI0001323=
1  SIPQGIVAAWRQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ683><PRE>Top scoring peptide matches to query 68=
3<BR>Score greater than 24 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.7   -0.09           =
        ELKLLLLGEWLR<BR> 10.9    0.01                   HKLMDCILALPR<BR>  9=
.2    0.04                   GASAINWTLIHGDK<BR>  8.6    0.05               =
    FGSYAAIQENALAK<BR>  7.2    0.03                   LEEGDELQLAIPR<BR>  4.=
4    0.08                   LVSPSRSTSSCSSK<BR>  3.7    0.05                =
   LNTDPMLLQFFK<BR>  3.4   -0.09                   RLTILNHHLPLR<BR>  3.2   =
 0.00                   HKMSLNELEILR<BR>  2.6   -0.09                   VTM=
ILQSPILVLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ684><PRE>Top scoring peptide matches to query 68=
4<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.2    0.04  85+IPI:IP=
I00007204  AREIDESLIFYK<BR> 20.2    0.09  79 IPI:IPI00012847  AMVSHCSLLRYF<=
BR>  4.6    0.07                   RPETWESPEKPK<BR>  4.0    0.07           =
        VNSAGDAIGLQPDAR<BR>  3.9    0.08                   AGSPTLLNCLMYK<BR=
>  3.8    0.13                   FMDYVQLHSTDK<BR>  3.7    0.00             =
      ETSAPELVHILFK<BR>  3.7    0.14                   GQQDQQAIHSEDK<BR>  3=
.5   -0.07                   KIWEVELINVLK<BR>  3.1    0.00                 =
  AVMSLLHTLEELK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ685><PRE>Top scoring peptide matches to query 68=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.1    0.08  77 IPI:IP=
I00010039  KYDAFLASESLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ686><PRE>Top scoring peptide matches to query 68=
6<BR>Score greater than 14 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.3    0.11  77 IPI:IP=
I00010039  KYDAFLASESLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ687><PRE>Top scoring peptide matches to query 68=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.1    0.12           =
        MLFPHISPCEVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ688><PRE>Top scoring peptide matches to query 68=
8<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ689><PRE>Top scoring peptide matches to query 68=
9<BR>Score greater than 28 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 43.0    0.12   7+IPI:IP=
I00003865  TTPSYVAFTDTER<BR> 12.7    0.09                   YVLGDTAMQKMAK</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ690><PRE>Top scoring peptide matches to query 69=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.6    0.07  50 IPI:IP=
I00005762  LISQIVSSITASLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ691><PRE>Top scoring peptide matches to query 69=
1<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ692><PRE>Top scoring peptide matches to query 69=
2<BR>Score greater than 14 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 21.1    0.09  50 IPI:IP=
I00005762  LISQIVSSITASLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ693><PRE>Top scoring peptide matches to query 69=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9   -0.06           =
        LIPLKTMTSDILK<BR>  0.4    0.03                   VKLELWDTSGQGR</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ694><PRE>Top scoring peptide matches to query 69=
4<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ695><PRE>Top scoring peptide matches to query 69=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 20 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2    0.13           =
        LNLGEEVPVIIHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ696><PRE>Top scoring peptide matches to query 69=
6<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ697><PRE>Top scoring peptide matches to query 69=
7<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 19.1    0.09  87 IPI:IPI00004016  LSLIFSHMLAEIK<BR> 19.1    0.09  8=
8 IPI:IPI00027269  LSLIFSHMLAELK<BR> 11.4    0.05                   ILEAFVM=
GLKKPR<BR>  4.7    0.12                   LSIIPLDTTTSQGR<BR>  2.5    0.12  =
                 ELLVKESESLQAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ698><PRE>Top scoring peptide matches to query 69=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0    0.10  87 IPI:IP=
I00004016  LSLIFSHMLAEIK<BR>  3.0    0.10  88 IPI:IPI00027269  LSLIFSHMLAEL=
K</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ699><PRE>Top scoring peptide matches to query 69=
9<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ700><PRE>Top scoring peptide matches to query 70=
0<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ701><PRE>Top scoring peptide matches to query 70=
1<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ702><PRE>Top scoring peptide matches to query 70=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.14           =
        VAASTLTLSLLCSAP</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ703><PRE>Top scoring peptide matches to query 70=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.7    0.08           =
        FFEVILIDPFHK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ704><PRE>Top scoring peptide matches to query 70=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.4    0.12           =
        SNIDVNINSQVFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ705><PRE>Top scoring peptide matches to query 70=
5<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.5    0.11  15 IPI:IP=
I00021327  FNSLNELVDYHR<BR>  1.3    0.01   5 IPI:IPI00018231  HPNLVQLLGVCTR=
<BR>  1.1    0.03                   YDPKAIIANLTCK<BR>  0.6    0.07         =
          ISSLLEEQFQQGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ706><PRE>Top scoring peptide matches to query 70=
6<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.6    0.09           =
        ISSLLEEQFQQGK<BR> 16.0    0.14  15 IPI:IPI00021327  FNSLNELVDYHR<BR=
>  0.8    0.06                   TEQTFEERLILK<BR>  0.3    0.01             =
      IPPITNIFPLPER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ707><PRE>Top scoring peptide matches to query 70=
7<BR>Score greater than 18 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.1    0.14  15 IPI:IP=
I00021327  FNSLNELVDYHR<BR>  5.2    0.04                   VLSPKYLGSWATGK<B=
R>  2.2    0.06                   YDPKAIIANLTCK<BR>  0.1   -0.03           =
        VLVYELLLGKGFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ708><PRE>Top scoring peptide matches to query 70=
8<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ709><PRE>Top scoring peptide matches to query 70=
9<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ710><PRE>Top scoring peptide matches to query 71=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.7    0.10           =
        AAANGDVAKVEDLLK<BR>  2.0    0.13                   RSEGAVVNVQPTEK<B=
R>  0.7    0.12                   GLDSRGLNVDLAQR<BR>  0.7    0.14  14+IPI:I=
PI00033619  GVVDSEDLPLNISR<BR>  0.7    0.14                   GVVDSEDIPLNLS=
R</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ711><PRE>Top scoring peptide matches to query 71=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.09           =
        LRDDVQSINWLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ712><PRE>Top scoring peptide matches to query 71=
2<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 32.5    0.03   6+IPI:IP=
I00021439  IWHHTFYNELR<BR>  2.6   -0.06                   QGLGPPCRAPLPPR<BR=
>  0.8    0.02                   KLGEESGDEIDVPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ713><PRE>Top scoring peptide matches to query 71=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.3    0.06   6+IPI:IP=
I00021439  IWHHTFYNELR<BR>  1.8   -0.03                   QGLGPPCRAPLPPR<BR=
>  0.4    0.05                   KPHGNRFMVGCGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ714><PRE>Top scoring peptide matches to query 71=
4<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ715><PRE>Top scoring peptide matches to query 71=
5<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 37.1    0.09   6+IPI:IP=
I00021439  IWHHTFYNELR<BR>  2.7    0.01                   QGLGPPCRAPLPPR</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ716><PRE>Top scoring peptide matches to query 71=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.0    0.12   6+IPI:IP=
I00021439  IWHHTFYNELR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ717><PRE>Top scoring peptide matches to query 71=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.05           =
        VDACLELLIRTGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ718><PRE>Top scoring peptide matches to query 71=
8<BR>Score greater than 22 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.0    0.09   6 IPI:IP=
I00021439  QEYDESGPSIVHR<BR>  8.7   -0.01                   LSHSSVPMDKIFR</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ719><PRE>Top scoring peptide matches to query 71=
9<BR>Score greater than 27 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 18.1    0.11   6 IPI:IP=
I00021439  QEYDESGPSIVHR<BR> 13.6    0.13                   MESGDEAAIERHR<B=
R>  4.5    0.07                   QVPTVVIECDDNK<BR>  1.3   -0.09           =
        VIIDTLITKLMEK<BR>  1.0    0.08                   EYQDAFLFNELK<BR>  =
0.8    0.03                   DDLLLRMGLNDNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ720><PRE>Top scoring peptide matches to query 72=
0<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.5    0.06           =
        GYISKSGLDFHHR<BR>  0.7    0.09                   LNRYEFFDGEVK</PRE>=
</DIV>=0D
<DIV class=3Dtooltip id=3DQ721><PRE>Top scoring peptide matches to query 72=
1<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ722><PRE>Top scoring peptide matches to query 72=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.5    0.10           =
        MMGKVDTFLDSLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ723><PRE>Top scoring peptide matches to query 72=
3<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ724><PRE>Top scoring peptide matches to query 72=
4<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.4    0.14           =
        FGFLQEFSKEER<BR>  1.9    0.10                   ELSSVKLEYSSFK<BR>  =
0.9    0.14                   LNRYEFFDGEVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ725><PRE>Top scoring peptide matches to query 72=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4   -0.12           =
        ELTPVAKQLLHLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ726><PRE>Top scoring peptide matches to query 72=
6<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.8    0.04           =
        IYNANYLKMLMK<BR>  2.2    0.14                   MAGTAFDFENMKR<BR>  =
2.0    0.04                   RFQGSTLPAEAANR<BR>  1.2    0.00              =
     RAPWPAQWRPPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ727><PRE>Top scoring peptide matches to query 72=
7<BR>Score greater than 16 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.3    0.10   5 IPI:IP=
I00018231  GAVSTLLQAPELPTK<BR>  2.5    0.12                   LLDSVPPTAISHF=
K<BR>  1.4    0.10                   WPRALEVLCKPR<BR>  0.8    0.11         =
          IKVWDLQAALDPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ728><PRE>Top scoring peptide matches to query 72=
8<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 35.7    0.12   5 IPI:IPI00018231  GAVSTLLQAPELPTK<BR>  7.5    0.10 =
                  LREIILQQQQQK<BR>  3.9    0.13                   IKVWDLQAA=
LDPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ729><PRE>Top scoring peptide matches to query 72=
9<BR>Score greater than 16 indicates homology<BR>Score greater than 21 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.3    0.12   5 IPI:IP=
I00018231  GAVSTLLQAPELPTK<BR>  2.5    0.14                   LLDSVPPTAISHF=
K<BR>  1.4    0.13                   WPRALEVLCKPR<BR>  0.8    0.13         =
          IKVWDLQAALDPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ730><PRE>Top scoring peptide matches to query 73=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.09           =
        MHTAVRLNEVIVK<BR>  1.6    0.13                   SAPETLTLPDPEKK</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ731><PRE>Top scoring peptide matches to query 73=
1<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ732><PRE>Top scoring peptide matches to query 73=
2<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ733><PRE>Top scoring peptide matches to query 73=
3<BR>Score greater than 23 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 54.4    0.06   1 IPI:IP=
I00019502  IAQLEEQLDNETK<BR>  7.2    0.14                   MSPSTFQITDMTR<B=
R>  1.6    0.02                   RPPAPSGTQVHQQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ734><PRE>Top scoring peptide matches to query 73=
4<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.8    0.08   1 IPI:IP=
I00019502  IAQLEEQLDNETK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ735><PRE>Top scoring peptide matches to query 73=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.5    0.10   1 IPI:IP=
I00019502  IAQLEEQLDNETK<BR>  1.5    0.03                   GAPAAATAPAPTAHK=
AK<BR>  0.3    0.03                   GRLVECLETVLNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ736><PRE>Top scoring peptide matches to query 73=
6<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ737><PRE>Top scoring peptide matches to query 73=
7<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ738><PRE>Top scoring peptide matches to query 73=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2   -0.01           =
        QEVVELLLARGANK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ739><PRE>Top scoring peptide matches to query 73=
9<BR>Score greater than 19 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.7    0.01           =
        AQGQLLDVVLTINR<BR>  6.0    0.08                   MAAPDGRVVSRPQR<BR=
>  4.2   -0.04                   VAAVGARLSVLASGLR<BR>  3.9    0.11         =
          LSGGGRPAEREAPDK<BR>  3.8    0.07                   EGSSQHVAKIVTQR=
<BR>  3.3    0.14                   TFSQKSYLSGHER<BR>  3.3   -0.03         =
          KLWVGQLLQLVDK<BR>  3.3    0.06                   RNGTLPWLRPDSK<BR=
>  3.3    0.07                   LWALVGSDLHCIR<BR>  3.3    0.00            =
       MISLPGPLVTNLLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ740><PRE>Top scoring peptide matches to query 74=
0<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ741><PRE>Top scoring peptide matches to query 74=
1<BR>Score greater than 19 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 27.1    0.09  46 IPI:IP=
I00011269  LAQSNGWGVMVSHR<BR>  5.1   -0.10                   LVQILQKGLSITTK=
<BR>  0.8    0.08                   EPSSLELPADTVQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ742><PRE>Top scoring peptide matches to query 74=
2<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 30.7    0.11  46 IPI:IP=
I00011269  LAQSNGWGVMVSHR<BR>  0.5    0.03                   DLDVAILVGSMPRR=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ743><PRE>Top scoring peptide matches to query 74=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.2    0.01           =
        SWVEKIVQGVQLR<BR>  8.9   -0.00                   ALFNRLVPSVNGVR<BR>=
  8.9    0.03                   KGIVQSIVGQGYHR<BR>  1.9    0.05            =
       VSEIRLPEMQVPK<BR>  1.9    0.08                   STTKPMFTFKEPK<BR>  =
1.9    0.01                   IGWLDSLGVQLGKR<BR>  1.9    0.05              =
     VLEPEGSPSLCLLK<BR>  1.8    0.07                   ITSADGHIESSALLK<BR> =
 1.8    0.08                   DDTKDIGLPEITPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ744><PRE>Top scoring peptide matches to query 74=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5   -0.09           =
        TITLVLAVASGLSLGK<BR>  0.2    0.12                   EQQELEALSQDPR</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ745><PRE>Top scoring peptide matches to query 74=
5<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 37.9    0.12  18 IPI:IP=
I00016613  VLGTEDLYDYIDK<BR>  0.8    0.02                   DKELPQYLALTPR<B=
R>  0.3    0.10                   SAYFELVSALCQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ746><PRE>Top scoring peptide matches to query 74=
6<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ747><PRE>Top scoring peptide matches to query 74=
7<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 19.8    0.08  81 IPI:IPI00024252  SLCQKQLLILLSK<BR>  9.8    0.13   =
                SLSERLLQLSLER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ748><PRE>Top scoring peptide matches to query 74=
8<BR>Score greater than 16 indicates homology<BR>Score greater than 30 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 39.9    0.12  12 IPI:IP=
I00028646  DQGTYEDYVEGLR<BR>  0.8    0.02                   TSDAVVQTEEVAAPK=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ749><PRE>Top scoring peptide matches to query 74=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.03           =
        QVPREQAQAYAER<BR>  1.3   -0.01                   AEEGSVQAITEGKVK<BR=
>  0.4   -0.03                   SLTTAMQFKLVYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ750><PRE>Top scoring peptide matches to query 75=
0<BR>Score greater than 18 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 38.9    0.11  38 IPI:IP=
I00022753  VLEQLTGQTPVFSK<BR>  2.7    0.11                   ATPAELRSHALPGA=
R<BR>  1.5    0.13                   LNLELESTRNMVK<BR>  1.3   -0.11        =
           LLLLLLLSLLPVAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ751><PRE>Top scoring peptide matches to query 75=
1<BR>Score greater than 23 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.7    0.08   2+IPI:IP=
I00004497  NSLETLLYKPVDR<BR>  9.4   -0.00                   MLLGASLVGVLLFSK=
<BR>  3.2    0.04                   FARLLAELESSALK<BR>  2.5    0.03        =
           LVSSTLFGNTKPRK<BR>  2.0    0.14                   EATEAAKCNLLAEK=
<BR>  1.7    0.06                   MIVAAALQNLTKMK<BR>  1.4    0.10        =
           VTAEGRNMVLQTTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ752><PRE>Top scoring peptide matches to query 75=
2<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ753><PRE>Top scoring peptide matches to query 75=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.14           =
        DVMLEELSLLTNR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ754><PRE>Top scoring peptide matches to query 75=
4<BR>Score greater than 14 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.8    0.11           =
        RPIMAWFKEINK<BR>  1.8    0.11                   GCTIVKPFNLSQGK<BR> =
 0.5   -0.07                   IVVLLQRLKPEIK<BR>  0.1    0.13              =
     ESSNQLKCIQITK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ755><PRE>Top scoring peptide matches to query 75=
5<BR>Score greater than 15 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 18.2    0.11   1 IPI:IP=
I00019502  QRYEILTPNSIPK<BR>  1.1    0.13                   NVVTQLEADLDITK<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ756><PRE>Top scoring peptide matches to query 75=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.8   -0.01           =
        LITIITTLFPKGSR<BR>  0.3    0.10                   LGLWWGVGVQLNAF</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ757><PRE>Top scoring peptide matches to query 75=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2    0.10           =
        GFGFVDFNSEEDAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ758><PRE>Top scoring peptide matches to query 75=
8<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 13.9   -0.03           =
        KPPSVFGSTAERMR<BR>  4.5   -0.06                   SAPELKTGISDVFAK<B=
R>  0.5    0.01                   MILSMALNAHSSQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ759><PRE>Top scoring peptide matches to query 75=
9<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ760><PRE>Top scoring peptide matches to query 76=
0<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.8    0.10           =
        VDNDENEHQLSLR<BR>  3.4    0.07                   EEEFVEEFNRLK<BR>  =
2.8   -0.00                   KPPQLSEDDIWLK<BR>  2.7   -0.03               =
    EKHSLAPNVVAFTR<BR>  2.2   -0.08                   VHTILTADLVIVMK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ761><PRE>Top scoring peptide matches to query 76=
1<BR>Score greater than 14 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.8    0.09  47 IPI:IP=
I00013485  ESEIIDFFLGASLK<BR>  0.5   -0.01                   SISGLLTTTPQIPI=
K</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ762><PRE>Top scoring peptide matches to query 76=
2<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ763><PRE>Top scoring peptide matches to query 76=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.0    0.08   1 IPI:IP=
I00019502  VSHLLGINVTDFTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ764><PRE>Top scoring peptide matches to query 76=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.08           =
        SMLLETPQGRIQAK<BR>  0.0    0.07                   DPLLASGTDGVGTKLK<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ765><PRE>Top scoring peptide matches to query 76=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 28.0    0.09   1 IPI:IP=
I00019502  VSHLLGINVTDFTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ766><PRE>Top scoring peptide matches to query 76=
6<BR>Score greater than 15 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.8    0.11   1 IPI:IP=
I00019502  VSHLLGINVTDFTR<BR>  2.4    0.14                   VLPESNSDVDQLKK=
<BR>  1.8    0.14                   GYLSEGLVTKWYR<BR>  1.3    0.09         =
          SVAELRLQLQQMR<BR>  0.4   -0.05                   IPLLLTSLSFKVLK</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ767><PRE>Top scoring peptide matches to query 76=
7<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ768><PRE>Top scoring peptide matches to query 76=
8<BR>Score greater than 20 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.6    0.06           =
        HLTNRVLSLGYATK<BR>  7.5    0.15                   DIEHALSVSVFNNK<BR=
>  7.1    0.13                   QRVAHEPVAPPEDK<BR>  1.6    0.12           =
        VGRPDRGLSLSMER<BR>  1.3    0.07                   VAVGNQPADIGYKIK<B=
R>  1.0    0.11                   AQLQILANMDSQLK<BR>  0.9    0.05          =
         FKVLMTQQPRPVL<BR>  0.5    0.07                   KPQPRGGAPQVQPGR</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ769><PRE>Top scoring peptide matches to query 76=
9<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ770><PRE>Top scoring peptide matches to query 77=
0<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ771><PRE>Top scoring peptide matches to query 77=
1<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ772><PRE>Top scoring peptide matches to query 77=
2<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ773><PRE>Top scoring peptide matches to query 77=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.2    0.11           =
        GDPGISGTPGAPGLPGPK<BR>  2.5    0.08                   AGAEPQLPATPAL=
PGGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ774><PRE>Top scoring peptide matches to query 77=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.15           =
        EIFAQEALAPFRGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ775><PRE>Top scoring peptide matches to query 77=
5<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ776><PRE>Top scoring peptide matches to query 77=
6<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ777><PRE>Top scoring peptide matches to query 77=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.6    0.07  16 IPI:IP=
I00019512  KVIQYLAHVASSHK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ778><PRE>Top scoring peptide matches to query 77=
8<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ779><PRE>Top scoring peptide matches to query 77=
9<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ780><PRE>Top scoring peptide matches to query 78=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.8    0.08  16 IPI:IP=
I00019512  KVIQYLAHVASSHK<BR>  1.5    0.13                   SLSLHRATSSHSVA=
K</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ781><PRE>Top scoring peptide matches to query 78=
1<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ782><PRE>Top scoring peptide matches to query 78=
2<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ783><PRE>Top scoring peptide matches to query 78=
3<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ784><PRE>Top scoring peptide matches to query 78=
4<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ785><PRE>Top scoring peptide matches to query 78=
5<BR>Score greater than 20 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.6    0.14   5 IPI:IP=
I00018231  NKPTVYGVSPNYDK<BR>  6.5    0.14                   GIQQLYGGESGFPT=
K<BR>  0.2    0.02                   GSYVFWRLLLISK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ786><PRE>Top scoring peptide matches to query 78=
6<BR>Score greater than 15 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.09           =
        RPNFKPDIQEIPK<BR>  5.0    0.07                   QKPITPETAEKLAR<BR>=
  2.2    0.02                   KLSLRPTVAELQAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ787><PRE>Top scoring peptide matches to query 78=
7<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ788><PRE>Top scoring peptide matches to query 78=
8<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ789><PRE>Top scoring peptide matches to query 78=
9<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ790><PRE>Top scoring peptide matches to query 79=
0<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ791><PRE>Top scoring peptide matches to query 79=
1<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ792><PRE>Top scoring peptide matches to query 79=
2<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ793><PRE>Top scoring peptide matches to query 79=
3<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ794><PRE>Top scoring peptide matches to query 79=
4<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ795><PRE>Top scoring peptide matches to query 79=
5<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ796><PRE>Top scoring peptide matches to query 79=
6<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ797><PRE>Top scoring peptide matches to query 79=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.5    0.09           =
        YRAFITNIPFDVK<BR>  3.3    0.14                   AFTDVPSIQIYSSR</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ798><PRE>Top scoring peptide matches to query 79=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.3    0.12           =
        MLEKLPELRPVDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ799><PRE>Top scoring peptide matches to query 79=
9<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ800><PRE>Top scoring peptide matches to query 80=
0<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ801><PRE>Top scoring peptide matches to query 80=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.11           =
        EIVQGVLQQGTAWR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ802><PRE>Top scoring peptide matches to query 80=
2<BR>Score greater than 16 indicates homology<BR>Score greater than 22 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.0    0.14           =
        MEVTPLSLQIPGRK<BR>  3.2    0.13                   KENEIELSLLQLR</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ803><PRE>Top scoring peptide matches to query 80=
3<BR>Score greater than 27 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 58.1    0.09   1 IPI:IP=
I00019502  NKHEAMITDLEER<BR> 11.1    0.12  99 IPI:IPI00030246  ATEKETFTDSNQ=
SK<BR>  9.3    0.08                   AFNQNSQLIEHER<BR>  4.5    0.02       =
            GNRGMEELIPLVNK<BR>  3.9   -0.04                   RLPGANTPLPGLS=
HR<BR>  3.5    0.10                   SHRVVGGNSEGMSPR<BR>  3.2    0.10     =
              DVLDFGDLTYGGWK<BR>  3.2   -0.07                   ITRLVQISGAS=
LAEK<BR>  2.0    0.02                   HLKIATFPGMWER<BR>  1.9    0.08     =
              SLERGLDHDFGPSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ804><PRE>Top scoring peptide matches to query 80=
4<BR>Score greater than 18 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 41.0    0.11   1 IPI:IP=
I00019502  NKHEAMITDLEER<BR>  3.0    0.10                   TGFSVSVEKSTSSNR=
<BR>  1.5    0.05                   HLKIATFPGMWER<BR>  1.3    0.14  99 IPI:=
IPI00030246  ATEKETFTDSNQSK<BR>  0.4    0.02                   TFNRSSNLIIHQ=
R</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ805><PRE>Top scoring peptide matches to query 80=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9    0.11           =
        EEAMIAYVEEMKK<BR>  2.9    0.06                   NFRENTYITSVSR<BR> =
 1.7    0.10                   MLTAYDLMIQESR<BR>  0.6    0.09              =
     DLYRDVMLENYR<BR>  0.5    0.06                   GFKTIMLNCMSLR<BR>  0.3=
    0.14                   VMADDEFTQDLFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ806><PRE>Top scoring peptide matches to query 80=
6<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ807><PRE>Top scoring peptide matches to query 80=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0    0.09           =
        YWAVSRALEYNSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ808><PRE>Top scoring peptide matches to query 80=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2    0.05           =
        SLQLAAAADLSENKR<BR>  0.7    0.07                   TFLERQAGSEAHLK</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ809><PRE>Top scoring peptide matches to query 80=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 21 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.6    0.15           =
        MELENIVANTVLLK<BR>  0.2    0.10                   RIVSQLLTLMDGLK</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ810><PRE>Top scoring peptide matches to query 81=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 20 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.5    0.09           =
        IPKVELQISIYGVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ811><PRE>Top scoring peptide matches to query 81=
1<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ812><PRE>Top scoring peptide matches to query 81=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 18 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2    0.13           =
        LAVKERPDVGVYIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ813><PRE>Top scoring peptide matches to query 81=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 16 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.12           =
        IPKVELQISIYGVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ814><PRE>Top scoring peptide matches to query 81=
4<BR>Score greater than 14 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ815><PRE>Top scoring peptide matches to query 81=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.0    0.13           =
        TMEWVGSLVDWHK<BR>  0.9    0.13                   LLEMACGDPQPNVK</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ816><PRE>Top scoring peptide matches to query 81=
6<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ817><PRE>Top scoring peptide matches to query 81=
7<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ818><PRE>Top scoring peptide matches to query 81=
8<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ819><PRE>Top scoring peptide matches to query 81=
9<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ820><PRE>Top scoring peptide matches to query 82=
0<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ821><PRE>Top scoring peptide matches to query 82=
1<BR>Score greater than 14 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ822><PRE>Top scoring peptide matches to query 82=
2<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ823><PRE>Top scoring peptide matches to query 82=
3<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ824><PRE>Top scoring peptide matches to query 82=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 19 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.14           =
        VNLTGTIQLLEIMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ825><PRE>Top scoring peptide matches to query 82=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 16 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.8    0.09           =
        TRPKAAGLPGAALPLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ826><PRE>Top scoring peptide matches to query 82=
6<BR>Score greater than 8 indicates identity<BR><I>Status bar shows all hit=
s for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide</=
B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ827><PRE>Top scoring peptide matches to query 82=
7<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ828><PRE>Top scoring peptide matches to query 82=
8<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ829><PRE>Top scoring peptide matches to query 82=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.8    0.14           =
        MQALAAISPRGEAMK<BR>  1.1    0.14                   EVRIMQFCHTLR</PR=
E></DIV>=0D
<DIV class=3Dtooltip id=3DQ830><PRE>Top scoring peptide matches to query 83=
0<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ831><PRE>Top scoring peptide matches to query 83=
1<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ832><PRE>Top scoring peptide matches to query 83=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2    0.14           =
        LASSKSCLDPEFLK<BR>  0.2    0.11                   AHSQLSVLPAAGCRK<B=
R>  0.2    0.13                   LFSSLGELSSISAQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ833><PRE>Top scoring peptide matches to query 83=
3<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ834><PRE>Top scoring peptide matches to query 83=
4<BR>Score greater than 17 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.5    0.08           =
        RGSIQVDGEELVSGR<BR>  4.0    0.09                   SMILSNVEDLQQPK</=
PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ835><PRE>Top scoring peptide matches to query 83=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.7    0.01           =
        LPTVFRQMRPVSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ836><PRE>Top scoring peptide matches to query 83=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.0    0.13           =
        IAQETVDETEIAQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ837><PRE>Top scoring peptide matches to query 83=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.05           =
        SMVVIEVFTPVVQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ838><PRE>Top scoring peptide matches to query 83=
8<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ839><PRE>Top scoring peptide matches to query 83=
9<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ840><PRE>Top scoring peptide matches to query 84=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.0    0.10  18 IPI:IP=
I00016613  EAMEHPYFYTVVK<BR>  1.7    0.10                   KMWNPVYYWGGGR<B=
R>  1.5    0.10                   DVFTPGSWEAFMVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ841><PRE>Top scoring peptide matches to query 84=
1<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ842><PRE>Top scoring peptide matches to query 84=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.0    0.03           =
        DQIIELDQTGNQLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ843><PRE>Top scoring peptide matches to query 84=
3<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.4    0.06           =
        GAHSVGLMWWMLAR<BR>  3.4    0.10                   GAHSVGLMWWMPAR<BR=
>  2.8   -0.03                   YFQRITLYLIER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ844><PRE>Top scoring peptide matches to query 84=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.07           =
        THLEWIVMWKCL<BR>  0.7    0.06                   DEMSTKVVSHLIEK</PRE=
></DIV>=0D
<DIV class=3Dtooltip id=3DQ845><PRE>Top scoring peptide matches to query 84=
5<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ846><PRE>Top scoring peptide matches to query 84=
6<BR>Score greater than 19 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 36.7    0.14  10 IPI:IP=
I00011042  LHFFMPGFAPLTSR<BR>  4.0    0.03                   QKLIEEVHAVVTVR=
<BR>  2.9    0.03                   GDQTVLILHAKVAQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ847><PRE>Top scoring peptide matches to query 84=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.08           =
        HNRPLLSGVSDAEAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ848><PRE>Top scoring peptide matches to query 84=
8<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ849><PRE>Top scoring peptide matches to query 84=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.12           =
        DMIEIPLPPWQER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ850><PRE>Top scoring peptide matches to query 85=
0<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ851><PRE>Top scoring peptide matches to query 85=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.12           =
        DREGFFTNGLTLGAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ852><PRE>Top scoring peptide matches to query 85=
2<BR>Score greater than 18 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.4   -0.01           =
        QATLTQTLLIQNGAR<BR>  5.3   -0.01                   LSQGNTTLSINPVKR<=
BR>  3.7    0.03                   LSVENPMALLGGDALK<BR>  1.8    0.06       =
            TVNIAEQQMLLPDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ853><PRE>Top scoring peptide matches to query 85=
3<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ854><PRE>Top scoring peptide matches to query 85=
4<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ855><PRE>Top scoring peptide matches to query 85=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.3    0.14           =
        QFDAYPKTLEDFR<BR>  0.1    0.11   6 IPI:IPI00021439  GYSFTTTAEREIVR<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ856><PRE>Top scoring peptide matches to query 85=
6<BR>Score greater than 23 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 44.3    0.09  20 IPI:IP=
I00021826  LGDVYVNDAFGTAHR<BR>  7.7    0.08                   DTLVEMAKNEVDV=
R<BR>  3.6    0.10                   ANFTPVNGSSGNQSVR<BR>  2.4   -0.08     =
              DALFTVVRVINFIK<BR>  0.8   -0.00                   RPFFSLQQIEE=
LK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ857><PRE>Top scoring peptide matches to query 85=
7<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ858><PRE>Top scoring peptide matches to query 85=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4    0.10           =
        QQQTLRMHIDIPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ859><PRE>Top scoring peptide matches to query 85=
9<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ860><PRE>Top scoring peptide matches to query 86=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.9    0.09   1 IPI:IP=
I00019502  FLSNGHVTIPGQQDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ861><PRE>Top scoring peptide matches to query 86=
1<BR>Score greater than 15 indicates homology<BR>Score greater than 18 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.8    0.14           =
        FHVFARSPALQVLR<BR>  1.9    0.12                   EALADLMLRLQLVR</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ862><PRE>Top scoring peptide matches to query 86=
2<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.6    0.10   5 IPI:IP=
I00018231  LGGGQYGEVYEGVWK<BR>  1.9    0.05                   LHLIMTSPKPTEV=
C<BR>  1.7    0.10                   MTVVQSYLGDTHYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ863><PRE>Top scoring peptide matches to query 86=
3<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ864><PRE>Top scoring peptide matches to query 86=
4<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B><BR> 55.3    0.12   5 IPI:IPI00018231  LGGGQYGEVYEGVWK<BR> 14.6    0.12 =
                  MTVVQSYLGDTHYK<BR>  6.0    0.07                   QLTMYRV=
WIQCK<BR>  4.5    0.09                   NKFVEFDMKPVCK<BR>  1.3    0.11    =
               SGQGDLAVYVSSETTK<BR>  0.8    0.08                   DAVQALQE=
AQGRAER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ865><PRE>Top scoring peptide matches to query 86=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.8    0.15           =
        LLDAEDVDVPSPDEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ866><PRE>Top scoring peptide matches to query 86=
6<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 28.9    0.11  11+IPI:IP=
I00023528  IQVLQQQADDAEER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ867><PRE>Top scoring peptide matches to query 86=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.9    0.13           =
        CVVLADGFYEWQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ868><PRE>Top scoring peptide matches to query 86=
8<BR>Score greater than 18 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 38.9    0.11  11+IPI:IP=
I00023528  IQVLQQQADDAEER<BR>  2.6    0.05                   ELQQHVKSVTVSCK=
<BR>  0.4    0.06                   GGAGGPAAPAPPQLSPVQA</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ869><PRE>Top scoring peptide matches to query 86=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.9   -0.00           =
        LVVLATPQVSDSMRK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ870><PRE>Top scoring peptide matches to query 87=
0<BR>Score greater than 17 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.4   -0.00           =
        LVVLATPQVSDSMRK<BR>  3.6    0.13                   VPECNLQALDVDDR<B=
R>  2.1    0.05                   WDDDSTIVTPIILR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ871><PRE>Top scoring peptide matches to query 87=
1<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ872><PRE>Top scoring peptide matches to query 87=
2<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ873><PRE>Top scoring peptide matches to query 87=
3<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.8    0.11   6 IPI:IP=
I00021439  QEYDESGPSIVHRK<BR>  0.3    0.01                   SVAMMVPDRQIIIR=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ874><PRE>Top scoring peptide matches to query 87=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.11           =
        APNCSPRSAIGGSSQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ875><PRE>Top scoring peptide matches to query 87=
5<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ876><PRE>Top scoring peptide matches to query 87=
6<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ877><PRE>Top scoring peptide matches to query 87=
7<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.9    0.02           =
        RHFLPAPALCPNPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ878><PRE>Top scoring peptide matches to query 87=
8<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2   -0.01           =
        VFTYIFILEMLLK<BR>  1.1    0.06                   RNSLDQVVLEVMDK<BR>=
  1.0    0.07                   NGTTYEGIFKTLSSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ879><PRE>Top scoring peptide matches to query 87=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.14           =
        FGYVDFESAEDLEK<BR>  1.5    0.01                   THFSTAYELPLLTR</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ880><PRE>Top scoring peptide matches to query 88=
0<BR>Score greater than 18 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 36.3    0.11   7 IPI:IP=
I00003865  NQVAMNPTNTVFDAK<BR>  3.3    0.04                   LRTGDLGIPPNPE=
DR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ881><PRE>Top scoring peptide matches to query 88=
1<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.1    0.04           =
        WLPVYNAEVVAAYR<BR>  1.9   -0.08                   ALQLVNERLSIAPVK<B=
R>  1.3   -0.12                   SITLLIKGPNKPTLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ882><PRE>Top scoring peptide matches to query 88=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.10  51 IPI:IP=
I00027006  LVLEVAQHLGESTVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ883><PRE>Top scoring peptide matches to query 88=
3<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ884><PRE>Top scoring peptide matches to query 88=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.8    0.11           =
        DVSFSLASLPVSFRK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ885><PRE>Top scoring peptide matches to query 88=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3   -0.01           =
        TQEARLPSSEPDAPR<BR>  0.3    0.01                   SGTVIHSDRFDTYR<B=
R>  0.2    0.02                   VNMDLNIIYCENR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ886><PRE>Top scoring peptide matches to query 88=
6<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ887><PRE>Top scoring peptide matches to query 88=
7<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ888><PRE>Top scoring peptide matches to query 88=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.04           =
        QKTVEITDSTMCPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ889><PRE>Top scoring peptide matches to query 88=
9<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ890><PRE>Top scoring peptide matches to query 89=
0<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ891><PRE>Top scoring peptide matches to query 89=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.1    0.03           =
        HDMLTRQVDHVFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ892><PRE>Top scoring peptide matches to query 89=
2<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ893><PRE>Top scoring peptide matches to query 89=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.2    0.08   7 IPI:IP=
I00003865  HWPFMVVNDAGRPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ894><PRE>Top scoring peptide matches to query 89=
4<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ895><PRE>Top scoring peptide matches to query 89=
5<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ896><PRE>Top scoring peptide matches to query 89=
6<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ897><PRE>Top scoring peptide matches to query 89=
7<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ898><PRE>Top scoring peptide matches to query 89=
8<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ899><PRE>Top scoring peptide matches to query 89=
9<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ900><PRE>Top scoring peptide matches to query 90=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2   -0.01           =
        LWGRQIPGTTSALVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ901><PRE>Top scoring peptide matches to query 90=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.12           =
        FNPKFITTVGIDFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ902><PRE>Top scoring peptide matches to query 90=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.4    0.04           =
        LTQNVDLLALLKWK<BR>  3.4    0.11                   LTQNVDLLGLLNWR</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ903><PRE>Top scoring peptide matches to query 90=
3<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ904><PRE>Top scoring peptide matches to query 90=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.4    0.13           =
        GAGGQGKLDVTILSPSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ905><PRE>Top scoring peptide matches to query 90=
5<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ906><PRE>Top scoring peptide matches to query 90=
6<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ907><PRE>Top scoring peptide matches to query 90=
7<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ908><PRE>Top scoring peptide matches to query 90=
8<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ909><PRE>Top scoring peptide matches to query 90=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.0    0.13   5 IPI:IP=
I00018231  NSEQMASHSAVLEAGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ910><PRE>Top scoring peptide matches to query 91=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.02           =
        AGAGPGGPPQKPAPSSQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ911><PRE>Top scoring peptide matches to query 91=
1<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ912><PRE>Top scoring peptide matches to query 91=
2<BR>Score greater than 17 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.4    0.06           =
        LARKPNSVVISCGMK<BR>  4.5    0.06                   VLLNAEDKVFNEIR<B=
R>  3.8    0.13                   TAPLPMPEGPEPAAPGK<BR>  0.5    0.02       =
            SLRDLTPEHLPLLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ913><PRE>Top scoring peptide matches to query 91=
3<BR>Score greater than 15 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.11   7+IPI:IP=
I00003865  IINEPTAAAIAYGLDK<BR>  2.1    0.11                   MVINLCLPQFRP=
R<BR>  1.1    0.09                   TFTRNFNLILHQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ914><PRE>Top scoring peptide matches to query 91=
4<BR>Score greater than 17 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 32.4    0.12   7+IPI:IP=
I00003865  IINEPTAAAIAYGLDK<BR>  2.4    0.01                   LILILRALHVNN=
DR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ915><PRE>Top scoring peptide matches to query 91=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.1    0.12   7+IPI:IP=
I00003865  IINEPTAAAIAYGLDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ916><PRE>Top scoring peptide matches to query 91=
6<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ917><PRE>Top scoring peptide matches to query 91=
7<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ918><PRE>Top scoring peptide matches to query 91=
8<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ919><PRE>Top scoring peptide matches to query 91=
9<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ920><PRE>Top scoring peptide matches to query 92=
0<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ921><PRE>Top scoring peptide matches to query 92=
1<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ922><PRE>Top scoring peptide matches to query 92=
2<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ923><PRE>Top scoring peptide matches to query 92=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.5    0.05           =
        VMIPVPAGVEDGQTVR<BR>  0.5    0.06                   KIQQHTETGEEVLR<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ924><PRE>Top scoring peptide matches to query 92=
4<BR>Score greater than 17 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.03           =
        QFWKVYYEHLEK<BR>  4.0    0.07                   FEILSVESLCEGMR<BR> =
 4.0    0.06                   FEVIEFDDGSGSVLR<BR>  0.7   -0.04            =
       KIPAINQTITEANEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ925><PRE>Top scoring peptide matches to query 92=
5<BR>Score greater than 14 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4    0.03  71 IPI:IP=
I00019567  ITGYVVEMQTKGSEK<BR>  1.0    0.03                   APSPLPKMADVSA=
EEK<BR>  0.9   -0.08                   LLAMGPLSARLLMQR<BR>  0.3    0.15    =
               QGFMDLNLMEANDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ926><PRE>Top scoring peptide matches to query 92=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.8    0.04           =
        IFTYRDQNTGWIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ927><PRE>Top scoring peptide matches to query 92=
7<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ928><PRE>Top scoring peptide matches to query 92=
8<BR>Score greater than 21 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.8   -0.08           =
        LSPPRIFQTVTNGLK<BR>  7.3    0.01                   DLNHVCVISETGKAK<=
BR>  3.6    0.11                   SFGSSLMESEVNLDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ929><PRE>Top scoring peptide matches to query 92=
9<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ930><PRE>Top scoring peptide matches to query 93=
0<BR>Score greater than 16 indicates homology<BR>Score greater than 25 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.3    0.12  13 IPI:IP=
I00000230  LVIIESDLERAEER<BR>  2.8    0.09                   MSDLHVLLLMALVG=
K<BR>  2.5    0.13                   EILISQEEIGANVEK<BR>  0.6    0.12  44 I=
PI:IPI00013991  LVILEGELERSEER<BR>  0.6    0.12  11 IPI:IPI00023528  LVIIEG=
DLERTEER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ931><PRE>Top scoring peptide matches to query 93=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.8   -0.08           =
        STFLAQFLLVLHRK<BR>  0.7    0.05                   VEGMTELYFQLKSK</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ932><PRE>Top scoring peptide matches to query 93=
2<BR>Score greater than 17 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.4    0.12   1 IPI:IP=
I00019502  NFINNPLAQADWAAK<BR>  3.7    0.03                   QFLMKVLIPMHTA=
K<BR>  0.7    0.12                   GPPGPQGDPGVRGPAGEK<BR>  0.1    0.15   =
                MYNAYGLITAEDRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ933><PRE>Top scoring peptide matches to query 93=
3<BR>Score greater than 16 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.0    0.04           =
        AWPLHLLQGTAVPGGR<BR>  2.7    0.14                   YKDQPQQTFNIYK<B=
R>  1.1    0.12   1 IPI:IPI00019502  NFINNPLAQADWAAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ934><PRE>Top scoring peptide matches to query 93=
4<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ935><PRE>Top scoring peptide matches to query 93=
5<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ936><PRE>Top scoring peptide matches to query 93=
6<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ937><PRE>Top scoring peptide matches to query 93=
7<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3    0.07           =
        ESWINALNSAITRAK<BR>  1.8    0.04                   SVAAFTADPLSLLRNV=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ938><PRE>Top scoring peptide matches to query 93=
8<BR>Score greater than 15 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.2    0.12   2+IPI:IP=
I00004497  AFVDNYGVAMEMAEK<BR>  1.5    0.13                   KAVYMMPTEGDDS=
SK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ939><PRE>Top scoring peptide matches to query 93=
9<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 49.3    0.12   2+IPI:IP=
I00004497  AFVDNYGVAMEMAEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ940><PRE>Top scoring peptide matches to query 94=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.04           =
        FGNTIKVPTPLCTAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ941><PRE>Top scoring peptide matches to query 94=
1<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ942><PRE>Top scoring peptide matches to query 94=
2<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ943><PRE>Top scoring peptide matches to query 94=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5   -0.11           =
        LTMALSVPLLYSLVR<BR>  0.4    0.14                   MQPDPRPSGAGACCR<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ944><PRE>Top scoring peptide matches to query 94=
4<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ945><PRE>Top scoring peptide matches to query 94=
5<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ946><PRE>Top scoring peptide matches to query 94=
6<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ947><PRE>Top scoring peptide matches to query 94=
7<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ948><PRE>Top scoring peptide matches to query 94=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.8    0.11  45 IPI:IP=
I00026621  HSGNITFDEIVNIAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ949><PRE>Top scoring peptide matches to query 94=
9<BR>Score greater than 13 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.9    0.14  45 IPI:IP=
I00026621  HSGNITFDEIVNIAR<BR>  0.2    0.14                   AHNDVMEVLHKHG=
AK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ950><PRE>Top scoring peptide matches to query 95=
0<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ951><PRE>Top scoring peptide matches to query 95=
1<BR>Score greater than 16 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.3    0.13           =
        RLEVPYVNGSVGGPSR<BR>  3.3    0.11                   SATAAAAATGQKNLL=
NGK<BR>  1.0    0.10  71 IPI:IPI00019567  EVTLDDISQIKAQVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ952><PRE>Top scoring peptide matches to query 95=
2<BR>Score greater than 14 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.4    0.08           =
        VSEDVAIGTKVGNVTAK<BR>  1.1    0.09                   QFIPNVAEKTLGAS=
GR<BR>  0.0    0.08                   LLSLGFLAQDSVPAEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ953><PRE>Top scoring peptide matches to query 95=
3<BR>Score greater than 16 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.7    0.10           =
        ASGNYATVISHNPETK<BR>  2.5    0.02                   QLELLENTQKVMAR<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ954><PRE>Top scoring peptide matches to query 95=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.7    0.14           =
        ACHNLLTFNNDTLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ955><PRE>Top scoring peptide matches to query 95=
5<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ956><PRE>Top scoring peptide matches to query 95=
6<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.08           =
        FMSIAEQMGRILQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ957><PRE>Top scoring peptide matches to query 95=
7<BR>Score greater than 29 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ958><PRE>Top scoring peptide matches to query 95=
8<BR>Score greater than 16 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.4    0.08           =
        KVYEGGSNVDQFVTR<BR>  2.7    0.12                   GGSPHAEILCMQPTGK=
<BR>  2.7    0.12                   FAGTLSDGLGKTMDNR<BR>  1.7    0.14      =
             ADMSVLEISGMIMNR<BR>  1.2    0.10                   TLNSSGTVESA=
LNYSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ959><PRE>Top scoring peptide matches to query 95=
9<BR>Score greater than 14 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.01           =
        LPPAAVPSHSDNGPVIK<BR>  1.3    0.10                   SIYGEKFDDENLIR=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ960><PRE>Top scoring peptide matches to query 96=
0<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ961><PRE>Top scoring peptide matches to query 96=
1<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ962><PRE>Top scoring peptide matches to query 96=
2<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ963><PRE>Top scoring peptide matches to query 96=
3<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ964><PRE>Top scoring peptide matches to query 96=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.04           =
        ILHECDLQTERLGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ965><PRE>Top scoring peptide matches to query 96=
5<BR>Score greater than 15 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.4   -0.02           =
        LLFAPNLLLDRNQGK<BR>  2.5    0.13                   GPTNVRIEYADSSFR<=
BR>  2.1   -0.01                   LRTIGELLAPAAPFDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ966><PRE>Top scoring peptide matches to query 96=
6<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ967><PRE>Top scoring peptide matches to query 96=
7<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score   D=
elta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ968><PRE>Top scoring peptide matches to query 96=
8<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ969><PRE>Top scoring peptide matches to query 96=
9<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ970><PRE>Top scoring peptide matches to query 97=
0<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3    0.06           =
        GLSICSIQIFSDPRK<BR>  0.8   -0.12                   IIIKYISLGILFSLK<=
/PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ971><PRE>Top scoring peptide matches to query 97=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 24 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3    0.11   1+IPI:IP=
I00019502  QLLQANPILEAFGNAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ972><PRE>Top scoring peptide matches to query 97=
2<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ973><PRE>Top scoring peptide matches to query 97=
3<BR>Score greater than 18 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.1    0.12   1 IPI:IP=
I00019502  NLPIYSEEIVEMYK<BR>  4.7    0.08                   LNCMTKIVESTLFR=
<BR>  1.9    0.07                   ALNMWGKEIPLHFR<BR>  1.7    0.13        =
           YTQQGFGNLPICMAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ974><PRE>Top scoring peptide matches to query 97=
4<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ975><PRE>Top scoring peptide matches to query 97=
5<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ976><PRE>Top scoring peptide matches to query 97=
6<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ977><PRE>Top scoring peptide matches to query 97=
7<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ978><PRE>Top scoring peptide matches to query 97=
8<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ979><PRE>Top scoring peptide matches to query 97=
9<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ980><PRE>Top scoring peptide matches to query 98=
0<BR>Score greater than 15 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9    0.01           =
        ELLLKPHSYGRFIR<BR>  2.2    0.14                   GGQLSPVCNGGIMTPPK=
<BR>  1.4    0.08                   GVEIEEKIVDNLQSR<BR>  0.9    0.10       =
            LNGANMLETVKPPNSK<BR>  0.1    0.10                   VTPACNTSLPA=
QRWK<BR>  0.1    0.08                   AVMAAISTSIPVISQPQ</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ981><PRE>Top scoring peptide matches to query 98=
1<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.9    0.08           =
        CLSCILAQQPDRLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ982><PRE>Top scoring peptide matches to query 98=
2<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.1    0.11           =
        HQMIHTGKKPHECK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ983><PRE>Top scoring peptide matches to query 98=
3<BR>Score greater than 13 indicates homology<BR>Score greater than 27 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.8    0.12  18 IPI:IP=
I00016613  TPALVFEHVNNTDFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ984><PRE>Top scoring peptide matches to query 98=
4<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ985><PRE>Top scoring peptide matches to query 98=
5<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ986><PRE>Top scoring peptide matches to query 98=
6<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ987><PRE>Top scoring peptide matches to query 98=
7<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ988><PRE>Top scoring peptide matches to query 98=
8<BR>Score greater than 13 indicates homology<BR>Score greater than 23 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2    0.13           =
        TLALSLPGVKDSPSPQQ</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ989><PRE>Top scoring peptide matches to query 98=
9<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ990><PRE>Top scoring peptide matches to query 99=
0<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ991><PRE>Top scoring peptide matches to query 99=
1<BR>Score greater than 15 indicates homology<BR>Score greater than 26 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 36.0    0.11  20 IPI:IP=
I00021826  VSHVSTGGGASLELLEGK<BR>  0.1    0.09                   ILSGQSLEKP=
EKEPVS</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ992><PRE>Top scoring peptide matches to query 99=
2<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ993><PRE>Top scoring peptide matches to query 99=
3<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ994><PRE>Top scoring peptide matches to query 99=
4<BR>Score greater than 13 indicates homology<BR>Score greater than 29 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.1    0.05   1 IPI:IP=
I00019502  EEVGEEAIVELVENGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ995><PRE>Top scoring peptide matches to query 99=
5<BR>Score greater than 13 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.8    0.12   1 IPI:IP=
I00019502  EEVGEEAIVELVENGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ996><PRE>Top scoring peptide matches to query 99=
6<BR>Score greater than 17 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 47.3    0.12   1 IPI:IP=
I00019502  EEVGEEAIVELVENGK<BR>  1.9    0.01                   TVEELLETGLIQ=
VATK<BR>  0.9    0.10                   ESEEVCHLTSGVRLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ997><PRE>Top scoring peptide matches to query 99=
7<BR>Score greater than 16 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 25.1    0.13   1 IPI:IP=
I00019502  EEVGEEAIVELVENGK<BR>  2.2    0.10                   QGASLQGRASEH=
SLFR<BR>  1.2   -0.05                   LLFGDLLRVADTIVAK<BR>  0.8    0.02  =
                 TVEELLETGLIQVATK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ998><PRE>Top scoring peptide matches to query 99=
8<BR>Score greater than 15 indicates homology<BR>Score greater than 28 indi=
cates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <BR=
><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.1    0.13   1 IPI:IP=
I00019502  EEVGEEAIVELVENGK<BR>  1.4    0.02                   TVEELLETGLIQ=
VATK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ999><PRE>Top scoring peptide matches to query 99=
9<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all hi=
ts for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide<=
/B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1000><PRE>Top scoring peptide matches to query 1=
000<BR>Score greater than 17 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.08         =
          GVDEASADLVVWARTR<BR>  3.9    0.13                   RSSYLSLPNNWDH=
R</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1001><PRE>Top scoring peptide matches to query 1=
001<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1002><PRE>Top scoring peptide matches to query 1=
002<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.6    0.09         =
          SAVSFVLVKTGNLSCY<BR>  2.6    0.08                   DAAALTNRSVSLL=
EER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1003><PRE>Top scoring peptide matches to query 1=
003<BR>Score greater than 20 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.5    0.10         =
          SAVSFVLVKTGNLSCY<BR>  6.5   -0.02                   FWLVLAVLAVSGS=
RAR<BR>  3.9    0.11                   QSPQMSLLPHNSLHR<BR>  2.1    0.09    =
               DAAALTNRSVSLLEER<BR>  1.8    0.02                   ITKYLGII=
NMFFIR<BR>  1.3    0.12                   QELDRLLGGCGVASGGR<BR>  0.7    0.1=
4                   SMAWDLPSVLAGPASSR<BR>  0.2    0.06                   VA=
SIALLDLTGARCER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1004><PRE>Top scoring peptide matches to query 1=
004<BR>Score greater than 20 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.0    0.10         =
          SAVSFVLVKTGNLSCY<BR>  6.9    0.09                   VDIFVKDVQPGSV=
ADR<BR>  5.9    0.11                   GVDEASADLVVWARTR<BR>  5.9   -0.01   =
                FWLVLAVLAVSGSRAR<BR>  2.5    0.11                   AVANTMR=
TSLGPNGLDK<BR>  1.9    0.09                   DAAALTNRSVSLLEER<BR>  1.2    =
0.03                   ITKYLGIINMFFIR<BR>  0.6    0.12                   QE=
LDRLLGGCGVASGGR<BR>  0.2    0.01                   LSYVLGQPGLSLDVRK<BR>  0.=
1    0.13                   AAQTAERLDQDINATK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1005><PRE>Top scoring peptide matches to query 1=
005<BR>Score greater than 19 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.3    0.14         =
          EDEISLEDLIERER<BR>  7.8    0.12                   MAAVQAAEVKVDGSE=
PK<BR>  5.7   -0.04                   LAFIIVFEHLVFGIK<BR>  3.3    0.07     =
              EAESELTVTQLKELR<BR>  2.2   -0.02                   AVQEYIITAI=
KEVLR<BR>  1.3    0.04                   LGILSVSSFHALVCSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1006><PRE>Top scoring peptide matches to query 1=
006<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1007><PRE>Top scoring peptide matches to query 1=
007<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2    0.11  50 IPI:=
IPI00005762  IHFPLATYAPVISAEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1008><PRE>Top scoring peptide matches to query 1=
008<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1009><PRE>Top scoring peptide matches to query 1=
009<BR>Score greater than 16 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.4    0.13         =
          LTTDFNVIVEALSKSK<BR>  2.2    0.14                   EKPMHIAPIFSPR=
NK<BR>  0.9    0.11  22 IPI:IPI00027214  KGVNLPGAAVDLPAVSEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1010><PRE>Top scoring peptide matches to query 1=
010<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1011><PRE>Top scoring peptide matches to query 1=
011<BR>Score greater than 13 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.9    0.06         =
          YLEETGASAVPTWAFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1012><PRE>Top scoring peptide matches to query 1=
012<BR>Score greater than 18 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.2    0.08         =
          LMPMFIMVMPGMISR<BR>  4.9    0.02                   TTFQINPFSGEIFL=
R<BR>  3.5    0.03                   MDLGECLKVHDLALR<BR>  2.3   -0.01      =
             VHGLALQISENLFSNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1013><PRE>Top scoring peptide matches to query 1=
013<BR>Score greater than 14 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9   -0.00         =
          DIPLPEELIFIVDEK<BR>  1.0    0.08                   QLEHTRGSLSEQQE=
K</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1014><PRE>Top scoring peptide matches to query 1=
014<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.1    0.11   5 IPI:=
IPI00018231  LGGGQYGEVYEGVWKK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1015><PRE>Top scoring peptide matches to query 1=
015<BR>Score greater than 13 indicates homology<BR>Score greater than 29 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4   -0.03         =
          LSGPSLKMPSLEISAPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1016><PRE>Top scoring peptide matches to query 1=
016<BR>Score greater than 13 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.8    0.06         =
          LFIGGLSFETTDDSLR<BR>  0.3    0.04                   LETLMETHERGVS=
IR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1017><PRE>Top scoring peptide matches to query 1=
017<BR>Score greater than 17 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.7    0.15         =
          GFDNAMELVKNMTER<BR>  4.3    0.07                   SLRDFELTEEQYIK=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1018><PRE>Top scoring peptide matches to query 1=
018<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1019><PRE>Top scoring peptide matches to query 1=
019<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1020><PRE>Top scoring peptide matches to query 1=
020<BR>Score greater than 20 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 44.0    0.13  18 IPI:=
IPI00016613  YSEVFEAINITNNEK<BR>  4.6    0.11                   LGTGEMNIHSP=
SDVLGK<BR>  3.8    0.07                   TLFENLWASVYGSRK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1021><PRE>Top scoring peptide matches to query 1=
021<BR>Score greater than 13 indicates homology<BR>Score greater than 29 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.3    0.11         =
          IYENVSMNCVCRAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1022><PRE>Top scoring peptide matches to query 1=
022<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1023><PRE>Top scoring peptide matches to query 1=
023<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1024><PRE>Top scoring peptide matches to query 1=
024<BR>Score greater than 19 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.8    0.07         =
          VPLQGFAALEGMNGIQK<BR>  6.2    0.15                   YQETLKEIDDVY=
EK<BR>  3.6    0.11                   TDNLPENLGYHLKMK<BR>  3.5    0.10     =
              ILDSVGIEADDDRLNK<BR>  1.9    0.10                   YSQLTSLDV=
GFNTISK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1025><PRE>Top scoring peptide matches to query 1=
025<BR>Score greater than 14 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.2    0.09         =
          YHLLLHEIENHLDK<BR>  0.2   -0.03                   SQTDQLVLIFAGKIL=
K</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1026><PRE>Top scoring peptide matches to query 1=
026<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score  =
 Delta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1027><PRE>Top scoring peptide matches to query 1=
027<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1028><PRE>Top scoring peptide matches to query 1=
028<BR>Score greater than 14 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.9   -0.02         =
          TPVLFDIYEIKEAIK<BR>  0.6    0.01                   GLDVDSLVIEHIQV=
NK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1029><PRE>Top scoring peptide matches to query 1=
029<BR>Score greater than 13 indicates homology<BR>Score greater than 29 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.3   -0.03         =
          EYGGLDVLVNNAGIAFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1030><PRE>Top scoring peptide matches to query 1=
030<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.1    0.12         =
          NGDILNDSHAEVIARR<BR>  0.3    0.07                   LVEPGSPAEKAGL=
LAGDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1031><PRE>Top scoring peptide matches to query 1=
031<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1032><PRE>Top scoring peptide matches to query 1=
032<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1033><PRE>Top scoring peptide matches to query 1=
033<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1034><PRE>Top scoring peptide matches to query 1=
034<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1035><PRE>Top scoring peptide matches to query 1=
035<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1036><PRE>Top scoring peptide matches to query 1=
036<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1037><PRE>Top scoring peptide matches to query 1=
037<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1038><PRE>Top scoring peptide matches to query 1=
038<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1039><PRE>Top scoring peptide matches to query 1=
039<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1040><PRE>Top scoring peptide matches to query 1=
040<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1041><PRE>Top scoring peptide matches to query 1=
041<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1042><PRE>Top scoring peptide matches to query 1=
042<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1043><PRE>Top scoring peptide matches to query 1=
043<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1044><PRE>Top scoring peptide matches to query 1=
044<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1045><PRE>Top scoring peptide matches to query 1=
045<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1046><PRE>Top scoring peptide matches to query 1=
046<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1047><PRE>Top scoring peptide matches to query 1=
047<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1048><PRE>Top scoring peptide matches to query 1=
048<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1049><PRE>Top scoring peptide matches to query 1=
049<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1050><PRE>Top scoring peptide matches to query 1=
050<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1051><PRE>Top scoring peptide matches to query 1=
051<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1052><PRE>Top scoring peptide matches to query 1=
052<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1053><PRE>Top scoring peptide matches to query 1=
053<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1054><PRE>Top scoring peptide matches to query 1=
054<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1055><PRE>Top scoring peptide matches to query 1=
055<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1056><PRE>Top scoring peptide matches to query 1=
056<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1057><PRE>Top scoring peptide matches to query 1=
057<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1058><PRE>Top scoring peptide matches to query 1=
058<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1059><PRE>Top scoring peptide matches to query 1=
059<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.8    0.07         =
          AALSGANVLTLIEKDIR<BR>  0.3    0.08                   KGIDLLSGIIPE=
LCQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1060><PRE>Top scoring peptide matches to query 1=
060<BR>Score greater than 16 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 17.9    0.12  60 IPI:=
IPI00020052  TITLEVEPSDTIENVK<BR>  2.7    0.12                   LKMLTEAIMH=
DCVVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1061><PRE>Top scoring peptide matches to query 1=
061<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.3    0.07         =
          GLTSPSQLLTSESIQTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1062><PRE>Top scoring peptide matches to query 1=
062<BR>Score greater than 22 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 67.1    0.12   6+IPI:=
IPI00021439  SYELPDGQVITIGNER<BR>  5.8   -0.03                   NAIDKLFVLF=
GAEILK<BR>  5.3    0.10                   QFPENTLQLMVQSGAK<BR>  2.0    0.04=
                   TMSINAAELKQLLQSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1063><PRE>Top scoring peptide matches to query 1=
063<BR>Score greater than 22 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 34.2    0.13   6+IPI:=
IPI00021439  SYELPDGQVITIGNER<BR>  7.5    0.11                   QFPENTLQLM=
VQSGAK<BR>  6.6    0.05                   SCDKILITQELEITK<BR>  3.7   -0.06 =
                  EGIHLALVELLKNLTK<BR>  3.4    0.05                   TMSIN=
AAELKQLLQSK<BR>  2.1    0.09                   VRVMNSTAISLQWNR<BR>  1.8    =
0.07                   SQDIPFVSTDIINTLK<BR>  1.8    0.13                   =
NFYYITMLRDPVSR<BR>  0.2   -0.03                   TILEMLLGFLKLQQK<BR>  0.2 =
   0.01                   HQLQAKLENLEQVLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1064><PRE>Top scoring peptide matches to query 1=
064<BR>Score greater than 22 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 55.4    0.13   6+IPI:=
IPI00021439  SYELPDGQVITIGNER<BR>  6.2    0.11                   QFPENTLQLM=
VQSGAK<BR>  5.6   -0.02                   NAIDKLFVLFGAEILK<BR>  2.8    0.05=
                   TMSINAAELKQLLQSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1065><PRE>Top scoring peptide matches to query 1=
065<BR>Score greater than 13 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.2    0.05         =
          TMSIDAAELKQLLQSK<BR>  0.2    0.08                   LAEIYVNSSFYKE=
TK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1066><PRE>Top scoring peptide matches to query 1=
066<BR>Score greater than 17 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.7    0.06         =
          TMSIDAAELKQLLQSK<BR>  4.1    0.10                   LAEIYVNSSFYKE=
TK<BR>  3.0    0.13                   SLLMICLWDAPWMR<BR>  2.0    0.08      =
             LFLEGEKESVSPESLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1067><PRE>Top scoring peptide matches to query 1=
067<BR>Score greater than 14 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.8    0.06         =
          TMSIDAAELKQLLQSK<BR>  1.0    0.07                   KHNLYFEAAFDVP=
LK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1068><PRE>Top scoring peptide matches to query 1=
068<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1069><PRE>Top scoring peptide matches to query 1=
069<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.05         =
          WLLQGIFSTTVLCQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1070><PRE>Top scoring peptide matches to query 1=
070<BR>Score greater than 13 indicates homology<BR>Score greater than 29 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.7   -0.02         =
          VYDALNVLMAMNIISK<BR>  0.1   -0.12                   FLKPITPHLPPHR=
GGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1071><PRE>Top scoring peptide matches to query 1=
071<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1072><PRE>Top scoring peptide matches to query 1=
072<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1073><PRE>Top scoring peptide matches to query 1=
073<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1074><PRE>Top scoring peptide matches to query 1=
074<BR>Score greater than 18 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.4    0.13         =
          NASLQDTLEVLQSSYK<BR>  4.7   -0.05                   ARLGVQAFADALL=
IIPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1075><PRE>Top scoring peptide matches to query 1=
075<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1076><PRE>Top scoring peptide matches to query 1=
076<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1077><PRE>Top scoring peptide matches to query 1=
077<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1078><PRE>Top scoring peptide matches to query 1=
078<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.14  17+IPI:=
IPI00027488  AAVPSGASTGIYEALELR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1079><PRE>Top scoring peptide matches to query 1=
079<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.6    0.14  17+IPI:=
IPI00027488  AAVPSGASTGIYEALELR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1080><PRE>Top scoring peptide matches to query 1=
080<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1081><PRE>Top scoring peptide matches to query 1=
081<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1082><PRE>Top scoring peptide matches to query 1=
082<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1083><PRE>Top scoring peptide matches to query 1=
083<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9   -0.04         =
          ALCLLLLPVLGLLVSSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1084><PRE>Top scoring peptide matches to query 1=
084<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1085><PRE>Top scoring peptide matches to query 1=
085<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.14         =
          SDVWSFGILLTELTTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1086><PRE>Top scoring peptide matches to query 1=
086<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1087><PRE>Top scoring peptide matches to query 1=
087<BR>Score greater than 14 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.6    0.10         =
          EVGDGTTSVVIIAAELLK<BR>  0.5    0.09                   KMLVEAIMLLT=
ATAPGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1088><PRE>Top scoring peptide matches to query 1=
088<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1089><PRE>Top scoring peptide matches to query 1=
089<BR>Score greater than 19 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.0    0.08         =
          TVFRPPLDIYDVLIR<BR>  6.0    0.09                   APSRMPRPLLAPAA=
PQK<BR>  0.7    0.14                   QKVPLLSCPSQPFTSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1090><PRE>Top scoring peptide matches to query 1=
090<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1091><PRE>Top scoring peptide matches to query 1=
091<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.0    0.04         =
          SFLTTYQVLALPIPKK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1092><PRE>Top scoring peptide matches to query 1=
092<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.1   -0.00         =
          GVIFIIYLLHKYIVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1093><PRE>Top scoring peptide matches to query 1=
093<BR>Score greater than 13 indicates homology<BR>Score greater than 29 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.09         =
          MTDQEAIQDLWQWR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1094><PRE>Top scoring peptide matches to query 1=
094<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.08         =
          MTWLVLLGTLLCMLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1095><PRE>Top scoring peptide matches to query 1=
095<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1096><PRE>Top scoring peptide matches to query 1=
096<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.0    0.13         =
          EGGPLLYEGISLTMNSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1097><PRE>Top scoring peptide matches to query 1=
097<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1098><PRE>Top scoring peptide matches to query 1=
098<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1099><PRE>Top scoring peptide matches to query 1=
099<BR>Score greater than 14 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.09  50 IPI:=
IPI00005762  VGINYQPPTVVPGGDLAK<BR>  1.6    0.08                   FGEEIARL=
QHAAELIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1100><PRE>Top scoring peptide matches to query 1=
100<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1101><PRE>Top scoring peptide matches to query 1=
101<BR>Score greater than 14 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.7    0.04         =
          LIVLMGPSGVGVNELRR<BR>  3.5    0.07                   VDGDVRDLLDLN=
LQLK<BR>  1.7    0.02                   LFLQQIAGAMRLLHSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1102><PRE>Top scoring peptide matches to query 1=
102<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1103><PRE>Top scoring peptide matches to query 1=
103<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1104><PRE>Top scoring peptide matches to query 1=
104<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1105><PRE>Top scoring peptide matches to query 1=
105<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score  =
 Delta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1106><PRE>Top scoring peptide matches to query 1=
106<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.8   -0.02         =
          VETPLEEAIKFLTPLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1107><PRE>Top scoring peptide matches to query 1=
107<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.5    0.12         =
          LHYCLSCAVHSKVVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1108><PRE>Top scoring peptide matches to query 1=
108<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1109><PRE>Top scoring peptide matches to query 1=
109<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1110><PRE>Top scoring peptide matches to query 1=
110<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1111><PRE>Top scoring peptide matches to query 1=
111<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1112><PRE>Top scoring peptide matches to query 1=
112<BR>Score greater than 16 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.1    0.13  41 IPI:=
IPI00010796  ILFIFIDSDHTDNQR<BR>  3.6    0.11                   ILEQYEKPLSE=
MEPK<BR>  1.4    0.10                   MTEWPSPGKTSVVTGIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1113><PRE>Top scoring peptide matches to query 1=
113<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1114><PRE>Top scoring peptide matches to query 1=
114<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3   -0.01         =
          LELNFKAGDVIFLLSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1115><PRE>Top scoring peptide matches to query 1=
115<BR>Score greater than 15 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.11         =
          LINEMGGMQQVTELKK<BR>  2.0    0.01                   LELNFKAGDVIFL=
LSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1116><PRE>Top scoring peptide matches to query 1=
116<BR>Score greater than 17 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.0    0.15         =
          WVPFDGDDIQLEFVR<BR>  4.3    0.13                   DGLPGHPGQRGEVG=
FQGK<BR>  1.8    0.05                   EVQLMNRLSHPNILR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1117><PRE>Top scoring peptide matches to query 1=
117<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score  =
 Delta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1118><PRE>Top scoring peptide matches to query 1=
118<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1119><PRE>Top scoring peptide matches to query 1=
119<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1120><PRE>Top scoring peptide matches to query 1=
120<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1121><PRE>Top scoring peptide matches to query 1=
121<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1122><PRE>Top scoring peptide matches to query 1=
122<BR>Score greater than 16 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.14         =
          GFVLRGSSVIHCDADSK<BR>  3.2    0.11   2+IPI:IPI00004497  ISQNFLSSI=
NEEITPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1123><PRE>Top scoring peptide matches to query 1=
123<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1124><PRE>Top scoring peptide matches to query 1=
124<BR>Score greater than 14 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.7    0.12   2+IPI:=
IPI00004497  ISQNFLSSINEEITPR<BR>  0.8    0.15                   MPIKWMALEC=
IHYR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1125><PRE>Top scoring peptide matches to query 1=
125<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B><BR> 24.9    0.13   2+IPI:IPI00004497  ISQNFLSSINEEITPR<BR> 11.2    0.=
10  92 IPI:IPI00009181  EVQIMKMLDHPHIIK<BR>  6.8    0.11                   =
TTDKTKPSNLVNTCIR<BR>  2.5    0.08                   MAAVSMSVVLRQTLWR</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ1126><PRE>Top scoring peptide matches to query 1=
126<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1127><PRE>Top scoring peptide matches to query 1=
127<BR>Score greater than 15 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.9    0.13  92 IPI:=
IPI00009181  EVQIMKMLDHPHIIK<BR>  1.6    0.06   3+IPI:IPI00012053  HVFLFTDL=
LLCTKLK<BR>  0.6    0.14                   TTDKTKPSNLVNTCIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1128><PRE>Top scoring peptide matches to query 1=
128<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1129><PRE>Top scoring peptide matches to query 1=
129<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.3    0.12         =
          VTQESAKNFQIELEGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1130><PRE>Top scoring peptide matches to query 1=
130<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.8    0.10         =
          ITISSLQDLSIYNPER<BR>  1.8    0.09                   EFTNVAESLISQI=
NKR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1131><PRE>Top scoring peptide matches to query 1=
131<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1132><PRE>Top scoring peptide matches to query 1=
132<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.14         =
          VTQESAKNFQIELEGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1133><PRE>Top scoring peptide matches to query 1=
133<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1134><PRE>Top scoring peptide matches to query 1=
134<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.0    0.03         =
          ELLICSGILGSIFSIVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1135><PRE>Top scoring peptide matches to query 1=
135<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.8    0.07         =
          DILKQLFIATVTETEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1136><PRE>Top scoring peptide matches to query 1=
136<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4    0.10  83 IPI:=
IPI00030790  EGQALPIHLHQISASPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1137><PRE>Top scoring peptide matches to query 1=
137<BR>Score greater than 11 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B><BR>  2.5    0.15                   EGKPYLVLGLLWQVIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1138><PRE>Top scoring peptide matches to query 1=
138<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1139><PRE>Top scoring peptide matches to query 1=
139<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1140><PRE>Top scoring peptide matches to query 1=
140<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.10  21 IPI:=
IPI00017216  MAVTFIGSSTAIQELFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1141><PRE>Top scoring peptide matches to query 1=
141<BR>Score greater than 17 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 24.4    0.10  22 IPI:=
IPI00027214  FGVEQDVDMVFASFIR<BR>  2.8    0.07                   SGTNWLAEIL=
CLMHSK<BR>  1.9    0.02                   HTRPTFSGQQIFALEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1142><PRE>Top scoring peptide matches to query 1=
142<BR>Score greater than 14 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.6    0.11  22 IPI:=
IPI00027214  FGVEQDVDMVFASFIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1143><PRE>Top scoring peptide matches to query 1=
143<BR>Score greater than 19 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 18.7    0.11  22 IPI:=
IPI00027214  FGVEQDVDMVFASFIR<BR>  5.2   -0.09                   IVGLAAFLPT=
NLGAVIYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1144><PRE>Top scoring peptide matches to query 1=
144<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1145><PRE>Top scoring peptide matches to query 1=
145<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1146><PRE>Top scoring peptide matches to query 1=
146<BR>Score greater than 13 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4    0.11         =
          TTTWQRPTAAATPDGMR<BR>  0.9   -0.05                   VLILGASGGVGT=
FAIQVMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1147><PRE>Top scoring peptide matches to query 1=
147<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1148><PRE>Top scoring peptide matches to query 1=
148<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1149><PRE>Top scoring peptide matches to query 1=
149<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1150><PRE>Top scoring peptide matches to query 1=
150<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1151><PRE>Top scoring peptide matches to query 1=
151<BR>Score greater than 14 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.3    0.15         =
          ITGEAFVQFASQELAEK<BR>  1.4    0.08                   LYICELALALEY=
LQR<BR>  1.0    0.08                   AQAMLLGKFIAVNAYNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1152><PRE>Top scoring peptide matches to query 1=
152<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.00         =
          LMKEVGPQQVLCLLLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1153><PRE>Top scoring peptide matches to query 1=
153<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1154><PRE>Top scoring peptide matches to query 1=
154<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.5    0.12   1 IPI:=
IPI00019502  ANLQIDQINTDLNLER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1155><PRE>Top scoring peptide matches to query 1=
155<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.6    0.12  10 IPI:=
IPI00011042  MAVTFIGNSTAIQELFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1156><PRE>Top scoring peptide matches to query 1=
156<BR>Score greater than 15 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 37.0    0.13   1 IPI:=
IPI00019502  ANLQIDQINTDLNLER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1157><PRE>Top scoring peptide matches to query 1=
157<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1158><PRE>Top scoring peptide matches to query 1=
158<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.1    0.13  10 IPI:=
IPI00011042  MAVTFIGNSTAIQELFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1159><PRE>Top scoring peptide matches to query 1=
159<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1160><PRE>Top scoring peptide matches to query 1=
160<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1161><PRE>Top scoring peptide matches to query 1=
161<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9   -0.04         =
          LLLMPAKHQPDLLLLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1162><PRE>Top scoring peptide matches to query 1=
162<BR>Score greater than 14 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.3    0.12         =
          AMTTGAIAAMLSTILYSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1163><PRE>Top scoring peptide matches to query 1=
163<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1164><PRE>Top scoring peptide matches to query 1=
164<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1165><PRE>Top scoring peptide matches to query 1=
165<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.10         =
          NLVKIFEPCGRPAVDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1166><PRE>Top scoring peptide matches to query 1=
166<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.3    0.01         =
          RSLAQDAPPLPVPGVLLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1167><PRE>Top scoring peptide matches to query 1=
167<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.0    0.01         =
          PVPDHHRLPLVPELPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1168><PRE>Top scoring peptide matches to query 1=
168<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1169><PRE>Top scoring peptide matches to query 1=
169<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1170><PRE>Top scoring peptide matches to query 1=
170<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.6    0.07         =
          MALVSGISLDPEAAIGVTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1171><PRE>Top scoring peptide matches to query 1=
171<BR>Score greater than 21 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 41.7    0.13   1 IPI:=
IPI00019502  EEVGEEAIVELVENGKK<BR>  6.2    0.00                   MPLPLKLFE=
ISDIVIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1172><PRE>Top scoring peptide matches to query 1=
172<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4    0.05         =
          LLRDQAAALAAGPTPPGPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1173><PRE>Top scoring peptide matches to query 1=
173<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.04         =
          PVPDHHRLPLVPELPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1174><PRE>Top scoring peptide matches to query 1=
174<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1175><PRE>Top scoring peptide matches to query 1=
175<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1176><PRE>Top scoring peptide matches to query 1=
176<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1177><PRE>Top scoring peptide matches to query 1=
177<BR>Score greater than 14 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.0    0.13         =
          LLECSGRQVSPEALEGK<BR>  0.8    0.12                   YEGPTLAHAVEL=
FGGRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1178><PRE>Top scoring peptide matches to query 1=
178<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1179><PRE>Top scoring peptide matches to query 1=
179<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.00         =
          KLEGTLPPNVLVIHQSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1180><PRE>Top scoring peptide matches to query 1=
180<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.4    0.09         =
          GILDYLDNISPQQIRK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1181><PRE>Top scoring peptide matches to query 1=
181<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3    0.04         =
          VTVAFIRTIQAQLQER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1182><PRE>Top scoring peptide matches to query 1=
182<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1183><PRE>Top scoring peptide matches to query 1=
183<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.0    0.07         =
          LTDDHVQFLIYQILR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1184><PRE>Top scoring peptide matches to query 1=
184<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1185><PRE>Top scoring peptide matches to query 1=
185<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.02         =
          SLVFSVLFAVTLRSFVP</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1186><PRE>Top scoring peptide matches to query 1=
186<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.3    0.12  12 IPI:=
IPI00028646  VLDFEHFLPMLQTVAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1187><PRE>Top scoring peptide matches to query 1=
187<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1188><PRE>Top scoring peptide matches to query 1=
188<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1189><PRE>Top scoring peptide matches to query 1=
189<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1190><PRE>Top scoring peptide matches to query 1=
190<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1191><PRE>Top scoring peptide matches to query 1=
191<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1192><PRE>Top scoring peptide matches to query 1=
192<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1193><PRE>Top scoring peptide matches to query 1=
193<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1194><PRE>Top scoring peptide matches to query 1=
194<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1195><PRE>Top scoring peptide matches to query 1=
195<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1196><PRE>Top scoring peptide matches to query 1=
196<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.08         =
          QKLWNILEKPGSSTAAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1197><PRE>Top scoring peptide matches to query 1=
197<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1198><PRE>Top scoring peptide matches to query 1=
198<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1199><PRE>Top scoring peptide matches to query 1=
199<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.5    0.13   2+IPI:=
IPI00004497  HTPASHPDHPLLQDALR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1200><PRE>Top scoring peptide matches to query 1=
200<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.6    0.13   2+IPI:=
IPI00004497  HTPASHPDHPLLQDALR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1201><PRE>Top scoring peptide matches to query 1=
201<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1202><PRE>Top scoring peptide matches to query 1=
202<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.06         =
          NIMINLMDILEVDTKK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1203><PRE>Top scoring peptide matches to query 1=
203<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1204><PRE>Top scoring peptide matches to query 1=
204<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1205><PRE>Top scoring peptide matches to query 1=
205<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1206><PRE>Top scoring peptide matches to query 1=
206<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.06         =
          REINNSHIQEVVQVIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1207><PRE>Top scoring peptide matches to query 1=
207<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1208><PRE>Top scoring peptide matches to query 1=
208<BR>Score greater than 17 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.2    0.07         =
          SYILLLTAVFQVPSAAGR<BR>  3.9    0.07                   SLGPMVPSLLT=
GITLGPPR<BR>  3.9    0.11                   DTITPLWAAPGRAARPGR<BR>  1.1    =
0.10                   IPDQLVILDMKHGVEAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1209><PRE>Top scoring peptide matches to query 1=
209<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2    0.11         =
          KQGLLPLTFADPSDYNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1210><PRE>Top scoring peptide matches to query 1=
210<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1211><PRE>Top scoring peptide matches to query 1=
211<BR>Score greater than 16 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.4   -0.05         =
          DRPTILSKLLLLHFLK<BR>  3.1    0.15                   KEKPDSVDGQQPL=
VNGVP</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1212><PRE>Top scoring peptide matches to query 1=
212<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1213><PRE>Top scoring peptide matches to query 1=
213<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1214><PRE>Top scoring peptide matches to query 1=
214<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1215><PRE>Top scoring peptide matches to query 1=
215<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3    0.09         =
          VYKPKVIEALQGMFIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1216><PRE>Top scoring peptide matches to query 1=
216<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1217><PRE>Top scoring peptide matches to query 1=
217<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1218><PRE>Top scoring peptide matches to query 1=
218<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.05         =
          SEIEVISEPPEEKVTAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1219><PRE>Top scoring peptide matches to query 1=
219<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1220><PRE>Top scoring peptide matches to query 1=
220<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1221><PRE>Top scoring peptide matches to query 1=
221<BR>Score greater than 16 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.5    0.11   5 IPI:=
IPI00018231  DISNGALAFTPLDTADPAK<BR>  2.4    0.09                   EEKPTEI=
KLEETSVER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1222><PRE>Top scoring peptide matches to query 1=
222<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1223><PRE>Top scoring peptide matches to query 1=
223<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1224><PRE>Top scoring peptide matches to query 1=
224<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1225><PRE>Top scoring peptide matches to query 1=
225<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1226><PRE>Top scoring peptide matches to query 1=
226<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.8    0.14         =
          MNKEVMPSIQSLDALVK<BR>  0.3    0.12                   HPFLVGLRYSFQ=
TPEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1227><PRE>Top scoring peptide matches to query 1=
227<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.9    0.12         =
          HPFLVGLRYSFQTPEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1228><PRE>Top scoring peptide matches to query 1=
228<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1229><PRE>Top scoring peptide matches to query 1=
229<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1230><PRE>Top scoring peptide matches to query 1=
230<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1231><PRE>Top scoring peptide matches to query 1=
231<BR>Score greater than 16 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 49.6    0.11   1 IPI:=
IPI00019502  TELEDTLDSTAAQQELR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1232><PRE>Top scoring peptide matches to query 1=
232<BR>Score greater than 23 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 65.5    0.14   1 IPI:=
IPI00019502  TELEDTLDSTAAQQELR<BR>  6.7    0.10                   YWASRQPDA=
ATAGSLPTK<BR>  5.4    0.07                   FVLSGANIMCPGLTSPGAK</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ1233><PRE>Top scoring peptide matches to query 1=
233<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1234><PRE>Top scoring peptide matches to query 1=
234<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.0    0.15         =
          LDLNVRNLSMIVEEMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1235><PRE>Top scoring peptide matches to query 1=
235<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1236><PRE>Top scoring peptide matches to query 1=
236<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1237><PRE>Top scoring peptide matches to query 1=
237<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.09         =
          GMPPLEIVPENIKVVER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1238><PRE>Top scoring peptide matches to query 1=
238<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1239><PRE>Top scoring peptide matches to query 1=
239<BR>Score greater than 20 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.3   -0.07         =
          LPVLPVAAAAELPPVPGGPR<BR> 10.3    0.04                   VIFLCQATA=
QPPVTGYR<BR>  6.4    0.05                   SLKEENFIASIELWNK<BR>  4.9    0.=
07                   TLNSTSPFPSKELAEATK<BR>  4.7    0.12                   =
DIQMTQSPSTLSVSVGDR<BR>  4.3    0.05                   TSEVMAQLTESRQSILK<BR>=
  2.8    0.01                   FQTVQPMALLLFRSNR<BR>  1.7    0.08          =
         RSQEVTDFLAPLQSSSR<BR>  0.0   -0.02                   YILLGLADVEANY=
VIVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1240><PRE>Top scoring peptide matches to query 1=
240<BR>Score greater than 15 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.7    0.13         =
          LHLQSNHPDDIFLFPK<BR>  2.1    0.13                   EDIPVNYMKELEL=
VTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1241><PRE>Top scoring peptide matches to query 1=
241<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2    0.14         =
          EDIPVNYMKELELVTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1242><PRE>Top scoring peptide matches to query 1=
242<BR>Score greater than 14 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 31.3    0.13  51 IPI:=
IPI00027006  DQEGQDVLLFIDNIFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1243><PRE>Top scoring peptide matches to query 1=
243<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1244><PRE>Top scoring peptide matches to query 1=
244<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.0    0.13  22 IPI:=
IPI00027214  EAEAAIYHLQLFEELR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1245><PRE>Top scoring peptide matches to query 1=
245<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.13         =
          AMPNLVSLHLQHCQIR<BR>  1.6    0.14                   ERMAGFPPLVAED=
IMLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1246><PRE>Top scoring peptide matches to query 1=
246<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.05         =
          DLADELDLVDVIEDKLK<BR>  0.1    0.07                   SSSNNSAPPKPM=
SLKIER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1247><PRE>Top scoring peptide matches to query 1=
247<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1248><PRE>Top scoring peptide matches to query 1=
248<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1249><PRE>Top scoring peptide matches to query 1=
249<BR>Score greater than 8 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1250><PRE>Top scoring peptide matches to query 1=
250<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1251><PRE>Top scoring peptide matches to query 1=
251<BR>Score greater than 14 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1252><PRE>Top scoring peptide matches to query 1=
252<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1253><PRE>Top scoring peptide matches to query 1=
253<BR>Score greater than 14 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 16.1    0.14  65 IPI:=
IPI00013003  HLEPALAFQLELNRMR<BR> 15.4    0.14                   LDEHIIPLGS=
MAINSISK<BR>  0.6    0.10  19 IPI:IPI00003269  VAPDEHPILLTEAPLNPK<BR>  0.4 =
   0.10   6 IPI:IPI00021439  VAPEEHPVLLTEAPLNPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1254><PRE>Top scoring peptide matches to query 1=
254<BR>Score greater than 13 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.9    0.12   6 IPI:=
IPI00021439  VAPEEHPVLLTEAPLNPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1255><PRE>Top scoring peptide matches to query 1=
255<BR>Score greater than 13 indicates homology<BR>Score greater than 20 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.8    0.14   6 IPI:=
IPI00021439  VAPEEHPVLLTEAPLNPK<BR>  7.3    0.14  19 IPI:IPI00003269  VAPDE=
HPILLTEAPLNPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1256><PRE>Top scoring peptide matches to query 1=
256<BR>Score greater than 14 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.0    0.15         =
          GEYILLGGSDKQVSLFTK<BR>  1.0    0.09                   NSKNSLIQMTI=
LNLLPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1257><PRE>Top scoring peptide matches to query 1=
257<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1258><PRE>Top scoring peptide matches to query 1=
258<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1259><PRE>Top scoring peptide matches to query 1=
259<BR>Score greater than 13 indicates homology<BR>Score greater than 20 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.13         =
          AQDILGAVTLLLEGVMAAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1260><PRE>Top scoring peptide matches to query 1=
260<BR>Score greater than 10 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1261><PRE>Top scoring peptide matches to query 1=
261<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1262><PRE>Top scoring peptide matches to query 1=
262<BR>Score greater than 24 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.9    0.12  10+IPI:=
IPI00011042  GHYTEGAELVDSVLDVVR<BR> 10.6    0.11                   MINLSEPD=
TIDERAINK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1263><PRE>Top scoring peptide matches to query 1=
263<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2    0.10         =
          QQLPLPYEQLKHFYR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1264><PRE>Top scoring peptide matches to query 1=
264<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.0    0.15   8 IPI:=
IPI00021428  YPIEHGIITNWDDMEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1265><PRE>Top scoring peptide matches to query 1=
265<BR>Score greater than 22 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.4    0.15  17 IPI:=
IPI00027488  DATNVGDEGGFAPNILENK<BR>  8.9    0.05                   QVEVACA=
PAMRLLAYPR<BR>  7.6    0.07                   TGPQNGWNDPPALNRVPK<BR>  4.9  =
  0.01                   MASPAYTPLTTTAKVRPR<BR>  2.1    0.06               =
    QLVDEFQASGGVGERLQK<BR>  0.3    0.06                   MDILVTETEELAENILK=
<BR>  0.1    0.04                   RSLVLQNYTRPEGGQSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1266><PRE>Top scoring peptide matches to query 1=
266<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1267><PRE>Top scoring peptide matches to query 1=
267<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1268><PRE>Top scoring peptide matches to query 1=
268<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1269><PRE>Top scoring peptide matches to query 1=
269<BR>Score greater than 13 indicates homology<BR>Score greater than 28 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.0   -0.08         =
          FRFALPTAHHTLGLPVGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1270><PRE>Top scoring peptide matches to query 1=
270<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1271><PRE>Top scoring peptide matches to query 1=
271<BR>Score greater than 14 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.2    0.15   1+IPI:=
IPI00019502  TQLEELEDELQATEDAK<BR>  0.5    0.10                   DVQAGSHDY=
PGEGIYLLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1272><PRE>Top scoring peptide matches to query 1=
272<BR>Score greater than 18 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.7    0.05         =
          NFHQQLRSQMQLLFR<BR>  4.7    0.06                   ITFVDFLAYDVLDM=
KR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1273><PRE>Top scoring peptide matches to query 1=
273<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1274><PRE>Top scoring peptide matches to query 1=
274<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1275><PRE>Top scoring peptide matches to query 1=
275<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1276><PRE>Top scoring peptide matches to query 1=
276<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1277><PRE>Top scoring peptide matches to query 1=
277<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1278><PRE>Top scoring peptide matches to query 1=
278<BR>Score greater than 15 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.4    0.10  41 IPI:=
IPI00010796  HNQLPLVIEFTEQTAPK<BR>  1.7   -0.05                   LWGVCVSIL=
ALLPRVLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1279><PRE>Top scoring peptide matches to query 1=
279<BR>Score greater than 14 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 20.8    0.14  41 IPI:=
IPI00010796  HNQLPLVIEFTEQTAPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1280><PRE>Top scoring peptide matches to query 1=
280<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1281><PRE>Top scoring peptide matches to query 1=
281<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1282><PRE>Top scoring peptide matches to query 1=
282<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1283><PRE>Top scoring peptide matches to query 1=
283<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1284><PRE>Top scoring peptide matches to query 1=
284<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1285><PRE>Top scoring peptide matches to query 1=
285<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1286><PRE>Top scoring peptide matches to query 1=
286<BR>Score greater than 14 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1287><PRE>Top scoring peptide matches to query 1=
287<BR>Score greater than 11 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1288><PRE>Top scoring peptide matches to query 1=
288<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1289><PRE>Top scoring peptide matches to query 1=
289<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1290><PRE>Top scoring peptide matches to query 1=
290<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1291><PRE>Top scoring peptide matches to query 1=
291<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1292><PRE>Top scoring peptide matches to query 1=
292<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1293><PRE>Top scoring peptide matches to query 1=
293<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1294><PRE>Top scoring peptide matches to query 1=
294<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1295><PRE>Top scoring peptide matches to query 1=
295<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.5    0.13   7 IPI:=
IPI00003865  TVTNAVVTVPAYFNDSQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1296><PRE>Top scoring peptide matches to query 1=
296<BR>Score greater than 18 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.3    0.14   7 IPI:=
IPI00003865  TVTNAVVTVPAYFNDSQR<BR>  4.6    0.14                   LYIASDHT=
PLSFSVFER<BR>  2.3    0.14                   DEVAHTLTENRVLQNSR<BR>  2.0    =
0.05                   QCVTPSEVVPVTVLAVQR<BR>  1.3    0.10                 =
  KCVPEGIEDPQALLEGVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1297><PRE>Top scoring peptide matches to query 1=
297<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2   -0.02         =
          KTLSHNLLVSEVYNQLK<BR>  0.5    0.03                   SLEVILRAEAVE=
SAQAGDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1298><PRE>Top scoring peptide matches to query 1=
298<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.09         =
          AFSYRSALLSHQDIHNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1299><PRE>Top scoring peptide matches to query 1=
299<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.8    0.03         =
          IIILFVVITSQEEVQEK<BR>  0.3    0.14                   WEAEGKLANVPD=
GSFLVR<BR>  0.2    0.11                   NLMKEAPTAYSLLIMHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1300><PRE>Top scoring peptide matches to query 1=
300<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1301><PRE>Top scoring peptide matches to query 1=
301<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1302><PRE>Top scoring peptide matches to query 1=
302<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1303><PRE>Top scoring peptide matches to query 1=
303<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.7    0.06         =
          KPKVTISYPGAMLNIMVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1304><PRE>Top scoring peptide matches to query 1=
304<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1305><PRE>Top scoring peptide matches to query 1=
305<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B><BR> 45.3    0.12   1 IPI:IPI00019502  TFHIFYYLLSGAGEHLK<BR> 10.5    0=
.10  70 IPI:IPI00033922  LWDEVLSHLVEGPNFLK<BR>  7.9    0.06                =
   DVCFGMPSLLPIHRLLK<BR>  7.8    0.09                   GQLDCVITLHKDQDLIK<B=
R>  4.5    0.04                   MAGTGLLALRTLPGPSWVR<BR>  4.4    0.15     =
              DSSLSIITYSMSVHSLQK<BR>  2.7    0.10                   AKLDSLQ=
DIGMDHQALLK<BR>  2.4    0.09                   LSLMAPDTPAGTPLSGVGRR<BR>  2.=
3    0.09                   GTPLPTITWTLDDDPILK<BR>  2.0    0.13            =
       LLATLATHQMTSHTEGLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1306><PRE>Top scoring peptide matches to query 1=
306<BR>Score greater than 17 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.9    0.12   1 IPI:=
IPI00019502  TFHIFYYLLSGAGEHLK<BR>  4.0    0.02                   ITRTLQIIL=
EVVPEEDK<BR>  2.9    0.06                   DVCFGMPSLLPIHRLLK<BR>  2.3    0=
.10                   TKALLQMVQQFAVDFEK<BR>  1.8    0.09                   =
LSLMAPDTPAGTPLSGVGRR<BR>  1.6    0.11                   KLHVGDFVWVAQETNPR<B=
R>  1.0    0.07                   VLDSKTAQNLSIFLGSFR<BR>  0.3    0.12      =
             LPSRPPLPGSGGSQSGAKMR<BR>  0.2   -0.03                   LLPLAS=
AITSQVDKASIIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1307><PRE>Top scoring peptide matches to query 1=
307<BR>Score greater than 23 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 29.4    0.13   1 IPI:=
IPI00019502  TFHIFYYLLSGAGEHLK<BR>  8.7    0.12                   LLKDLGTGS=
SGFTIDNVMK<BR>  7.0    0.11                   AKLDSLQDIGMDHQALLK<BR>  6.7  =
  0.07                   DVCFGMPSLLPIHRLLK<BR>  3.2    0.05                =
   MAGTGLLALRTLPGPSWVR<BR>  2.0   -0.07                   LGVYELLLKVRPQQLVK=
<BR>  1.1    0.09                   IASIPTKEEPQGQLSLER<BR>  0.4    0.11  70=
 IPI:IPI00033922  LWDEVLSHLVEGPNFLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1308><PRE>Top scoring peptide matches to query 1=
308<BR>Score greater than 18 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.9    0.13   1 IPI:=
IPI00019502  TFHIFYYLLSGAGEHLK<BR>  4.6    0.12                   LLKDLGTGS=
SGFTIDNVMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1309><PRE>Top scoring peptide matches to query 1=
309<BR>Score greater than 22 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 23.9    0.14   1 IPI:=
IPI00019502  TFHIFYYLLSGAGEHLK<BR>  8.4    0.13                   LLKDLGTGS=
SGFTIDNVMK<BR>  4.1    0.14                   KDDDDLGIPPEIWELLK<BR>  1.5   =
 0.12                   AKLDSLQDIGMDHQALLK<BR>  0.8    0.07                =
   DVCFGMPSLLPIHRLLK<BR>  0.6    0.07                   LIGKCSGVLHMVIAEGVGR=
</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1310><PRE>Top scoring peptide matches to query 1=
310<BR>Score greater than 20 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 22.6    0.15   1 IPI:=
IPI00019502  TFHIFYYLLSGAGEHLK<BR>  5.8    0.08                   DVCFGMPSL=
LPIHRLLK<BR>  2.1    0.06                   MAGTGLLALRTLPGPSWVR<BR>  1.3   =
 0.08                   TLLPVPSFEDVSIPEKPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1311><PRE>Top scoring peptide matches to query 1=
311<BR>Score greater than 20 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.7    0.15   1 IPI:=
IPI00019502  TFHIFYYLLSGAGEHLK<BR>  6.4    0.08                   DVCFGMPSL=
LPIHRLLK<BR>  5.5    0.12                   GTPLPTITWTLDDDPILK<BR>  2.4    =
0.07                   MAGTGLLALRTLPGPSWVR<BR>  2.3    0.09                =
   SLWQQPSVGDILRLLDR<BR>  0.3    0.13                   AKLDSLQDIGMDHQALLK<=
BR>  0.1    0.13                   EVFYTALWGSVLASPSIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1312><PRE>Top scoring peptide matches to query 1=
312<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.08         =
          DVCFGMPSLLPIHRLLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1313><PRE>Top scoring peptide matches to query 1=
313<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1314><PRE>Top scoring peptide matches to query 1=
314<BR>Score greater than 14 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.2    0.07         =
          RPGGPQYGIAREDVVLNR<BR>  0.8    0.06                   LTLTALDGGSP=
PRSGTAQVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1315><PRE>Top scoring peptide matches to query 1=
315<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1316><PRE>Top scoring peptide matches to query 1=
316<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1317><PRE>Top scoring peptide matches to query 1=
317<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.2    0.12         =
          YQKVYGTAAVNSPVVSWK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1318><PRE>Top scoring peptide matches to query 1=
318<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1319><PRE>Top scoring peptide matches to query 1=
319<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.10         =
          RPGGPQYGIAREDVVLNR<BR>  0.0    0.08                   KQQTPIELSLP=
GTVMAQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1320><PRE>Top scoring peptide matches to query 1=
320<BR>Score greater than 15 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.8    0.10         =
          RPGGPQYGIAREDVVLNR<BR>  2.2    0.08                   KQQTPIELSLP=
GTVMAQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1321><PRE>Top scoring peptide matches to query 1=
321<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1322><PRE>Top scoring peptide matches to query 1=
322<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1323><PRE>Top scoring peptide matches to query 1=
323<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4    0.14         =
          RPYVFIYNSDKDPVER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1324><PRE>Top scoring peptide matches to query 1=
324<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2    0.11         =
          VSEMKLPEVSEVAVPEVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1325><PRE>Top scoring peptide matches to query 1=
325<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1326><PRE>Top scoring peptide matches to query 1=
326<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.6    0.12         =
          EQITLDVLVEMGHKELK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1327><PRE>Top scoring peptide matches to query 1=
327<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1328><PRE>Top scoring peptide matches to query 1=
328<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1329><PRE>Top scoring peptide matches to query 1=
329<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1330><PRE>Top scoring peptide matches to query 1=
330<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.7    0.13         =
          MGTLRVHELQSLSEMLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1331><PRE>Top scoring peptide matches to query 1=
331<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1332><PRE>Top scoring peptide matches to query 1=
332<BR>Score greater than 14 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.0    0.10         =
          GIDVQQVSLVNHDLPTNR<BR>  1.2    0.12                   AIKNDSVVAGG=
GAIEMELSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1333><PRE>Top scoring peptide matches to query 1=
333<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1334><PRE>Top scoring peptide matches to query 1=
334<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1335><PRE>Top scoring peptide matches to query 1=
335<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1336><PRE>Top scoring peptide matches to query 1=
336<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.02         =
          ILFLSSIIPFDCLLTVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1337><PRE>Top scoring peptide matches to query 1=
337<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1338><PRE>Top scoring peptide matches to query 1=
338<BR>Score greater than 13 indicates homology<BR>Score greater than 15 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.7    0.11         =
          ALSRAMLLTSYLPPPLLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1339><PRE>Top scoring peptide matches to query 1=
339<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1340><PRE>Top scoring peptide matches to query 1=
340<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1341><PRE>Top scoring peptide matches to query 1=
341<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1342><PRE>Top scoring peptide matches to query 1=
342<BR>Score greater than 20 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.9    0.12         =
          VPYPGMVNREVLEQVER<BR>  6.7    0.05  100 IPI:IPI00026320  FAQLALER=
VLQDWNALK<BR>  2.9    0.11                   LLGSVQQDLERSLQDASR<BR>  0.8   =
 0.11                   STLFVPRLPASHATWMGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1343><PRE>Top scoring peptide matches to query 1=
343<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1344><PRE>Top scoring peptide matches to query 1=
344<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1345><PRE>Top scoring peptide matches to query 1=
345<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3    0.13         =
          NTITTLGAIFSHLPVFRM</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1346><PRE>Top scoring peptide matches to query 1=
346<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1347><PRE>Top scoring peptide matches to query 1=
347<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1348><PRE>Top scoring peptide matches to query 1=
348<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1349><PRE>Top scoring peptide matches to query 1=
349<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1350><PRE>Top scoring peptide matches to query 1=
350<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1351><PRE>Top scoring peptide matches to query 1=
351<BR>Score greater than 14 indicates homology<BR>Score greater than 19 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.0    0.14         =
          LPEAAFLARTYLPSQVSR<BR>  1.6    0.14                   CTKEQILELLV=
LEQFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1352><PRE>Top scoring peptide matches to query 1=
352<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1353><PRE>Top scoring peptide matches to query 1=
353<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1354><PRE>Top scoring peptide matches to query 1=
354<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1355><PRE>Top scoring peptide matches to query 1=
355<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score  =
 Delta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1356><PRE>Top scoring peptide matches to query 1=
356<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1357><PRE>Top scoring peptide matches to query 1=
357<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1358><PRE>Top scoring peptide matches to query 1=
358<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1359><PRE>Top scoring peptide matches to query 1=
359<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score  =
 Delta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1360><PRE>Top scoring peptide matches to query 1=
360<BR>Score greater than 15 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.6    0.11         =
          VPYPGMNNREVLEQVER<BR>  2.0    0.09                   DSGVTVNGELIG=
APAPPNGHK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1361><PRE>Top scoring peptide matches to query 1=
361<BR>Score greater than 14 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.9    0.11         =
          VPYPGMNNREVLEQVER<BR>  1.2    0.01                   VPNAYDKTALAL=
EVGELVK<BR>  0.8    0.15                   GPTSTSIDNIDGTPVRDER<BR>  0.7    =
0.14                   GIPELTDFWVFFMNWK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1362><PRE>Top scoring peptide matches to query 1=
362<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1363><PRE>Top scoring peptide matches to query 1=
363<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1364><PRE>Top scoring peptide matches to query 1=
364<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1365><PRE>Top scoring peptide matches to query 1=
365<BR>Score greater than 13 indicates homology<BR>Score greater than 16 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.09         =
          LVGSAFTIAVVGFAIAISLGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1366><PRE>Top scoring peptide matches to query 1=
366<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1367><PRE>Top scoring peptide matches to query 1=
367<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1368><PRE>Top scoring peptide matches to query 1=
368<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1369><PRE>Top scoring peptide matches to query 1=
369<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1370><PRE>Top scoring peptide matches to query 1=
370<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1371><PRE>Top scoring peptide matches to query 1=
371<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1372><PRE>Top scoring peptide matches to query 1=
372<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1373><PRE>Top scoring peptide matches to query 1=
373<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1374><PRE>Top scoring peptide matches to query 1=
374<BR>Score greater than 17 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.5    0.09         =
          EGPVGLPGIDGRPGPIGPAGAR<BR>  4.1    0.09                   EAVLDAH=
FLVLASDLGIEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1375><PRE>Top scoring peptide matches to query 1=
375<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1376><PRE>Top scoring peptide matches to query 1=
376<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1377><PRE>Top scoring peptide matches to query 1=
377<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.6    0.14   1 IPI:=
IPI00019502  SMEAEMIQLQEELAAAER<BR>  0.0    0.04                   GSNKSFLA=
AANEEILESIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1378><PRE>Top scoring peptide matches to query 1=
378<BR>Score greater than 16 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.0    0.13         =
          EVECQQEHIHELQELK<BR>  3.1    0.05                   GSNKSFLAAANEE=
ILESIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1379><PRE>Top scoring peptide matches to query 1=
379<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1380><PRE>Top scoring peptide matches to query 1=
380<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.4    0.03         =
          AHVSPHEMLQAVVLCSKK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1381><PRE>Top scoring peptide matches to query 1=
381<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5   -0.05         =
          IPEDQHALLVKYQGLVVK<BR>  0.0    0.15                   WEPLKSMEQNG=
PGLEYR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1382><PRE>Top scoring peptide matches to query 1=
382<BR>Score greater than 18 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.0    0.13         =
          GDPYPQEVSATVQKVMER<BR>  5.3   -0.02                   YPTAEEILVLG=
GYLRLSR<BR>  3.9   -0.05                   IPEDQHALLVKYQGLVVK<BR>  3.1    0=
.15                   WEPLKSMEQNGPGLEYR<BR>  1.4    0.12                   =
RFEETGQELAELLEEEK<BR>  0.4    0.01                   VMAAVSTQLRSLSLGPTFR</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1383><PRE>Top scoring peptide matches to query 1=
383<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1384><PRE>Top scoring peptide matches to query 1=
384<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.8    0.13         =
          FVSIVTEEEGVYSVDYSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1385><PRE>Top scoring peptide matches to query 1=
385<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.5    0.03         =
          LKTFANFPSGSPVSASTLAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1386><PRE>Top scoring peptide matches to query 1=
386<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.4    0.11   2+IPI:=
IPI00004497  LSEQESLLLLMSPSMAFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1387><PRE>Top scoring peptide matches to query 1=
387<BR>Score greater than 15 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 19.2    0.15   2+IPI:=
IPI00004497  LSEQESLLLLMSPSMAFR<BR>  0.9    0.12                   DKTTIHVM=
PDTPDILLSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1388><PRE>Top scoring peptide matches to query 1=
388<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1389><PRE>Top scoring peptide matches to query 1=
389<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1390><PRE>Top scoring peptide matches to query 1=
390<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1391><PRE>Top scoring peptide matches to query 1=
391<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1392><PRE>Top scoring peptide matches to query 1=
392<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.0    0.08         =
          VIESTQGLGNDLAGVLALQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1393><PRE>Top scoring peptide matches to query 1=
393<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.4    0.14         =
          GPGESSLPAFSGVALLPPACK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1394><PRE>Top scoring peptide matches to query 1=
394<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1395><PRE>Top scoring peptide matches to query 1=
395<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1396><PRE>Top scoring peptide matches to query 1=
396<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1397><PRE>Top scoring peptide matches to query 1=
397<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1398><PRE>Top scoring peptide matches to query 1=
398<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1399><PRE>Top scoring peptide matches to query 1=
399<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1400><PRE>Top scoring peptide matches to query 1=
400<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1401><PRE>Top scoring peptide matches to query 1=
401<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1402><PRE>Top scoring peptide matches to query 1=
402<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1403><PRE>Top scoring peptide matches to query 1=
403<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.9    0.15  22 IPI:=
IPI00027214  EAEAAIYHLQLFEELRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1404><PRE>Top scoring peptide matches to query 1=
404<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1405><PRE>Top scoring peptide matches to query 1=
405<BR>Score greater than 16 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 15.1    0.07         =
          VGLGLAGTMLLTPTCTLTIR<BR>  2.7    0.13                   EQLINLQNF=
LTTQSPSVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1406><PRE>Top scoring peptide matches to query 1=
406<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1407><PRE>Top scoring peptide matches to query 1=
407<BR>Score greater than 14 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.6    0.08         =
          YTIMVDKYIPNISMCLK<BR>  1.7    0.10                   CKPFHYDRPWQR=
ATAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1408><PRE>Top scoring peptide matches to query 1=
408<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1409><PRE>Top scoring peptide matches to query 1=
409<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1410><PRE>Top scoring peptide matches to query 1=
410<BR>Score greater than 14 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.8    0.08         =
          RLQFGVAVLDDKPYVVGGR<BR>  6.5    0.13                   QLAAWCSLVL=
SFCRLHK<BR>  1.5    0.05                   WIAHAPLIARGWGVSLVSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1411><PRE>Top scoring peptide matches to query 1=
411<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1412><PRE>Top scoring peptide matches to query 1=
412<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.14         =
          IMQVIAMSKQQGVLQSSPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1413><PRE>Top scoring peptide matches to query 1=
413<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1414><PRE>Top scoring peptide matches to query 1=
414<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.6    0.14         =
          IPMPELERSQYPMEWGK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1415><PRE>Top scoring peptide matches to query 1=
415<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.09         =
          VYPLFGHYGRFQFNAFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1416><PRE>Top scoring peptide matches to query 1=
416<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1417><PRE>Top scoring peptide matches to query 1=
417<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1418><PRE>Top scoring peptide matches to query 1=
418<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1419><PRE>Top scoring peptide matches to query 1=
419<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.14         =
          LLCHLIEHSFEGMGGTFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1420><PRE>Top scoring peptide matches to query 1=
420<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3    0.08         =
          LHYHLGCLDPPLTRMPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1421><PRE>Top scoring peptide matches to query 1=
421<BR>Score greater than 15 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.09         =
          LHYHLGCLDPPLTRMPR<BR>  1.9    0.01                   YGLSPGPVTEST=
RPVYLKK<BR>  0.6    0.15                   LAFSCIWEMNHNAEILK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1422><PRE>Top scoring peptide matches to query 1=
422<BR>Score greater than 13 indicates homology<BR>Score greater than 27 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.0    0.09         =
          LAFSALGGGECGESLAELRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1423><PRE>Top scoring peptide matches to query 1=
423<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1424><PRE>Top scoring peptide matches to query 1=
424<BR>Score greater than 28 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1425><PRE>Top scoring peptide matches to query 1=
425<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1426><PRE>Top scoring peptide matches to query 1=
426<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1427><PRE>Top scoring peptide matches to query 1=
427<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1428><PRE>Top scoring peptide matches to query 1=
428<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1429><PRE>Top scoring peptide matches to query 1=
429<BR>Score greater than 13 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.09         =
          IIGFSTSVTALGFVLYKYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1430><PRE>Top scoring peptide matches to query 1=
430<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1431><PRE>Top scoring peptide matches to query 1=
431<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1432><PRE>Top scoring peptide matches to query 1=
432<BR>Score greater than 13 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.2    0.10         =
          TPAIPFASYGLHHTSLLKR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1433><PRE>Top scoring peptide matches to query 1=
433<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1434><PRE>Top scoring peptide matches to query 1=
434<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1435><PRE>Top scoring peptide matches to query 1=
435<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1436><PRE>Top scoring peptide matches to query 1=
436<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1437><PRE>Top scoring peptide matches to query 1=
437<BR>Score greater than 17 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 50.3    0.14  39 IPI:=
IPI00016742  GYTSWAIGLSVADLAESIMK<BR>  1.0    0.09                   QRLPFS=
APPGSVVEASSNLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1438><PRE>Top scoring peptide matches to query 1=
438<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1439><PRE>Top scoring peptide matches to query 1=
439<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1440><PRE>Top scoring peptide matches to query 1=
440<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1441><PRE>Top scoring peptide matches to query 1=
441<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1442><PRE>Top scoring peptide matches to query 1=
442<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1443><PRE>Top scoring peptide matches to query 1=
443<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.0    0.15   5 IPI:=
IPI00018231  GQGESDPLDHEPAVSPLLPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1444><PRE>Top scoring peptide matches to query 1=
444<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.2    0.03         =
          LIDLHTNVATAVLEHIKAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1445><PRE>Top scoring peptide matches to query 1=
445<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1446><PRE>Top scoring peptide matches to query 1=
446<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1447><PRE>Top scoring peptide matches to query 1=
447<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1448><PRE>Top scoring peptide matches to query 1=
448<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1449><PRE>Top scoring peptide matches to query 1=
449<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1450><PRE>Top scoring peptide matches to query 1=
450<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1451><PRE>Top scoring peptide matches to query 1=
451<BR>Score greater than 20 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.1   -0.01         =
          MGLGPLSSSLSPQLISSKVPK<BR>  7.1   -0.10                   MAQSLALS=
LLILVLAFGIPR<BR>  6.5    0.05                   SSYNISGGCTALIVICLLGK</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ1452><PRE>Top scoring peptide matches to query 1=
452<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.02         =
          AAQVLVQELEQYQLLPKR<BR>  5.0    0.08                   AATPQVAAELE=
KSLSPGLDTK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1453><PRE>Top scoring peptide matches to query 1=
453<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.4    0.07         =
          AAICQVDGALGFLVSTLTYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1454><PRE>Top scoring peptide matches to query 1=
454<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.1    0.11         =
          LVCAVDSNPPARLSWTWR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1455><PRE>Top scoring peptide matches to query 1=
455<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1456><PRE>Top scoring peptide matches to query 1=
456<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1457><PRE>Top scoring peptide matches to query 1=
457<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1458><PRE>Top scoring peptide matches to query 1=
458<BR>Score greater than 14 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1459><PRE>Top scoring peptide matches to query 1=
459<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1460><PRE>Top scoring peptide matches to query 1=
460<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1461><PRE>Top scoring peptide matches to query 1=
461<BR>Score greater than 13 indicates homology<BR>Score greater than 17 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.0    0.10         =
          TFLFRRPVLSLLYYEVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1462><PRE>Top scoring peptide matches to query 1=
462<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1463><PRE>Top scoring peptide matches to query 1=
463<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1464><PRE>Top scoring peptide matches to query 1=
464<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1465><PRE>Top scoring peptide matches to query 1=
465<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9    0.04         =
          KLSETEDSVIIIDSSPTALK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1466><PRE>Top scoring peptide matches to query 1=
466<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1467><PRE>Top scoring peptide matches to query 1=
467<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1468><PRE>Top scoring peptide matches to query 1=
468<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1469><PRE>Top scoring peptide matches to query 1=
469<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1470><PRE>Top scoring peptide matches to query 1=
470<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1471><PRE>Top scoring peptide matches to query 1=
471<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1472><PRE>Top scoring peptide matches to query 1=
472<BR>Score greater than 14 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 29.1    0.15  56 IPI:=
IPI00000952  TLWTVLDAIDQMWLPVVR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1473><PRE>Top scoring peptide matches to query 1=
473<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.9    0.13         =
          APAAFGLVSFLMHAGLERNR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1474><PRE>Top scoring peptide matches to query 1=
474<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1475><PRE>Top scoring peptide matches to query 1=
475<BR>Score greater than 14 indicates homology<BR>Score greater than 20 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.7    0.12         =
          WSLWEGGVRGVGFVASPLLK<BR>  2.7    0.09                   NIINWLVNV=
SQSIRQVFK<BR>  1.0    0.09                   AALQEELSDVLIYLVALAAR<BR>  0.6 =
   0.05                   VLLEHLETEVLLAPWVLLA</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1476><PRE>Top scoring peptide matches to query 1=
476<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1477><PRE>Top scoring peptide matches to query 1=
477<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1478><PRE>Top scoring peptide matches to query 1=
478<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1479><PRE>Top scoring peptide matches to query 1=
479<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1480><PRE>Top scoring peptide matches to query 1=
480<BR>Score greater than 15 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.5    0.03         =
          HSSILTPSVVIKLGTIVMLR<BR>  2.2    0.11                   GGGLPMTTE=
VLKSLAAPPALEK<BR>  1.8    0.12                   LSKSTAPSLALLADSEKPSHK<BR> =
 0.7    0.15                   ARWLTPVIPALWEAEAGGSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1481><PRE>Top scoring peptide matches to query 1=
481<BR>Score greater than 13 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.9    0.14         =
          KGLNVIGASDQSPLQSPSNLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1482><PRE>Top scoring peptide matches to query 1=
482<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1483><PRE>Top scoring peptide matches to query 1=
483<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1484><PRE>Top scoring peptide matches to query 1=
484<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1485><PRE>Top scoring peptide matches to query 1=
485<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1486><PRE>Top scoring peptide matches to query 1=
486<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1487><PRE>Top scoring peptide matches to query 1=
487<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1488><PRE>Top scoring peptide matches to query 1=
488<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1489><PRE>Top scoring peptide matches to query 1=
489<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1490><PRE>Top scoring peptide matches to query 1=
490<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1491><PRE>Top scoring peptide matches to query 1=
491<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1492><PRE>Top scoring peptide matches to query 1=
492<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1493><PRE>Top scoring peptide matches to query 1=
493<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.6    0.11         =
          MVNALENLAGIDRSDLIQAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1494><PRE>Top scoring peptide matches to query 1=
494<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1495><PRE>Top scoring peptide matches to query 1=
495<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1496><PRE>Top scoring peptide matches to query 1=
496<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1497><PRE>Top scoring peptide matches to query 1=
497<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1498><PRE>Top scoring peptide matches to query 1=
498<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1499><PRE>Top scoring peptide matches to query 1=
499<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1500><PRE>Top scoring peptide matches to query 1=
500<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1501><PRE>Top scoring peptide matches to query 1=
501<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1502><PRE>Top scoring peptide matches to query 1=
502<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.6    0.12         =
          MVNALENLAGIDRSDLIQAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1503><PRE>Top scoring peptide matches to query 1=
503<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1504><PRE>Top scoring peptide matches to query 1=
504<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1505><PRE>Top scoring peptide matches to query 1=
505<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1506><PRE>Top scoring peptide matches to query 1=
506<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1507><PRE>Top scoring peptide matches to query 1=
507<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1508><PRE>Top scoring peptide matches to query 1=
508<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1509><PRE>Top scoring peptide matches to query 1=
509<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1510><PRE>Top scoring peptide matches to query 1=
510<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.7    0.12  62 IPI:=
IPI00025777  ETVFTKSLYEEFTDHLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1511><PRE>Top scoring peptide matches to query 1=
511<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.7    0.12  62 IPI:=
IPI00025777  ETVFTKSLYEEFTDHLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1512><PRE>Top scoring peptide matches to query 1=
512<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1513><PRE>Top scoring peptide matches to query 1=
513<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.4    0.12  62 IPI:=
IPI00025777  ETVFTKSLYEEFTDHLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1514><PRE>Top scoring peptide matches to query 1=
514<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.7    0.13  62 IPI:=
IPI00025777  ETVFTKSLYEEFTDHLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1515><PRE>Top scoring peptide matches to query 1=
515<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1516><PRE>Top scoring peptide matches to query 1=
516<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.3    0.13  62 IPI:=
IPI00025777  ETVFTKSLYEEFTDHLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1517><PRE>Top scoring peptide matches to query 1=
517<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1518><PRE>Top scoring peptide matches to query 1=
518<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1519><PRE>Top scoring peptide matches to query 1=
519<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1520><PRE>Top scoring peptide matches to query 1=
520<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1521><PRE>Top scoring peptide matches to query 1=
521<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1522><PRE>Top scoring peptide matches to query 1=
522<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.7    0.10         =
          ESGKPVAVVAVVTEPWFTQR<BR>  0.3    0.07                   TAICNLILG=
NPPSKVYGNIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1523><PRE>Top scoring peptide matches to query 1=
523<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1524><PRE>Top scoring peptide matches to query 1=
524<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1525><PRE>Top scoring peptide matches to query 1=
525<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1526><PRE>Top scoring peptide matches to query 1=
526<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1527><PRE>Top scoring peptide matches to query 1=
527<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1528><PRE>Top scoring peptide matches to query 1=
528<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1529><PRE>Top scoring peptide matches to query 1=
529<BR>Score greater than 19 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.2    0.11         =
          LLAAACICLLTFVNCAYVK<BR>  6.4    0.14                   WALQTPTELQ=
GNITQIQMK<BR>  5.0    0.12                   VQVLDNQNVSNGCVSKILGR</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ1530><PRE>Top scoring peptide matches to query 1=
530<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1531><PRE>Top scoring peptide matches to query 1=
531<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1532><PRE>Top scoring peptide matches to query 1=
532<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.9    0.07         =
          HNIQKELCLHAAQGLVQLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1533><PRE>Top scoring peptide matches to query 1=
533<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1534><PRE>Top scoring peptide matches to query 1=
534<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1535><PRE>Top scoring peptide matches to query 1=
535<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1536><PRE>Top scoring peptide matches to query 1=
536<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1537><PRE>Top scoring peptide matches to query 1=
537<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1538><PRE>Top scoring peptide matches to query 1=
538<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1539><PRE>Top scoring peptide matches to query 1=
539<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1540><PRE>Top scoring peptide matches to query 1=
540<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1541><PRE>Top scoring peptide matches to query 1=
541<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.12         =
          MSDHKPLLTAISPGRGYWR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1542><PRE>Top scoring peptide matches to query 1=
542<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1543><PRE>Top scoring peptide matches to query 1=
543<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1544><PRE>Top scoring peptide matches to query 1=
544<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2    0.12         =
          QEALLHHVATIANTFRSHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1545><PRE>Top scoring peptide matches to query 1=
545<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1546><PRE>Top scoring peptide matches to query 1=
546<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1547><PRE>Top scoring peptide matches to query 1=
547<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.6    0.07         =
          VFQYGVKVVLQAMYLLWK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1548><PRE>Top scoring peptide matches to query 1=
548<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1549><PRE>Top scoring peptide matches to query 1=
549<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1550><PRE>Top scoring peptide matches to query 1=
550<BR>Score greater than 15 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3    0.13         =
          DKAFTDLNSINSVLGGGILDR<BR>  2.2    0.06                   QVTITGSA=
ASISLAQYLINVR<BR>  1.1   -0.03                   VLNQPQSLLVETVVVARALR<BR>  =
0.5    0.13                   GLGVDLLHPFEQVAGHGFVGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1551><PRE>Top scoring peptide matches to query 1=
551<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.7    0.11         =
          VLETKWNLLQQQTTTTSSK<BR>  0.1    0.04                   SGLTVDQLHG=
VLSVWRTLPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1552><PRE>Top scoring peptide matches to query 1=
552<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.0    0.13   1 IPI:=
IPI00019502  TRLQQELDDLLVDLDHQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1553><PRE>Top scoring peptide matches to query 1=
553<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.9    0.14   1 IPI:=
IPI00019502  TRLQQELDDLLVDLDHQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1554><PRE>Top scoring peptide matches to query 1=
554<BR>Score greater than 21 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 37.0    0.15   1 IPI:=
IPI00019502  TRLQQELDDLLVDLDHQR<BR>  6.4    0.15                   VLDIMPLT=
LHACMHQKQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1555><PRE>Top scoring peptide matches to query 1=
555<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1556><PRE>Top scoring peptide matches to query 1=
556<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2    0.12         =
          QAEAVTALEQQVASLDKHLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1557><PRE>Top scoring peptide matches to query 1=
557<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1558><PRE>Top scoring peptide matches to query 1=
558<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1559><PRE>Top scoring peptide matches to query 1=
559<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1560><PRE>Top scoring peptide matches to query 1=
560<BR>Score greater than 17 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.7    0.14         =
          GSVEICHVLLQAGANINAVDK<BR>  3.9    0.13                   LETLGINA=
DIRGISSDQLHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1561><PRE>Top scoring peptide matches to query 1=
561<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1562><PRE>Top scoring peptide matches to query 1=
562<BR>Score greater than 17 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.7    0.15         =
          GSVEICHVLLQAGANINAVDK<BR>  4.2    0.08                   EAVMLLLL=
LLMVMRMLVST<BR>  1.8    0.13                   MPSVQPPRSISPSALQDLLR</PRE></=
DIV>=0D
<DIV class=3Dtooltip id=3DQ1563><PRE>Top scoring peptide matches to query 1=
563<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1564><PRE>Top scoring peptide matches to query 1=
564<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1565><PRE>Top scoring peptide matches to query 1=
565<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1566><PRE>Top scoring peptide matches to query 1=
566<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1567><PRE>Top scoring peptide matches to query 1=
567<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.1   -0.01         =
          MTPILTVLICLGLSLGPRTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1568><PRE>Top scoring peptide matches to query 1=
568<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1569><PRE>Top scoring peptide matches to query 1=
569<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1570><PRE>Top scoring peptide matches to query 1=
570<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.5    0.09         =
          DVIIDQLPDLMGLKAVNVDK<BR>  0.6    0.11                   DWGTLQTIL=
GGVNKHSTSIGK<BR>  0.4    0.04                   MVLSQLLPMAEQLLEKIQK<BR>  0.=
4   -0.04                   IVQFIVTLVQNNQLVSLKR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1571><PRE>Top scoring peptide matches to query 1=
571<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1572><PRE>Top scoring peptide matches to query 1=
572<BR>Score greater than 17 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 14.4    0.09         =
          DLSFPKLIMITDYLLLFR<BR>  3.5    0.14                   MLKHENITTAA=
TEIIGAICK<BR>  0.2    0.07                   KILHVDNHIGISIAGLTADAR</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ1573><PRE>Top scoring peptide matches to query 1=
573<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6   -0.09         =
          RPKNIPIIVLPLTDNWVVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1574><PRE>Top scoring peptide matches to query 1=
574<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1575><PRE>Top scoring peptide matches to query 1=
575<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.2   -0.09         =
          RPKNIPIIVLPLTDNWVVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1576><PRE>Top scoring peptide matches to query 1=
576<BR>Score greater than 16 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.9    0.09         =
          RPSSLQSLFGLPEAAGARDSR<BR>  2.8   -0.13                   MPRATALG=
ALVSLLLLLPLPR<BR>  1.1    0.09                   DGETLEELMKLSPEELLLR<BR>  0=
.9   -0.06                   VAWRPYLAYLAGVLGILLAR<BR>  0.8    0.09         =
          IGDTAMALLPGGGQAQYVTVPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1577><PRE>Top scoring peptide matches to query 1=
577<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.9   -0.12         =
          MPRATALGALVSLLLLLPLPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1578><PRE>Top scoring peptide matches to query 1=
578<BR>Score greater than 14 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.2   -0.11         =
          MPRATALGALVSLLLLLPLPR<BR>  1.4    0.11                   IGDTAMAL=
LPGGGQAQYVTVPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1579><PRE>Top scoring peptide matches to query 1=
579<BR>Score greater than 15 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.6    0.11         =
          IGDTAMALLPGGGQAQYVTVPR<BR>  2.6   -0.11                   MPRATAL=
GALVSLLLLLPLPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1580><PRE>Top scoring peptide matches to query 1=
580<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1581><PRE>Top scoring peptide matches to query 1=
581<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.3    0.07         =
          ISMDIIKGNLDGISKPASNSR<BR>  0.5    0.07                   AVGSVFVS=
TLLTMAMPHWLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1582><PRE>Top scoring peptide matches to query 1=
582<BR>Score greater than 16 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.6    0.09         =
          MANEADLDEELVIKGSILQK<BR>  2.4    0.02                   MVVMPLAQI=
KQPMTLGTITK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1583><PRE>Top scoring peptide matches to query 1=
583<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1584><PRE>Top scoring peptide matches to query 1=
584<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1585><PRE>Top scoring peptide matches to query 1=
585<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.11         =
          MANEADLDEELVIKGSILQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1586><PRE>Top scoring peptide matches to query 1=
586<BR>Score greater than 16 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.4    0.11         =
          MANEADLDEELVIKGSILQK<BR>  2.7    0.04                   MVVMPLAQI=
KQPMTLGTITK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1587><PRE>Top scoring peptide matches to query 1=
587<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.4    0.09         =
          RPRSPPSSPVFFASPSPTFR<BR>  0.1    0.11                   TSTSGSSDL=
PKAPGGHLHLQAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1588><PRE>Top scoring peptide matches to query 1=
588<BR>Score greater than 15 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.8    0.09         =
          TYKFQLNITALDYPAPYAK<BR>  1.8    0.11                   IQFENVYNTF=
SPVFSRLR<BR>  0.2    0.11                   TSTSGSSDLPKAPGGHLHLQAR</PRE></D=
IV>=0D
<DIV class=3Dtooltip id=3DQ1589><PRE>Top scoring peptide matches to query 1=
589<BR>Score greater than 14 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.0    0.02         =
          GPVTKCLLLHEVPTGEIVVR<BR>  1.0    0.11                   TLQTAAQAT=
LRQTEPLTMAR<BR>  0.3    0.10                   KEDVISTLQYLNLINYYK</PRE></DI=
V>=0D
<DIV class=3Dtooltip id=3DQ1590><PRE>Top scoring peptide matches to query 1=
590<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.14         =
          YKPAVNQIECHPYLTQEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1591><PRE>Top scoring peptide matches to query 1=
591<BR>Score greater than 14 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  8.8    0.02         =
          EVLDVSLLFLRIISACANGK<BR>  1.1    0.02                   VVLSSAARG=
GLWGFSESLLIR<BR>  0.3    0.01                   TGTVLIPGTTQLTQKDILYR</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ1592><PRE>Top scoring peptide matches to query 1=
592<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1593><PRE>Top scoring peptide matches to query 1=
593<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.4    0.12         =
          FIDISPAEMANLMLQGLLAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1594><PRE>Top scoring peptide matches to query 1=
594<BR>Score greater than 13 indicates homology<BR>Score greater than 14 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.9    0.13         =
          VRVPENITLYTPILHTQAR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1595><PRE>Top scoring peptide matches to query 1=
595<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.1   -0.02         =
          TESLSLCLIGRALFLFILR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1596><PRE>Top scoring peptide matches to query 1=
596<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1597><PRE>Top scoring peptide matches to query 1=
597<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1598><PRE>Top scoring peptide matches to query 1=
598<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1599><PRE>Top scoring peptide matches to query 1=
599<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1600><PRE>Top scoring peptide matches to query 1=
600<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1601><PRE>Top scoring peptide matches to query 1=
601<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1602><PRE>Top scoring peptide matches to query 1=
602<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1603><PRE>Top scoring peptide matches to query 1=
603<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1604><PRE>Top scoring peptide matches to query 1=
604<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1605><PRE>Top scoring peptide matches to query 1=
605<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1606><PRE>Top scoring peptide matches to query 1=
606<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1607><PRE>Top scoring peptide matches to query 1=
607<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1608><PRE>Top scoring peptide matches to query 1=
608<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1609><PRE>Top scoring peptide matches to query 1=
609<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1610><PRE>Top scoring peptide matches to query 1=
610<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1611><PRE>Top scoring peptide matches to query 1=
611<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.3    0.14         =
          RTGCFPVPMVHSTFLIDLR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1612><PRE>Top scoring peptide matches to query 1=
612<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1613><PRE>Top scoring peptide matches to query 1=
613<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1614><PRE>Top scoring peptide matches to query 1=
614<BR>Score greater than 15 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 11.1    0.03         =
          SQRPVRWMLQDIQEVLNR<BR>  2.2   -0.13                   CLISLSTIILL=
GLIIVYHAR<BR>  2.0   -0.01                   MRPSGTAGAALLALLAALCPASR</PRE><=
/DIV>=0D
<DIV class=3Dtooltip id=3DQ1615><PRE>Top scoring peptide matches to query 1=
615<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.1    0.03         =
          WKGLDIDSSRPNVAPDGLSLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1616><PRE>Top scoring peptide matches to query 1=
616<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1617><PRE>Top scoring peptide matches to query 1=
617<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.1   -0.02         =
          VIKVYGPSTEPLLLLEEIEK<BR>  0.1    0.06                   LCKLPSFIS=
LQSSPSPGAQPR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1618><PRE>Top scoring peptide matches to query 1=
618<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 10.7    0.13         =
          SDAAMTVAVKMLKPSAHLTER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1619><PRE>Top scoring peptide matches to query 1=
619<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1620><PRE>Top scoring peptide matches to query 1=
620<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1621><PRE>Top scoring peptide matches to query 1=
621<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1622><PRE>Top scoring peptide matches to query 1=
622<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1623><PRE>Top scoring peptide matches to query 1=
623<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1624><PRE>Top scoring peptide matches to query 1=
624<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1625><PRE>Top scoring peptide matches to query 1=
625<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1626><PRE>Top scoring peptide matches to query 1=
626<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1627><PRE>Top scoring peptide matches to query 1=
627<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1628><PRE>Top scoring peptide matches to query 1=
628<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1629><PRE>Top scoring peptide matches to query 1=
629<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1630><PRE>Top scoring peptide matches to query 1=
630<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1631><PRE>Top scoring peptide matches to query 1=
631<BR>Score greater than 17 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.3   -0.02         =
          EETPTEGGALSLKPGLPIRGIR<BR>  4.2   -0.02                   LLSLSST=
VVTPMLNPIIYSSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1632><PRE>Top scoring peptide matches to query 1=
632<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1633><PRE>Top scoring peptide matches to query 1=
633<BR>Score greater than 14 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1634><PRE>Top scoring peptide matches to query 1=
634<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1635><PRE>Top scoring peptide matches to query 1=
635<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1636><PRE>Top scoring peptide matches to query 1=
636<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1637><PRE>Top scoring peptide matches to query 1=
637<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1638><PRE>Top scoring peptide matches to query 1=
638<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1639><PRE>Top scoring peptide matches to query 1=
639<BR>Score greater than 11 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1640><PRE>Top scoring peptide matches to query 1=
640<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1641><PRE>Top scoring peptide matches to query 1=
641<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1642><PRE>Top scoring peptide matches to query 1=
642<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1643><PRE>Top scoring peptide matches to query 1=
643<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1644><PRE>Top scoring peptide matches to query 1=
644<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1645><PRE>Top scoring peptide matches to query 1=
645<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1646><PRE>Top scoring peptide matches to query 1=
646<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1647><PRE>Top scoring peptide matches to query 1=
647<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1648><PRE>Top scoring peptide matches to query 1=
648<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1649><PRE>Top scoring peptide matches to query 1=
649<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1650><PRE>Top scoring peptide matches to query 1=
650<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1651><PRE>Top scoring peptide matches to query 1=
651<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1652><PRE>Top scoring peptide matches to query 1=
652<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.5    0.08         =
          LVGMENTSSHTTLIESVLMDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1653><PRE>Top scoring peptide matches to query 1=
653<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1654><PRE>Top scoring peptide matches to query 1=
654<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1655><PRE>Top scoring peptide matches to query 1=
655<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1656><PRE>Top scoring peptide matches to query 1=
656<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score  =
 Delta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1657><PRE>Top scoring peptide matches to query 1=
657<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1658><PRE>Top scoring peptide matches to query 1=
658<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1659><PRE>Top scoring peptide matches to query 1=
659<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1660><PRE>Top scoring peptide matches to query 1=
660<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1661><PRE>Top scoring peptide matches to query 1=
661<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1662><PRE>Top scoring peptide matches to query 1=
662<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1663><PRE>Top scoring peptide matches to query 1=
663<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1664><PRE>Top scoring peptide matches to query 1=
664<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1665><PRE>Top scoring peptide matches to query 1=
665<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1666><PRE>Top scoring peptide matches to query 1=
666<BR>Score greater than 27 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1667><PRE>Top scoring peptide matches to query 1=
667<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1668><PRE>Top scoring peptide matches to query 1=
668<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1669><PRE>Top scoring peptide matches to query 1=
669<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1670><PRE>Top scoring peptide matches to query 1=
670<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1671><PRE>Top scoring peptide matches to query 1=
671<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1672><PRE>Top scoring peptide matches to query 1=
672<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1673><PRE>Top scoring peptide matches to query 1=
673<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1674><PRE>Top scoring peptide matches to query 1=
674<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1675><PRE>Top scoring peptide matches to query 1=
675<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1676><PRE>Top scoring peptide matches to query 1=
676<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1677><PRE>Top scoring peptide matches to query 1=
677<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1678><PRE>Top scoring peptide matches to query 1=
678<BR>Score greater than 13 indicates homology<BR>Score greater than 19 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.11         =
          YLNLAMCNLREIPNLTPLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1679><PRE>Top scoring peptide matches to query 1=
679<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1680><PRE>Top scoring peptide matches to query 1=
680<BR>Score greater than 13 indicates homology<BR>Score greater than 20 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.03         =
          ILAVNGQSIINMPHADIVKLIK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1681><PRE>Top scoring peptide matches to query 1=
681<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1682><PRE>Top scoring peptide matches to query 1=
682<BR>Score greater than 14 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1683><PRE>Top scoring peptide matches to query 1=
683<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1684><PRE>Top scoring peptide matches to query 1=
684<BR>Score greater than 13 indicates homology<BR>Score greater than 18 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.10         =
          DILRIQFWIAAVIFLGMLEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1685><PRE>Top scoring peptide matches to query 1=
685<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1686><PRE>Top scoring peptide matches to query 1=
686<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1687><PRE>Top scoring peptide matches to query 1=
687<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1688><PRE>Top scoring peptide matches to query 1=
688<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1689><PRE>Top scoring peptide matches to query 1=
689<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1690><PRE>Top scoring peptide matches to query 1=
690<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1691><PRE>Top scoring peptide matches to query 1=
691<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1692><PRE>Top scoring peptide matches to query 1=
692<BR>Score greater than 3 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1693><PRE>Top scoring peptide matches to query 1=
693<BR>Score greater than 3 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1694><PRE>Top scoring peptide matches to query 1=
694<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1695><PRE>Top scoring peptide matches to query 1=
695<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1696><PRE>Top scoring peptide matches to query 1=
696<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1697><PRE>Top scoring peptide matches to query 1=
697<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1698><PRE>Top scoring peptide matches to query 1=
698<BR>Score greater than 13 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.12         =
          AGWLGMALVEFSPYLVWKQGAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1699><PRE>Top scoring peptide matches to query 1=
699<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1700><PRE>Top scoring peptide matches to query 1=
700<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1701><PRE>Top scoring peptide matches to query 1=
701<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1702><PRE>Top scoring peptide matches to query 1=
702<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1703><PRE>Top scoring peptide matches to query 1=
703<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1704><PRE>Top scoring peptide matches to query 1=
704<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1705><PRE>Top scoring peptide matches to query 1=
705<BR>Score greater than 13 indicates homology<BR>Score greater than 19 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.4    0.13         =
          GIPLATGDTSPEPELLPGAPLPPPK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1706><PRE>Top scoring peptide matches to query 1=
706<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1707><PRE>Top scoring peptide matches to query 1=
707<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1708><PRE>Top scoring peptide matches to query 1=
708<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1709><PRE>Top scoring peptide matches to query 1=
709<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1710><PRE>Top scoring peptide matches to query 1=
710<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1711><PRE>Top scoring peptide matches to query 1=
711<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1712><PRE>Top scoring peptide matches to query 1=
712<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1713><PRE>Top scoring peptide matches to query 1=
713<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1714><PRE>Top scoring peptide matches to query 1=
714<BR>Score greater than 17 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.1    0.06         =
          ELLQSCDVLGIPLSSVMIIDNR<BR>  3.7    0.01                   ALQCALA=
LEISSVTCPGVVLKDK<BR>  3.0    0.08                   TFDVALSEELHAALSEWLTAIR<=
BR>  2.8   -0.02                   SQLSKVVELSELSELELLSQIK<BR>  2.6    0.02 =
                  SILNSLSGEELETLKVELEQLK<BR>  1.2    0.10                  =
 LGLMSLQRPFQMSIDMGFKTR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1715><PRE>Top scoring peptide matches to query 1=
715<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1716><PRE>Top scoring peptide matches to query 1=
716<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1717><PRE>Top scoring peptide matches to query 1=
717<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1718><PRE>Top scoring peptide matches to query 1=
718<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1719><PRE>Top scoring peptide matches to query 1=
719<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1720><PRE>Top scoring peptide matches to query 1=
720<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1721><PRE>Top scoring peptide matches to query 1=
721<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1722><PRE>Top scoring peptide matches to query 1=
722<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  4.7    0.15         =
          GNPPHSAPCVPNGSALLLSNPAYR<BR>  0.3    0.15                   AQEEE=
AKVNEIAFINTLEAQNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1723><PRE>Top scoring peptide matches to query 1=
723<BR>Score greater than 23 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 12.3    0.02         =
          MATWALLLLAAMLLGNPGLVFSR<BR>  9.6   -0.01                   WLCALL=
GMIIVGVSILCIPFAK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1724><PRE>Top scoring peptide matches to query 1=
724<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1725><PRE>Top scoring peptide matches to query 1=
725<BR>Score greater than 20 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.7    0.06         =
          DGPRVTAVIMVMHSVLLGGEEQR<BR>  6.6    0.06                   CTGMII=
LGGGVVKHHIANANLMR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1726><PRE>Top scoring peptide matches to query 1=
726<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1727><PRE>Top scoring peptide matches to query 1=
727<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.0   -0.01         =
          AVAITVPLVVISAFATLFTVMCR<BR>  0.7    0.10                   MAAGAM=
TPPRPVQPARPGGFGLSGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1728><PRE>Top scoring peptide matches to query 1=
728<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1729><PRE>Top scoring peptide matches to query 1=
729<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1730><PRE>Top scoring peptide matches to query 1=
730<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1731><PRE>Top scoring peptide matches to query 1=
731<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.5    0.10         =
          EVTICGDLHGKLDDLFLIFYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1732><PRE>Top scoring peptide matches to query 1=
732<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1733><PRE>Top scoring peptide matches to query 1=
733<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1734><PRE>Top scoring peptide matches to query 1=
734<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.1    0.14         =
          MNFDVSNLKDNNEILSQQLFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1735><PRE>Top scoring peptide matches to query 1=
735<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.9    0.14         =
          MNFDVSNLKDNNEILSQQLFK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1736><PRE>Top scoring peptide matches to query 1=
736<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score  =
 Delta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1737><PRE>Top scoring peptide matches to query 1=
737<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1738><PRE>Top scoring peptide matches to query 1=
738<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1739><PRE>Top scoring peptide matches to query 1=
739<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1740><PRE>Top scoring peptide matches to query 1=
740<BR>Score greater than 11 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1741><PRE>Top scoring peptide matches to query 1=
741<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1742><PRE>Top scoring peptide matches to query 1=
742<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1743><PRE>Top scoring peptide matches to query 1=
743<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.3    0.00         =
          AFTKMASAPASYGSTTTKPMGLLSR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1744><PRE>Top scoring peptide matches to query 1=
744<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1745><PRE>Top scoring peptide matches to query 1=
745<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  5.9    0.03         =
          NYFLLMNLFTLQTLMWPHHR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1746><PRE>Top scoring peptide matches to query 1=
746<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1747><PRE>Top scoring peptide matches to query 1=
747<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1748><PRE>Top scoring peptide matches to query 1=
748<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1749><PRE>Top scoring peptide matches to query 1=
749<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.1    0.04         =
          ERGIFFVVVETESHSVTQAGVQR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1750><PRE>Top scoring peptide matches to query 1=
750<BR>Score greater than 26 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1751><PRE>Top scoring peptide matches to query 1=
751<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3    0.09         =
          HSKIWFGSNMGNGTVFLGIPGDNK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1752><PRE>Top scoring peptide matches to query 1=
752<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  6.3    0.04         =
          ILGPMFISQVYAHWGPRWAFSL<BR>  0.0   -0.06                   TKNWSLI=
GSVLGALIGVAGSTYVNR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1753><PRE>Top scoring peptide matches to query 1=
753<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1754><PRE>Top scoring peptide matches to query 1=
754<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1755><PRE>Top scoring peptide matches to query 1=
755<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1756><PRE>Top scoring peptide matches to query 1=
756<BR>Score greater than 15 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR> 38.6    0.13  42 IPI:=
IPI00024093  VIHDNFGIVEGLMTTVHAITATQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1757><PRE>Top scoring peptide matches to query 1=
757<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1758><PRE>Top scoring peptide matches to query 1=
758<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1759><PRE>Top scoring peptide matches to query 1=
759<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1760><PRE>Top scoring peptide matches to query 1=
760<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1761><PRE>Top scoring peptide matches to query 1=
761<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1762><PRE>Top scoring peptide matches to query 1=
762<BR>Score greater than 13 indicates homology<BR>Score greater than 17 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2    0.06         =
          WLAVCGIILVFLLAELNTFYLK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1763><PRE>Top scoring peptide matches to query 1=
763<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1764><PRE>Top scoring peptide matches to query 1=
764<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1765><PRE>Top scoring peptide matches to query 1=
765<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1766><PRE>Top scoring peptide matches to query 1=
766<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1767><PRE>Top scoring peptide matches to query 1=
767<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1768><PRE>Top scoring peptide matches to query 1=
768<BR>Score greater than 7 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1769><PRE>Top scoring peptide matches to query 1=
769<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1770><PRE>Top scoring peptide matches to query 1=
770<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1771><PRE>Top scoring peptide matches to query 1=
771<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1772><PRE>Top scoring peptide matches to query 1=
772<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1773><PRE>Top scoring peptide matches to query 1=
773<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1774><PRE>Top scoring peptide matches to query 1=
774<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1775><PRE>Top scoring peptide matches to query 1=
775<BR>Score greater than 11 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1776><PRE>Top scoring peptide matches to query 1=
776<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1777><PRE>Top scoring peptide matches to query 1=
777<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1778><PRE>Top scoring peptide matches to query 1=
778<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1779><PRE>Top scoring peptide matches to query 1=
779<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1780><PRE>Top scoring peptide matches to query 1=
780<BR>Score greater than 18 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1781><PRE>Top scoring peptide matches to query 1=
781<BR>Score greater than 13 indicates homology<BR>Score greater than 18 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.8    0.15         =
          LPRPAGYPSTVSTVEGHGPPLSPAIR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1782><PRE>Top scoring peptide matches to query 1=
782<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1783><PRE>Top scoring peptide matches to query 1=
783<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1784><PRE>Top scoring peptide matches to query 1=
784<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1785><PRE>Top scoring peptide matches to query 1=
785<BR>Score greater than 15 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  9.1   -0.01         =
          LTAVIGDEDTVTGFLLGGIGELNKNR<BR>  2.4   -0.03                   EVV=
CMTLLENSIKLLAVQELLDR<BR>  0.6   -0.15                   SKRPIPISTTAPPVQTPLP=
VIPHQK<BR>  0.4    0.08                   KSNEQATSLNTVGGTGGIGGVGGTGGVGNR</P=
RE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1786><PRE>Top scoring peptide matches to query 1=
786<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1787><PRE>Top scoring peptide matches to query 1=
787<BR>Score greater than 13 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.6   -0.00         =
          LTAVIGDEDTVTGFLLGGIGELNKNR<BR>  0.1   -0.14                   SKR=
PIPISTTAPPVQTPLPVIPHQK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1788><PRE>Top scoring peptide matches to query 1=
788<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1789><PRE>Top scoring peptide matches to query 1=
789<BR>Score greater than 16 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  7.1   -0.12         =
          SKRPIPISTTAPPVQTPLPVIPHQK<BR>  2.9    0.02                   LTAV=
IGDEDTVTGFLLGGIGELNKNR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1790><PRE>Top scoring peptide matches to query 1=
790<BR>Score greater than 15 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.3    0.14         =
          KSNEQATSLNTVGGTGGIGGVGGTGGVGNR<BR>  2.0    0.05                  =
 LLEAGPTQFTTPLASFTTVASEPPVK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1791><PRE>Top scoring peptide matches to query 1=
791<BR>Score greater than 13 indicates homology<BR>Score greater than 26 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  3.9    0.03         =
          IDLSSENELASTVSTPVSKTAELSPK<BR>  0.6    0.12                   ESL=
YCAQRNPADPIAQVHQAFCK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1792><PRE>Top scoring peptide matches to query 1=
792<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1793><PRE>Top scoring peptide matches to query 1=
793<BR>Score greater than 14 indicates homology<BR>Score greater than 25 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.1   -0.12         =
          HRVLTLSPLPQLHQVLVQLQAGEK<BR>  0.9    0.08                   ATVTQ=
MEHHHLFSNILDVLGASQR<BR>  0.4    0.00                   TALPVIKGSMMVLNQLSNLE=
TTVGR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1794><PRE>Top scoring peptide matches to query 1=
794<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1795><PRE>Top scoring peptide matches to query 1=
795<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1796><PRE>Top scoring peptide matches to query 1=
796<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1797><PRE>Top scoring peptide matches to query 1=
797<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1798><PRE>Top scoring peptide matches to query 1=
798<BR>Score greater than 13 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.7   -0.10         =
          HRVLTLSPLPQLHQVLVQLQAGEK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1799><PRE>Top scoring peptide matches to query 1=
799<BR>Score greater than 14 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2   -0.09         =
          HRVLTLSPLPQLHQVLVQLQAGEK<BR>  1.3    0.13                   FLQWN=
SMPRLPTDLDVEGPWFR<BR>  0.8   -0.08                   NAISLPVIGGPQALTLPTAQAP=
PKPPR<BR>  0.8    0.14                   RIFTTTHTPNCLFQDVDESPAVR</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ1800><PRE>Top scoring peptide matches to query 1=
800<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1801><PRE>Top scoring peptide matches to query 1=
801<BR>Score greater than 14 indicates homology<BR>Score greater than 24 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  2.2   -0.08         =
          HRVLTLSPLPQLHQVLVQLQAGEK<BR>  1.4    0.15                   FLQWN=
SMPRLPTDLDVEGPWFR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1802><PRE>Top scoring peptide matches to query 1=
802<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1803><PRE>Top scoring peptide matches to query 1=
803<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1804><PRE>Top scoring peptide matches to query 1=
804<BR>Score greater than 7 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1805><PRE>Top scoring peptide matches to query 1=
805<BR>Score greater than 9 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1806><PRE>Top scoring peptide matches to query 1=
806<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1807><PRE>Top scoring peptide matches to query 1=
807<BR>Score greater than 13 indicates homology<BR>Score greater than 20 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3    0.01         =
          MIVITSILSSLAGLLLLAFLAASTMR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1808><PRE>Top scoring peptide matches to query 1=
808<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1809><PRE>Top scoring peptide matches to query 1=
809<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1810><PRE>Top scoring peptide matches to query 1=
810<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1811><PRE>Top scoring peptide matches to query 1=
811<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1812><PRE>Top scoring peptide matches to query 1=
812<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1813><PRE>Top scoring peptide matches to query 1=
813<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1814><PRE>Top scoring peptide matches to query 1=
814<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1815><PRE>Top scoring peptide matches to query 1=
815<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1816><PRE>Top scoring peptide matches to query 1=
816<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1817><PRE>Top scoring peptide matches to query 1=
817<BR>Score greater than 11 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1818><PRE>Top scoring peptide matches to query 1=
818<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B><BR>  8.3    0.01                   MFLILYLKLISLLLQTLQLVPWR</PRE></DIV=
>=0D
<DIV class=3Dtooltip id=3DQ1819><PRE>Top scoring peptide matches to query 1=
819<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1820><PRE>Top scoring peptide matches to query 1=
820<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1821><PRE>Top scoring peptide matches to query 1=
821<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1822><PRE>Top scoring peptide matches to query 1=
822<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1823><PRE>Top scoring peptide matches to query 1=
823<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1824><PRE>Top scoring peptide matches to query 1=
824<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1825><PRE>Top scoring peptide matches to query 1=
825<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1826><PRE>Top scoring peptide matches to query 1=
826<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1827><PRE>Top scoring peptide matches to query 1=
827<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1828><PRE>Top scoring peptide matches to query 1=
828<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1829><PRE>Top scoring peptide matches to query 1=
829<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1830><PRE>Top scoring peptide matches to query 1=
830<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1831><PRE>Top scoring peptide matches to query 1=
831<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1832><PRE>Top scoring peptide matches to query 1=
832<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1833><PRE>Top scoring peptide matches to query 1=
833<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1834><PRE>Top scoring peptide matches to query 1=
834<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1835><PRE>Top scoring peptide matches to query 1=
835<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1836><PRE>Top scoring peptide matches to query 1=
836<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1837><PRE>Top scoring peptide matches to query 1=
837<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1838><PRE>Top scoring peptide matches to query 1=
838<BR>Score greater than 25 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1839><PRE>Top scoring peptide matches to query 1=
839<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1840><PRE>Top scoring peptide matches to query 1=
840<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1841><PRE>Top scoring peptide matches to query 1=
841<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1842><PRE>Top scoring peptide matches to query 1=
842<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1843><PRE>Top scoring peptide matches to query 1=
843<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1844><PRE>Top scoring peptide matches to query 1=
844<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1845><PRE>Top scoring peptide matches to query 1=
845<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1846><PRE>Top scoring peptide matches to query 1=
846<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1847><PRE>Top scoring peptide matches to query 1=
847<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1848><PRE>Top scoring peptide matches to query 1=
848<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1849><PRE>Top scoring peptide matches to query 1=
849<BR>Score greater than 16 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1850><PRE>Top scoring peptide matches to query 1=
850<BR>Score greater than 13 indicates homology<BR>Score greater than 16 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.7    0.12         =
          LLFPIFASLMLQYQVNTEFIGLRR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1851><PRE>Top scoring peptide matches to query 1=
851<BR>Score greater than 4 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1852><PRE>Top scoring peptide matches to query 1=
852<BR>Score greater than 24 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1853><PRE>Top scoring peptide matches to query 1=
853<BR>Score greater than 13 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.8    0.04         =
          GYPKPLAELPGRPPIFWPGVVQGAPWR<BR>  0.8    0.14                   LH=
TYLDTLFCLTSIFHLCFISIDR</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1854><PRE>Top scoring peptide matches to query 1=
854<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1855><PRE>Top scoring peptide matches to query 1=
855<BR>Score greater than 13 indicates homology<BR>Score greater than 19 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.8    0.00         =
          MGLSAAAPLWGPPGLLLAIALHPALSVPPR<BR>  0.0   -0.02                  =
 RTVEAVQLNQALLLLPWTMHALVILK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1856><PRE>Top scoring peptide matches to query 1=
856<BR>Score greater than 9 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1857><PRE>Top scoring peptide matches to query 1=
857<BR>Score greater than 9 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1858><PRE>Top scoring peptide matches to query 1=
858<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1859><PRE>Top scoring peptide matches to query 1=
859<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1860><PRE>Top scoring peptide matches to query 1=
860<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1861><PRE>Top scoring peptide matches to query 1=
861<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1862><PRE>Top scoring peptide matches to query 1=
862<BR>Score greater than 4 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1863><PRE>Top scoring peptide matches to query 1=
863<BR>Score greater than 4 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1864><PRE>Top scoring peptide matches to query 1=
864<BR>Score greater than 4 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1865><PRE>Top scoring peptide matches to query 1=
865<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1866><PRE>Top scoring peptide matches to query 1=
866<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1867><PRE>Top scoring peptide matches to query 1=
867<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1868><PRE>Top scoring peptide matches to query 1=
868<BR>Score greater than 9 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1869><PRE>Top scoring peptide matches to query 1=
869<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1870><PRE>Top scoring peptide matches to query 1=
870<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1871><PRE>Top scoring peptide matches to query 1=
871<BR>Score greater than 14 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1872><PRE>Top scoring peptide matches to query 1=
872<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1873><PRE>Top scoring peptide matches to query 1=
873<BR>Score greater than 11 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1874><PRE>Top scoring peptide matches to query 1=
874<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score  =
 Delta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1875><PRE>Top scoring peptide matches to query 1=
875<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1876><PRE>Top scoring peptide matches to query 1=
876<BR><I>Status bar shows all hits for this peptide</I><BR> <BR><B>Score  =
 Delta  Hit    Protein   Peptide</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1877><PRE>Top scoring peptide matches to query 1=
877<BR>Score greater than 4 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1878><PRE>Top scoring peptide matches to query 1=
878<BR>Score greater than 4 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1879><PRE>Top scoring peptide matches to query 1=
879<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1880><PRE>Top scoring peptide matches to query 1=
880<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1881><PRE>Top scoring peptide matches to query 1=
881<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1882><PRE>Top scoring peptide matches to query 1=
882<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1883><PRE>Top scoring peptide matches to query 1=
883<BR>Score greater than 13 indicates homology<BR>Score greater than 21 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3   -0.04         =
          IGIYIGAGICAGLALALIFGALIFKWYSHSK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1884><PRE>Top scoring peptide matches to query 1=
884<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1885><PRE>Top scoring peptide matches to query 1=
885<BR>Score greater than 7 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1886><PRE>Top scoring peptide matches to query 1=
886<BR>Score greater than 10 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1887><PRE>Top scoring peptide matches to query 1=
887<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1888><PRE>Top scoring peptide matches to query 1=
888<BR>Score greater than 8 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1889><PRE>Top scoring peptide matches to query 1=
889<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1890><PRE>Top scoring peptide matches to query 1=
890<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1891><PRE>Top scoring peptide matches to query 1=
891<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1892><PRE>Top scoring peptide matches to query 1=
892<BR>Score greater than 6 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1893><PRE>Top scoring peptide matches to query 1=
893<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1894><PRE>Top scoring peptide matches to query 1=
894<BR>Score greater than 8 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1895><PRE>Top scoring peptide matches to query 1=
895<BR>Score greater than 11 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1896><PRE>Top scoring peptide matches to query 1=
896<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1897><PRE>Top scoring peptide matches to query 1=
897<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1898><PRE>Top scoring peptide matches to query 1=
898<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1899><PRE>Top scoring peptide matches to query 1=
899<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1900><PRE>Top scoring peptide matches to query 1=
900<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1901><PRE>Top scoring peptide matches to query 1=
901<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1902><PRE>Top scoring peptide matches to query 1=
902<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1903><PRE>Top scoring peptide matches to query 1=
903<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1904><PRE>Top scoring peptide matches to query 1=
904<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1905><PRE>Top scoring peptide matches to query 1=
905<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1906><PRE>Top scoring peptide matches to query 1=
906<BR>Score greater than 13 indicates homology<BR>Score greater than 23 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.8    0.05         =
          SQALAVYKAFTVDSPVQQALWCDFIISQDK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1907><PRE>Top scoring peptide matches to query 1=
907<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1908><PRE>Top scoring peptide matches to query 1=
908<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1909><PRE>Top scoring peptide matches to query 1=
909<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1910><PRE>Top scoring peptide matches to query 1=
910<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1911><PRE>Top scoring peptide matches to query 1=
911<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1912><PRE>Top scoring peptide matches to query 1=
912<BR>Score greater than 23 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1913><PRE>Top scoring peptide matches to query 1=
913<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.5    0.02         =
          FVSMWMARTSYLAAFAIMVIFTLSVSMLLR<BR>  0.6   -0.00                  =
 ITRSILQMSLDHHIVTPLTSLVIENEAGDER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1914><PRE>Top scoring peptide matches to query 1=
914<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.6    0.01         =
          ITRSILQMSLDHHIVTPLTSLVIENEAGDER</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1915><PRE>Top scoring peptide matches to query 1=
915<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  0.3   -0.01         =
          DLLLQTRLVNHVSSMRPNIFLGVSEGSAQYK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1916><PRE>Top scoring peptide matches to query 1=
916<BR>Score greater than 13 indicates homology<BR>Score greater than 22 in=
dicates identity<BR><I>Status bar shows all hits for this peptide</I><BR> <=
BR><B>Score   Delta  Hit    Protein   Peptide</B><BR>  1.7    0.04         =
          ALEQELPGAVFILCDVTQEDDVKTLVSETIR<BR>  1.7   -0.01                 =
  GQEDLILSYEPVTRQEINYTRPVIILGPMK</PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1917><PRE>Top scoring peptide matches to query 1=
917<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1918><PRE>Top scoring peptide matches to query 1=
918<BR>Score greater than 22 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1919><PRE>Top scoring peptide matches to query 1=
919<BR>Score greater than 7 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1920><PRE>Top scoring peptide matches to query 1=
920<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1921><PRE>Top scoring peptide matches to query 1=
921<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1922><PRE>Top scoring peptide matches to query 1=
922<BR>Score greater than 7 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1923><PRE>Top scoring peptide matches to query 1=
923<BR>Score greater than 10 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1924><PRE>Top scoring peptide matches to query 1=
924<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1925><PRE>Top scoring peptide matches to query 1=
925<BR>Score greater than 13 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1926><PRE>Top scoring peptide matches to query 1=
926<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1927><PRE>Top scoring peptide matches to query 1=
927<BR>Score greater than 15 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1928><PRE>Top scoring peptide matches to query 1=
928<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1929><PRE>Top scoring peptide matches to query 1=
929<BR>Score greater than 12 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1930><PRE>Top scoring peptide matches to query 1=
930<BR>Score greater than 4 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1931><PRE>Top scoring peptide matches to query 1=
931<BR>Score greater than 7 indicates identity<BR><I>Status bar shows all h=
its for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptide=
</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1932><PRE>Top scoring peptide matches to query 1=
932<BR>Score greater than 21 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1933><PRE>Top scoring peptide matches to query 1=
933<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1934><PRE>Top scoring peptide matches to query 1=
934<BR>Score greater than 11 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1935><PRE>Top scoring peptide matches to query 1=
935<BR>Score greater than 10 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1936><PRE>Top scoring peptide matches to query 1=
936<BR>Score greater than 17 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1937><PRE>Top scoring peptide matches to query 1=
937<BR>Score greater than 19 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV>=0D
<DIV class=3Dtooltip id=3DQ1938><PRE>Top scoring peptide matches to query 1=
938<BR>Score greater than 20 indicates identity<BR><I>Status bar shows all =
hits for this peptide</I><BR> <BR><B>Score   Delta  Hit    Protein   Peptid=
e</B></PRE></DIV></BODY></HTML>=0D

--=-gzrGQ4R79GHmZRmqApta--