Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 2762
Image: ubuntu2004
Kernel: Python 3 (system-wide)
#import necessary libraries import re import argparse
#use argparse to define command lines parser=argparse.ArgumentParser() parser.add_argument("-f","--filename", help="name of the input file") parser.add_argument("-imz", "--minimum_mass_to_charge_ratio_range", help="the minimum number of mass-to-charge of the peptide fragment", type=float,default=1000) parser.add_argument("-amz", "--maximum_mass_to_charge_ratio_range", help="the maximum number of mass-to-charge of the peptide fragment", type=float,default=1500) parser.add_argument("-w", "--window_size", help="size of the sliding window", type=float, default=0.1) parser.add_argument("-s", "--step_size", help="size of steps the sliding window slides(must be smaller than window size)", type=float, default=0.05) parser.add_argument("-m", "--match_pattern", help="how the input amino acid matches the sequence", choices=['start with','contain']) parser.add_argument("-p", "--peptide_matches_sequence", help="input peptide matching the sequence", choices=['K','N','R','T','S','I','M','Q','H','P','L','E','D','A','G','V','Y','S','C','W','F']) args = parser.parse_args()
usage: __main__.py [-h] [-f FILENAME] [-imz MINIMUM_MASS_TO_CHARGE_RATIO_RANGE] [-amz MAXIMUM_MASS_TO_CHARGE_RATIO_RANGE] [-w WINDOW_SIZE] [-s STEP_SIZE] [-m {start with,contain}] [-p {K,N,R,T,S,I,M,Q,H,P,L,E,D,A,G,V,Y,S,C,W,F}] __main__.py: error: unrecognized arguments: --matplotlib=inline -c %config InlineBackend.figure_formats = set(['retina']) import matplotlib; matplotlib.rcParams['figure.figsize'] = (12, 7)
An exception has occurred, use %tb to see the full traceback. SystemExit: 2
/usr/local/lib/python3.8/dist-packages/IPython/core/interactiveshell.py:3426: UserWarning: To exit: use 'exit', 'quit', or Ctrl-D. warn("To exit: use 'exit', 'quit', or Ctrl-D.", stacklevel=1)
filename=input('Enter name of the peptide ion masses file: ') # input file name protein_name=[] #list of useful elements mass_to_charge=[] sequence=[] create_file="task4.csv" output=open(create_file,'w') def readfile(filename): #define a function to read file and store data readfile=open(filename,'r') lines=readfile.readlines() for line in lines: data=line.split() protein_name.append(data[0]) mass_to_charge.append(data[2]) sequence.append(data[5]) min_mz=float(input("the minimum mass to charge ratio is:")) max_mz=float(input("the maximum mass to charge ratio is:")) def count_num(min_mz,max_mz): #define a function to count number of peptides count_pep=0 list1=[] list2=[] list3=[] global output for m in mass_to_charge: #use defined list mass_to_charge, loops and if statement to count mz=float(m) if ((min_mz<mz)&(mz<max_mz)): count_pep+=1 if count_pep==1: print("There is ",count_pep," peptide within the mass to charge range of ", min_mz," and ",max_mz) elif count_pep!=0: print("There are ",count_pep," peptides within the mass to charge range of ", min_mz," and ",max_mz) list1.append(min_mz) list2.append(max_mz) list3.append(count_pep) for i in zip(list1,list2,list3): output.write(str(i[0])+'\t'+str(i[1])+'\t'+str(i[2])+'\n') return count_pep def find_protein(): #define a function to find unique protein new_pr=list(set(protein_name)) #remove the duplication of protein new_pr.sort(key=protein_name.index) mz_num={} rep_mz=[] i_mz=[] rep_pr=[] uni_pr=[] list1=[] list2=[] global output for i in range(len(mass_to_charge)): #record the frequency of mass_to_charge if mass_to_charge[i] in mz_num: mz_num[mass_to_charge[i]]+=1 else: mz_num[mass_to_charge[i]]=1 for key in mz_num: #a list containing all duplicated m/z if mz_num[key]!=1: rep_mz.append(key) for mz in rep_mz: #find the index of duplicated m/z and store correspond protein name i_mz.append(mass_to_charge.index(mz)) for im in i_mz: rep_pr.append(protein_name[im]) new_rep=list(set(rep_pr)) new_rep.sort(key=rep_pr.index) #remove the duplication of duplicated protein name for pr in new_pr: if pr not in new_rep: uni_pr.append(pr) #put element(s) in unique if len(uni_pr)==1: print(" ".join(str(i) for i in uni_pr)," has been unambiguously identified in all proteins") else: print(",".join(str(i) for i in uni_pr)," have been unambiguously identified in all proteins") list1.append("unique proteins:") for i in uni_pr: list1.append(" ") list2.append(uni_pr[i] for i in uni_pr) for i in zip(list1,list2): output.write(str(i[0])+'\t'+str(i[1])+'\n') pep_find=input("looking for peptide: ") #input matching peptide and pattern match_pattern=input("the sequences start with or contain the peptide?(enter 'start with' or 'contain') ") def match_peptide(pep_find,match_pattern): #define a function to match peptide match=[] list1=[] list2=[] global output if match_pattern=="start with": #differentiate different match pattern for s in sequence: if s.startswith(pep_find): match.append(s) if len(match)==0: print("There is no sequence starts with ",pep_find," in all peptides.") else: for s in sequence: if pep_find in s: match.append(s) if len(match)==0: print("There is no sequence contains ",pep_find," in all peptides.") if len(match)==1: print("There is ",len(match)," sequence ",match_pattern, pep_find," in all peptides.") else: print("There are ",len(match)," sequences ",match_pattern, pep_find," in all peptides.") list1.append("number of matched sequence") list2.append(len(match)) for i in zip(list1,list2): output.write(str(i[0])+'\t'+str(i[1])+'\n') readfile(filename) window_size=float(input("the size of window is: ")) step_size=float(input("the size of step is(must be smaller than window size):")) count_num(min_mz,max_mz) while min_mz<max_mz: window=min_mz+window_size count_num(min_mz,window) min_mz+=step_size find_protein() match_peptide(pep_find,match_pattern) output.close()
Enter name of the peptide ion masses file:
the minimum mass to charge ratio is:
the maximum mass to charge ratio is:
looking for peptide:
the sequences start with or contain the peptide?(enter 'start with' or 'contain')
the size of window is:
the size of step is(must be smaller than window size):
There are 34 peptides within the mass to charge range of 1000.0 and 1200.0 There are 2 peptides within the mass to charge range of 1000.0 and 1005.0 There is 1 peptide within the mass to charge range of 1003.0 and 1008.0 There is 1 peptide within the mass to charge range of 1006.0 and 1011.0 There is 1 peptide within the mass to charge range of 1009.0 and 1014.0 There are 2 peptides within the mass to charge range of 1012.0 and 1017.0 There is 1 peptide within the mass to charge range of 1015.0 and 1020.0 There is 1 peptide within the mass to charge range of 1024.0 and 1029.0 There is 1 peptide within the mass to charge range of 1027.0 and 1032.0 There are 3 peptides within the mass to charge range of 1030.0 and 1035.0 There are 3 peptides within the mass to charge range of 1033.0 and 1038.0 There is 1 peptide within the mass to charge range of 1036.0 and 1041.0 There is 1 peptide within the mass to charge range of 1039.0 and 1044.0 There is 1 peptide within the mass to charge range of 1042.0 and 1047.0 There are 2 peptides within the mass to charge range of 1045.0 and 1050.0 There is 1 peptide within the mass to charge range of 1051.0 and 1056.0 There are 2 peptides within the mass to charge range of 1054.0 and 1059.0 There is 1 peptide within the mass to charge range of 1057.0 and 1062.0 There are 2 peptides within the mass to charge range of 1060.0 and 1065.0 There are 3 peptides within the mass to charge range of 1063.0 and 1068.0 There is 1 peptide within the mass to charge range of 1069.0 and 1074.0 There is 1 peptide within the mass to charge range of 1072.0 and 1077.0 There is 1 peptide within the mass to charge range of 1108.0 and 1113.0 There is 1 peptide within the mass to charge range of 1111.0 and 1116.0 There is 1 peptide within the mass to charge range of 1114.0 and 1119.0 There are 2 peptides within the mass to charge range of 1117.0 and 1122.0 There is 1 peptide within the mass to charge range of 1120.0 and 1125.0 There is 1 peptide within the mass to charge range of 1123.0 and 1128.0 There is 1 peptide within the mass to charge range of 1129.0 and 1134.0 There is 1 peptide within the mass to charge range of 1132.0 and 1137.0 There is 1 peptide within the mass to charge range of 1135.0 and 1140.0 There are 2 peptides within the mass to charge range of 1138.0 and 1143.0 There is 1 peptide within the mass to charge range of 1141.0 and 1146.0 There are 2 peptides within the mass to charge range of 1144.0 and 1149.0 There is 1 peptide within the mass to charge range of 1147.0 and 1152.0 There is 1 peptide within the mass to charge range of 1150.0 and 1155.0 There is 1 peptide within the mass to charge range of 1153.0 and 1158.0 There is 1 peptide within the mass to charge range of 1174.0 and 1179.0 There is 1 peptide within the mass to charge range of 1177.0 and 1182.0 There is 1 peptide within the mass to charge range of 1183.0 and 1188.0 There is 1 peptide within the mass to charge range of 1186.0 and 1191.0 YCR063W,STE50,YCL032W have been unambiguously identified in all proteins There are 260 sequences contain K in all peptides.
import pandas as pd list=[[1,2,3],[4,5,6],[7,8,9]] column=['column1','column2','column3'] test=pd.DataFrame(columns=column,data=list) test.to_csv
list1=[1,2,3,4,5] list2=[4,5,6] list3=[] list3.append(list1) list3.append(list2) for i in list1: print(list1[i],list2[i]) print(list3)
2 5 3 6
--------------------------------------------------------------------------- IndexError Traceback (most recent call last) <ipython-input-8-6d27035ade48> in <module> 5 list3.append(list2) 6 for i in list1: ----> 7 print(list1[i],list2[i]) 8 print(list3) IndexError: list index out of range
File "<ipython-input-2-858119bd1d17>", line 17 help="how the input amino acid matches the sequence", choices=['start with','contain'],default='contain') ^ SyntaxError: invalid character in identifier
#import necessary libraries import argparse #use argparse to define command lines parser=argparse.ArgumentParser() parser.add_argument("-f","--filename", help="name of the input file",required=True) parser.add_argument("-i", "--minimum_mass_to_charge_ratio_range", help="the minimum range of mass-to-charge of the peptide fragment", type=float,default=1000) parser.add_argument("-a", "--maximum_mass_to_charge_ratio_range", help="the maximum range of mass-to-charge of the peptide fragment", type=float,default=1500) parser.add_argument("-w", "--window_size", help="size of the sliding window", type=float, default=1) parser.add_argument("-s", "--step_size", help="size of steps the sliding window slides(must be smaller than window size)", type=float, default=0.5) parser.add_argument("-m", "--match_pattern", help="how the input amino acid matches the sequence", choices=['start with','contain'],default='contain') parser.add_argument("-p", "--amino_acid_matches_sequence", help="input amino acid matching the sequence", choices=['K','N','R','T','S','I','M','Q','H','P','L','E','D','A','G','V','Y','S','C','W','F'], required=True) parser.add_argument("-c","--create_file", help="name of the output file",required=True) args = parser.parse_args() filename=args.filename min_mz=args.minimum_mass_to_charge_ratio_range max_mz=args.maximum_mass_to_charge_ratio_range window_size=args.window_size step_size=args.step_size match_pattern=args.match_pattern pep_find=args.peptide_matches_sequence create_file=args.create_file protein_name=[] #lists of useful elements mass_to_charge=[] sequence=[] create_file="task4.csv" #create a file to store the output output=open(create_file,'w') def readfile(filename): #define a function to read file and store data readfile=open(filename,'r') lines=readfile.readlines() for line in lines: data=line.split() #use split to handle the data protein_name.append(data[0]) mass_to_charge.append(data[2]) sequence.append(data[5]) def count_num(min_mz,max_mz): #define a function to count number of peptides count_pep=0 list1=[] #use lists to store output data list2=[] list3=[] global output for m in mass_to_charge: #use defined list mass_to_charge, loops and if statement to count mz=float(m) if ((min_mz<mz)&(mz<max_mz)): count_pep+=1 if count_pep==1: print("mass range:", "minimum:",min_mz,", maximum:",max_mz," count:",count_pep) elif count_pep!=0: print("There are ",count_pep," peptides within the mass to charge range of ", min_mz," and ",max_mz) list1.append(min_mz) list2.append(max_mz) list3.append(count_pep) for i in zip(list1,list2,list3): output.write(str(i[0])+'\t'+str(i[1])+'\t'+str(i[2])+'\n') return count_pep def count_num_ppm(min_mz,ppm): #define a function to count number of peptides count_pep=0 window = min_mz * ppm / 1000000.0 max_mz = min_mz + window for m in mass_to_charge: #use defined list mass_to_charge, loops and if statement to count mz=float(m) if ((min_mz<mz)&(mz<max_mz)): count_pep+=1 if count_pep==1: print("mass range:", "minimum:",min_mz,", maximum:",max_mz," count:",count_pep) elif count_pep!=0: print("There are ",count_pep," peptides within the mass to charge range of ", min_mz," and ",max_mz) return count_pep def find_protein(): #define a function to find unique protein new_pr=list(set(protein_name)) #remove the duplication of protein new_pr.sort(key=protein_name.index) mz_num={} rep_mz=[] i_mz=[] rep_pr=[] uni_pr=[] list1=[] list2=[] global output for i in range(len(mass_to_charge)): #record the frequency of mass_to_charge if mass_to_charge[i] in mz_num: mz_num[mass_to_charge[i]]+=1 else: mz_num[mass_to_charge[i]]=1 for key in mz_num: #a list containing all duplicated m/z if mz_num[key]!=1: rep_mz.append(key) for mz in rep_mz: #find the index of duplicated m/z and store correspond protein name i_mz.append(mass_to_charge.index(mz)) for im in i_mz: rep_pr.append(protein_name[im]) new_rep=list(set(rep_pr)) new_rep.sort(key=rep_pr.index) #remove the duplication of duplicated protein name for pr in new_pr: if pr not in new_rep: uni_pr.append(pr) #put element(s) in unique if len(uni_pr)==1: print(" ".join(str(i) for i in uni_pr)," has been unambiguously identified in all proteins") else: print(",".join(str(i) for i in uni_pr)," have been unambiguously identified in all proteins") list1.append("unique proteins:") for i in uni_pr: list1.append(" ") list2.append(uni_pr[i] for i in uni_pr) for i in zip(list1,list2): output.write(str(i[0])+'\t'+str(i[1])+'\n') def match_peptide(pep_find,match_pattern): #define a function to match peptide match=[] list1=[] list2=[] global output if match_pattern=="start with": #differentiate different match pattern for s in sequence: if s.startswith(pep_find): match.append(s) if len(match)==0: print("There is no sequence starts with ",pep_find," in all peptides.") else: for s in sequence: if pep_find in s: match.append(s) if len(match)==0: print("There is no sequence contains ",pep_find," in all peptides.") if len(match)==1: print("There is ",len(match)," sequence ",match_pattern, pep_find," in all peptides.") else: print("There are ",len(match)," sequences ",match_pattern, pep_find," in all peptides.") list1.append("number of matched sequence") list2.append(len(match)) for i in zip(list1,list2): output.write(str(i[0])+'\t'+str(i[1])+'\n') readfile(filename) #main code starts here count_num(min_mz,max_mz) while min_mz<max_mz: window=min_mz+window_size if error_type == 0: count_num(min_mz,window) # if you want to implement ppm error then I would use a new function else: # ppm error comes here count_num_ppm(min_mz,ppm) # min_mz+=step_size find_protein() match_peptide(pep_find,match_pattern) output.close()
dic1={'a':1,'b':3,'c':5} dic2={'a':2,'b':2,'c':4,'d':4} list1=[1,2,3,4,5] list2=['a','b','c','d','b','c','d','e'] list3=[1,2,2,2,2,3,3,4] dic3={} for x in dic1: if dic1[x]!=1: dic3[x]=[] for y in dic3.keys(): for index,nums in enumerate(list2): if nums==y: dic3[y].append(list3[index]) print(dic3) for x in dic3: list4=[] list6=[] for x in dic3[x]: list4.append(x) list5=[] list5=set(list4) if len(list5)!=1: prit print(list6)
{'b': [2, 2], 'c': [2, 3]} [] [3]
readfile=input("filename:") file=open(readfile,'r') next(file) mz=[] i=1000.0 y=[] x=[] output1=input("outname") output=open(output1,'w') lines=file.readlines() for line in lines: print(line) data=line.split() mz.append(data[3]) def count_num(a): sum1=0 for m in mz: if float(m)>a and float(m)<a+5: sum1+=1 y.append(sum1) x.append(a) while i<1500: count_num(i) i=i+5 for z in zip(x,y): output.writelines([str(z[0]),'\t',str(z[1]),'\n'])
filename:
outname
I.claudius_F1_1_340_1_peptide number 1 3154.6498000000006 0 MAIKIGINGFGRIGRIVFRAAQHRDDIE I.claudius_F1_1_340_1_peptide number 2 1185.3241 0 VVGINDLIDVE I.claudius_F1_1_340_1_peptide number 3 2384.6417 0 YMAYMLKYDSTHGRFDGTVE I.claudius_F1_1_340_1_peptide number 4 1913.1801000000003 0 VKDGNLVVNGKTIRVTAE I.claudius_F1_1_340_1_peptide number 5 1910.0914000000005 0 RDPANLNWGAIGVDIAVE I.claudius_F1_1_340_1_peptide number 6 966.0428 0 ATGLFLTDE I.claudius_F1_1_340_1_peptide number 7 6299.184499999999 0 TARKHITAGAKKVVLTGPSKDATPMFVRGVNFNAYAGQDIVSNASCTTNCLAPLARVVHE I.claudius_F1_1_340_1_peptide number 8 8591.745600000002 0 TFGIKDGLMTTVHATTATQKTVDGPSAKDWRGGRGASQNIIPSSTGAAKAVGKVLPALNGKLTGMAFRVPTPNVSVVDLTVNLE I.claudius_F1_1_340_1_peptide number 9 1819.0207 0 KPASYDAIKQAIKDAAE I.claudius_F1_1_340_1_peptide number 10 751.7846000000001 0 GKTFNGE I.claudius_F1_1_340_1_peptide number 11 979.1277000000001 0 LKGVLGYTE I.claudius_F1_1_340_1_peptide number 12 4157.4779 0 DAVVSTDFNGCALTSVFDADAGIALTDSFVKLVSWYDNE I.claudius_F1_1_340_1_peptide number 13 2155.4084 0 TGYSNKVLDLVAHIYNYKG I.claudius_F1_2_184_2461_peptide number 1 1373.6826 0 MVMKGYYKKPE I.claudius_F1_2_184_2461_peptide number 2 147.1293 0 E I.claudius_F1_2_184_2461_peptide number 3 766.796 0 TAQAFTE I.claudius_F1_2_184_2461_peptide number 4 1109.1435999999999 0 DGFLKTGDAGE I.claudius_F1_2_184_2461_peptide number 5 409.39060000000006 0 FDE I.claudius_F1_2_184_2461_peptide number 6 1433.6083999999998 0 QGNLFITDRIKE I.claudius_F1_2_184_2461_peptide number 7 1856.1468000000002 0 LMKTSNGKYIAPQYIE I.claudius_F1_2_184_2461_peptide number 8 1164.3513 0 SKIGKDKFIE I.claudius_F1_2_184_2461_peptide number 9 2608.0571999999997 0 QIAIIADAKKYVSALIVPCFDSLE I.claudius_F1_2_184_2461_peptide number 10 147.1293 0 E I.claudius_F1_2_184_2461_peptide number 11 1791.0153999999998 0 YAKQLNIKYHDRLE I.claudius_F1_2_184_2461_peptide number 12 1450.7416 0 LLKNSDILKMFE I.claudius_F1_2_184_2461_peptide number 13 1094.2250000000001 0 HRINAVQKE I.claudius_F1_2_184_2461_peptide number 14 615.678 0 LAHFE I.claudius_F1_2_184_2461_peptide number 15 2037.4016000000001 0 QVKKFTLLSQAFSIKLGE I.claudius_F1_2_184_2461_peptide number 16 1680.0874000000001 0 ITPTLKLRRKVILE I.claudius_F1_2_184_2461_peptide number 17 992.1331000000001 0 RYRKQIE I.claudius_F1_2_184_2461_peptide number 18 864.9224 0 AMYHSQE I.claudius_F1_2_184_2461_peptide number 19 89.0932 0 A I.claudius_F1_3_52_5257_peptide number 1 881.0477000000001 0 MPLYTKE I.claudius_F1_3_52_5257_peptide number 2 4958.862900000002 0 TGISTASMSSFCCKSAVNFSVFFVFLKKLIVCRIQHCIYYQSIS I.claudius_F1_4_204_5661_peptide number 1 3856.5680000000025 0 MQVSRRKFFKICAGGMAGTSAAMLGFAPANVLAAPRE I.claudius_F1_4_204_5661_peptide number 2 1039.2276 0 YKLLRAFE I.claudius_F1_4_204_5661_peptide number 3 4630.1809 0 SRNTCTYCAVSCGMLLYSTGKPYNSLSSHTGTNTRSKLFHIE I.claudius_F1_4_204_5661_peptide number 4 2641.8235 0 GDPDHPVSRGALCPKGAGSLDYVNSE I.claudius_F1_4_204_5661_peptide number 5 2040.1952 0 SRSLYPQYRAPGSDKWE I.claudius_F1_4_204_5661_peptide number 6 3047.4936 0 RISWKDAIKRIARLMKDDRDANFVE I.claudius_F1_4_204_5661_peptide number 7 2670.9294000000004 0 KDSNGKTVNRWATTGIMTASAMSNE I.claudius_F1_4_204_5661_peptide number 8 2559.0825000000004 0 AALLTQKWIRMLGMVPVCNQANT I.claudius_F1_5_619_6891_peptide number 1 1282.4641000000001 0 MTHLYALGFTE I.claudius_F1_5_619_6891_peptide number 2 11772.361000000012 0 HSIGTQNIRSMAIIQLLLGNMGMPGGGINALRGHSNVQGTTDMGLLPMSLPGYMRLPNDKDTSYDQYINAITPKDIVPNQVNYYRHTSKFFVSMMKTFYGDNATKE I.claudius_F1_5_619_6891_peptide number 3 3077.4697 0 NGWGFDFLPKADRLYDPITHVKLMNE I.claudius_F1_5_619_6891_peptide number 4 4713.522600000002 0 GKLHGWILQGFNVLNSLPNKNKTLSGMSKLKYLVVMDPLQTE I.claudius_F1_5_619_6891_peptide number 5 321.2839 0 SSE I.claudius_F1_5_619_6891_peptide number 6 955.0266 0 FWRNFGE I.claudius_F1_5_619_6891_peptide number 7 843.8386 0 SNNVNPAE I.claudius_F1_5_619_6891_peptide number 8 489.52 0 IQTE I.claudius_F1_5_619_6891_peptide number 9 1283.4953 0 VFRLPTTCFAE I.claudius_F1_5_619_6891_peptide number 10 147.1293 0 E I.claudius_F1_5_619_6891_peptide number 11 147.1293 0 E I.claudius_F1_5_619_6891_peptide number 12 2528.7152000000006 0 GSIVNSGRWTQWHWKGCDQPGE I.claudius_F1_5_619_6891_peptide number 13 1471.7178000000001 0 ALPDVDILSMLRE I.claudius_F1_5_619_6891_peptide number 14 147.1293 0 E I.claudius_F1_5_619_6891_peptide number 15 415.4647 0 MHE I.claudius_F1_5_619_6891_peptide number 16 679.8048000000001 0 LYKKE I.claudius_F1_5_619_6891_peptide number 17 559.57 0 GGQGIE I.claudius_F1_5_619_6891_peptide number 18 381.3805 0 SFE I.claudius_F1_5_619_6891_peptide number 19 1788.9334 0 AMTWNYAQPHSPSAVE I.claudius_F1_5_619_6891_peptide number 20 459.5371 0 LAKE I.claudius_F1_5_619_6891_peptide number 21 778.8496000000001 0 LNGYALE I.claudius_F1_5_619_6891_peptide number 22 4790.1975 0 DLYDPNGNLMYKKGQLLNGFAHLRDDGTTTSGNWLYVGQWTE I.claudius_F1_5_619_6891_peptide number 23 9515.339600000005 0 KGNQTANRDNSDPSGLGCTIGWGFAWPANRRVLYSRASLDINGNPWDKNRQLIKWNGKNWNWFDIADYGTQPPGSDTGPFIMSAE I.claudius_F1_5_619_6891_peptide number 24 1871.1648000000002 0 GVGRLFAVDKIANGPMPE I.claudius_F1_5_619_6891_peptide number 25 772.8022000000001 0 HYEPVE I.claudius_F1_5_619_6891_peptide number 26 2653.9386 0 SPIDTNPFHPNVVTDPTLRIYKE I.claudius_F1_5_619_6891_peptide number 27 418.40240000000006 0 DRE I.claudius_F1_5_619_6891_peptide number 28 793.8643 0 FIGSNKE I.claudius_F1_5_619_6891_peptide number 29 1460.629 0 YPFVATTYRLTE I.claudius_F1_5_619_6891_peptide number 30 2552.7963 0 HFHSWTAQSALNIIAQPQQFVE I.claudius_F1_5_619_6891_peptide number 31 317.33820000000003 0 IGE I.claudius_F1_5_619_6891_peptide number 32 530.615 0 KLAAE I.claudius_F1_5_619_6891_peptide number 33 3602.3008 0 KGIQKGDMVKITSRRGYIKAVAVVTKRLKDLE I.claudius_F1_5_619_6891_peptide number 34 4311.841000000002 0 IDGRVVHHIGLPIHWNMKALNGKGNRGFSTNTLTPSWGE I.claudius_F1_5_619_6891_peptide number 35 758.817 0 AITQTPE I.claudius_F1_5_619_6891_peptide number 36 1126.3016 0 YKTFLVNIE I.claudius_F1_5_619_6891_peptide number 37 431.48400000000004 0 KVGE I.claudius_F1_5_619_6891_peptide number 38 89.0932 0 A I.claudius_F1_6_171_10862_peptide number 1 1017.2005 0 MANKLLAQE I.claudius_F1_6_171_10862_peptide number 2 3875.344 0 FNLVSSDKAVFIWAALSLYWLQAAQQIPHNSQVE I.claudius_F1_6_171_10862_peptide number 3 332.3098 0 NAE I.claudius_F1_6_171_10862_peptide number 4 3681.2743999999993 0 NLHHCPVCGSLPVASMVQIGTSQGLRYLHCNLCE I.claudius_F1_6_171_10862_peptide number 5 234.2066 0 SE I.claudius_F1_6_171_10862_peptide number 6 2131.3520999999996 0 WNLVRAQCTNCNSHDKLE I.claudius_F1_6_171_10862_peptide number 7 778.8728000000001 0 MWSLNE I.claudius_F1_6_171_10862_peptide number 8 147.1293 0 E I.claudius_F1_6_171_10862_peptide number 9 770.9171000000001 0 LALVRAE I.claudius_F1_6_171_10862_peptide number 10 598.6476 0 TCGSCE I.claudius_F1_6_171_10862_peptide number 11 1176.4051000000002 0 SYLKMMFQE I.claudius_F1_6_171_10862_peptide number 12 2249.4685 0 KDPYVEPVADDLASIFLDIE I.claudius_F1_6_171_10862_peptide number 13 278.32540000000006 0 ME I.claudius_F1_6_171_10862_peptide number 14 147.1293 0 E I.claudius_F1_6_171_10862_peptide number 15 1750.9929 0 KGFARSGLNPFIFPAE I.claudius_F1_6_171_10862_peptide number 16 147.1293 0 E I.claudius_F1_6_171_10862_peptide number 17 89.0932 0 A I.claudius_F1_7_125_12984_peptide number 1 2513.9974 0 MIKKRTPNAQITMTDIHAMALE I.claudius_F1_7_125_12984_peptide number 2 890.9813 0 SARKTLSE I.claudius_F1_7_125_12984_peptide number 3 687.6992 0 NQLQGE I.claudius_F1_7_125_12984_peptide number 4 1244.3036000000002 0 VYASDVFSDIE I.claudius_F1_7_125_12984_peptide number 5 2777.0479000000005 0 GKFDLIISNPPFHDGIDTAYRAVTE I.claudius_F1_7_125_12984_peptide number 6 1594.7690000000005 0 LITQAKWHLNQGGE I.claudius_F1_7_125_12984_peptide number 7 1518.7543 0 LRIVANSFLPYPE I.claudius_F1_7_125_12984_peptide number 8 2997.4083000000005 0 LLRQHFNDYQVLAQTGKFKVYSVKN I.claudius_F1_8_52_13836_peptide number 1 6019.119300000001 0 MNIITTLCRNWHNVSKVKFTAKICNKRQQIIFILDVIYFVDSKHNGCFCIT I.claudius_F1_9_119_18978_peptide number 1 1394.5939 0 MPSNGYLVKWAE I.claudius_F1_9_119_18978_peptide number 2 1398.6439 0 QGVLLLNTVLTVE I.claudius_F1_9_119_18978_peptide number 3 1465.5955000000001 0 RGMAHSHANLGWE I.claudius_F1_9_119_18978_peptide number 4 1404.6104 0 RFTDKVIAVLNE I.claudius_F1_9_119_18978_peptide number 5 440.4543 0 HRE I.claudius_F1_9_119_18978_peptide number 6 6203.129699999999 0 KLVFLLWGSHAQKKGQMIDRTRHLVLTAPHPSPLSAHRGFFGCRHFSKTNSYLE I.claudius_F1_9_119_18978_peptide number 7 1293.47 0 SHGIKPIDWQI I.claudius_F1_10_58_24257_peptide number 1 6833.8998 0 MLILVFNLIHRINHRTITITNNSHRFISKLNFFWFTSNAVSTFTKLFNSKQWNVCFA I.claudius_F1_11_59_25919_peptide number 1 5666.642700000001 0 MRFACSTSFCVGANKLCNNSIWRGLIKDLPSKPSCLINAASFKKPSSLFALE I.claudius_F1_11_59_25919_peptide number 2 667.7511 0 YTVSKA I.claudius_F1_12_67_30230_peptide number 1 7772.051700000004 0 MRITLSQSILTNPIVYQKYPLLPHHSSLVNWHLQYPYHPVDKPLYQSLDLLLMVLVNFYLLIHNE I.claudius_F1_12_67_30230_peptide number 2 131.1729 0 L I.claudius_F1_13_78_35510_peptide number 1 521.5884 0 MSRE I.claudius_F1_13_78_35510_peptide number 2 5428.1495 0 KATNFALQQLCILAKAPQAHQSINKHRDHHFSTLLVAQLAAASSKVYQE I.claudius_F1_13_78_35510_peptide number 3 2852.5052 0 YLTSRLCLFHRPLTSLYLLVLKCV I.claudius_F1_14_550_38365_peptide number 1 4226.1412 0 MFAGGYLSPKRSIKPILFFLLIVAMTLLSVRISLVNSE I.claudius_F1_14_550_38365_peptide number 2 1462.6248 0 WYKNMYTSLQE I.claudius_F1_14_550_38365_peptide number 3 408.4058 0 FNE I.claudius_F1_14_550_38365_peptide number 4 3120.5972 0 HVFWQQMGLFCVIAASSVSAALVSYYLE I.claudius_F1_14_550_38365_peptide number 5 1204.3769 0 QRFVINWIE I.claudius_F1_14_550_38365_peptide number 6 560.5994000000001 0 WLNE I.claudius_F1_14_550_38365_peptide number 7 2529.8691 0 QLVNKWMAHRAYYKTQYLSE I.claudius_F1_14_550_38365_peptide number 8 5865.6828 0 NLDNPDQRIQQDVQSYVKTTLSLSTGVIDAVTSMISYTILLWGLAGPMIVLGVE I.claudius_F1_14_550_38365_peptide number 9 4113.969700000001 0 IPHMMVFLVFGYVIFTTLIAFWLGRPLISLNFINE I.claudius_F1_14_550_38365_peptide number 10 1909.1961 0 RLNANYRYSLIRIKE I.claudius_F1_14_550_38365_peptide number 11 381.38050000000004 0 YAE I.claudius_F1_14_550_38365_peptide number 12 856.9185 0 SIAFYAGE I.claudius_F1_14_550_38365_peptide number 13 374.43270000000007 0 KVE I.claudius_F1_14_550_38365_peptide number 14 5946.9622 0 KNQLYQQFNAVIHNMWVIIFRTLKFSGFNLVVSQISVVFPLLIQVGRYFE I.claudius_F1_14_550_38365_peptide number 15 5765.532000000002 0 KQIKLGDLMQTLQVFGQLHANLSFFRSTYDNFASYKATLDRLTGFCYAIE I.claudius_F1_14_550_38365_peptide number 16 7742.805100000003 0 KANNKSQTQIHNHPTDVIFKNLSIQNPLGHTLIKHLNITLPQGTSLLIQGKSGAGKTTLLRTIAGLWSYAE I.claudius_F1_14_550_38365_peptide number 17 204.1806 0 GE I.claudius_F1_14_550_38365_peptide number 18 4640.1307 0 INCPTHNQLFLSQKPYVPQGNLMSALAYPNNADNISHTQAVE I.claudius_F1_14_550_38365_peptide number 19 1334.5634 0 ILNKVQLGHLAE I.claudius_F1_14_550_38365_peptide number 20 388.41610000000003 0 QLE I.claudius_F1_14_550_38365_peptide number 21 275.3016 0 KE I.claudius_F1_14_550_38365_peptide number 22 1317.4468000000002 0 QDWTRILSLGE I.claudius_F1_14_550_38365_peptide number 23 2436.8518 0 QQRLAFARLILHKPAVAFLDE I.claudius_F1_14_550_38365_peptide number 24 723.7498 0 ATASMDE I.claudius_F1_14_550_38365_peptide number 25 317.33820000000003 0 GLE I.claudius_F1_14_550_38365_peptide number 26 1286.4527 0 FSMYQLLQQE I.claudius_F1_14_550_38365_peptide number 27 3909.4944999999993 0 LPQTTIISVGHRSTLKTLHQQQLILQDKGQWQVL I.claudius_F1_15_131_42430_peptide number 1 10330.624200000007 0 MLKPAWLVLVLLYWVLAIPNKVSIGWSFLLGLTWDLILGSTLGVHALVLSTSMYIIAKNYLILRNLSLWFQSLLVVLFVFIIRLLIFLVE I.claudius_F1_15_131_42430_peptide number 2 4823.8002 0 FSLHTAFFHWQAILGAFASGLLWPWVFLLMRKIRRKVKLH I.claudius_F1_16_54_46444_peptide number 1 589.7452000000001 0 MVIVE I.claudius_F1_16_54_46444_peptide number 2 5203.815200000001 0 NTTNNALIATDKAGIWKKKLATIPSNNTINNANIALDKNDISFFVVNT I.claudius_F1_17_60_47474_peptide number 1 7185.525800000001 0 MWIFLFAFFRTIFYKHTCTNNRIIRINNSGCLVFYRIKMGCFYHINHRLI-LFCSRSTR I.claudius_F1_18_109_47954_peptide number 1 1510.7357 0 MDQMPNCPKCQSE I.claudius_F1_18_109_47954_peptide number 2 1975.1185 0 YVYHDSINFVCPDCGNE I.claudius_F1_18_109_47954_peptide number 3 676.6318000000001 0 WDNNE I.claudius_F1_18_109_47954_peptide number 4 388.41610000000003 0 IQE I.claudius_F1_18_109_47954_peptide number 5 1946.0309 0 SDDDQLIVKDSNGNLLAE I.claudius_F1_18_109_47954_peptide number 6 1829.0998999999997 0 GDNVLLIKDLKLKGSSE I.claudius_F1_18_109_47954_peptide number 7 3386.0000000000005 0 VLKKGTKFKNIRLVNGDHNVDCGKIMLKSE I.claudius_F1_18_109_47954_peptide number 8 605.7693 0 FLKKA I.claudius_F1_19_67_51412_peptide number 1 7216.495500000002 0 MIGNNKGQNAFLKATHLSLPVCFLSRLVSLFLYKIFQVTHNPTTINKPGTVPPINNLVMDAPAVIP I.claudius_F1_20_50_52358_peptide number 1 4096.785400000001 0 MSFILGNKYNPKGNHIYKTNPRKLFRKCNSRIKE I.claudius_F1_20_50_52358_peptide number 2 1249.4194 0 VPQDRIKKHE I.claudius_F1_20_50_52358_peptide number 3 653.6480999999999 0 RNHNN I.claudius_F1_21_250_54829_peptide number 1 278.32540000000006 0 ME I.claudius_F1_21_250_54829_peptide number 2 3635.0868000000005 0 NIVNRTYTRIGQLLKQDISQGIYSIGDKLPTE I.claudius_F1_21_250_54829_peptide number 3 303.31500000000005 0 RE I.claudius_F1_21_250_54829_peptide number 4 347.3642 0 ISE I.claudius_F1_21_250_54829_peptide number 5 1291.4992 0 KFGVSRTIVRE I.claudius_F1_21_250_54829_peptide number 6 692.8881000000001 0 AMVMLE I.claudius_F1_21_250_54829_peptide number 7 246.2604 0 VE I.claudius_F1_21_250_54829_peptide number 8 487.59030000000007 0 KLVE I.claudius_F1_21_250_54829_peptide number 9 1518.7563000000002 0 VKKGSGVYVVRTPE I.claudius_F1_21_250_54829_peptide number 10 615.6996 0 SIHME I.claudius_F1_21_250_54829_peptide number 11 1212.2649999999999 0 HSDLPDVGPFE I.claudius_F1_21_250_54829_peptide number 12 1083.2817 0 LLQARQLLE I.claudius_F1_21_250_54829_peptide number 13 505.5194 0 SSIAE I.claudius_F1_21_250_54829_peptide number 14 2427.8399999999997 0 FAALQATKKDILNLKQILNRE I.claudius_F1_21_250_54829_peptide number 15 275.3016 0 KE I.claudius_F1_21_250_54829_peptide number 16 2407.5440000000003 0 LLTQNQDDYSADKDFHLALAE I.claudius_F1_21_250_54829_peptide number 17 1399.5889000000002 0 ITQNDVLVKLQE I.claudius_F1_21_250_54829_peptide number 18 3885.3302999999996 0 QLWQYRFNSAMWAQLHSRILQNDYHHLWIE I.claudius_F1_21_250_54829_peptide number 19 1809.974 0 DHQTILSAIQKKNANE I.claudius_F1_21_250_54829_peptide number 20 1269.4752 0 ARKAMWQHLE I.claudius_F1_21_250_54829_peptide number 21 976.1702 0 NVKVKLFE I.claudius_F1_21_250_54829_peptide number 22 561.5827 0 LSDVE I.claudius_F1_21_250_54829_peptide number 23 2004.2011000000002 0 DPHFDGYLFNTNPVVVGI I.claudius_F1_22_142_56365_peptide number 1 838.9695000000002 0 MQWFVE I.claudius_F1_22_142_56365_peptide number 2 3133.4886000000006 0 TQPLPANGFTMCTGSYGVRSDNDLVKMTE I.claudius_F1_22_142_56365_peptide number 3 2138.3448 0 QFADRIYFAHLRSTQRE I.claudius_F1_22_142_56365_peptide number 4 913.9731000000002 0 GNPLTFHE I.claudius_F1_22_142_56365_peptide number 5 539.582 0 AAHLE I.claudius_F1_22_142_56365_peptide number 6 1663.8893 0 GDVDMFNVVKALLNE I.claudius_F1_22_142_56365_peptide number 7 147.1293 0 E I.claudius_F1_22_142_56365_peptide number 8 1035.1147 0 YRRLNQGE I.claudius_F1_22_142_56365_peptide number 9 4168.7835000000005 0 TRLIPMRPDHGHQILDDLRKKTNPGYSAIGRLKGLAE I.claudius_F1_22_142_56365_peptide number 10 620.6978 0 FRGLE I.claudius_F1_22_142_56365_peptide number 11 1241.5447000000001 0 MALKKVYFNK I.claudius_F1_23_66_57456_peptide number 1 4231.006899999999 0 MLIKIILSIPKTISKAASVTSDIHASGSAIHSNIIFPIIE I.claudius_F1_23_66_57456_peptide number 2 589.6391 0 LNKSE I.claudius_F1_23_66_57456_peptide number 3 2459.6517 0 NTDHNGFMTKSNRYLYLRND I.claudius_F1_24_53_63336_peptide number 1 1458.7538 0 MKPFHNRIMRE I.claudius_F1_24_53_63336_peptide number 2 5034.871 0 FPRIPTPTRNNRYIWSNLRKQVFTCRCFTPMMPHLQHIDFA I.claudius_F1_25_146_65820_peptide number 1 2581.0171000000005 0 MSRASLSLLDLAGVKPYQMKKDE I.claudius_F1_25_146_65820_peptide number 2 147.1293 0 E I.claudius_F1_25_146_65820_peptide number 3 555.6013 0 YMNE I.claudius_F1_25_146_65820_peptide number 4 147.1293 0 E I.claudius_F1_25_146_65820_peptide number 5 1805.0898 0 QILHFRKILNAWHE I.claudius_F1_25_146_65820_peptide number 6 487.5472000000001 0 QIVE I.claudius_F1_25_146_65820_peptide number 7 147.1293 0 E I.claudius_F1_25_146_65820_peptide number 8 1244.3351000000002 0 ASRTVAHMQDE I.claudius_F1_25_146_65820_peptide number 9 1560.6206000000002 0 VTNFPDPADRATQE I.claudius_F1_25_146_65820_peptide number 10 147.1293 0 E I.claudius_F1_25_146_65820_peptide number 11 147.1293 0 E I.claudius_F1_25_146_65820_peptide number 12 494.5381 0 FSLE I.claudius_F1_25_146_65820_peptide number 13 958.034 0 LRNRDRE I.claudius_F1_25_146_65820_peptide number 14 1045.3432 0 RKLMKKIE I.claudius_F1_25_146_65820_peptide number 15 2097.3029 0 ATLKKLDTDDFGYCDCCGE I.claudius_F1_25_146_65820_peptide number 16 147.1293 0 E I.claudius_F1_25_146_65820_peptide number 17 856.0248 0 IGIRRLE I.claudius_F1_25_146_65820_peptide number 18 1719.9774 0 ARPTADLCIDCKTLAE I.claudius_F1_25_146_65820_peptide number 19 416.47260000000006 0 IRE I.claudius_F1_25_146_65820_peptide number 20 501.5771000000001 0 KQVAG I.claudius_F1_26_65_66857_peptide number 1 5874.276300000002 0 MLAMKIKRNRAMKACYCAIMFTVRSNKMQHAVILRSMHCITIRKIIRYE I.claudius_F1_26_65_66857_peptide number 2 1648.9441 0 IISRALKISKQASYA I.claudius_F1_27_172_67348_peptide number 1 1180.326 0 MIVTALTSTDE I.claudius_F1_27_172_67348_peptide number 2 2941.431 0 RVADKLRINPAFLFAAFFWYPLRE I.claudius_F1_27_172_67348_peptide number 3 374.43270000000007 0 KVE I.claudius_F1_27_172_67348_peptide number 4 615.7194000000001 0 ILKNE I.claudius_F1_27_172_67348_peptide number 5 1515.5399000000002 0 GGLNNHDAYALAGNE I.claudius_F1_27_172_67348_peptide number 6 4895.8219 0 VLDLFCRALAAPRRHTAVIRDIWFLQLQLLKRTGSAPMRTME I.claudius_F1_27_172_67348_peptide number 7 1859.1589999999999 0 HPKFRAGFDLLAMRAE I.claudius_F1_27_172_67348_peptide number 8 260.2869 0 IE I.claudius_F1_27_172_67348_peptide number 9 261.2319 0 GGE I.claudius_F1_27_172_67348_peptide number 10 361.3908 0 TIE I.claudius_F1_27_172_67348_peptide number 11 969.0962000000002 0 LAKWWHE I.claudius_F1_27_172_67348_peptide number 12 843.8369000000001 0 YQFSNGE I.claudius_F1_27_172_67348_peptide number 13 431.4442 0 QRE I.claudius_F1_27_172_67348_peptide number 14 629.7029 0 QLIQE I.claudius_F1_27_172_67348_peptide number 15 3156.6726999999996 0 QQRLHPKPKKKYYRPRRRKTTCSAE I.claudius_F1_28_125_68532_peptide number 1 4021.576600000001 0 MVYLNGDLGAGKTTLTRGMLQGIGHQGNVKSPTYTLVE I.claudius_F1_28_125_68532_peptide number 2 147.1293 0 E I.claudius_F1_28_125_68532_peptide number 3 2429.7466000000004 0 YNIAGKMIYHFDLYRLADPE I.claudius_F1_28_125_68532_peptide number 4 147.1293 0 E I.claudius_F1_28_125_68532_peptide number 5 260.2869 0 LE I.claudius_F1_28_125_68532_peptide number 6 2037.3154000000002 0 FMGIRDYFNTDSICLIE I.claudius_F1_28_125_68532_peptide number 7 420.41650000000004 0 WSE I.claudius_F1_28_125_68532_peptide number 8 840.9638 0 KGQGILPE I.claudius_F1_28_125_68532_peptide number 9 2012.1336999999999 0 ADILVNIDYYDDARNIE I.claudius_F1_28_125_68532_peptide number 10 1804.0520999999997 0 LIAQTNLGKNIISAFSN I.claudius_F1_29_196_69625_peptide number 1 554.6563000000001 0 MIYE I.claudius_F1_29_196_69625_peptide number 2 4197.667500000001 0 GLVAFHSGKTNTLVKDNLVQNIKQNDIKKSGKNNRTSE I.claudius_F1_29_196_69625_peptide number 3 616.6213 0 QNINE I.claudius_F1_29_196_69625_peptide number 4 1809.0324 0 DNIKDSGIRHIVKKGE I.claudius_F1_29_196_69625_peptide number 5 3626.2108000000003 0 SLGSLSNKYHVKVSDIIKLNQLKRKTLWLNE I.claudius_F1_29_196_69625_peptide number 6 1014.1304 0 SIKIPDNVE I.claudius_F1_29_196_69625_peptide number 7 1173.4028 0 IKNKSLTIKE I.claudius_F1_29_196_69625_peptide number 8 2514.7485 0 NDFHKKQNSLVNNTNKDLKKE I.claudius_F1_29_196_69625_peptide number 9 3558.9957999999997 0 KNTQTNNQKNIIPLYHKVTKNQTLYAISRE I.claudius_F1_29_196_69625_peptide number 10 3414.0512000000003 0 YNIPVNILLSLNPHLKNGKVITGQKIKLRE I.claudius_F1_29_196_69625_peptide number 11 146.1876 0 K I.claudius_F1_30_312_72110_peptide number 1 3214.7964 0 MKPTAIFLMGPTASGKTDLAIQLRSQLPVE I.claudius_F1_30_312_72110_peptide number 2 2422.7924000000003 0 VISVDSALIYKGMDIGTAKPSKE I.claudius_F1_30_312_72110_peptide number 3 147.1293 0 E I.claudius_F1_30_312_72110_peptide number 4 1773.0381999999997 0 LALAPHRLIDILDPSE I.claudius_F1_30_312_72110_peptide number 5 1674.7894 0 SYSAMNFRDDALRE I.claudius_F1_30_312_72110_peptide number 6 2810.3742000000007 0 MADITAQGKIPLLVGGTMLYYKALIE I.claudius_F1_30_312_72110_peptide number 7 985.0461000000001 0 GLSPLPSADE I.claudius_F1_30_312_72110_peptide number 8 601.6531 0 NIRAE I.claudius_F1_30_312_72110_peptide number 9 260.2869 0 LE I.claudius_F1_30_312_72110_peptide number 10 1538.6628 0 QKAAQQGWAALHTE I.claudius_F1_30_312_72110_peptide number 11 2749.0874000000003 0 LAKIDPISAARINPSDSQRINRALE I.claudius_F1_30_312_72110_peptide number 12 1257.4315 0 VFYITGKSLTE I.claudius_F1_30_312_72110_peptide number 13 361.3908 0 LTE I.claudius_F1_30_312_72110_peptide number 14 147.1293 0 E I.claudius_F1_30_312_72110_peptide number 15 332.35290000000003 0 KGE I.claudius_F1_30_312_72110_peptide number 16 2466.747 0 ALPYDFVQFAIAPQDRHVLHE I.claudius_F1_30_312_72110_peptide number 17 416.47260000000006 0 RIE I.claudius_F1_30_312_72110_peptide number 18 1088.2833999999998 0 QRFHKMIE I.claudius_F1_30_312_72110_peptide number 19 663.7192 0 LGFQAE I.claudius_F1_30_312_72110_peptide number 20 246.2604 0 VE I.claudius_F1_30_312_72110_peptide number 21 2996.4680999999996 0 KLYARGDLNINLPSIRCVGYRQMWE I.claudius_F1_30_312_72110_peptide number 22 1121.1526000000001 0 YLQGDYAYE I.claudius_F1_30_312_72110_peptide number 23 147.1293 0 E I.claudius_F1_30_312_72110_peptide number 24 4797.610700000001 0 MIFRGICATRQLAKRQLTWLRGWKTPIQWLDSLQPQQAKE I.claudius_F1_30_312_72110_peptide number 25 1416.5813 0 TVLRHLDSYQKG I.claudius_F1_31_662_74011_peptide number 1 704.8789000000002 0 MKGKIE I.claudius_F1_31_662_74011_peptide number 2 303.31500000000005 0 RE I.claudius_F1_31_662_74011_peptide number 3 2108.4513 0 VRRRGLKDNIKLGAGGIRE I.claudius_F1_31_662_74011_peptide number 4 246.2604 0 VE I.claudius_F1_31_662_74011_peptide number 5 1661.9445 0 FIVQVFQLIRGGRE I.claudius_F1_31_662_74011_peptide number 6 1645.94 0 INLQQHSLLKILPE I.claudius_F1_31_662_74011_peptide number 7 1086.3255 0 ITKLRLITE I.claudius_F1_31_662_74011_peptide number 8 1072.1316 0 QQFHDLRE I.claudius_F1_31_662_74011_peptide number 9 1182.3715000000002 0 SYIFLRRVE I.claudius_F1_31_662_74011_peptide number 10 2042.1613000000002 0 NILQAINDQQTQTLPTDE I.claudius_F1_31_662_74011_peptide number 11 985.1355000000001 0 IDQIRLVE I.claudius_F1_31_662_74011_peptide number 12 1129.3072 0 ACKTFTCLNE I.claudius_F1_31_662_74011_peptide number 13 717.7252000000001 0 NNQTIE I.claudius_F1_31_662_74011_peptide number 14 785.8870000000001 0 KHYPIE I.claudius_F1_31_662_74011_peptide number 15 1870.9709000000003 0 NWDDFYRTLQQKQE I.claudius_F1_31_662_74011_peptide number 16 1475.6883000000003 0 KVRAVFTQLIGDE I.claudius_F1_31_662_74011_peptide number 17 390.34590000000003 0 QDE I.claudius_F1_31_662_74011_peptide number 18 1570.5689 0 SSQTDSQWQDFLE I.claudius_F1_31_662_74011_peptide number 19 480.46850000000006 0 ADFE I.claudius_F1_31_662_74011_peptide number 20 375.37430000000006 0 DIE I.claudius_F1_31_662_74011_peptide number 21 602.6776 0 QTLLE I.claudius_F1_31_662_74011_peptide number 22 507.4923 0 SSVSE I.claudius_F1_31_662_74011_peptide number 23 603.5795 0 NNIDE I.claudius_F1_31_662_74011_peptide number 24 359.418 0 VLE I.claudius_F1_31_662_74011_peptide number 25 3932.5976000000005 0 KLAQFKDGLNHRVIGSRGRDVLSHLMPTVLALIFE I.claudius_F1_31_662_74011_peptide number 26 275.2585 0 QE I.claudius_F1_31_662_74011_peptide number 27 1728.0439 0 NYRTLLPRILNIIE I.claudius_F1_31_662_74011_peptide number 28 1197.3382000000001 0 KISSRTTYLE I.claudius_F1_31_662_74011_peptide number 29 486.60210000000006 0 LLLE I.claudius_F1_31_662_74011_peptide number 30 1167.3154 0 NPRALQQVIE I.claudius_F1_31_662_74011_peptide number 31 1091.2359000000001 0 LCAQSQLISE I.claudius_F1_31_662_74011_peptide number 32 1311.482 0 QLAHYPILLDE I.claudius_F1_31_662_74011_peptide number 33 588.6510000000001 0 LLNTE I.claudius_F1_31_662_74011_peptide number 34 1639.8512 0 ALRHPLPFTQYPAE I.claudius_F1_31_662_74011_peptide number 35 1608.7923999999998 0 LHQYLLRLPPDDE I.claudius_F1_31_662_74011_peptide number 36 147.1293 0 E I.claudius_F1_31_662_74011_peptide number 37 4366.1305 0 QLIDALRQFKQATLLKVAAADILGALPVMKVSDHLTYLAE I.claudius_F1_31_662_74011_peptide number 38 444.52240000000006 0 AIIE I.claudius_F1_31_662_74011_peptide number 39 2015.315 0 VVVNLAWKQVSSRFGVPE I.claudius_F1_31_662_74011_peptide number 40 753.7606000000001 0 HLQNNE I.claudius_F1_31_662_74011_peptide number 41 1550.8391000000004 0 KGFLVIGYGKLGGIE I.claudius_F1_31_662_74011_peptide number 42 1960.1834000000001 0 LGYKSDLDLVFLYDAVE I.claudius_F1_31_662_74011_peptide number 43 4177.7109 0 SQTTGGKKVIDSNQFYLRLAQKIVSIFSINTSAGVLYE I.claudius_F1_31_662_74011_peptide number 44 3669.021799999999 0 ADMRLRPSGDAGLIGCSLSAFSHYQLNDAWTWE I.claudius_F1_31_662_74011_peptide number 45 1470.7182000000003 0 KQALVRARPVFGE I.claudius_F1_31_662_74011_peptide number 46 909.0379 0 SSLKAKFE I.claudius_F1_31_662_74011_peptide number 47 1651.8222 0 HIRQQVLSASRDIE I.claudius_F1_31_662_74011_peptide number 48 958.0672000000002 0 QLKQDVVE I.claudius_F1_31_662_74011_peptide number 49 1954.2832999999998 0 MRKKMFAHLSHSKHSE I.claudius_F1_31_662_74011_peptide number 50 1578.7217999999998 0 FNLKTDRGGITDIE I.claudius_F1_31_662_74011_peptide number 51 3755.3232000000003 0 FIAQYLMLANAPKKPQLTKWSDNVRIFDDMAE I.claudius_F1_31_662_74011_peptide number 52 4056.6223000000005 0 AKIISQTDCDTLKQCYVDLRNTIHHLNLLGKSSVVE I.claudius_F1_31_662_74011_peptide number 53 349.294 0 DSE I.claudius_F1_31_662_74011_peptide number 54 521.6066000000001 0 FVKE I.claudius_F1_31_662_74011_peptide number 55 1772.0137000000002 0 RSFIQAFWDRLFVS I.claudius_F1_32_199_78858_peptide number 1 365.4027 0 MSE I.claudius_F1_32_199_78858_peptide number 2 275.2585 0 QE I.claudius_F1_32_199_78858_peptide number 3 502.56190000000004 0 QKVE I.claudius_F1_32_199_78858_peptide number 4 357.4021 0 IPE I.claudius_F1_32_199_78858_peptide number 5 246.2604 0 VE I.claudius_F1_32_199_78858_peptide number 6 403.4308000000001 0 KQE I.claudius_F1_32_199_78858_peptide number 7 147.1293 0 E I.claudius_F1_32_199_78858_peptide number 8 444.5226 0 VVVE I.claudius_F1_32_199_78858_peptide number 9 147.1293 0 E I.claudius_F1_32_199_78858_peptide number 10 575.5695000000001 0 TQQAE I.claudius_F1_32_199_78858_peptide number 11 499.4751 0 HSQE I.claudius_F1_32_199_78858_peptide number 12 619.6634 0 FDPLE I.claudius_F1_32_199_78858_peptide number 13 147.1293 0 E I.claudius_F1_32_199_78858_peptide number 14 785.8887000000001 0 AIARVQE I.claudius_F1_32_199_78858_peptide number 15 260.2869 0 LE I.claudius_F1_32_199_78858_peptide number 16 147.1293 0 E I.claudius_F1_32_199_78858_peptide number 17 858.9791000000001 0 QLKTQIE I.claudius_F1_32_199_78858_peptide number 18 147.1293 0 E I.claudius_F1_32_199_78858_peptide number 19 531.5600000000001 0 AANKE I.claudius_F1_32_199_78858_peptide number 20 1200.3453 0 QDILLRSRAE I.claudius_F1_32_199_78858_peptide number 21 260.2869 0 IE I.claudius_F1_32_199_78858_peptide number 22 944.0504999999999 0 NLRRRTE I.claudius_F1_32_199_78858_peptide number 23 489.4770000000001 0 QDVE I.claudius_F1_32_199_78858_peptide number 24 943.1005 0 KAHKFALE I.claudius_F1_32_199_78858_peptide number 25 1649.8394 0 KFSKDILNTIDNLE I.claudius_F1_32_199_78858_peptide number 26 1070.2003 0 RALATPANKE I.claudius_F1_32_199_78858_peptide number 27 262.2167 0 DE I.claudius_F1_32_199_78858_peptide number 28 1064.1892 0 SVKALFDGVE I.claudius_F1_32_199_78858_peptide number 29 602.7207000000001 0 LTLKE I.claudius_F1_32_199_78858_peptide number 30 1163.3236 0 LVSTVGRFGVE I.claudius_F1_32_199_78858_peptide number 31 629.7031000000001 0 AVGVVGE I.claudius_F1_32_199_78858_peptide number 32 1768.9436000000003 0 AFNPDLHQAISMQPAE I.claudius_F1_32_199_78858_peptide number 33 351.35450000000003 0 GFE I.claudius_F1_32_199_78858_peptide number 34 3030.610600000002 0 TNQISVVLQKGYTLNGRVIRPAMVMVAA I.claudius_F1_33_51_80202_peptide number 1 6093.0932 0 MQHLIHLNLAYQSSFLPLLNTHLFYHRLFFLKTYNPKSKHCDIDHKIKNI I.claudius_F1_34_708_80525_peptide number 1 1666.8567999999998 0 MSNFGVIKRDGSRAE I.claudius_F1_34_708_80525_peptide number 2 294.30320000000006 0 FE I.claudius_F1_34_708_80525_peptide number 3 2154.4667 0 IQRIINAIKKAASAVNISDE I.claudius_F1_34_708_80525_peptide number 4 1124.2259999999999 0 FYCHQIGQE I.claudius_F1_34_708_80525_peptide number 5 417.4143 0 VGNE I.claudius_F1_34_708_80525_peptide number 6 987.0702000000001 0 IFTRHQGE I.claudius_F1_34_708_80525_peptide number 7 1312.5115 0 IDINQIQKIVE I.claudius_F1_34_708_80525_peptide number 8 1209.3721 0 DKLMASRYPE I.claudius_F1_34_708_80525_peptide number 9 820.9328 0 VARAYIE I.claudius_F1_34_708_80525_peptide number 10 1330.4093000000003 0 YRHDRDLARE I.claudius_F1_34_708_80525_peptide number 11 989.1276 0 KRSQLTKE I.claudius_F1_34_708_80525_peptide number 12 260.2869 0 IE I.claudius_F1_34_708_80525_peptide number 13 430.49580000000003 0 GLIE I.claudius_F1_34_708_80525_peptide number 14 575.5695000000001 0 QSNVE I.claudius_F1_34_708_80525_peptide number 15 487.5471 0 LLNE I.claudius_F1_34_708_80525_peptide number 16 4008.5861000000004 0 NANKDAKVIPTQRDLLAGIVAKHYAKHNILPRDVVE I.claudius_F1_34_708_80525_peptide number 17 355.3465 0 AHE I.claudius_F1_34_708_80525_peptide number 18 332.35290000000003 0 KGE I.claudius_F1_34_708_80525_peptide number 19 2831.2459 0 IHYHDLDYAPFFPMFNCMLVDLE I.claudius_F1_34_708_80525_peptide number 20 1397.6227 0 GMLSRGFKMGNAE I.claudius_F1_34_708_80525_peptide number 21 3737.1756000000005 0 IEPPKSIGTATAVTAQIIAQVASHIYGGTTINRIDE I.claudius_F1_34_708_80525_peptide number 22 1297.4523 0 VLSPYVQISYE I.claudius_F1_34_708_80525_peptide number 23 990.1172 0 KHLKHAQE I.claudius_F1_34_708_80525_peptide number 24 857.9066 0 WNVPDVE I.claudius_F1_34_708_80525_peptide number 25 863.9972 0 GYAKALIE I.claudius_F1_34_708_80525_peptide number 26 275.3016 0 KE I.claudius_F1_34_708_80525_peptide number 27 1059.1494 0 CFDAFQSLE I.claudius_F1_34_708_80525_peptide number 28 310.30260000000004 0 YE I.claudius_F1_34_708_80525_peptide number 29 8734.981300000001 0 VNTLHTSNGQTPFVTFGFGLGTSWQSRLIQQAILKNRIRGLGKNHKTPVFPKLVFTIKKGLNQNKGDPNYDIKQLALE I.claudius_F1_34_708_80525_peptide number 30 4146.7898000000005 0 CASKRMYPDILNYDQVVKVTGSFKAPMGCRSFLGAYE I.claudius_F1_34_708_80525_peptide number 31 147.1293 0 E I.claudius_F1_34_708_80525_peptide number 32 469.4922 0 KGHE I.claudius_F1_34_708_80525_peptide number 33 2300.6159999999995 0 IHDGRNNLGVVSLNLPRIALE I.claudius_F1_34_708_80525_peptide number 34 476.4815 0 SKNE I.claudius_F1_34_708_80525_peptide number 35 147.1293 0 E I.claudius_F1_34_708_80525_peptide number 36 1058.0985 0 DFYRTLDE I.claudius_F1_34_708_80525_peptide number 37 1954.4306 0 RLAIAKKALMTRIARLE I.claudius_F1_34_708_80525_peptide number 38 1505.7804999999998 0 NTKARVAPILYME I.claudius_F1_34_708_80525_peptide number 39 1118.2647 0 GACGVRLKADE I.claudius_F1_34_708_80525_peptide number 40 2387.6915999999997 0 NVAQIFKNGRASISLGYIGIHE I.claudius_F1_34_708_80525_peptide number 41 1749.8739999999998 0 TINALYNKGHIFDDE I.claudius_F1_34_708_80525_peptide number 42 544.6018 0 QLRE I.claudius_F1_34_708_80525_peptide number 43 1222.4370000000001 0 KGIAIVRHLSE I.claudius_F1_34_708_80525_peptide number 44 1044.2077000000002 0 AVKRWQKE I.claudius_F1_34_708_80525_peptide number 45 1422.4915 0 TGYAFSLYSTPSE I.claudius_F1_34_708_80525_peptide number 46 2157.5153999999998 0 NLCDRFCRLDTKKFGVIE I.claudius_F1_34_708_80525_peptide number 47 1961.0457000000001 0 GVTDKGYYTNSYHLDVE I.claudius_F1_34_708_80525_peptide number 48 1495.6747000000003 0 KKVNPYDKLDFE I.claudius_F1_34_708_80525_peptide number 49 1705.9474000000002 0 MTYPPLASGGFICYGE I.claudius_F1_34_708_80525_peptide number 50 1439.6145 0 YPNIQHNLKALE I.claudius_F1_34_708_80525_peptide number 51 2568.6569000000004 0 DVWDYSYDRVPYYGTNTPIDE I.claudius_F1_34_708_80525_peptide number 52 413.44550000000004 0 CYE I.claudius_F1_34_708_80525_peptide number 53 612.6526000000001 0 CGFTGE I.claudius_F1_34_708_80525_peptide number 54 294.30320000000006 0 FE I.claudius_F1_34_708_80525_peptide number 55 4602.177600000001 0 CTSKGFVCPKCGNHDSTKVSVTRRVCGYLGSPDARPFNAGKQE I.claudius_F1_34_708_80525_peptide number 56 147.1293 0 E I.claudius_F1_34_708_80525_peptide number 57 1035.2904 0 VKRRVKHL I.claudius_F1_35_170_86061_peptide number 1 2804.2208000000005 0 MVTLHTNFGDIKIKLDFDKAPVTAE I.claudius_F1_35_170_86061_peptide number 2 3602.0402 0 NFLNYCKDGFYNNTIFHRVIDGFMIQGGGME I.claudius_F1_35_170_86061_peptide number 3 578.6397000000001 0 SGMRE I.claudius_F1_35_170_86061_peptide number 4 1099.2382 0 KATKAPIQNE I.claudius_F1_35_170_86061_peptide number 5 4843.2704 0 ANNRLSNKRGTIAMARTSDPHSATAQFFINVADNDFLNYRSKE I.claudius_F1_35_170_86061_peptide number 6 638.7363 0 MFGRE I.claudius_F1_35_170_86061_peptide number 7 473.52070000000003 0 VVQE I.claudius_F1_35_170_86061_peptide number 8 927.998 0 WGYAVFGE I.claudius_F1_35_170_86061_peptide number 9 345.39150000000006 0 VVE I.claudius_F1_35_170_86061_peptide number 10 2771.1530000000002 0 GMDVVDKIKKVKTGNKGFHQDVPTE I.claudius_F1_35_170_86061_peptide number 11 1061.1837 0 DVVITSVSIE I.claudius_F1_36_263_87147_peptide number 1 4968.599399999999 0 MHFFDTHTHLNYLQQFTGEPLSQLIDNAKQADVQKILVVAVKE I.claudius_F1_36_263_87147_peptide number 2 3426.9125 0 ADFKTIQNMTALFPDNLCYGLGLHPLYIQE I.claudius_F1_36_263_87147_peptide number 3 355.3465 0 HAE I.claudius_F1_36_263_87147_peptide number 4 828.9497000000001 0 NDLILLE I.claudius_F1_36_263_87147_peptide number 5 1633.7822 0 QALKNRDTNCTAVAE I.claudius_F1_36_263_87147_peptide number 6 430.49580000000003 0 IGLE I.claudius_F1_36_263_87147_peptide number 7 1142.2596 0 RAIPDLLTDE I.claudius_F1_36_263_87147_peptide number 8 1308.5062 0 LWAKQCHFFE I.claudius_F1_36_263_87147_peptide number 9 7699.779100000001 0 SQLYLAKQFNLPVNIHSRKTHDQIFTFLKRIPLSKLGVVHGFSGSYDQAKRFVDLGYKIGVGGTITYE I.claudius_F1_36_263_87147_peptide number 10 2220.6142999999997 0 RANKTRQAIAKLPLDALVLE I.claudius_F1_36_263_87147_peptide number 11 2119.2704 0 TDSPDMPVFGFQGQPNRPE I.claudius_F1_36_263_87147_peptide number 12 515.6037 0 RIVE I.claudius_F1_36_263_87147_peptide number 13 1578.7881 0 SFKALCTLRNEPAE I.claudius_F1_36_263_87147_peptide number 14 1030.2605 0 LIKKLTWE I.claudius_F1_36_263_87147_peptide number 15 781.8767 0 NACQIFS I.claudius_F1_37_56_88994_peptide number 1 535.6116 0 MGISE I.claudius_F1_37_56_88994_peptide number 2 2724.2171000000003 0 LTTTLSKSASLMCNTSLILFSLFCE I.claudius_F1_37_56_88994_peptide number 3 2938.341000000001 0 WNPYIRAFFKLTSAVQNNTVLKNVN I.claudius_F1_38_79_95841_peptide number 1 860.9951000000001 0 MPAPDMAE I.claudius_F1_38_79_95841_peptide number 2 5105.985500000001 0 NTRDAMPTIPCIPGPDTLNIAKLSKLVIPLTCKLSDFTLPSIIEPGAE I.claudius_F1_38_79_95841_peptide number 3 2324.7219 0 GFPVFLMTQGIFCGNNGPIVRG I.claudius_F1_39_52_96706_peptide number 1 3551.2135000000003 0 MLLFQKGRRDGWLFWLVQIKHLQPALLNE I.claudius_F1_39_52_96706_peptide number 2 2407.8338 0 LARSISPLGKNVPDLQAKCRQI I.claudius_F1_40_238_97195_peptide number 1 1836.1204 0 MNIQHNLNLIQQKIE I.claudius_F1_40_238_97195_peptide number 2 550.6263 0 TACKE I.claudius_F1_40_238_97195_peptide number 3 147.1293 0 E I.claudius_F1_40_238_97195_peptide number 4 3620.0755999999997 0 NRNQNTVKLLAVSKTKPISAILSAYQAGQTAFGE I.claudius_F1_40_238_97195_peptide number 5 651.6655000000001 0 NYVQE I.claudius_F1_40_238_97195_peptide number 6 303.31170000000003 0 GVE I.claudius_F1_40_238_97195_peptide number 7 826.9356000000001 0 KIQYFE I.claudius_F1_40_238_97195_peptide number 8 759.8049000000001 0 SQGINLE I.claudius_F1_40_238_97195_peptide number 9 1996.2717 0 WHFIGPLQSNKTRLVAE I.claudius_F1_40_238_97195_peptide number 10 2359.6187 0 HFDWMQTLDRAKIADRLNE I.claudius_F1_40_238_97195_peptide number 11 2263.5495 0 QRPTNKAPLNVLIQINISDE I.claudius_F1_40_238_97195_peptide number 12 147.1293 0 E I.claudius_F1_40_238_97195_peptide number 13 844.9095 0 SKSGIQPE I.claudius_F1_40_238_97195_peptide number 14 147.1293 0 E I.claudius_F1_40_238_97195_peptide number 15 1055.2916 0 MLTLAKHIE I.claudius_F1_40_238_97195_peptide number 16 2359.766 0 NLPHLCLRGLMAIPAPTDNIAE I.claudius_F1_40_238_97195_peptide number 17 275.2585 0 QE I.claudius_F1_40_238_97195_peptide number 18 1008.1954000000001 0 NAFRKMLE I.claudius_F1_40_238_97195_peptide number 19 407.46080000000006 0 LFE I.claudius_F1_40_238_97195_peptide number 20 5548.334800000001 0 QLKQVLPNQQIDTLSMGMTDDMPSAIKCGSTMVRIGTAIFGARNYSTSQNK I.claudius_F1_41_62_100087_peptide number 1 694.8610000000001 0 MVSVME I.claudius_F1_41_62_100087_peptide number 2 5643.666100000003 0 FAAPDSISTPANTPAAKIRITAVVIPCAPPIIRLTVCDKSAPPIKPPTKAPTNIP I.claudius_F1_42_78_103883_peptide number 1 826.8711000000001 0 MYNGDVE I.claudius_F1_42_78_103883_peptide number 2 1735.0333 0 DLNKLHLYIMSQME I.claudius_F1_42_78_103883_peptide number 3 773.8748 0 KPTTKAE I.claudius_F1_42_78_103883_peptide number 4 1476.6728 0 LKSALQGYLIQNE I.claudius_F1_42_78_103883_peptide number 5 1611.6853999999998 0 YQDMNNNDKLIDE I.claudius_F1_42_78_103883_peptide number 6 730.7407000000001 0 TYDCTE I.claudius_F1_42_78_103883_peptide number 7 1879.2032 0 LFNALFDVLTRLGISSL I.claudius_F1_43_194_104692_peptide number 1 278.32540000000006 0 ME I.claudius_F1_43_194_104692_peptide number 2 2846.2358999999997 0 KSVLDYATPKWKGKIGYVSTSGAFLE I.claudius_F1_43_194_104692_peptide number 3 2556.0754000000006 0 QVVALSKMKGDKVALNWLKGLKE I.claudius_F1_43_194_104692_peptide number 4 1704.9213000000002 0 NGKLYAKNSVALQAVE I.claudius_F1_43_194_104692_peptide number 5 318.2832 0 NGE I.claudius_F1_43_194_104692_peptide number 6 2042.292 0 VPAALINNYYWYNLAKE I.claudius_F1_43_194_104692_peptide number 7 431.48400000000004 0 KGVE I.claudius_F1_43_194_104692_peptide number 8 3719.1686000000004 0 NLKSRLYFVRHQDPGALVSYSGAAVLKASKNQAE I.claudius_F1_43_194_104692_peptide number 9 1695.9129000000003 0 AQKFVDFLASKKGQE I.claudius_F1_43_194_104692_peptide number 10 799.9153000000001 0 ALVAARAE I.claudius_F1_43_194_104692_peptide number 11 2009.2177000000001 0 YPLRADVVSPFNLEPYE I.claudius_F1_43_194_104692_peptide number 12 388.4592 0 KLE I.claudius_F1_43_194_104692_peptide number 13 1316.4144 0 APVVSATTAQDKE I.claudius_F1_43_194_104692_peptide number 14 822.9916000000001 0 HAIKLIE I.claudius_F1_43_194_104692_peptide number 15 147.1293 0 E I.claudius_F1_43_194_104692_peptide number 16 387.47440000000006 0 AGLK I.claudius_F1_44_222_106246_peptide number 1 1537.8602000000003 0 MLIYWLIVGTSLE I.claudius_F1_44_222_106246_peptide number 2 711.6744000000001 0 SAGDFSE I.claudius_F1_44_222_106246_peptide number 3 11258.326200000003 0 FLSAFSNSFIISGLGALLTVMCALPLVWAAVRYRSYLTIWIDRLPYLLHAVPGLVIALSLVYFSIHYANDLYQTFFVIIIAYFMLYLPMAQTTLRASLE I.claudius_F1_44_222_106246_peptide number 4 831.8676 0 QLSDQIE I.claudius_F1_44_222_106246_peptide number 5 4378.230500000001 0 KVGQSLGRNPFYIFRTLTLPAILPGVAAAFALVFLNLMKE I.claudius_F1_44_222_106246_peptide number 6 2302.6618 0 LTATLLLTSNDIKTLSIAVWE I.claudius_F1_44_222_106246_peptide number 7 3776.4451 0 HTSDAQYAAATPYALMLVLFSGIPVFLLKKYAFK I.claudius_F1_45_112_107633_peptide number 1 335.3767 0 MGE I.claudius_F1_45_112_107633_peptide number 2 1183.3512 0 SIVLPANLLDE I.claudius_F1_45_112_107633_peptide number 3 3234.6879999999996 0 NTAQCQLGNIPIKNKSISQNQGRILLRPE I.claudius_F1_45_112_107633_peptide number 4 1086.1947 0 QFSLFKTSE I.claudius_F1_45_112_107633_peptide number 5 1572.7602 0 NPTALFNGQIKQIE I.claudius_F1_45_112_107633_peptide number 6 1263.4823000000001 0 FKGKITSIQIE I.claudius_F1_45_112_107633_peptide number 7 1078.2171 0 INGYAIWIE I.claudius_F1_45_112_107633_peptide number 8 2818.1858000000007 0 NVISPDLSIGDNLPVYLHRKGLFYS I.claudius_F1_46_57_108874_peptide number 1 964.1579000000002 0 MPMVSSIAE I.claudius_F1_46_57_108874_peptide number 2 359.418 0 VIE I.claudius_F1_46_57_108874_peptide number 3 4899.709599999999 0 SNNLPGFVKKGLPDKFHSIRYFKLCFSSISATFCLMISSVTSVQ I.claudius_F1_47_74_111609_peptide number 1 8644.2299 0 MQNHICTTGFFLNIRHRIFAFTRRFPKYGFIRLFTSCSGFYSHFICHNKSRIKTHTKLPNKLAIFCLILTKCG I.claudius_F1_48_252_112464_peptide number 1 619.6882 0 MNNLE I.claudius_F1_48_252_112464_peptide number 2 260.2869 0 LE I.claudius_F1_48_252_112464_peptide number 3 2587.8354999999997 0 QLINQKLSSDKINDYAPNGLQVE I.claudius_F1_48_252_112464_peptide number 4 433.45680000000004 0 GKTE I.claudius_F1_48_252_112464_peptide number 5 4101.660999999998 0 IKKIITGVTASQALINYAISQNADAILVHHGYFWKSE I.claudius_F1_48_252_112464_peptide number 6 3875.5661 0 TPCIRGMKGKRIKALLVNDINLYGYHLPLDVHPE I.claudius_F1_48_252_112464_peptide number 7 1511.7185 0 LGNNAQLAKLLDIE I.claudius_F1_48_252_112464_peptide number 8 712.7915 0 NLQPLE I.claudius_F1_48_252_112464_peptide number 9 1158.3037 0 KGSVSIPVWGE I.claudius_F1_48_252_112464_peptide number 10 1365.5512 0 LKEPMTGKDFAE I.claudius_F1_48_252_112464_peptide number 11 388.4592 0 KIE I.claudius_F1_48_252_112464_peptide number 12 1425.7818 0 KVLNRKPLICIE I.claudius_F1_48_252_112464_peptide number 13 2553.8903000000005 0 NGPHLIRKIGICTGGGQGYIDLAAE I.claudius_F1_48_252_112464_peptide number 14 1040.1046999999999 0 QGCDAFITGE I.claudius_F1_48_252_112464_peptide number 15 333.33770000000004 0 VSE I.claudius_F1_48_252_112464_peptide number 16 941.0002000000001 0 QTIHSARE I.claudius_F1_48_252_112464_peptide number 17 1564.6554 0 QGLYFFSAGHHATE I.claudius_F1_48_252_112464_peptide number 18 1006.1563 0 RYGIKALGE I.claudius_F1_48_252_112464_peptide number 19 645.7470000000001 0 WLAKE I.claudius_F1_48_252_112464_peptide number 20 728.7463 0 YGFDVE I.claudius_F1_48_252_112464_peptide number 21 918.9895999999999 0 FKDIDNPA I.claudius_F1_49_336_115200_peptide number 1 2675.1697 0 MRLYGDAGVAIATGLLTFVMLVFSE I.claudius_F1_49_336_115200_peptide number 2 1314.5524 0 IFPKTVAAMHAE I.claudius_F1_49_336_115200_peptide number 3 5703.863400000003 0 KVSFFSSHILTSLLKIFYPLVWLMNIFTKSLMQIVGLKLDMQKQVISSE I.claudius_F1_49_336_115200_peptide number 4 147.1293 0 E I.claudius_F1_49_336_115200_peptide number 5 802.9159000000001 0 LRSIVSE I.claudius_F1_49_336_115200_peptide number 6 275.2585 0 AGE I.claudius_F1_49_336_115200_peptide number 7 530.5289 0 ATPNE I.claudius_F1_49_336_115200_peptide number 8 1554.8295000000003 0 QHPQMLLSILDME I.claudius_F1_49_336_115200_peptide number 9 1488.6624 0 TVTVDDIMVPRNE I.claudius_F1_49_336_115200_peptide number 10 3891.3335 0 IGGINIDDDWRAIMRQLNHAAHNRVVLYKGSLDE I.claudius_F1_49_336_115200_peptide number 11 1182.4162000000001 0 QVLGILRVRE I.claudius_F1_49_336_115200_peptide number 12 861.0396000000001 0 AFRLLLE I.claudius_F1_49_336_115200_peptide number 13 389.40420000000006 0 KNE I.claudius_F1_49_336_115200_peptide number 14 523.5794000000001 0 FTKE I.claudius_F1_49_336_115200_peptide number 15 887.9773000000001 0 TLIRAADE I.claudius_F1_49_336_115200_peptide number 16 766.8804 0 VYFIPE I.claudius_F1_49_336_115200_peptide number 17 1848.0652 0 STPLKTQLANFRTNKE I.claudius_F1_49_336_115200_peptide number 18 900.0311 0 RIGLVVDE I.claudius_F1_49_336_115200_peptide number 19 1207.3727 0 YGDIKGLVTLE I.claudius_F1_49_336_115200_peptide number 20 488.53190000000006 0 DILE I.claudius_F1_49_336_115200_peptide number 21 147.1293 0 E I.claudius_F1_49_336_115200_peptide number 22 1680.8072999999997 0 IVGDFTTSTAPSIDKE I.claudius_F1_49_336_115200_peptide number 23 3082.4232000000006 0 VIQQSDGSMIIDGSANLRDLNKMFNWE I.claudius_F1_49_336_115200_peptide number 24 476.4782 0 LDTE I.claudius_F1_49_336_115200_peptide number 25 1248.3847999999998 0 DARTFNGLILE I.claudius_F1_49_336_115200_peptide number 26 397.4262 0 HLE I.claudius_F1_49_336_115200_peptide number 27 147.1293 0 E I.claudius_F1_49_336_115200_peptide number 28 472.4895 0 IPDE I.claudius_F1_49_336_115200_peptide number 29 521.585 0 GTICE I.claudius_F1_49_336_115200_peptide number 30 1099.3174999999999 0 IDGLLITILE I.claudius_F1_49_336_115200_peptide number 31 1542.8852000000002 0 VGDNMIKQAKVVKL I.claudius_F1_50_430_117826_peptide number 1 1512.7298 0 MIDPNLLRNNLAE I.claudius_F1_50_430_117826_peptide number 2 317.3383 0 VAE I.claudius_F1_50_430_117826_peptide number 3 1621.9421000000002 0 KLKVKRNFMLDTE I.claudius_F1_50_430_117826_peptide number 4 673.7986000000001 0 KLTALE I.claudius_F1_50_430_117826_peptide number 5 1331.4322 0 DQRKNLQVTTE I.claudius_F1_50_430_117826_peptide number 6 573.5966000000001 0 NLQAE I.claudius_F1_50_430_117826_peptide number 7 1655.8606000000002 0 RNARSKAIGAAKARGE I.claudius_F1_50_430_117826_peptide number 8 840.9605000000001 0 DIAPLLAE I.claudius_F1_50_430_117826_peptide number 9 1153.2409 0 MDDMGNQLTE I.claudius_F1_50_430_117826_peptide number 10 1128.2761 0 AKAQLDAVLAE I.claudius_F1_50_430_117826_peptide number 11 1607.8026 0 INQIALSIPNLPADE I.claudius_F1_50_430_117826_peptide number 12 973.0355 0 VPLGKDDTE I.claudius_F1_50_430_117826_peptide number 13 389.40420000000006 0 NKE I.claudius_F1_50_430_117826_peptide number 14 1637.8353 0 ILRWGTPRTFDFE I.claudius_F1_50_430_117826_peptide number 15 1011.1297999999999 0 VKDHITLGE I.claudius_F1_50_430_117826_peptide number 16 147.1293 0 E I.claudius_F1_50_430_117826_peptide number 17 4372.1068000000005 0 ANGLDFAAGAKLAGARFAVMKGQIAKMHRALAQFMLDLHTE I.claudius_F1_50_430_117826_peptide number 18 745.7800000000001 0 QHGYLE I.claudius_F1_50_430_117826_peptide number 19 2568.8754000000004 0 TYVPYLVNHATLYGTGQLPKFGE I.claudius_F1_50_430_117826_peptide number 20 1058.1844999999998 0 DLFHTLALE I.claudius_F1_50_430_117826_peptide number 21 204.1806 0 GE I.claudius_F1_50_430_117826_peptide number 22 1102.2370999999998 0 QPYALIPTAE I.claudius_F1_50_430_117826_peptide number 23 1581.8087 0 VPVTNLVRDVIIDE I.claudius_F1_50_430_117826_peptide number 24 218.2072 0 AE I.claudius_F1_50_430_117826_peptide number 25 1731.0481 0 LPIKMTAHTPCFRSE I.claudius_F1_50_430_117826_peptide number 26 2436.7046000000005 0 AGSYGRDTRGLIRMHQFDKVE I.claudius_F1_50_430_117826_peptide number 27 1391.6100999999999 0 MVQIVDPDKSME I.claudius_F1_50_430_117826_peptide number 28 331.36480000000006 0 ALE I.claudius_F1_50_430_117826_peptide number 29 147.1293 0 E I.claudius_F1_50_430_117826_peptide number 30 626.6593 0 LTGHAE I.claudius_F1_50_430_117826_peptide number 31 3519.1605 0 KVLQLLNLPYRKVLLCTGDMGFGSCKTYDLE I.claudius_F1_50_430_117826_peptide number 32 1362.4892 0 VWVPAQNTYRE I.claudius_F1_50_430_117826_peptide number 33 5405.272100000001 0 ISSCSNMWDFQARRMQARCKAKGDKKTRLVHTLNGSGLAVGRTLVAVLE I.claudius_F1_50_430_117826_peptide number 34 1407.4387 0 NYQNADGSITVPE I.claudius_F1_50_430_117826_peptide number 35 147.1293 0 E I.claudius_F1_50_430_117826_peptide number 36 1418.7031 0 LRPYMGGLDVIGK I.claudius_F1_51_745_120440_peptide number 1 3842.469900000001 0 MNILINKRIFLLVTLVGIQLNVTAKQNSSNSNRE I.claudius_F1_51_745_120440_peptide number 2 147.1293 0 E I.claudius_F1_51_745_120440_peptide number 3 3019.4519000000005 0 LLPIIVNTNDDSNKLPGRSVLKQKNIE I.claudius_F1_51_745_120440_peptide number 4 3840.218700000001 0 Q-QADNAANLINILPGVNMAGGFRPGGQTLNINGMGDAE I.claudius_F1_51_745_120440_peptide number 5 1564.6953999999998 0 DVRVQLDGATKSFE I.claudius_F1_51_745_120440_peptide number 6 1438.5802 0 KYQQGSIFIEPE I.claudius_F1_51_745_120440_peptide number 7 3074.4047000000014 0 LLRRVTVDKGNYSPQYGNGGFAGTVKFE I.claudius_F1_51_745_120440_peptide number 8 1222.3046000000002 0 TKDARDFLQE I.claudius_F1_51_745_120440_peptide number 9 3358.6281999999997 0 NQKIGGFLKYGNNSNNNQKTYSTALVLQNE I.claudius_F1_51_745_120440_peptide number 10 5403.113300000001 0 QKNIDLLLFGSVRNAGDYKRPDNSKILFSKNNQKTGLIKLNWQISPE I.claudius_F1_51_745_120440_peptide number 11 6344.262800000003 0 HLLTLSSVYGIHKGWEPFAAKRDILPKPSLSDIMRYGTDIAWKRKLVYRDQKDE I.claudius_F1_51_745_120440_peptide number 12 1417.561 0 NYTLKYNYLPE I.claudius_F1_51_745_120440_peptide number 13 3000.2582000000007 0 NNPWINLSTQFSYSKTTQNDMRPKE I.claudius_F1_51_745_120440_peptide number 14 4119.4131 0 ASSGLVGSLGNQSWITYSDLTFDINNTSTFNIKTTVHE I.claudius_F1_51_745_120440_peptide number 15 15504.219400000016 0 LLFGLQWLKNTRNTLMYDKSKVRKADYNYGYFQPYYMPSGRQYTQAFYLQDQIKWKNIIFSTGVRYDHINNIGQKNLALKYNDISAGHDYSQKNYNGWSYYLGLNYDVNHYLSLFTNFSKTWRAPVIDE I.claudius_F1_51_745_120440_peptide number 16 438.43180000000007 0 QYE I.claudius_F1_51_745_120440_peptide number 17 1749.9156 0 TQFKQSSVPATSLNLE I.claudius_F1_51_745_120440_peptide number 18 275.3016 0 KE I.claudius_F1_51_745_120440_peptide number 19 2184.5174 0 MINQTRVGGIITLNHLFQE I.claudius_F1_51_745_120440_peptide number 20 2271.4027 0 NDAFQFRTTYFYNRGKNE I.claudius_F1_51_745_120440_peptide number 21 2805.2369 0 IFKTRGVNCVGNAADTNNKVCPKIIE I.claudius_F1_51_745_120440_peptide number 22 1593.7380000000003 0 NYRNLPGYVIQGAE I.claudius_F1_51_745_120440_peptide number 23 260.2869 0 LE I.claudius_F1_51_745_120440_peptide number 24 1341.4203000000002 0 AYYQSTYLFGE I.claudius_F1_51_745_120440_peptide number 25 3142.4787 0 ITYSYVKGKRDTSPRNPWGKTSTWIAE I.claudius_F1_51_745_120440_peptide number 26 2949.4068999999995 0 IPPRKATTALGFNVPKYYLTVGWRAE I.claudius_F1_51_745_120440_peptide number 27 7255.152300000002 0 FVRRQDRSPLSGDPKASSWSLPASRGYSLHNLFLSWSPAKIKGMNVKITVDNLFNRAYNPYLGE I.claudius_F1_51_745_120440_peptide number 28 1854.1143 0 LASGTGRNIKFSLSQKF I.claudius_F1_52_50_127036_peptide number 1 5869.8602 0 MGTSIKDTLFSFYLLTFIFQRCFRFVFNLVYNYQPICVSTRCLSSSVRR I.claudius_F1_53_59_128491_peptide number 1 6421.4198 0 MACGLSVPHFHLPIIRGISDSFPSLSPSISQIPKHYSPVRHSSARKQAFSCYRSTCMC I.claudius_F1_54_59_131033_peptide number 1 5933.851100000001 0 MDTYVWLNFIYIRTSFTLTFKVIDNSIFNAHRTKLSMTNFLVGSIKIDKE I.claudius_F1_54_59_131033_peptide number 2 950.1791000000001 0 CHSFIKLC I.claudius_F1_55_66_131847_peptide number 1 5618.416100000001 0 MSMLKPFWFKTFSISIITALLVACTSNT-NTQIPT-SNGSDPQQFGVQNIPIE I.claudius_F1_55_66_131847_peptide number 2 1356.7576999999999 0 LISKPLLCLFPI I.claudius_F1_56_181_132416_peptide number 1 391.48300000000006 0 MLE I.claudius_F1_56_181_132416_peptide number 2 4434.8261999999995 0 NFLLGVQGSGYVDFGDGNLNYFAYAGQNGYPYTAIGRLLVE I.claudius_F1_56_181_132416_peptide number 3 319.26800000000003 0 DGE I.claudius_F1_56_181_132416_peptide number 4 485.5744000000001 0 IPKE I.claudius_F1_56_181_132416_peptide number 5 1075.283 0 KMSIQAIRE I.claudius_F1_56_181_132416_peptide number 6 1669.8389 0 WGNRNPSRIQSLLE I.claudius_F1_56_181_132416_peptide number 7 417.4176 0 RNE I.claudius_F1_56_181_132416_peptide number 8 4392.0389 0 AYVFFKNDPSGKVKGSAGVPLVAMASVASDRNIIPSGSVLLVE I.claudius_F1_56_181_132416_peptide number 9 6567.466099999999 0 VPDIDNNGNWLGTHKLHLMVALDVGGAVKGHHFDLYRGIGARAGHIAGLSKHYGRVWVLR I.claudius_F1_57_338_133906_peptide number 1 8275.699900000001 0 MKKLLKISAISAALLSAPMMANADVLASVKPLGFIVSSIADGVTGTQVLVPAGASPHDYNLKLSDIQKVKSADLVVWIGE I.claudius_F1_57_338_133906_peptide number 2 1619.7671 0 DIDSFLDKPISQIE I.claudius_F1_57_338_133906_peptide number 3 2583.0379 0 RKKVITIADLADVKPLLSKAHHE I.claudius_F1_57_338_133906_peptide number 4 568.5818 0 HFHE I.claudius_F1_57_338_133906_peptide number 5 1341.2597 0 DGDHDHDHKHE I.claudius_F1_57_338_133906_peptide number 6 2341.3369000000002 0 HKHDHKHDHDHDHDHKHE I.claudius_F1_57_338_133906_peptide number 7 801.8069 0 HKHDHE I.claudius_F1_57_338_133906_peptide number 8 1063.0006 0 HHDHDHHE I.claudius_F1_57_338_133906_peptide number 9 5600.342900000001 0 GLTTNWHVWYSPAISKIVAQKVADKLTAQFPDKKALIAQNLSDFNRTLAE I.claudius_F1_57_338_133906_peptide number 10 362.33580000000006 0 QSE I.claudius_F1_57_338_133906_peptide number 11 6009.776500000001 0 KITAQLANVKDKGFYVFHDAYGYFNDAYGLKQTGYFTINPLVAPGAKTLAHIKE I.claudius_F1_57_338_133906_peptide number 12 147.1293 0 E I.claudius_F1_57_338_133906_peptide number 13 375.37430000000006 0 IDE I.claudius_F1_57_338_133906_peptide number 14 2100.4393 0 HKVNCLFAEPQFTPKVIE I.claudius_F1_57_338_133906_peptide number 15 4305.7724 0 SLAKNTKVNVGQLDPIGDKVTLGKNSYATFLQSTADSYME I.claudius_F1_57_338_133906_peptide number 16 433.56600000000003 0 CLAK I.claudius_F1_58_186_138799_peptide number 1 3516.3683 0 MKFNIPIFLTIFRVILIPFFVIAFYLPIE I.claudius_F1_58_186_138799_peptide number 2 6132.1745999999985 0 SSPFITTLIFFIAGVTDWLDGYLARKWKQTTRFGAFLDPVADKVMVVAALVLIVE I.claudius_F1_58_186_138799_peptide number 3 2193.5689 0 HQHTFWITIPAIIMISRE I.claudius_F1_58_186_138799_peptide number 4 914.1006 0 IIISALRE I.claudius_F1_58_186_138799_peptide number 5 535.6132 0 WMAE I.claudius_F1_58_186_138799_peptide number 6 317.33820000000003 0 LGE I.claudius_F1_58_186_138799_peptide number 7 3959.5995000000003 0 RSKIAVSWWGKWKTTAQMLALGGLLWRYNNYME I.claudius_F1_58_186_138799_peptide number 8 3887.7122 0 IAAIILLYIAAILTIWSMIQYLQVAKGSLLDNIQL I.claudius_F1_59_439_140688_peptide number 1 589.7021000000001 0 MPTLE I.claudius_F1_59_439_140688_peptide number 2 523.5794000000001 0 KTFE I.claudius_F1_59_439_140688_peptide number 3 1301.4526 0 LKQRGSTVRQE I.claudius_F1_59_439_140688_peptide number 4 3066.6741000000006 0 IIAGLTTFLAMVYSVIVVPNMLGAAGFPAE I.claudius_F1_59_439_140688_peptide number 5 14060.899900000008 0 SVFIATCLVAGLGSILIGLWANAPMAIGCAISLTAFTAFSLVIGQKVAIPVALGAVFLMGVVFTLISTTGIRAWILRNLPSNIAHGAGIGIGLFLLLIAANGVGLVVSNQAGLPVKLGDFTSFPVMMSLIGLALIIGLE I.claudius_F1_59_439_140688_peptide number 6 3371.127500000001 0 KMKIKGGILWVIIAITIVGLIFDPNVKFGGE I.claudius_F1_59_439_140688_peptide number 7 1069.2735 0 IFKMPTFGE I.claudius_F1_59_439_140688_peptide number 8 8446.654800000008 0 NSLFLQLDFMGALQPAILPVVFALVMTAVFDATGTIRAVAGQADLLDKDGQIINGGKALTSDSISSLFSGLFGTAPAAVYIE I.claudius_F1_59_439_140688_peptide number 9 13012.616500000006 0 SAAGTAAGGKTGITAIVVGVLFLLMLFFQPLAFLVPGYATAPALMYVGLLMLSNVSKLDFDDFVGAMSGLICAVFIVLTANIVTGIMLGFAALVIGRIVSGDIKRLNVGTVIIAIVLVAFYAGGWAI I.claudius_F1_60_159_146765_peptide number 1 379.4293 0 MTE I.claudius_F1_60_159_146765_peptide number 2 4530.040300000001 0 RVKTNYDHPNSMDRDLLIQHLKNLKNGSAVDVPVYSYVE I.claudius_F1_60_159_146765_peptide number 3 756.7647000000001 0 HTRTNE I.claudius_F1_60_159_146765_peptide number 4 1554.8313 0 TTHFTPKRIVILE I.claudius_F1_60_159_146765_peptide number 5 873.0023 0 GILLLTDE I.claudius_F1_60_159_146765_peptide number 6 3506.0658 0 RVRQLADISVFVDTPLDICFIRRLQRDME I.claudius_F1_60_159_146765_peptide number 7 147.1293 0 E I.claudius_F1_60_159_146765_peptide number 8 6836.005400000004 0 RGRSLQSVIDQYRATVRPMFLQFIEPSKQYADIVIPRGGKNRIAINMLKAQILHLLNQK I.claudius_F1_61_392_147841_peptide number 1 3660.4142 0 MKKFALIVGIVALAIFSFLYIQLYRVQSAINE I.claudius_F1_61_392_147841_peptide number 2 2584.9176 0 QLAQQNIAVQSINLSLFSPALSLE I.claudius_F1_61_392_147841_peptide number 3 1507.6870000000001 0 NIKTTQFSAQKIE I.claudius_F1_61_392_147841_peptide number 4 4197.7466 0 AKFSFLPLLYGNAALHSLNIQQLKLTQNTQNPANVSIE I.claudius_F1_61_392_147841_peptide number 5 2114.5269999999996 0 ISPFSLKQLLSKKVILNGE I.claudius_F1_61_392_147841_peptide number 6 780.8721 0 NHIRIE I.claudius_F1_61_392_147841_peptide number 7 3192.5357 0 FNKPIYGKTKTFHFSFHKANLDFSTSE I.claudius_F1_61_392_147841_peptide number 8 2206.4071 0 STPLQFVDASLNNQPIGYIE I.claudius_F1_61_392_147841_peptide number 9 6323.132500000002 0 THTAHQQIVTYIKPQCDNDCLAVLKYQQIDNQSAVNFSGKYFPVQRLFALLNLPE I.claudius_F1_61_392_147841_peptide number 10 3476.7775 0 MLSGHADFDLDFSFSSSSLIQGKLNFLAQNGE I.claudius_F1_61_392_147841_peptide number 11 3152.5742000000005 0 ILGVNLLDMVAQYFPINYNNDLLQNKE I.claudius_F1_61_392_147841_peptide number 12 778.8530000000001 0 LNTRFE I.claudius_F1_61_392_147841_peptide number 13 1996.2649000000004 0 QFYLQLFLQQNQLIAE I.claudius_F1_61_392_147841_peptide number 14 388.4592 0 KIE I.claudius_F1_61_392_147841_peptide number 15 2167.5714 0 LKTPALLGQGKGIIDLNRME I.claudius_F1_61_392_147841_peptide number 16 5918.632400000001 0 CNVDINLNSTDQRYQNLTLPINFFGNCNSPQYKINFTKKFRHQLIDAIKE I.claudius_F1_61_392_147841_peptide number 17 415.53090000000003 0 KLR I.claudius_F1_62_66_151142_peptide number 1 2767.0050999999994 0 MAILIFLSCSSSSSSSNASSINAVSSSE I.claudius_F1_62_66_151142_peptide number 2 1516.5249999999999 0 SKSNSCSHSSCSSSE I.claudius_F1_62_66_151142_peptide number 3 2267.5168000000003 0 VRSFSSAFSIFSAKGASTCSIN I.claudius_F1_63_155_153322_peptide number 1 647.7845000000001 0 M-KQIE I.claudius_F1_63_155_153322_peptide number 2 2660.9574000000002 0 IFTDGSCLGNPGAGGIGAVLRYKQHE I.claudius_F1_63_155_153322_peptide number 3 1918.1352000000002 0 KTLSKGYFQTTNNRME I.claudius_F1_63_155_153322_peptide number 4 699.8392000000001 0 LRAVIE I.claudius_F1_63_155_153322_peptide number 5 6444.351700000004 0 ALNTLKEPCLITLYSDSQYMKNGITKWIFNWKKNNWKASSGKPVKNQDLWIALDE I.claudius_F1_63_155_153322_peptide number 6 2467.7481000000002 0 SIQRHKINWQWVKGHAGHRE I.claudius_F1_63_155_153322_peptide number 7 261.2319 0 NE I.claudius_F1_63_155_153322_peptide number 8 478.5172 0 ICDE I.claudius_F1_63_155_153322_peptide number 9 715.8386 0 LAKKGAE I.claudius_F1_63_155_153322_peptide number 10 572.6086 0 NPTLE I.claudius_F1_63_155_153322_peptide number 11 726.7950000000001 0 DMGYIE I.claudius_F1_63_155_153322_peptide number 12 147.1293 0 E I.claudius_F1_64_91_155804_peptide number 1 1384.6241 0 MQVSRKSCAFVE I.claudius_F1_64_91_155804_peptide number 2 5614.395599999999 0 CGFSHFISGIRMAYRDNNARFHKIRRIVNGWVFCGNGHFCNHITIFAE I.claudius_F1_64_91_155804_peptide number 3 2953.3555999999994 0 KIFHFRRNFTNIFGTVYAFFLNAE I.claudius_F1_64_91_155804_peptide number 4 766.9085 0 IRSFNM I.claudius_F1_65_57_158379_peptide number 1 3545.2819000000004 0 MASLQISSRSLILLHIYLIPPLLLSLHYPLE I.claudius_F1_65_57_158379_peptide number 2 2941.5799000000006 0 QLVRFDLLLHLLQCGRFLFSLPLKA I.claudius_F1_66_66_159814_peptide number 1 567.6551000000001 0 MAFAE I.claudius_F1_66_66_159814_peptide number 2 3205.410299999999 0 RSTSAVAFSSFFLKRSNTSFGSHGSSHWE I.claudius_F1_66_66_159814_peptide number 3 147.1293 0 E I.claudius_F1_66_66_159814_peptide number 4 843.9248 0 TASIARPE I.claudius_F1_66_66_159814_peptide number 5 2306.5793000000003 0 AIASTQPRRPQPQIAPFGSANV I.claudius_F1_67_167_162046_peptide number 1 3397.9628000000007 0 MKGLKLRVPNAATNLAYAKYVGASPTPMAFSE I.claudius_F1_67_167_162046_peptide number 2 1520.6394000000003 0 VYLALQTNAVDGQE I.claudius_F1_67_167_162046_peptide number 3 1478.6473999999998 0 NPLAAVQAQKFYE I.claudius_F1_67_167_162046_peptide number 4 2590.9471000000003 0 VQKFLAMTNHILNDQLYLVSNE I.claudius_F1_67_167_162046_peptide number 5 539.5788 0 TYKE I.claudius_F1_67_167_162046_peptide number 6 357.4021 0 LPE I.claudius_F1_67_167_162046_peptide number 7 1215.3535000000002 0 DLQKVVKDAAE I.claudius_F1_67_167_162046_peptide number 8 1592.7501000000002 0 NAAKYHTKLFVDGE I.claudius_F1_67_167_162046_peptide number 9 998.1294 0 KDLVTFFE I.claudius_F1_67_167_162046_peptide number 10 1836.139 0 KQGVKITHPDLVPFKE I.claudius_F1_67_167_162046_peptide number 11 988.1147000000001 0 SMKPYYAE I.claudius_F1_67_167_162046_peptide number 12 1121.2437999999997 0 FVKQTGQKGE I.claudius_F1_67_167_162046_peptide number 13 787.9012 0 SALKQIE I.claudius_F1_67_167_162046_peptide number 14 413.46860000000004 0 AINP I.claudius_F1_68_394_163277_peptide number 1 1391.5520000000001 0 MTRWNVVNAATE I.claudius_F1_68_394_163277_peptide number 2 3386.991200000001 0 KLVYSLDSFPLLAVPFYILTGILMNTGGITE I.claudius_F1_68_394_163277_peptide number 3 4608.217900000001 0 RIFNFAKALLGHYTGGMGHVNIGASLLFSGMSGSALADAGGLGQLE I.claudius_F1_68_394_163277_peptide number 4 4409.130300000001 0 IKAMRDAGYDDDICGGITAASCIIGPLVPPSIAMIIYGVIANE I.claudius_F1_68_394_163277_peptide number 5 4678.655900000001 0 SIAKLFIAGFIPGVLITLALMAMNYRIAKKRGYPRTPKATRE I.claudius_F1_68_394_163277_peptide number 6 3502.0833000000007 0 QLCSSFKQSFWAILTPLLIIGGIFSGLFSPTE I.claudius_F1_68_394_163277_peptide number 7 2029.3780000000002 0 SAIVAAAYSVIIGKFVYKE I.claudius_F1_68_394_163277_peptide number 8 1367.6099000000002 0 LTLKSLFNSCIE I.claudius_F1_68_394_163277_peptide number 9 2689.2842000000005 0 AMAITGVVALMIMTVTFFGDMIARE I.claudius_F1_68_394_163277_peptide number 10 14250.59500000001 0 QVAMRVADVFVAVADSPLTVLIMINALLLFLGMFIDALALQFLVLPMLIPIAMQFNIDLIFFGVMTTLNMMVGILTPPMGMALFVVARVGNMSVSTVTKGVLPFLIPVFVTLVLITIFPQIITFVPNLLIP I.claudius_F1_69_64_166165_peptide number 1 4659.6617 0 MYLSLLLILLAWTLWLGNSLAWLGVIIFILVINQFQIARE I.claudius_F1_69_64_166165_peptide number 2 147.1293 0 E I.claudius_F1_69_64_166165_peptide number 3 524.5641 0 TYLE I.claudius_F1_69_64_166165_peptide number 4 681.6915 0 SKFGDE I.claudius_F1_69_64_166165_peptide number 5 1752.0771000000002 0 YRRYKQKVRRWL I.claudius_F1_70_65_171506_peptide number 1 5572.4129 0 MSFASPKRPAGTLDKIPAFCSSVSTSVISVAIKPGATTFTVIPRAATSFAKDLE I.claudius_F1_70_65_171506_peptide number 2 1031.1625999999999 0 KPTTPAFAAQ I.claudius_F1_71_82_172189_peptide number 1 4058.8379999999997 0 MMQHHLQILLVNHPQCVWLNHLILYLAPLQQALE I.claudius_F1_71_82_172189_peptide number 2 1733.9226 0 RHLAPFFQLFQSNE I.claudius_F1_71_82_172189_peptide number 3 1485.5937 0 LDYITDAQVRYE I.claudius_F1_71_82_172189_peptide number 4 2651.1777 0 FRCLQFQLSHQRYLIPILLVY I.claudius_F1_72_291_175736_peptide number 1 7307.5863000000045 0 MMTSNSYWQRLKVAFQYVMPQIYLTQIAGWFAKQKWGKITHFVIKAFAKKYNIDMSIAQKE I.claudius_F1_72_291_175736_peptide number 2 1207.2021 0 QFSDYASFNE I.claudius_F1_72_291_175736_peptide number 3 1049.2655 0 FFIRPLKE I.claudius_F1_72_291_175736_peptide number 4 2350.6102 0 NARPINQNPTALCLPADGRISE I.claudius_F1_72_291_175736_peptide number 5 2257.5233000000003 0 CGHIDDNLLLQAKGHFFSLE I.claudius_F1_72_291_175736_peptide number 6 559.6098000000001 0 DLLAE I.claudius_F1_72_291_175736_peptide number 7 390.389 0 DKE I.claudius_F1_72_291_175736_peptide number 8 359.418 0 LVE I.claudius_F1_72_291_175736_peptide number 9 694.7333000000001 0 TFKNGE I.claudius_F1_72_291_175736_peptide number 10 5978.840499999999 0 FVTTYLSPRDYHRVHMPCDATLRKMIYVPGDLFSVNPFLAQHVPNLFARNE I.claudius_F1_72_291_175736_peptide number 11 1081.2429 0 RVICVFDTE I.claudius_F1_72_291_175736_peptide number 12 3352.816000000001 0 FGTMVQILVGATITASIGTTWAGVINPPRHNE I.claudius_F1_72_291_175736_peptide number 13 926.0237000000001 0 VKTWTYE I.claudius_F1_72_291_175736_peptide number 14 204.1806 0 GE I.claudius_F1_72_291_175736_peptide number 15 1072.2558999999999 0 SAVKLLKGQE I.claudius_F1_72_291_175736_peptide number 16 3958.4825 0 MGWFQLGSTVINLFQANQVRLADHLSVNEPVRMGE I.claudius_F1_72_291_175736_peptide number 17 734.9263000000001 0 ILAYKK I.claudius_F1_73_104_178996_peptide number 1 961.1339 0 MSIQQIIE I.claudius_F1_73_104_178996_peptide number 2 772.8899000000001 0 QKIQKE I.claudius_F1_73_104_178996_peptide number 3 1101.2539 0 FQPHFLAIE I.claudius_F1_73_104_178996_peptide number 4 261.2319 0 NE I.claudius_F1_73_104_178996_peptide number 5 1260.2763 0 SHLHHSNRGSE I.claudius_F1_73_104_178996_peptide number 6 3671.2398999999996 0 SHFKCVIVSADFKNIRKVQRHQRIYQLLNE I.claudius_F1_73_104_178996_peptide number 7 147.1293 0 E I.claudius_F1_73_104_178996_peptide number 8 1813.0639 0 LNHSIHALALHLFTPE I.claudius_F1_73_104_178996_peptide number 9 147.1293 0 E I.claudius_F1_73_104_178996_peptide number 10 774.8212000000001 0 WKAQNE I.claudius_F1_73_104_178996_peptide number 11 1326.525 0 TVPHSTKCAGIGR I.claudius_F1_74_412_180944_peptide number 1 951.1407 0 MGLKNLFE I.claudius_F1_74_412_180944_peptide number 2 2315.7268999999997 0 KMEPAFLPGGKYSKLYPIFE I.claudius_F1_74_412_180944_peptide number 3 12559.498800000008 0 SIYTLLYTPGTVTHKNTHVRDALDSKRMMITVFLALFPAIFYGMYNVGNQAIPALNQLGNLDQLIANDWHYALASSLGLDLTANATWGSKMALGAIFFLPIYLVVFTVCTIWE I.claudius_F1_74_412_180944_peptide number 4 1156.3342 0 LLFSVVRGHE I.claudius_F1_74_412_180944_peptide number 5 360.36300000000006 0 VNE I.claudius_F1_74_412_180944_peptide number 6 3728.5279000000005 0 GMFVSTILFALIVPPTLPLWQAALGITFGIIVAKE I.claudius_F1_74_412_180944_peptide number 7 8454.3735 0 IFGGVGRNFMNPALAGRAFLFFAYPAQISGDTVWTAADGFSGATALSQWSQGGQGALQHTVTGAPITWMDAFVGNLPGSMGE I.claudius_F1_74_412_180944_peptide number 8 4561.4978 0 VSTLAILIGGAVIVFTRIAAWRIIAGVMIGMIATSTLFNLIGSE I.claudius_F1_74_412_180944_peptide number 9 6921.032100000004 0 TNPMFSMPWHWHFVLGGFALGMVFMATDPVSASFTNTGKWWYGALIGVMAVLIRTVNPAYPE I.claudius_F1_74_412_180944_peptide number 10 3881.6186000000007 0 GMMLAILFANLFAPIFDYIVVQANIKRRRARTNG I.claudius_F1_75_183_183584_peptide number 1 5290.394900000002 0 MALSFFLGMCTFLAVSKKVSPAFGLGIAVTFVLGIAVPVNQLIYANVLKE I.claudius_F1_75_183_183584_peptide number 2 558.625 0 NALIE I.claudius_F1_75_183_183584_peptide number 3 2579.0373 0 GVDLSFLNFITFIGVIAGLVQILE I.claudius_F1_75_183_183584_peptide number 4 4842.719400000001 0 MVLDKFMPSLYNALGIFLPLIAVNCAIFGGVSFMVQRDYNFPE I.claudius_F1_75_183_183584_peptide number 5 2425.839 0 SIVYGFGSGLGWMLAIVALAGLTE I.claudius_F1_75_183_183584_peptide number 6 3776.5741000000003 0 KMKYADIPAGLKGLGITFISVGLMALGFMSFSGIQL I.claudius_F1_76_58_184737_peptide number 1 6745.2193 0 MIYGVMSLKWTSILSVLTQWLHTLKRKVSLCLTFVLRLHHHANLMRLRVKCLLTFGH I.claudius_F1_77_347_185524_peptide number 1 2389.9826000000003 0 MKKLISGIIAVAMALSLAACQKE I.claudius_F1_77_347_185524_peptide number 2 3204.56 0 TKVISLSGKTMGTTYHVKYLDDGSITATSE I.claudius_F1_77_347_185524_peptide number 3 513.5448 0 KTHE I.claudius_F1_77_347_185524_peptide number 4 147.1293 0 E I.claudius_F1_77_347_185524_peptide number 5 260.2869 0 IE I.claudius_F1_77_347_185524_peptide number 6 2041.3258999999998 0 AILKDVNAKMSTYKKDSE I.claudius_F1_77_347_185524_peptide number 7 1760.9017 0 LSRFNQNTQVNTPIE I.claudius_F1_77_347_185524_peptide number 8 1163.3202 0 ISADFAKVLAE I.claudius_F1_77_347_185524_peptide number 9 1043.2179999999998 0 AIRLNKVTE I.claudius_F1_77_347_185524_peptide number 10 1927.1601 0 GALDVTVGPVVNLWGFGPE I.claudius_F1_77_347_185524_peptide number 11 528.6025000000001 0 KRPE I.claudius_F1_77_347_185524_peptide number 12 698.7651000000001 0 KQPTPE I.claudius_F1_77_347_185524_peptide number 13 459.494 0 QLAE I.claudius_F1_77_347_185524_peptide number 14 1987.217 0 RQAWVGIDKITLDTNKE I.claudius_F1_77_347_185524_peptide number 15 3035.4465999999998 0 KATLSKALPQVYVDLSSIAKGFGVDQVAE I.claudius_F1_77_347_185524_peptide number 16 388.4592 0 KLE I.claudius_F1_77_347_185524_peptide number 17 1209.3289000000002 0 QLNAQNYMVE I.claudius_F1_77_347_185524_peptide number 18 374.3895 0 IGGE I.claudius_F1_77_347_185524_peptide number 19 1028.2066 0 IRAKGKNIE I.claudius_F1_77_347_185524_peptide number 20 1041.2003 0 GKPWQIAIE I.claudius_F1_77_347_185524_peptide number 21 732.7798 0 KPTTTGE I.claudius_F1_77_347_185524_peptide number 22 473.524 0 RAVE I.claudius_F1_77_347_185524_peptide number 23 2308.5884999999994 0 AVIGLNNMGMASSGDYRIYFE I.claudius_F1_77_347_185524_peptide number 24 147.1293 0 E I.claudius_F1_77_347_185524_peptide number 25 958.0323000000001 0 NGKRFAHE I.claudius_F1_77_347_185524_peptide number 26 3952.486400000001 0 IDPKTGYPIQHHLASITVLAPTSMTADGLSTGLFVLGE I.claudius_F1_77_347_185524_peptide number 27 574.6245 0 DKALE I.claudius_F1_77_347_185524_peptide number 28 317.3383 0 VAE I.claudius_F1_77_347_185524_peptide number 29 3258.7214000000004 0 KNNLAVYLIIRTDNGFVTKSSSAFKKLTE I.claudius_F1_77_347_185524_peptide number 30 376.4055000000001 0 TKE I.claudius_F1_78_263_189957_peptide number 1 2760.3206000000005 0 MRKIKSLALLAVAALVIGCSSGSKDVE I.claudius_F1_78_263_189957_peptide number 2 646.6474000000001 0 QASVNE I.claudius_F1_78_263_189957_peptide number 3 1240.3596 0 LYTKGTTSLQE I.claudius_F1_78_263_189957_peptide number 4 541.5085 0 GSYSE I.claudius_F1_78_263_189957_peptide number 5 1165.3394 0 AIRYLKATTE I.claudius_F1_78_263_189957_peptide number 6 1082.1663 0 RFPGSVYQE I.claudius_F1_78_263_189957_peptide number 7 7647.457800000003 0 QAMLDLIYANYKTQDYTQVLLMVDSFLHQFTQSPNQAYAVYMAGLTNAATGDNFIQDFFGIDRATRE I.claudius_F1_78_263_189957_peptide number 8 4819.396500000001 0 TTSMRTAFSNFQNLVRVFPNSPYSQDALARMAYIKDALARHE I.claudius_F1_78_263_189957_peptide number 9 260.2869 0 LE I.claudius_F1_78_263_189957_peptide number 10 3817.4625000000005 0 IAKFYAKRKAWVAVANRVVGMLKQYPDTKATYE I.claudius_F1_78_263_189957_peptide number 11 836.995 0 GLFLMQE I.claudius_F1_78_263_189957_peptide number 12 381.38050000000004 0 AYE I.claudius_F1_78_263_189957_peptide number 13 2947.362900000001 0 KMGLTALANDTQKIIDANKDKTFAPIE I.claudius_F1_78_263_189957_peptide number 14 1434.6795 0 KPNEPDLKVPAVK I.claudius_F1_79_52_191534_peptide number 1 6030.3337 0 MHIVIAISITRNHNITNPGMLITFLQIFCKFKGTFIWHPNKILMNLIIKFF I.claudius_F1_80_53_192868_peptide number 1 1669.9385 0 MSPRTGLTFAYLIAE I.claudius_F1_80_53_192868_peptide number 2 234.2066 0 SE I.claudius_F1_80_53_192868_peptide number 3 477.46630000000005 0 SAATE I.claudius_F1_80_53_192868_peptide number 4 2752.0699000000004 0 RPAIPQAIVRYTSRSCNAINAASYE I.claudius_F1_80_53_192868_peptide number 5 597.724 0 YLSCI I.claudius_F1_81_53_193832_peptide number 1 1550.826 0 MHGVVLRFLHVNE I.claudius_F1_81_53_193832_peptide number 2 4765.6616 0 LLLQDLRHLLNLFVKKRIVRIYLSLRNLHHKVLHDGSHR I.claudius_F1_82_69_194650_peptide number 1 7249.601400000002 0 MKWYKSKSAYFIGSTPICCQNSGVLKCAVIIPIGIINILATQCSNPDATNKPIGIIIINALSVTVLPE I.claudius_F1_83_305_195914_peptide number 1 1459.6623 0 MYYGLDIGGTKIE I.claudius_F1_83_305_195914_peptide number 2 691.7724000000001 0 LAVFNE I.claudius_F1_83_305_195914_peptide number 3 388.4592 0 KLE I.claudius_F1_83_305_195914_peptide number 4 638.7098 0 KLYSE I.claudius_F1_83_305_195914_peptide number 5 1205.3173 0 RVPTPKTDYE I.claudius_F1_83_305_195914_peptide number 6 147.1293 0 E I.claudius_F1_83_305_195914_peptide number 7 1657.8217 0 WLNTIVDLVNRADE I.claudius_F1_83_305_195914_peptide number 8 479.5268000000001 0 KFGE I.claudius_F1_83_305_195914_peptide number 9 1943.1612000000002 0 VGTVGLGVPGFVNQQTGLAE I.claudius_F1_83_305_195914_peptide number 10 2567.9618 0 IANIRVADNKPILCDLSTRLGRE I.claudius_F1_83_305_195914_peptide number 11 473.524 0 VRAE I.claudius_F1_83_305_195914_peptide number 12 1083.1294 0 NDANCFALSE I.claudius_F1_83_305_195914_peptide number 13 620.6084000000001 0 AWDTE I.claudius_F1_83_305_195914_peptide number 14 3594.0166000000013 0 NQQYSTVLGLILGTGFGGGFVLNGKVHSGQVGMAGE I.claudius_F1_83_305_195914_peptide number 15 4667.266599999999 0 LGHLQLNYHALKLLGWDNAPIYQCGCGNKACLDNYLSGRGFE I.claudius_F1_83_305_195914_peptide number 16 1096.2540999999999 0 MLYQDLKGE I.claudius_F1_83_305_195914_peptide number 17 1897.1356999999998 0 TLSARKIINLFYQSNE I.claudius_F1_83_305_195914_peptide number 18 1239.3732 0 SAVDFVNLFVE I.claudius_F1_83_305_195914_peptide number 19 3425.9012000000007 0 LAAISIGNIITAFDPHMIVLGGGLSNFDYLYE I.claudius_F1_83_305_195914_peptide number 20 4172.044300000001 0 ALPKALPPHLMRKAKVPPIKKAKHGDSGGVRGAAALFLTK I.claudius_F1_84_172_197935_peptide number 1 3007.5639000000006 0 MLGVFVDTMIVCTCTAVIILLSNNYGSE I.claudius_F1_84_172_197935_peptide number 2 2016.2548000000002 0 TLKSISLTQNALQYHIGE I.claudius_F1_84_172_197935_peptide number 3 2912.336599999999 0 FGAHFLAFILLLFAYSSIIGNYAYAE I.claudius_F1_84_172_197935_peptide number 4 8735.597400000002 0 SNIRFIKNKPWLVLLFRLMVLFFVYFGAVRSGNVVWNFADTVMAVMAIINLIAILMLSPIVWKLMKDYQRQLKE I.claudius_F1_84_172_197935_peptide number 5 530.572 0 GKTPE I.claudius_F1_84_172_197935_peptide number 6 650.7205 0 FKIDE I.claudius_F1_84_172_197935_peptide number 7 407.41780000000006 0 YPE I.claudius_F1_84_172_197935_peptide number 8 1589.9249 0 LRKKIFDSRIWK I.claudius_F1_85_58_199579_peptide number 1 722.8494000000001 0 MSPFIE I.claudius_F1_85_58_199579_peptide number 2 869.8942000000001 0 SSTICGSSE I.claudius_F1_85_58_199579_peptide number 3 2811.0742000000005 0 RPFTPPNAEPFQTRPVTNWNGRVE I.claudius_F1_85_58_199579_peptide number 4 1928.3238000000001 0 ISCPAPATPMIMDCPQPR I.claudius_F1_86_110_201297_peptide number 1 2283.7348 0 MAKKSIFRAKFFLFYRTE I.claudius_F1_86_110_201297_peptide number 2 5062.217600000001 0 FIMFGLSPAQLIILLVVILLIFGTKKLRNAGSDLGAAVKGFKKAMKE I.claudius_F1_86_110_201297_peptide number 3 262.2167 0 DE I.claudius_F1_86_110_201297_peptide number 4 688.7703000000001 0 KVKDAE I.claudius_F1_86_110_201297_peptide number 5 851.9004 0 FKSIDNE I.claudius_F1_86_110_201297_peptide number 6 1366.5658 0 TASAKKGKYKRE I.claudius_F1_86_110_201297_peptide number 7 2123.522 0 RNRLNPCLILVFQNLFY I.claudius_F1_87_257_202160_peptide number 1 693.7238 0 MSNVDE I.claudius_F1_87_257_202160_peptide number 2 1136.2981 0 SQPLITHLVE I.claudius_F1_87_257_202160_peptide number 3 9945.904500000004 0 LRNRLLRCVICVVLVFVALVYFSNDIYHFVAAPLTAVMPKGATMIATNIQTPFFTPIKLTAIVAIFISVPYLLYQIWAFIAPALYQHE I.claudius_F1_87_257_202160_peptide number 4 4692.5367 0 KRMIYPLLFSSTILFYCGVAFAYYIVFPLVFSFFTQTAPE I.claudius_F1_87_257_202160_peptide number 5 2884.3003000000003 0 GVTIATDISSYLDFALALFLAFGVCFE I.claudius_F1_87_257_202160_peptide number 6 2241.7311000000004 0 VPIAIILLCWTGITTVKALSE I.claudius_F1_87_257_202160_peptide number 7 4069.9770000000003 0 KRPYIIVAAFFIGMLLTPPDVFSQTLLAIPMCLLFE I.claudius_F1_87_257_202160_peptide number 8 1763.9867999999997 0 LGLLVARFYQPKDDE I.claudius_F1_87_257_202160_peptide number 9 875.8805000000001 0 SAVKNNDE I.claudius_F1_87_257_202160_peptide number 10 234.2066 0 SE I.claudius_F1_87_257_202160_peptide number 11 375.4207 0 KTQ I.claudius_F1_88_268_203836_peptide number 1 2884.3368000000005 0 MKKLSNQSACVFTGRGLSFGGSLIRPE I.claudius_F1_88_268_203836_peptide number 2 1718.9660000000001 0 ATGYGLIYFAQAMLAE I.claudius_F1_88_268_203836_peptide number 3 2370.5704000000005 0 KGDSFAGKVVSVSGSGNVAQYAIE I.claudius_F1_88_268_203836_peptide number 4 2910.1690000000003 0 KALSLGAKVVTCSDSSGYVYDPNGFTTE I.claudius_F1_88_268_203836_peptide number 5 2436.8073 0 KLAALFDIKNTKRGRVKDYAE I.claudius_F1_88_268_203836_peptide number 6 1031.1177 0 QFGLQYFE I.claudius_F1_88_268_203836_peptide number 7 771.8637000000001 0 GKRPWE I.claudius_F1_88_268_203836_peptide number 8 1500.6729 0 VQVDIALPCATQNE I.claudius_F1_88_268_203836_peptide number 9 260.2869 0 LE I.claudius_F1_88_268_203836_peptide number 10 1854.1558000000002 0 LSDAQRLIKNGVKLVAE I.claudius_F1_88_268_203836_peptide number 11 933.0378000000001 0 GANMPTTIE I.claudius_F1_88_268_203836_peptide number 12 319.3111 0 ATE I.claudius_F1_88_268_203836_peptide number 13 2370.6563000000006 0 ALLAADVLFGPGKAANAGGVATSGLE I.claudius_F1_88_268_203836_peptide number 14 1570.7246 0 MAQSSQRLYWTAE I.claudius_F1_88_268_203836_peptide number 15 147.1293 0 E I.claudius_F1_88_268_203836_peptide number 16 2669.0872 0 VDAQLHRIMLDIHANCKKYGTIE I.claudius_F1_88_268_203836_peptide number 17 332.3098 0 GQE I.claudius_F1_88_268_203836_peptide number 18 2684.0738000000006 0 NINYVVGANVAGFVKVADAMLAQGVY I.claudius_F1_89_54_205602_peptide number 1 1937.2425 0 MLQYLLCYFWQYHE I.claudius_F1_89_54_205602_peptide number 2 5050.874999999999 0 YQLNHYLIVFGFVLRCFQYFQYHYHKKDQLLPFLFPFLY I.claudius_F1_90_198_206690_peptide number 1 632.8129 0 MKIIE I.claudius_F1_90_198_206690_peptide number 2 361.3478 0 VDE I.claudius_F1_90_198_206690_peptide number 3 147.1293 0 E I.claudius_F1_90_198_206690_peptide number 4 1628.7805 0 LYQYIASQTRSIGE I.claudius_F1_90_198_206690_peptide number 5 3034.4633 0 SASDILRRLLSLPVHTSIVNDLIITSAE I.claudius_F1_90_198_206690_peptide number 6 1498.6803000000002 0 TDQKPKQAINVKE I.claudius_F1_90_198_206690_peptide number 7 2128.4693 0 VNIKTTKKQSITAINQIVE I.claudius_F1_90_198_206690_peptide number 8 1132.2648 0 KVQTLLNSTE I.claudius_F1_90_198_206690_peptide number 9 422.43240000000003 0 FQE I.claudius_F1_90_198_206690_peptide number 10 147.1293 0 E I.claudius_F1_90_198_206690_peptide number 11 2345.7844000000005 0 SKAVVRFLAILRVLYRTNPE I.claudius_F1_90_198_206690_peptide number 12 752.7694 0 SFAQATE I.claudius_F1_90_198_206690_peptide number 13 1697.8492999999999 0 SLQGRTRVYFARDE I.claudius_F1_90_198_206690_peptide number 14 4071.744600000001 0 ATLLMAGNHTKPKQIPDTPYWVITNTNSGRKMLMLE I.claudius_F1_90_198_206690_peptide number 15 752.8571999999999 0 GAMQSME I.claudius_F1_90_198_206690_peptide number 16 357.4021 0 LPE I.claudius_F1_90_198_206690_peptide number 17 589.6358 0 TLIDE I.claudius_F1_90_198_206690_peptide number 18 985.0942 0 VRSYFTVN I.claudius_F1_91_202_208039_peptide number 1 853.0375 0 MLKYGIE I.claudius_F1_91_202_208039_peptide number 2 1008.0597 0 TYSGYGMTE I.claudius_F1_91_202_208039_peptide number 3 2603.9942 0 MASTVFAKKSDRKQGVGQPLLGRE I.claudius_F1_91_202_208039_peptide number 4 854.9242 0 YCLVNDE I.claudius_F1_91_202_208039_peptide number 5 4444.079600000001 0 IWLKGAGLAMGYWKDRQIVPLTNNQGWIQTKDKGIWQE I.claudius_F1_91_202_208039_peptide number 6 204.1806 0 GE I.claudius_F1_91_202_208039_peptide number 7 1734.0253 0 LVIIGRLDNMFISGGE I.claudius_F1_91_202_208039_peptide number 8 599.6339 0 NIQPE I.claudius_F1_91_202_208039_peptide number 9 147.1293 0 E I.claudius_F1_91_202_208039_peptide number 10 260.2869 0 IE I.claudius_F1_91_202_208039_peptide number 11 2435.7761000000005 0 QVIIQHSSVNQVFVLPQKNKE I.claudius_F1_91_202_208039_peptide number 12 2337.5852 0 FGQRPVALVDFNEPFSKSAVE I.claudius_F1_91_202_208039_peptide number 13 3300.9731 0 NLMFFLQDKLARFKQPIAYYPLPLMLE I.claudius_F1_91_202_208039_peptide number 14 2255.6186000000002 0 KGIKISRKQLADWLAKRDE I.claudius_F1_91_202_208039_peptide number 15 245.2755 0 IN I.claudius_F1_92_648_210063_peptide number 1 942.1770000000001 0 MLPRALIE I.claudius_F1_92_648_210063_peptide number 2 6156.271600000003 0 QFNGMLKKLGFPTNYDNLPYLLMYFLGLFIVGGAIFKFKNRIKQQLNKINRE I.claudius_F1_92_648_210063_peptide number 3 5321.1734 0 IHRLDTDSQWSTPLALLLTAFLTLSSTLWFLAVCQMIGFFFFKNPE I.claudius_F1_92_648_210063_peptide number 4 147.1293 0 E I.claudius_F1_92_648_210063_peptide number 5 4291.8443 0 FWHWSFSMAGYWWFFTFWISLFRPNGIFVNHFE I.claudius_F1_92_648_210063_peptide number 6 449.4562000000001 0 SSKE I.claudius_F1_92_648_210063_peptide number 7 7455.642300000003 0 NAQRFRGVIQRIIVVVVLLLNTSVFSNVTDAGLANDVLGQINTIAALIFCAAIIAPRFNRVLRSYEPE I.claudius_F1_92_648_210063_peptide number 8 4563.475300000001 0 TNKHHWLIRIVQIGFRLIPVGLIVLIVLGYYYTALNLIE I.claudius_F1_92_648_210063_peptide number 9 4568.278300000001 0 HFIHSYIAWCVWWLVRNTIYRGITVSSRRLAHRRLAE I.claudius_F1_92_648_210063_peptide number 10 1028.21 0 KRRQKALE I.claudius_F1_92_648_210063_peptide number 11 538.5078000000001 0 NNYE I.claudius_F1_92_648_210063_peptide number 12 1430.4706 0 NISSDDVVAVGEPE I.claudius_F1_92_648_210063_peptide number 13 147.1293 0 E I.claudius_F1_92_648_210063_peptide number 14 5095.886099999999 0 SLALNDVRSQLLRFVDLFIWTALLGIFYYVWSDLVTVVSYLRE I.claudius_F1_92_648_210063_peptide number 15 1896.08 0 ITLWQQTTTTDAGTVME I.claudius_F1_92_648_210063_peptide number 16 3143.7994000000003 0 SITLFNLLVALVIVGITYVLVRNISGILE I.claudius_F1_92_648_210063_peptide number 17 6659.7667999999985 0 VLIFSRVNLSQGTPYTITTLLTYIFIAIGGAWAFATLGMSWSKLQWLFAALSVGLGFGMQE I.claudius_F1_92_648_210063_peptide number 18 1582.8792 0 IFANFVSGIILLFE I.claudius_F1_92_648_210063_peptide number 19 1467.6696000000002 0 RPIRVGDVVTINE I.claudius_F1_92_648_210063_peptide number 20 2501.9221000000002 0 VSGTVAKIRIRAITLIDFDRKE I.claudius_F1_92_648_210063_peptide number 21 5390.1730000000025 0 VIVPNKSFVTGQVTNWALSNTMTRLVISVGVAYGSDLTLVRQLLLQAADE I.claudius_F1_92_648_210063_peptide number 22 2805.1010999999994 0 QPTILRDPKPSAYFLTFGASTLDHE I.claudius_F1_92_648_210063_peptide number 23 777.9081000000001 0 LRVYVE I.claudius_F1_92_648_210063_peptide number 24 2046.1600999999998 0 QVGDRTSTTDALNRRINE I.claudius_F1_92_648_210063_peptide number 25 478.53870000000006 0 LFAE I.claudius_F1_92_648_210063_peptide number 26 2417.5851000000002 0 HNIDIAFNQLDVFIKNNDTGE I.claudius_F1_92_648_210063_peptide number 27 147.1293 0 E I.claudius_F1_92_648_210063_peptide number 28 945.1561999999999 0 IPFVDVKK I.claudius_F1_93_216_214172_peptide number 1 9545.517000000002 0 MPPAMALGTNKLQAMGGALSASLYFLRKRAVNLRDIWFILIWVFLGSALGTLLIQSIDVAIFKKMLPFLILAIGLYFLFTPKLGDE I.claudius_F1_93_216_214172_peptide number 2 14117.9237 0 DRKQRLSYLLFGLLVSPFLGFYDGFFGPGTGSIMSLACVTLLGFNLPKAAAHAKVMNFTSNLASFALFLLGGQILWKVGFVMMAGSILGANLGAKMVMTKGKTLIRPMVVIMSFMMTAKMVYDQGWFHF I.claudius_F1_94_50_216028_peptide number 1 1281.6781999999998 0 MRRCMILVME I.claudius_F1_94_50_216028_peptide number 2 2619.1492 0 LQLSVPQTFSCRLWMILLILDE I.claudius_F1_94_50_216028_peptide number 3 1998.4797 0 LLRPMPSVIFLLWAVSR I.claudius_F1_95_143_216492_peptide number 1 3588.0719000000004 0 MCQMNSIGSQFSQVDGVTAMTDVTGFGLLGHLIE I.claudius_F1_95_143_216492_peptide number 2 363.4298 0 ICE I.claudius_F1_95_143_216492_peptide number 3 5015.568200000001 0 GSNLSAVVFSDKIKTLDGVKDYIAQGCVPGGTGRNFDSYGHKVGILTE I.claudius_F1_95_143_216492_peptide number 4 147.1293 0 E I.claudius_F1_95_143_216492_peptide number 5 1942.2377000000004 0 QKAILCDPQTSGGLLVAVE I.claudius_F1_95_143_216492_peptide number 6 2177.4074 0 LNSVQTVIDIAKDAGIDLYE I.claudius_F1_95_143_216492_peptide number 7 985.1787 0 VGKLKPKSE I.claudius_F1_95_143_216492_peptide number 8 660.7138 0 SDIVVE I.claudius_F1_95_143_216492_peptide number 9 245.3187 0 VK I.claudius_F1_96_107_217715_peptide number 1 1237.4285 0 MSLPAIPHRSE I.claudius_F1_96_107_217715_peptide number 2 1858.1112 0 RNRRLTILHQFQFE I.claudius_F1_96_107_217715_peptide number 3 2310.5647000000004 0 STVHQSLRNVHILKSISDFE I.claudius_F1_96_107_217715_peptide number 4 3806.5505000000003 0 QARLRRLDRVYVLVAKGKSPLRLLLPQLLQYE I.claudius_F1_96_107_217715_peptide number 5 3315.8356000000003 0 SHPVKVAPSLAFLGHHHKGDRPRFYACRM I.claudius_F1_97_213_219442_peptide number 1 4242.891699999999 0 MALAKQDKQQITNLQKKLTALFSLPPQFLDNQIQISE I.claudius_F1_97_213_219442_peptide number 2 4315.9591 0 KILTRIFKTDKNLTPKFLDYLYFEPINTVDANLIQE I.claudius_F1_97_213_219442_peptide number 3 3040.4496 0 MKKNLLVSFLANDQAKIYIRQTDNSE I.claudius_F1_97_213_219442_peptide number 4 995.1503 0 QFVQTLME I.claudius_F1_97_213_219442_peptide number 5 2640.1286 0 RGAKADQIILLSLNAKGIFQKIIE I.claudius_F1_97_213_219442_peptide number 6 1937.1135000000002 0 QIRQDFPNQTIFSITE I.claudius_F1_97_213_219442_peptide number 7 1216.3414 0 NRISLITPSSE I.claudius_F1_97_213_219442_peptide number 8 2353.8080000000004 0 IKSRLALANMMFNRQFKGVE I.claudius_F1_97_213_219442_peptide number 9 1483.5348000000001 0 VDDFSYLDQPRE I.claudius_F1_97_213_219442_peptide number 10 2306.556 0 NLQHNNDAIRYKTFQAMLE I.claudius_F1_97_213_219442_peptide number 11 302.32680000000005 0 GLN I.claudius_F1_98_395_220730_peptide number 1 2336.7093999999997 0 MANALKQQGINKIILLSHAGSE
WARNING: some intermediate output was truncated. WARNING: some intermediate output was truncated. WARNING: some intermediate output was truncated.
I.claudius_F1_98_395_220730_peptide number 2 502.56180000000006 0 KNIE I.claudius_F1_98_395_220730_peptide number 3 2678.8569 0 IAQKVNDIDVIVTGDSHYLYGNDE I.claudius_F1_98_395_220730_peptide number 4 1330.6145999999999 0 LRSLKLPVIYE I.claudius_F1_98_395_220730_peptide number 5 520.5754000000001 0 YPLE I.claudius_F1_98_395_220730_peptide number 6 1493.6820000000002 0 FKNPNGDPVFVME I.claudius_F1_98_395_220730_peptide number 7 1882.0765000000001 0 GWAYSAVVGDLGVKFSPE I.claudius_F1_98_395_220730_peptide number 8 2758.2467 0 GIASITRKIPHVLMSSHKLQVKNAE I.claudius_F1_98_395_220730_peptide number 9 619.6667 0 GKWTE I.claudius_F1_98_395_220730_peptide number 10 533.5295000000001 0 LTGDE I.claudius_F1_98_395_220730_peptide number 11 3797.3586 0 RKKALDTLKSMKSISLDDHDAKTDMLISKYKSE I.claudius_F1_98_395_220730_peptide number 12 858.9394000000001 0 KDRLAQE I.claudius_F1_98_395_220730_peptide number 13 2594.8978 0 IVGVITGSAMPGGSANRIPNKAGSNPE I.claudius_F1_98_395_220730_peptide number 14 1064.1924000000001 0 GSIATRFIAE I.claudius_F1_98_395_220730_peptide number 15 656.7052 0 TMYNE I.claudius_F1_98_395_220730_peptide number 16 4883.488300000002 0 LKTVDLTIQNAGGVRADILPGNVTFNDAYTFLPFGNTLYTYKME I.claudius_F1_98_395_220730_peptide number 17 972.1368 0 GSLVKQVLE I.claudius_F1_98_395_220730_peptide number 18 2536.7690000000002 0 DAMQFALVDGSTGAFPYGAGIRYE I.claudius_F1_98_395_220730_peptide number 19 332.3098 0 ANE I.claudius_F1_98_395_220730_peptide number 20 530.5289 0 TPNAE I.claudius_F1_98_395_220730_peptide number 21 887.0357000000001 0 GKRLVSVE I.claudius_F1_98_395_220730_peptide number 22 5310.839400000002 0 VLNKQTQQWEPIDDNKRYLVGTNAYVAGGKDGYKTFGKLFNDPKYE I.claudius_F1_98_395_220730_peptide number 23 1079.1144 0 GVDTYLPDAE I.claudius_F1_98_395_220730_peptide number 24 1675.9927 0 SFIKFMKKHPHFE I.claudius_F1_98_395_220730_peptide number 25 2042.2493 0 AYTSSNVKFNASTDALPKK I.claudius_F1_99_212_223214_peptide number 1 2852.371200000001 0 MIGAFYQPSMVIIDTLTLNTLPKRE I.claudius_F1_99_212_223214_peptide number 2 672.7277 0 VNAGLAE I.claudius_F1_99_212_223214_peptide number 3 1283.4687000000001 0 VIKYGAILDYE I.claudius_F1_99_212_223214_peptide number 4 441.47710000000006 0 FFE I.claudius_F1_99_212_223214_peptide number 5 446.4968 0 WLE I.claudius_F1_99_212_223214_peptide number 6 640.6428000000001 0 QHIDE I.claudius_F1_99_212_223214_peptide number 7 777.908 0 LVALHPE I.claudius_F1_99_212_223214_peptide number 8 2358.7201999999997 0 ALQHCISRCCQIKADVVARDE I.claudius_F1_99_212_223214_peptide number 9 248.23319999999998 0 TE I.claudius_F1_99_212_223214_peptide number 10 1949.1738000000005 0 KGDRALLNLGHTFGHAIE I.claudius_F1_99_212_223214_peptide number 11 1383.4667000000002 0 THLGYGNWLHGE I.claudius_F1_99_212_223214_peptide number 12 1369.6277 0 AVSTGMMMAAALSE I.claudius_F1_99_212_223214_peptide number 13 147.1293 0 E I.claudius_F1_99_212_223214_peptide number 14 1387.5351 0 LGDISIADVSRLE I.claudius_F1_99_212_223214_peptide number 15 2081.393 0 KLLARANLPTVSPDTMQPE I.claudius_F1_99_212_223214_peptide number 16 4003.690600000001 0 DYLPHMMRDKKVLSGKLRLVLLKSLGQAYVANDTE I.claudius_F1_99_212_223214_peptide number 17 1740.9816 0 HTLVLNAIRRCTQTD I.claudius_F1_100_225_226583_peptide number 1 2601.994800000001 0 MTTNKDHFMAKIQLVAQANLPTE I.claudius_F1_100_225_226583_peptide number 2 1190.4101 0 YGIFKMVGFE I.claudius_F1_100_225_226583_peptide number 3 863.9543000000001 0 FPDTKKE I.claudius_F1_100_225_226583_peptide number 4 2473.7596 0 HVALVMGDISNADEPVLARIHSE I.claudius_F1_100_225_226583_peptide number 5 2907.3452 0 CLTGDALHSLKCDCGFQLATALKQIQE I.claudius_F1_100_225_226583_peptide number 6 147.1293 0 E I.claudius_F1_100_225_226583_peptide number 7 1199.3622 0 GRGVLIYHRE I.claudius_F1_100_225_226583_peptide number 8 147.1293 0 E I.claudius_F1_100_225_226583_peptide number 9 2649.0312 0 GRGIGLINKIRAYSLQDKGMDTIE I.claudius_F1_100_225_226583_peptide number 10 1148.2657 0 ANLALGFKADE I.claudius_F1_100_225_226583_peptide number 11 564.5915 0 RNFE I.claudius_F1_100_225_226583_peptide number 12 813.9386000000001 0 VCADMFE I.claudius_F1_100_225_226583_peptide number 13 1712.0663000000002 0 LLGVKKVRLMTNNPE I.claudius_F1_100_225_226583_peptide number 14 374.43270000000007 0 KVE I.claudius_F1_100_225_226583_peptide number 15 1189.4255000000003 0 TMKKAGINVVE I.claudius_F1_100_225_226583_peptide number 16 883.0039 0 RVPLNVGE I.claudius_F1_100_225_226583_peptide number 17 3053.3673 0 NRYNTKYLDTKAKKMGHYIVHNNDE I.claudius_F1_100_225_226583_peptide number 18 1326.5249000000001 0 QHLMTCPHCQE I.claudius_F1_100_225_226583_peptide number 19 147.1293 0 E I.claudius_F1_100_225_226583_peptide number 20 244.3305 0 II I.claudius_F1_101_682_229596_peptide number 1 2441.8633000000004 0 MSMSNPLLNIQGLPPFSQIKPE I.claudius_F1_101_682_229596_peptide number 2 820.9361000000001 0 HIRPAVE I.claudius_F1_101_682_229596_peptide number 3 1332.5261 0 KLIQDCRNTIE I.claudius_F1_101_682_229596_peptide number 4 1412.5909000000001 0 QVLKQPHFTWE I.claudius_F1_101_682_229596_peptide number 5 946.0977 0 NFILPLTE I.claudius_F1_101_682_229596_peptide number 6 2625.8075000000003 0 TNDRLNRAWSPVSHLNSVKNSTE I.claudius_F1_101_682_229596_peptide number 7 416.47260000000006 0 LRE I.claudius_F1_101_682_229596_peptide number 8 1237.4218 0 AYQTCLPLLSE I.claudius_F1_101_682_229596_peptide number 9 2613.8761 0 YSTWVGQHKGLYNAYLALKNSAE I.claudius_F1_101_682_229596_peptide number 10 1483.6639 0 FADYSIAQKKAIE I.claudius_F1_101_682_229596_peptide number 11 879.9138 0 NSLRDFE I.claudius_F1_101_682_229596_peptide number 12 774.8593000000001 0 LSGIGLSE I.claudius_F1_101_682_229596_peptide number 13 147.1293 0 E I.claudius_F1_101_682_229596_peptide number 14 907.9703000000001 0 KQQRYGE I.claudius_F1_101_682_229596_peptide number 15 786.9165000000002 0 IVARLSE I.claudius_F1_101_682_229596_peptide number 16 1926.0676 0 LNSQFSNNVLDATMGWE I.claudius_F1_101_682_229596_peptide number 17 501.6168 0 KLIE I.claudius_F1_101_682_229596_peptide number 18 261.2319 0 NE I.claudius_F1_101_682_229596_peptide number 19 218.2072 0 AE I.claudius_F1_101_682_229596_peptide number 20 598.6889 0 LAGLPE I.claudius_F1_101_682_229596_peptide number 21 1103.1407 0 SALQAAQQSAE I.claudius_F1_101_682_229596_peptide number 22 1398.6058 0 SKGLKGYRFTLE I.claudius_F1_101_682_229596_peptide number 23 1415.6728 0 IPSYLPVMTYCE I.claudius_F1_101_682_229596_peptide number 24 757.8388 0 NRALRE I.claudius_F1_101_682_229596_peptide number 25 147.1293 0 E I.claudius_F1_101_682_229596_peptide number 26 1318.4583 0 MYRAYATRASE I.claudius_F1_101_682_229596_peptide number 27 1660.8058 0 QGPNAGKWDNSKVME I.claudius_F1_101_682_229596_peptide number 28 147.1293 0 E I.claudius_F1_101_682_229596_peptide number 29 843.0228000000002 0 ILTLRVE I.claudius_F1_101_682_229596_peptide number 30 1369.5612 0 LAKLLGFNTYTE I.claudius_F1_101_682_229596_peptide number 31 963.1499 0 LSLATKMAE I.claudius_F1_101_682_229596_peptide number 32 1638.7752999999998 0 NPQQVLDFLDHLAE I.claudius_F1_101_682_229596_peptide number 33 784.8609 0 RAKPQGE I.claudius_F1_101_682_229596_peptide number 34 275.3016 0 KE I.claudius_F1_101_682_229596_peptide number 35 388.41610000000003 0 LQE I.claudius_F1_101_682_229596_peptide number 36 711.8267000000001 0 LKGYCE I.claudius_F1_101_682_229596_peptide number 37 275.3016 0 KE I.claudius_F1_101_682_229596_peptide number 38 551.5895 0 FGVTE I.claudius_F1_101_682_229596_peptide number 39 1297.4107 0 LAPWDIGFYSE I.claudius_F1_101_682_229596_peptide number 40 1486.6280000000002 0 KQKQHLYAINDE I.claudius_F1_101_682_229596_peptide number 41 147.1293 0 E I.claudius_F1_101_682_229596_peptide number 42 921.0502 0 LRPYFPE I.claudius_F1_101_682_229596_peptide number 43 1034.1664 0 NRVISGLFE I.claudius_F1_101_682_229596_peptide number 44 1471.7889 0 LIKRIFNIRAVE I.claudius_F1_101_682_229596_peptide number 45 2376.6245 0 RKGVDTWHKDVRFFDLIDE I.claudius_F1_101_682_229596_peptide number 46 1960.1071 0 NDQLRGSFYLDLYARE I.claudius_F1_101_682_229596_peptide number 47 2628.9869000000003 0 HKRGGAWMDDCIGRKRKLDGSIE I.claudius_F1_101_682_229596_peptide number 48 2733.0614999999993 0 TPVAYLTCNFNAPIGNKPALFTHNE I.claudius_F1_101_682_229596_peptide number 49 845.9390000000001 0 VTTLFHE I.claudius_F1_101_682_229596_peptide number 50 3115.4333000000006 0 FGHGIHHMLTQIDVSDVAGINGVPWDAVE I.claudius_F1_101_682_229596_peptide number 51 850.9786 0 LPSQFME I.claudius_F1_101_682_229596_peptide number 52 736.7946000000001 0 NWCWE I.claudius_F1_101_682_229596_peptide number 53 147.1293 0 E I.claudius_F1_101_682_229596_peptide number 54 147.1293 0 E I.claudius_F1_101_682_229596_peptide number 55 1107.2154 0 ALAFISGHYE I.claudius_F1_101_682_229596_peptide number 56 869.9588000000001 0 TGEPLPKE I.claudius_F1_101_682_229596_peptide number 57 2605.1492000000003 0 KLTQLLKAKNFQAAMFILRQLE I.claudius_F1_101_682_229596_peptide number 58 1852.0123 0 FGIFDFRLHHTFDAE I.claudius_F1_101_682_229596_peptide number 59 5546.2094000000025 0 KTNQILDTLKSVKSQVAVIKGVDWARAPHSFSHIFAGGYAAGYYSYLWAE I.claudius_F1_101_682_229596_peptide number 60 1257.3487 0 VLSADAYSRFE I.claudius_F1_101_682_229596_peptide number 61 147.1293 0 E I.claudius_F1_101_682_229596_peptide number 62 147.1293 0 E I.claudius_F1_101_682_229596_peptide number 63 1537.7111999999997 0 GIFNPITGKSFLDE I.claudius_F1_101_682_229596_peptide number 64 831.9140000000001 0 ILTRGGSE I.claudius_F1_101_682_229596_peptide number 65 504.55460000000005 0 EPME I.claudius_F1_101_682_229596_peptide number 66 2796.3028 0 LFKRFRGREPQLDALLRHKGIMN I.claudius_F1_102_270_233824_peptide number 1 1266.5077 0 MNFIPFLAGKE I.claudius_F1_102_270_233824_peptide number 2 2670.1978999999997 0 RAKLTKAKLQQIPIPIPPLSVQTE I.claudius_F1_102_270_233824_peptide number 3 1486.749 0 IVKILDALTALTSE I.claudius_F1_102_270_233824_peptide number 4 448.46810000000005 0 LTSE I.claudius_F1_102_270_233824_peptide number 5 448.46810000000005 0 LTSE I.claudius_F1_102_270_233824_peptide number 6 448.46810000000005 0 LTSE I.claudius_F1_102_270_233824_peptide number 7 1190.3918 0 LILRQKQYE I.claudius_F1_102_270_233824_peptide number 8 629.6616 0 YYRE I.claudius_F1_102_270_233824_peptide number 9 843.9644000000001 0 KLLNIDE I.claudius_F1_102_270_233824_peptide number 10 732.8890000000001 0 MNKVIE I.claudius_F1_102_270_233824_peptide number 11 4716.3976 0 LGDVGPVRMCKRILKNQTASSGDIPFYKIGTFGKKPDAYISNE I.claudius_F1_102_270_233824_peptide number 12 535.59 0 LFQE I.claudius_F1_102_270_233824_peptide number 13 3335.7591 0 YKQKYSYPKKGDILISASGTIGRTVIFDGE I.claudius_F1_102_270_233824_peptide number 14 1958.9865000000004 0 NSYFQDSNIVWIDNDE I.claudius_F1_102_270_233824_peptide number 15 2571.0219 0 TLVLNKYLYHFYKIAKWGIAE I.claudius_F1_102_270_233824_peptide number 16 2725.1902000000005 0 GGTIQRLYNDNLKKVKISIPPLKE I.claudius_F1_102_270_233824_peptide number 17 1484.6983 0 QHRIVSILDKFE I.claudius_F1_102_270_233824_peptide number 18 877.9361 0 TLTNSITE I.claudius_F1_102_270_233824_peptide number 19 711.8465000000001 0 GLPLAIE I.claudius_F1_102_270_233824_peptide number 20 937.9963000000001 0 QSQKRYE I.claudius_F1_102_270_233824_peptide number 21 629.6616 0 YYRE I.claudius_F1_102_270_233824_peptide number 22 705.8419 0 LLLNFS I.claudius_F1_103_756_236251_peptide number 1 1179.3461 0 MRPYQIAATE I.claudius_F1_103_756_236251_peptide number 2 2418.7933 0 RILWKIQISYLAKNWSNRE I.claudius_F1_103_756_236251_peptide number 3 2757.0184999999997 0 SGGYIWHTTGSGKTLTSFKASRLATE I.claudius_F1_103_756_236251_peptide number 4 2865.2592000000004 0 LDFIDKVFFVVDRKDLDYQTMKE I.claudius_F1_103_756_236251_peptide number 5 1485.5109 0 YQRFSPDSVNGSE I.claudius_F1_103_756_236251_peptide number 6 1088.2155 0 STAGLKRNIE I.claudius_F1_103_756_236251_peptide number 7 2445.8306000000002 0 KDDNKIIVTTIQKLNNLMKSE I.claudius_F1_103_756_236251_peptide number 8 147.1293 0 E I.claudius_F1_103_756_236251_peptide number 9 1843.0834 0 NLSIYQKQVVFIFDE I.claudius_F1_103_756_236251_peptide number 10 930.9639 0 AHRSQFGE I.claudius_F1_103_756_236251_peptide number 11 3021.514200000001 0 AQKNLKRKFKKFYQFGFTGTPIFPE I.claudius_F1_103_756_236251_peptide number 12 573.5966000000001 0 NALGAE I.claudius_F1_103_756_236251_peptide number 13 881.9265 0 TTASVFGAE I.claudius_F1_103_756_236251_peptide number 14 3937.4570000000003 0 LHSYVITDAIRDDKVLKFKVDYNDVRPQFKALE I.claudius_F1_103_756_236251_peptide number 15 248.23319999999998 0 TE I.claudius_F1_103_756_236251_peptide number 16 487.5042000000001 0 KDPE I.claudius_F1_103_756_236251_peptide number 17 673.7986000000001 0 KLTALE I.claudius_F1_103_756_236251_peptide number 18 1097.2239 0 QKQAFLHPE I.claudius_F1_103_756_236251_peptide number 19 544.6449 0 RIKE I.claudius_F1_103_756_236251_peptide number 20 3715.1997000000006 0 ISQYLLNNFKQKTHRLNATGKGFNAMFAVSSVE I.claudius_F1_103_756_236251_peptide number 21 899.9897000000001 0 AAKRYYE I.claudius_F1_103_756_236251_peptide number 22 915.9873000000001 0 TLQNLQAE I.claudius_F1_103_756_236251_peptide number 23 275.2585 0 QE I.claudius_F1_103_756_236251_peptide number 24 1684.9281999999998 0 YPLKIATIFSFAANE I.claudius_F1_103_756_236251_peptide number 25 147.1293 0 E I.claudius_F1_103_756_236251_peptide number 26 1072.0802999999999 0 QDAIGDIPDE I.claudius_F1_103_756_236251_peptide number 27 1408.5097 0 TFEPTALNSTAKE I.claudius_F1_103_756_236251_peptide number 28 4710.048499999999 0 FLTKAIDDYNHYFGTNYGVDSQSFQNYYRDLAKRVKNQE I.claudius_F1_103_756_236251_peptide number 29 6900.888600000001 0 VDLLIVVGMFLTGFDAPTLNTLFVDKNLRYHGLMQAFSRTNRIYDTTKTFGNIVTFRDLE I.claudius_F1_103_756_236251_peptide number 30 2333.5931 0 QNTIDAITLFGDKNTKNVVLE I.claudius_F1_103_756_236251_peptide number 31 2129.1128 0 KSYDSYFNGDDNQRGYAE I.claudius_F1_103_756_236251_peptide number 32 487.59030000000007 0 IVKE I.claudius_F1_103_756_236251_peptide number 33 388.4592 0 LKE I.claudius_F1_103_756_236251_peptide number 34 791.8022 0 SFPDPTE I.claudius_F1_103_756_236251_peptide number 35 260.2869 0 IE I.claudius_F1_103_756_236251_peptide number 36 248.23319999999998 0 TE I.claudius_F1_103_756_236251_peptide number 37 646.6905 0 QDKKE I.claudius_F1_103_756_236251_peptide number 38 838.9894 0 FVKLFGE I.claudius_F1_103_756_236251_peptide number 39 678.777 0 YLRVE I.claudius_F1_103_756_236251_peptide number 40 1008.0396000000001 0 NILQNYDE I.claudius_F1_103_756_236251_peptide number 41 2030.3013 0 FAALQALQAVDLNDPIAME I.claudius_F1_103_756_236251_peptide number 42 1406.5418 0 KFKQVHYVNDE I.claudius_F1_103_756_236251_peptide number 43 459.494 0 QIAE I.claudius_F1_103_756_236251_peptide number 44 1353.673 0 MLKVPTLPVRAE I.claudius_F1_103_756_236251_peptide number 45 2542.7205000000004 0 QDYRSTYNDIRDWLRQRKE I.claudius_F1_103_756_236251_peptide number 46 1964.0064 0 GNDKDNSPINWDDVVFE I.claudius_F1_103_756_236251_peptide number 47 931.0418000000001 0 VDLLKSQE I.claudius_F1_103_756_236251_peptide number 48 1436.69 0 INLDYILALIFE I.claudius_F1_103_756_236251_peptide number 49 1163.244 0 HHKKNQDKE I.claudius_F1_103_756_236251_peptide number 50 587.663 0 VLIDE I.claudius_F1_103_756_236251_peptide number 51 1742.981 0 IRRTVRSSLGNRAKE I.claudius_F1_103_756_236251_peptide number 52 3615.0009999999997 0 SLIVDFINQTNLDDIPDKATLIDSFFLFAQAE I.claudius_F1_103_756_236251_peptide number 53 559.6165 0 QRKE I.claudius_F1_103_756_236251_peptide number 54 218.2072 0 AE I.claudius_F1_103_756_236251_peptide number 55 588.6510000000001 0 SLIQE I.claudius_F1_103_756_236251_peptide number 56 147.1293 0 E I.claudius_F1_103_756_236251_peptide number 57 2078.3293999999996 0 NLNVDAAKRYISTSLKRE I.claudius_F1_103_756_236251_peptide number 58 468.4578 0 YASE I.claudius_F1_103_756_236251_peptide number 59 717.7252000000001 0 NGTALNE I.claudius_F1_103_756_236251_peptide number 60 3291.043100000001 0 VLPKMSLLKPQYLTKKQKIFQKIAAFVE I.claudius_F1_103_756_236251_peptide number 61 933.1487 0 KFKGVGGKI I.claudius_F1_104_50_245873_peptide number 1 5869.8602 0 MGTSIKDTLFSFYLLTFIFQRCFRFVFNLVYNYQPICVSTRCLSSSVRR I.claudius_F1_105_59_247328_peptide number 1 6421.4198 0 MACGLSVPHFHLPIIRGISDSFPSLSPSISQIPKHYSPVRHSSARKQAFSCYRSTCMC I.claudius_F1_106_489_248947_peptide number 1 1004.2051 0 MSLRIKQE I.claudius_F1_106_489_248947_peptide number 2 3209.6011 0 ALTFDDVLLVPAHSTVLPNTANLSTQLTKE I.claudius_F1_106_489_248947_peptide number 3 1875.2148000000002 0 IRLNIPMLSAAMDTVTE I.claudius_F1_106_489_248947_peptide number 4 1073.2406 0 TKLAISLAQE I.claudius_F1_106_489_248947_peptide number 5 1416.6441 0 GGIGFIHKNMTIE I.claudius_F1_106_489_248947_peptide number 6 1659.9339 0 RQADRVRKVKKFE I.claudius_F1_106_489_248947_peptide number 7 1839.0916 0 SGIVSEPVTVLPNLTLAE I.claudius_F1_106_489_248947_peptide number 8 331.36480000000006 0 LAE I.claudius_F1_106_489_248947_peptide number 9 1710.9475000000002 0 MVKKNGFAGYPVVDGE I.claudius_F1_106_489_248947_peptide number 10 3392.9232000000006 0 NNLIGIITGRDTRFVKDLSKTVSQVMTKKE I.claudius_F1_106_489_248947_peptide number 11 802.9127000000001 0 DLVTVKE I.claudius_F1_106_489_248947_peptide number 12 518.5215000…I.claudius_F1_182_431_407629_peptide number 8 501.57370000000003 0 LLQE I.claudius_F1_182_431_407629_peptide number 9 850.9554000000002 0 KIDFLSE I.claudius_F1_182_431_407629_peptide number 10 1890.1846000000003 0 VIKLALGRSQTLDSIFE I.claudius_F1_182_431_407629_peptide number 11 402.4461 0 RVE I.claudius_F1_182_431_407629_peptide number 12 1314.5738 0 SIKIQLKRLSE I.claudius_F1_182_431_407629_peptide number 13 1410.5485 0 TNIVGYCYWYE I.claudius_F1_182_431_407629_peptide number 14 2569.8682999999996 0 GNGRQFGLHITPLTVADKFGAQLE I.claudius_F1_182_431_407629_peptide number 15 346.3795 0 AKE I.claudius_F1_182_431_407629_peptide number 16 1209.3471 0 AAWIFTSATLE I.claudius_F1_182_431_407629_peptide number 17 1677.8809000000003 0 VGGTFNHFCQRLGIE I.claudius_F1_182_431_407629_peptide number 18 1784.9612 0 NATQKILYSPFNYPE I.claudius_F1_182_431_407629_peptide number 19 2706.0593 0 QSLLCVPRYLPNTNQMNTLNSLGE I.claudius_F1_182_431_407629_peptide number 20 796.0060000000001 0 ILLPVIE I.claudius_F1_182_431_407629_peptide number 21 2337.7640000000006 0 ANKGRCFVLCTSYSMMRGLAE I.claudius_F1_182_431_407629_peptide number 22 613.6622000000001 0 YFRE I.claudius_F1_182_431_407629_peptide number 23 1224.4064 0 KSHLSILLQGE I.claudius_F1_182_431_407629_peptide number 24 875.0216 0 TSKGKLLE I.claudius_F1_182_431_407629_peptide number 25 663.7623000000001 0 QFIKE I.claudius_F1_182_431_407629_peptide number 26 1463.5898 0 THSVLVATSSFWE I.claudius_F1_182_431_407629_peptide number 27 3462.000000000001 0 GVDVRGDALSLVIIDKLPFTAPDEPLLKARIE I.claudius_F1_182_431_407629_peptide number 28 1917.0608000000002 0 DCRLQGGDPFNDIQIPE I.claudius_F1_182_431_407629_peptide number 29 4043.7197000000006 0 AVITLKQGVGRLIRDVTDRGVVIICDNRLVMRNYGE I.claudius_F1_182_431_407629_peptide number 30 2948.379 0 TFLKSLPNSSRTRDLNKVIQFLQNK I.claudius_F1_183_563_410263_peptide number 1 278.32540000000006 0 ME I.claudius_F1_183_563_410263_peptide number 2 1496.6642000000002 0 KIWFQNYPKGSE I.claudius_F1_183_563_410263_peptide number 3 1130.2473 0 KFLDTSKYE I.claudius_F1_183_563_410263_peptide number 4 1423.6336000000001 0 SILDMFDKAVRE I.claudius_F1_183_563_410263_peptide number 5 2385.7422000000006 0 HPDRPAYINMGQVLTFRKLE I.claudius_F1_183_563_410263_peptide number 6 147.1293 0 E I.claudius_F1_183_563_410263_peptide number 7 1425.5483 0 RSRAFAAYLQNE I.claudius_F1_183_563_410263_peptide number 8 4983.941700000002 0 FKLQRGDRVALMMPNLLQYPIALFGILRAGLIAVNVNPLYTPRE I.claudius_F1_183_563_410263_peptide number 9 260.2869 0 LE I.claudius_F1_183_563_410263_peptide number 10 2261.5272 0 LQLQDSGAVAIVVVSNFASTLE I.claudius_F1_183_563_410263_peptide number 11 6088.266500000001 0 KVVFNTNVKHVILTRMGDQLSFGKRTLVNFVVKYVKKLVPKYKLPHAVTFRE I.claudius_F1_183_563_410263_peptide number 12 1707.97 0 VLSIGKYRQYVRPE I.claudius_F1_183_563_410263_peptide number 13 503.5499 0 ISRE I.claudius_F1_183_563_410263_peptide number 14 7648.814900000004 0 DLAFLQYTGGTTGVAKGAMLTHGNIITNVFQAKWIAEPFIGDHSRTRSAILALPLYHVFALTVNCLLFLE I.claudius_F1_183_563_410263_peptide number 15 1624.8763 0 LGVTAILITNPRDIE I.claudius_F1_183_563_410263_peptide number 16 578.6579 0 GFVKE I.claudius_F1_183_563_410263_peptide number 17 983.1644000000001 0 LKKYRFE I.claudius_F1_183_563_410263_peptide number 18 1703.8899999999999 0 AITGVNTLFNALLNNE I.claudius_F1_183_563_410263_peptide number 19 536.5781000000001 0 NFKE I.claudius_F1_183_563_410263_peptide number 20 2788.1418000000003 0 VDFSALKLSVGGGMAIQQSVATRWHE I.claudius_F1_183_563_410263_peptide number 21 862.0028000000001 0 LTGCNIIE I.claudius_F1_183_563_410263_peptide number 22 656.7052 0 GYGMTE I.claudius_F1_183_563_410263_peptide number 23 4313.9483 0 CSPLIAACPINVVKHNGTIGVPVPNTDIKIIKDDGSDAKIGE I.claudius_F1_183_563_410263_peptide number 24 275.2585 0 AGE I.claudius_F1_183_563_410263_peptide number 25 2148.4456 0 LWVKGDQVMRGYWQRPE I.claudius_F1_183_563_410263_peptide number 26 406.38840000000005 0 ATSE I.claudius_F1_183_563_410263_peptide number 27 1893.1853 0 VLKDGWMATGDIVIMDE I.claudius_F1_183_563_410263_peptide number 28 2926.3255000000004 0 SYSLRIVDRKKDIILVSGFNVYPNE I.claudius_F1_183_563_410263_peptide number 29 260.2869 0 IE I.claudius_F1_183_563_410263_peptide number 30 1296.4892000000002 0 DVVMLNYKVSE I.claudius_F1_183_563_410263_peptide number 31 1206.3483 0 AVAIGVPHAVSGE I.claudius_F1_183_563_410263_peptide number 32 2007.2880999999998 0 TIKIFVVKKDDSLTRDE I.claudius_F1_183_563_410263_peptide number 33 2105.4226 0 LRNHCRQYLTGYKVPKE I.claudius_F1_183_563_410263_peptide number 34 260.2869 0 IE I.claudius_F1_183_563_410263_peptide number 35 565.5763000000001 0 FRDE I.claudius_F1_183_563_410263_peptide number 36 2007.384 0 LPKTNVGKILRRVLRDE I.claudius_F1_183_563_410263_peptide number 37 147.1293 0 E I.claudius_F1_183_563_410263_peptide number 38 849.0356000000002 0 IAKRPKH I.claudius_F1_184_68_415460_peptide number 1 7074.955700000001 0 MPKSCKNSTFSSSSSSAISDSIAAHTGTTTAPSFAAISRTRSKYGLFSKPSSFTFAIYIVGFNVKKL I.claudius_F1_185_50_416409_peptide number 1 5915.6865 0 MVYLRHNLPLNHDGQDAQCQYVNGRNYCYCLIEPQYLLSRYAHHVHRLV I.claudius_F1_186_405_417352_peptide number 1 1412.6275 0 MTALSSVDFCLPE I.claudius_F1_186_405_417352_peptide number 2 595.6453 0 HITPE I.claudius_F1_186_405_417352_peptide number 3 2485.9224000000004 0 IFLRDYWQKKPLVIRNGLPE I.claudius_F1_186_405_417352_peptide number 4 1387.5334 0 IVGQFEPQDIIE I.claudius_F1_186_405_417352_peptide number 5 573.5966 0 LAQNE I.claudius_F1_186_405_417352_peptide number 6 2803.0820999999996 0 DVTARLVKTFSDDDWKVFFSPLSE I.claudius_F1_186_405_417352_peptide number 7 1004.1372000000001 0 KDFQKLPE I.claudius_F1_186_405_417352_peptide number 8 1215.3980000000001 0 KWSVLVQNLE I.claudius_F1_186_405_417352_peptide number 9 645.6609000000001 0 QWSPE I.claudius_F1_186_405_417352_peptide number 10 4168.6459 0 LGQLWNKFGFIPQWQRDDIMVSYAPKGGSVGKHYDE I.claudius_F1_186_405_417352_peptide number 11 3001.2926 0 YDVFLVQGYGHRRWQVGKWCDASTE I.claudius_F1_186_405_417352_peptide number 12 1796.9968000000003 0 FKPNQSIRIFDDMGE I.claudius_F1_186_405_417352_peptide number 13 587.663 0 LVIDE I.claudius_F1_186_405_417352_peptide number 14 2317.6848000000005 0 VMNPGDILYIPARMAHYGVAE I.claudius_F1_186_405_417352_peptide number 15 4145.5396 0 DDCLTFSFGLRYPNLSNLIDGISKGFCHQDPDLNLSE I.claudius_F1_186_405_417352_peptide number 16 1304.4481 0 FDLPLRLSQSE I.claudius_F1_186_405_417352_peptide number 17 1017.0946 0 QRTGKLADE I.claudius_F1_186_405_417352_peptide number 18 1952.2787999999998 0 NIQAMKQLLLDKLAHSE I.claudius_F1_186_405_417352_peptide number 19 2246.4779 0 AFDTLFKQAVASAVSSRRYE I.claudius_F1_186_405_417352_peptide number 20 674.7403 0 LLVSDE I.claudius_F1_186_405_417352_peptide number 21 708.7583000000001 0 MCDPDE I.claudius_F1_186_405_417352_peptide number 22 715.8386 0 VRSILE I.claudius_F1_186_405_417352_peptide number 23 147.1293 0 E I.claudius_F1_186_405_417352_peptide number 24 1931.0841 0 DGAFLSQDNNCKLLYTE I.claudius_F1_186_405_417352_peptide number 25 1146.2531 0 NPLRIYANGE I.claudius_F1_186_405_417352_peptide number 26 561.5842 0 WLDE I.claudius_F1_186_405_417352_peptide number 27 600.7047 0 LNIIE I.claudius_F1_186_405_417352_peptide number 28 234.2066 0 SE I.claudius_F1_186_405_417352_peptide number 29 1016.1496000000001 0 VLKRLSDGE I.claudius_F1_186_405_417352_peptide number 30 1709.8499 0 SLDWAFLSDLANKTE I.claudius_F1_186_405_417352_peptide number 31 359.3319 0 DPE I.claudius_F1_186_405_417352_peptide number 32 2509.8047 0 TSMDLLLDSICNWVDDGWALIE I.claudius_F1_187_115_420373_peptide number 1 377.4565 0 MVE I.claudius_F1_187_115_420373_peptide number 2 332.35290000000003 0 KGE I.claudius_F1_187_115_420373_peptide number 3 372.4168000000001 0 KPE I.claudius_F1_187_115_420373_peptide number 4 701.769 0 DVALRE I.claudius_F1_187_115_420373_peptide number 5 234.2066 0 SE I.claudius_F1_187_115_420373_peptide number 6 147.1293 0 E I.claudius_F1_187_115_420373_peptide number 7 147.1293 0 E I.claudius_F1_187_115_420373_peptide number 8 2423.7421 0 AGIQVKNLTHCLSVWDSPGGIVE I.claudius_F1_187_115_420373_peptide number 9 942.0726000000001 0 RIHLFAGE I.claudius_F1_187_115_420373_peptide number 10 1395.5174 0 VDSAQAKGIHGLAE I.claudius_F1_187_115_420373_peptide number 11 147.1293 0 E I.claudius_F1_187_115_420373_peptide number 12 261.2319 0 NE I.claudius_F1_187_115_420373_peptide number 13 1222.4372 0 DIKVHVVKRE I.claudius_F1_187_115_420373_peptide number 14 1058.1878 0 QAYQWMCE I.claudius_F1_187_115_420373_peptide number 15 3328.7758999999996 0 GKIDNGIAVIGLQWLQLNYAQLQQSWKRS I.claudius_F1_188_59_421375_peptide number 1 3247.6771 0 MATPATCIQFKPDCQYFSLDTLQPGWRE I.claudius_F1_188_59_421375_peptide number 2 260.2869 0 IE I.claudius_F1_188_59_421375_peptide number 3 1114.1667 0 LHSDGSIRTE I.claudius_F1_188_59_421375_peptide number 4 971.1123 0 VKRIQQAE I.claudius_F1_188_59_421375_peptide number 5 912.0202 0 FFPNMQE I.claudius_F1_188_59_421375_peptide number 6 147.1293 0 E I.claudius_F1_188_59_421375_peptide number 7 238.2399 0 GY I.claudius_F1_189_460_422143_peptide number 1 2952.4504 0 MKKFNQSLLATAMLLAAGGANAAAFQLAE I.claudius_F1_189_460_422143_peptide number 2 1267.3452000000002 0 VSTSGLGRAYAGE I.claudius_F1_189_460_422143_peptide number 3 6015.693600000001 0 AAIADNASVVATNPALMSLFKTAQFSTGGVYVDSRINMNGDVTSHATIITSSSGIKAIE I.claudius_F1_189_460_422143_peptide number 4 4383.9371 0 GGSASARNVVPGAFVPNLYFVAPVNDKFALGAGMNVNFGLKSE I.claudius_F1_189_460_422143_peptide number 5 3326.5336 0 YDDSYDAGIFGGKTDLSAINLNLSGAYRVTE I.claudius_F1_189_460_422143_peptide number 6 1789.0377 0 GLSLGLGVNAVYAKAQVE I.claudius_F1_189_460_422143_peptide number 7 7060.867500000002 0 RNAGIIADSVKDNQVKTALTVQQEPLKFLDKYLPSKDTSVVSLQDRAAWGFGWNAGVMYQFNE I.claudius_F1_189_460_422143_peptide number 8 2780.0106000000005 0 ANRIGLAYHSKVDIDFTDRTATSVE I.claudius_F1_189_460_422143_peptide number 9 2259.5974 0 ANVIKAGKKGDLTLTLPDYLE I.claudius_F1_189_460_422143_peptide number 10 3942.3937 0 LSGFHQLTDKLAVHYSYKYTHWSRLTKLNASFE I.claudius_F1_189_460_422143_peptide number 11 1037.1241000000002 0 DGKKAFDKE I.claudius_F1_189_460_422143_peptide number 12 2114.2289 0 LQYSNNSRVALGASYNLDE I.claudius_F1_189_460_422143_peptide number 13 6890.729800000001 0 KLTLRAGIAYDQAASRHQRSAAIPDTDRTWYSLGATYKFTPNLSVDLGYAYLKGKKVHFKE I.claudius_F1_189_460_422143_peptide number 14 760.8329000000001 0 VKTIGDE I.claudius_F1_189_460_422143_peptide number 15 3148.3967999999995 0 RSLTLNTTANYTSQAHANLYGLNLNYSF I.claudius_F1_190_60_427027_peptide number 1 4086.9112999999998 0 MLVSNNRKTLNVHSVYLIILLCLVHRVQLNLLLNE I.claudius_F1_190_60_427027_peptide number 2 2862.3311 0 VLSFQLFLDNYDVHHLKVLAQCCR I.claudius_F1_191_319_431376_peptide number 1 1566.8188 0 MTISKFNPQKPFE I.claudius_F1_191_319_431376_peptide number 2 824.9413000000001 0 CFIVQSE I.claudius_F1_191_319_431376_peptide number 3 734.8619000000001 0 AMKSAVE I.claudius_F1_191_319_431376_peptide number 4 1921.2234 0 NAKRFAMFDAPLLIQGE I.claudius_F1_191_319_431376_peptide number 5 3706.2145000000005 0 TGSGKDLLAKACHYQSLRRDKKFIAVNCAGLPDE I.claudius_F1_191_319_431376_peptide number 6 333.29460000000006 0 DAE I.claudius_F1_191_319_431376_peptide number 7 234.2066 0 SE I.claudius_F1_191_319_431376_peptide number 8 1125.2557 0 MFGRKVGDSE I.claudius_F1_191_319_431376_peptide number 9 712.7899000000001 0 TIGFFE I.claudius_F1_191_319_431376_peptide number 10 1463.6311000000003 0 YANKGTVLLDGIAE I.claudius_F1_191_319_431376_peptide number 11 2607.0161 0 LSLSLQAKLLRFLTDGSFRRVGE I.claudius_F1_191_319_431376_peptide number 12 147.1293 0 E I.claudius_F1_191_319_431376_peptide number 13 275.3016 0 KE I.claudius_F1_191_319_431376_peptide number 14 2291.6707 0 HYANVRVICTSQVPLHLLVE I.claudius_F1_191_319_431376_peptide number 15 4446.099200000001 0 QGKVRADLFHRLNVLTINVPALRDRMADIEPLAQGFLQE I.claudius_F1_191_319_431376_peptide number 16 347.3642 0 ISE I.claudius_F1_191_319_431376_peptide number 17 147.1293 0 E I.claudius_F1_191_319_431376_peptide number 18 3329.8422000000005 0 LKIAKPTFDKDFLLYLQKYDWKGNVRE I.claudius_F1_191_319_431376_peptide number 19 2366.6477000000004 0 LYNTLYRACSLVQDNHLTIE I.claudius_F1_191_319_431376_peptide number 20 1669.8705 0 SLNLALPQSAVISLDE I.claudius_F1_191_319_431376_peptide number 21 294.30320000000006 0 FE I.claudius_F1_191_319_431376_peptide number 22 718.7531000000001 0 NKTLDE I.claudius_F1_191_319_431376_peptide number 23 740.8430000000001 0 IIGFYE I.claudius_F1_191_319_431376_peptide number 24 1181.3801000000003 0 AQVLKLFYAE I.claudius_F1_191_319_431376_peptide number 25 3199.707100000001 0 YPSTRKLAQRLGVSHTAIANKLKQYGIGK I.claudius_F1_192_936_434184_peptide number 1 1462.7806 0 MKRMLINATQKE I.claudius_F1_192_936_434184_peptide number 2 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 3 1972.2454000000002 0 LRVALVDGQRLFDLDIE I.claudius_F1_192_936_434184_peptide number 4 525.5124000000001 0 SPGHE I.claudius_F1_192_936_434184_peptide number 5 2202.5528 0 QKKANIYKGKITRVEPSLE I.claudius_F1_192_936_434184_peptide number 6 941.98 0 AAFVDYGAE I.claudius_F1_192_936_434184_peptide number 7 1096.2822 0 RHGFLPLKE I.claudius_F1_192_936_434184_peptide number 8 487.55050000000006 0 IARE I.claudius_F1_192_936_434184_peptide number 9 2456.7058 0 YFPDDYVFQGRPNIRDILVE I.claudius_F1_192_936_434184_peptide number 10 332.3098 0 GQE I.claudius_F1_192_936_434184_peptide number 11 928.0843 0 VIVQVNKE I.claudius_F1_192_936_434184_peptide number 12 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 13 3788.341500000001 0 RGNKGAALTTFVSLAGSYLVLMPNNPRAGGISRRIE I.claudius_F1_192_936_434184_peptide number 14 319.26800000000003 0 GDE I.claudius_F1_192_936_434184_peptide number 15 404.4189 0 RTE I.claudius_F1_192_936_434184_peptide number 16 388.4592 0 LKE I.claudius_F1_192_936_434184_peptide number 17 2437.744100000001 0 ALSSLDVPDGVGLIVRTAGVGKSPE I.claudius_F1_192_936_434184_peptide number 18 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 19 1716.9781000000003 0 LQWDLKVLLHHWE I.claudius_F1_192_936_434184_peptide number 20 2021.2796000000003 0 AIKQASQSRPAPFLIHQE I.claudius_F1_192_936_434184_peptide number 21 2146.4067 0 SDVIVRAIRDYLRRDIGE I.claudius_F1_192_936_434184_peptide number 22 1174.3858 0 ILIDSPKIFE I.claudius_F1_192_936_434184_peptide number 23 474.55180000000007 0 KAKE I.claudius_F1_192_936_434184_peptide number 24 2325.7101 0 HIKLVRPDFINRVKLYQGE I.claudius_F1_192_936_434184_peptide number 25 1232.3838 0 VPLFSHYQIE I.claudius_F1_192_936_434184_peptide number 26 475.49340000000007 0 SQIE I.claudius_F1_192_936_434184_peptide number 27 736.7733000000001 0 SAFQRE I.claudius_F1_192_936_434184_peptide number 28 1541.7448000000004 0 VRLPSGGSIVIDVTE I.claudius_F1_192_936_434184_peptide number 29 1960.1072 0 ALTAIDINSARSTRGGDIE I.claudius_F1_192_936_434184_peptide number 30 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 31 874.9354000000001 0 TALNTNLE I.claudius_F1_192_936_434184_peptide number 32 404.37250000000006 0 AADE I.claudius_F1_192_936_434184_peptide number 33 3432.0103 0 IARQLRLRDLGGLVVIDFIDMTPIRHQRE I.claudius_F1_192_936_434184_peptide number 34 246.2604 0 VE I.claudius_F1_192_936_434184_peptide number 35 3108.5633000000003 0 NRIRDAVRPDRARIQISRISRFGLLE I.claudius_F1_192_936_434184_peptide number 36 1360.5396 0 MSRQRLSPSLGE I.claudius_F1_192_936_434184_peptide number 37 2124.3216 0 SSHHICPRCQGTGKVRDNE I.claudius_F1_192_936_434184_peptide number 38 1243.4925 0 SLSLSILRLLE I.claudius_F1_192_936_434184_peptide number 39 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 40 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 41 459.5371 0 ALKE I.claudius_F1_192_936_434184_peptide number 42 2267.5797000000002 0 NTKQVHTIVPVQIASYLLNE I.claudius_F1_192_936_434184_peptide number 43 1058.2326 0 KRKAISNIE I.claudius_F1_192_936_434184_peptide number 44 1504.6897 0 KRHNVDIIVAPNE I.claudius_F1_192_936_434184_peptide number 45 349.40330000000006 0 AME I.claudius_F1_192_936_434184_peptide number 46 1560.7116 0 TPHFSVFRLRDGE I.claudius_F1_192_936_434184_peptide number 47 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 48 360.36300000000006 0 VNE I.claudius_F1_192_936_434184_peptide number 49 1604.7822 0 LSYNLAKIHCAQDE I.claudius_F1_192_936_434184_peptide number 50 362.33580000000006 0 NTE I.claudius_F1_192_936_434184_peptide number 51 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 52 917.0185000000001 0 SLLSRNVE I.claudius_F1_192_936_434184_peptide number 53 632.7037 0 TTAVIE I.claudius_F1_192_936_434184_peptide number 54 542.5827 0 QPAVE I.claudius_F1_192_936_434184_peptide number 55 975.0944000000002 0 SAVVALSISE I.claudius_F1_192_936_434184_peptide number 56 683.7505000000001 0 AAPTPVE I.claudius_F1_192_936_434184_peptide number 57 2743.2486000000004 0 RKSNEPSLLAKIIAKIKGLFATKSE I.claudius_F1_192_936_434184_peptide number 58 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 59 3849.1282999999994 0 NKPKNNRTSRNPNRNQRRSQDRRSSRRPRSE I.claudius_F1_192_936_434184_peptide number 60 375.33450000000005 0 NNE I.claudius_F1_192_936_434184_peptide number 61 248.23319999999998 0 TE I.claudius_F1_192_936_434184_peptide number 62 404.4189 0 RTE I.claudius_F1_192_936_434184_peptide number 63 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 64 899.9947000000001 0 QVRNVRE I.claudius_F1_192_936_434184_peptide number 65 1593.7961 0 RNQRRPRRNLVE I.claudius_F1_192_936_434184_peptide number 66 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 67 418.4421 0 SIAE I.claudius_F1_192_936_434184_peptide number 68 1050.1196 0 SAVNSTPVFE I.claudius_F1_192_936_434184_peptide number 69 346.3795 0 AKE I.claudius_F1_192_936_434184_peptide number 70 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 71 2735.1209000000003 0 RTEPVTQRRQRRDLRKRVRVE I.claudius_F1_192_936_434184_peptide number 72 376.3193 0 DNE I.claudius_F1_192_936_434184_peptide number 73 446.4954 0 TVVE I.claudius_F1_192_936_434184_peptide number 74 811.7935 0 NNFSTTE I.claudius_F1_192_936_434184_peptide number 75 503.6129000000001 0 KMPE I.claudius_F1_192_936_434184_peptide number 76 1245.2932999999998 0 VDVITVQNNDE I.claudius_F1_192_936_434184_peptide number 77 1222.3112 0 KPVHQNQRSE I.claudius_F1_192_936_434184_peptide number 78 431.4442 0 RQE I.claudius_F1_192_936_434184_peptide number 79 4422.999900000001 0 RQRRTPRHLRAANNQRRRRDQEPKSPMPLFAAVVSPE I.claudius_F1_192_936_434184_peptide number 80 1992.2318 0 LASGKAWIDYSTVNLPKE I.claudius_F1_192_936_434184_peptide number 81 959.9985 0 NHFLSVDE I.claudius_F1_192_936_434184_peptide number 82 373.44450000000006 0 LLE I.claudius_F1_192_936_434184_peptide number 83 275.2585 0 QE I.claudius_F1_192_936_434184_peptide number 84 1719.0971000000004 0 KTKKGFITPAMGIVVE I.claudius_F1_192_936_434184_peptide number 85 147.1293 0 E I.claudius_F1_192_936_434184_peptide number 86 1970.1833 0 KSPDVKPALDFITQPANE I.claudius_F1_192_936_434184_peptide number 87 945.0718 0 SVQKKVQE I.claudius_F1_192_936_434184_peptide number 88 1422.5395000000003 0 SLDRLSSYKPQE I.claudius_F1_192_936_434184_peptide number 89 345.39150000000006 0 VVE I.claudius_F1_192_936_434184_peptide number 90 1298.3526 0 SIDPAINVDEPE I.claudius_F1_192_936_434184_peptide number 91 361.3908 0 TLE I.claudius_F1_192_936_434184_peptide number 92 1256.4502 0 KVSKFVRTYE I.claudius_F1_192_936_434184_peptide number 93 1814.0075000000002 0 FNGRLGTISSVPHTKAE I.claudius_F1_192_936_434184_peptide number 94 992.1050000000001 0 MTLAKANDE I.claudius_F1_192_936_434184_peptide number 95 375.4406 0 MPE I.claudius_F1_192_936_434184_peptide number 96 4532.9199 0 DFPIRAWQDSRYYFYGKGAAGHHCAISHVYSEPTRTKSE I.claudius_F1_193_67_439849_peptide number 1 3447.1476000000007 0 MAFIQTLRNAGITKPLVAIGGVKLAHVKTLRE I.claudius_F1_193_67_439849_peptide number 2 2740.0328 0 FGADGVAVITAITHADNVQAATKALRE I.claudius_F1_193_67_439849_peptide number 3 420.3719 0 ASDE I.claudius_F1_193_67_439849_peptide number 4 380.4388 0 YAK I.claudius_F1_194_350_440288_peptide number 1 4562.523699999999 0 MSLLLMGISTVVIGLLPTYDSIGIWATILLCLCRIGQGIGLGGE I.claudius_F1_194_350_440288_peptide number 2 972.0953000000002 0 WGGAALVAVE I.claudius_F1_194_350_440288_peptide number 3 429.42500000000007 0 NAPE I.claudius_F1_194_350_440288_peptide number 4 3663.2274000000016 0 GKRGWYGTFPQLGAPLGLLLANGVFLGITAIFGQE I.claudius_F1_194_350_440288_peptide number 5 450.5072 0 AMTE I.claudius_F1_194_350_440288_peptide number 6 3044.6749000000004 0 WAWRIPFLSSVILVAIGLYVRLKLTE I.claudius_F1_194_350_440288_peptide number 7 2247.787 0 APIFLAALNKPKPKRLPMLE I.claudius_F1_194_350_440288_peptide number 8 4704.613799999999 0 VVTTHFKPFFLGMLVCIAGYVLFYIMIAFSQIYAKSAPTVSE I.claudius_F1_194_350_440288_peptide number 9 6791.0276 0 AGYAMGLGFSPQIFTALLMASAVSLAITIAASGKYIDKIGRRTWLIWTTVGVAIFGLSLPLFLE I.claudius_F1_194_350_440288_peptide number 10 3338.888500000001 0 NGTTTSLFWFLFIGMGLIGMGYGPLASFLPE I.claudius_F1_194_350_440288_peptide number 11 6507.533300000001 0 LFPTHARYSGASLTYNIAGLFGASVAAIIALPLNAHYGLKGVGIYLTLNAVLSLVGLWFISE I.claudius_F1_194_350_440288_peptide number 12 803.9437000000001 0 TKDKLLS I.claudius_F1_195_233_445417_peptide number 1 6386.4765000000025 0 MSRFTFKQFHINQNSCAMKVGTDGILLGAWADVKHCKNILDMGCGTGLLALMLAQRTE I.claudius_F1_195_233_445417_peptide number 2 147.1293 0 E I.claudius_F1_195_233_445417_peptide number 3 903.9998 0 NCQIQAVE I.claudius_F1_195_233_445417_peptide number 4 1183.3115 0 LDPIAAKQAQE I.claudius_F1_195_233_445417_peptide number 5 3140.4642 0 NINNSVWKNRIQLTQVDIQHFLQTTE I.claudius_F1_195_233_445417_peptide number 6 1653.8281 0 QTFDLIVANPPYFE I.claudius_F1_195_233_445417_peptide number 7 861.9630999999999 0 QGIACKNE I.claudius_F1_195_233_445417_peptide number 8 147.1293 0 E I.claudius_F1_195_233_445417_peptide number 9 303.31500000000005 0 RE I.claudius_F1_195_233_445417_peptide number 10 1758.9735 0 LARYTKQSHLNWLE I.claudius_F1_195_233_445417_peptide number 11 933.0195000000001 0 WAATRLSE I.claudius_F1_195_233_445417_peptide number 12 1294.4549 0 NGRISFVLPYE I.claudius_F1_195_233_445417_peptide number 13 4307.1314 0 AGKTLTKSTALFCIKQTNVITKIGKTPQRMLLTFAKQPE I.claudius_F1_195_233_445417_peptide number 14 2158.3412000000003 0 VLMQDQLVIYDADNQYTE I.claudius_F1_195_233_445417_peptide number 15 478.53870000000006 0 AFIE I.claudius_F1_195_233_445417_peptide number 16 1174.3875 0 LTKDFYLKF I.claudius_F1_196_77_447660_peptide number 1 8473.3709 0 MQTGIASNAKLISYLMIQICSLACQLTHAKFLVYCMSKALYLMIRCFIAVQALITSIFINLKNIVTTAIKKSLMPN I.claudius_F1_197_137_448307_peptide number 1 1127.3095 0 MAGALPYLYE I.claudius_F1_197_137_448307_peptide number 2 1024.155 0 SNLRRFCE I.claudius_F1_197_137_448307_peptide number 3 422.4755 0 KFE I.claudius_F1_197_137_448307_peptide number 4 489.52 0 TQIE I.claudius_F1_197_137_448307_peptide number 5 5296.868800000001 0 SGQLVVRLWRDGDNTYHLKGVWVDDRYILLTGNNLNPRAWRLDAE I.claudius_F1_197_137_448307_peptide number 6 1942.1729000000003 0 NGLLIYDPQQQLLAQVE I.claudius_F1_197_137_448307_peptide number 7 275.3016 0 KE I.claudius_F1_197_137_448307_peptide number 8 2023.2558000000001 0 QNQIRQHTKVLKHYTE I.claudius_F1_197_137_448307_peptide number 9 260.2869 0 LE I.claudius_F1_197_137_448307_peptide number 10 147.1293 0 E I.claudius_F1_197_137_448307_peptide number 11 3326.0921000000003 0 LNQYPEPVQKLLKKFARIKADKLVKMIL I.claudius_F1_198_427_449876_peptide number 1 610.6798 0 MANFE I.claudius_F1_198_427_449876_peptide number 2 10349.454500000003 0 VILLLIFMVAGIFFMKQLLLYVFTKLLVKIRSKIALSIAFCFSAAFLSAFLDALTVVAVIISVAMGFYGVYHKVASGNNLIDAVDISDDRKIIE I.claudius_F1_198_427_449876_peptide number 3 540.527 0 QQHE I.claudius_F1_198_427_449876_peptide number 4 373.44450000000006 0 ILE I.claudius_F1_198_427_449876_peptide number 5 3815.532600000002 0 KFRAFLRSLMMHAGVGTALGGVMTVVGEPQNLIIAE I.claudius_F1_198_427_449876_peptide number 6 1053.1912 0 QAKWNFME I.claudius_F1_198_427_449876_peptide number 7 2730.3988000000004 0 FFLRMAPVTIPVFICGLLTCFLVE I.claudius_F1_198_427_449876_peptide number 8 1088.2552 0 KFKLFGYGE I.claudius_F1_198_427_449876_peptide number 9 600.6618000000001 0 KLPDE I.claudius_F1_198_427_449876_peptide number 10 1675.8370000000002 0 VWKILSDLDRTNSE I.claudius_F1_198_427_449876_peptide number 11 5444.5396 0 KMSKQDKIKLGMQALIAIWLIVGLAFHLAAVGLIGLSIIIFATSFTGVTDE I.claudius_F1_198_427_449876_peptide number 12 1030.1346999999998 0 HTIGKAFQE I.claudius_F1_198_427_449876_peptide number 13 3861.6092000000003 0 SLPFTALLVVFFSVVAVIIDQKLFSPIIHFVLSAE I.claudius_F1_198_427_449876_peptide number 14 147.1293 0 E I.claudius_F1_198_427_449876_peptide number 15 3366.7679 0 NTQLALFYLFNGLLSSISDNVFVATVYINE I.claudius_F1_198_427_449876_peptide number 16 1666.8749 0 AKAALTNGVIAPHQFE I.claudius_F1_198_427_449876_peptide number 17 6680.910400000002 0 LLSVAINTGTNLPSVATPNGQAAFLFLLTSSISPLIRLSYGRMVYMALPYTIVLSIIGLLAIE I.claudius_F1_198_427_449876_peptide number 18 2022.5140999999999 0 FILPAATIWLASLGLILPI I.claudius_F1_199_66_454875_peptide number 1 1462.6744 0 MLFLRFHNQQE I.claudius_F1_199_66_454875_peptide number 2 634.6814 0 SRPFE I.claudius_F1_199_66_454875_peptide number 3 347.3642 0 SLE I.claudius_F1_199_66_454875_peptide number 4 1179.3063 0 MPKAGYRNNE I.claudius_F1_199_66_454875_peptide number 5 4206.1131 0 DFLLKSLFLQKPLSALLVQMFPLLRQNLQASCIFLR I.claudius_F1_200_865_460644_peptide number 1 3546.4009000000005 0 MRIAKLILNTLLTLCILGLVAGGMLYFHLKSE I.claudius_F1_200_865_460644_peptide number 2 543.6105 0 LPSVE I.claudius_F1_200_865_460644_peptide number 3 689.7981000000001 0 TLKTVE I.claudius_F1_200_865_460644_peptide number 4 1905.1760000000002 0 LQQPMQIYTADGKLIGE I.claudius_F1_200_865_460644_peptide number 5 303.31170000000003 0 VGE I.claudius_F1_200_865_460644_peptide number 6 2650.0839999999994 0 QRRIPVKLADVPQRLIDAFLATE I.claudius_F1_200_865_460644_peptide number 7 5137.591599999998 0 DSRFYDHHGLDPIGIARALFVAVSNGGASQGASTITQQLARNFFLTSE I.claudius_F1_200_865_460644_peptide number 8 1114.3423 0 KTIIRKARE I.claudius_F1_200_865_460644_peptide number 9 600.7049000000001 0 AVLAVE I.claudius_F1_200_865_460644_peptide number 10 260.2869 0 IE I.claudius_F1_200_865_460644_peptide number 11 845.8975 0 NTLNKQE I.claudius_F1_200_865_460644_peptide number 12 373.44450000000006 0 ILE I.claudius_F1_200_865_460644_peptide number 13 3258.6781 0 LYLNKIFLGYRSYGVAAAAQTYFGKSLNE I.claudius_F1_200_865_460644_peptide number 14 561.6257 0 LTLSE I.claudius_F1_200_865_460644_peptide number 15 2589.0820999999996 0 MAIIAGLPKAPSTMNPLYSLKRSE I.claudius_F1_200_865_460644_peptide number 16 147.1293 0 E I.claudius_F1_200_865_460644_peptide number 17 1487.7272000000003 0 RRNVVLSRMLDE I.claudius_F1_200_865_460644_peptide number 18 766.8821 0 KYISKE I.claudius_F1_200_865_460644_peptide number 19 147.1293 0 E I.claudius_F1_200_865_460644_peptide number 20 2109.3368 0 YDAALKEPIVASYHGAKFE I.claudius_F1_200_865_460644_peptide number 21 1000.0625000000001 0 FRADYVTE I.claudius_F1_200_865_460644_peptide number 22 661.7714000000001 0 MVRQE I.claudius_F1_200_865_460644_peptide number 23 894.0531 0 MVRRFGE I.claudius_F1_200_865_460644_peptide number 24 147.1293 0 E I.claudius_F1_200_865_460644_peptide number 25 2222.4068 0 NAYTSGYKVFTTVLSKDQAE I.claudius_F1_200_865_460644_peptide number 26 3401.7706000000003 0 AQKAVRNNLIDYDMRHGYRGGAPLWQKNE I.claudius_F1_200_865_460644_peptide number 27 4393.005000000001 0 AAWDNDRIVGFLRKLPDSEPFIPAAVIGIVKGGADILLASGE I.claudius_F1_200_865_460644_peptide number 28 2463.8344 0 KMTLSTNAMRWTGRSNPVKVGE I.claudius_F1_200_865_460644_peptide number 29 1351.4696000000001 0 QIWIHQRANGE I.claudius_F1_200_865_460644_peptide number 30 2468.6732 0 WQLGQIPAANSALVSLNSDNGAIE I.claudius_F1_200_865_460644_peptide number 31 927.9965000000001 0 AVVGGFSYE I.claudius_F1_200_865_460644_peptide number 32 3054.454700000001 0 QSKFNRATQSLVQVGSSIKPFIYAAALE I.claudius_F1_200_865_460644_peptide number 33 7123.137200000004 0 KGLTLSSVLQDSPISIQKPGQKMWQPKNSPDRYDGPMRLRVGLGQSKNIIAIRAIQTAGIDFTAE I.claudius_F1_200_865_460644_peptide number 34 2039.2517999999998 0 FLQRFGFKRDQYFASE I.claudius_F1_200_865_460644_peptide number 35 1260.4353 0 ALALGAASFTPLE I.claudius_F1_200_865_460644_peptide number 36 2389.7225 0 MARAYAVFDNGGFLIEPYIIE I.claudius_F1_200_865_460644_peptide number 37 2331.6863999999996 0 KIQDNTGKDLFIANPKIACIE I.claudius_F1_200_865_460644_peptide number 38 1122.2483 0 CNDIPVIYGE I.claudius_F1_200_865_460644_peptide number 39 1616.8128000000002 0 TKDKINGFANIPLGE I.claudius_F1_200_865_460644_peptide number 40 1361.3687 0 NALKPTDDSTNGE I.claudius_F1_200_865_460644_peptide number 41 147.1293 0 E I.claudius_F1_200_865_460644_peptide number 42 728.7479 0 LDQQPE I.claudius_F1_200_865_460644_peptide number 43 444.47950000000003 0 TVPE I.claudius_F1_200_865_460644_peptide number 44 357.4021 0 LPE I.claudius_F1_200_865_460644_peptide number 45 1134.3038000000001 0 LQSNMTALKE I.claudius_F1_200_865_460644_peptide number 46 1747.9642999999999 0 DAIDLMAAAKNASSKIE I.claudius_F1_200_865_460644_peptide number 47 991.0987 0 YAPRVISGE I.claudius_F1_200_865_460644_peptide number 48 1752.0190000000002 0 LAFLIRSALNTAIYGE I.claudius_F1_200_865_460644_peptide number 49 6724.381900000001 0 QGLDWKGTSWRIAQSIKRSDIGGKTGTTNSSKVAWYAGFGANLVTTTYVGFDDNKRVLGRGE I.claudius_F1_200_865_460644_peptide number 50 2481.8844000000004 0 AGAKTAMPAWITYMKTALSDKPE I.claudius_F1_200_865_460644_peptide number 51 1279.5712 0 RKLSLPPKIVE I.claudius_F1_200_865_460644_peptide number 52 1913.1368 0 KNIDTLTGLLSPNGGRKE I.claudius_F1_200_865_460644_peptide number 53 1747.8980999999999 0 YFIAGTEPTRTYLSE I.claudius_F1_200_865_460644_peptide number 54 406.4546 0 MQE I.claudius_F1_200_865_460644_peptide number 55 984.0631 0 RGYYVPTE I.claudius_F1_200_865_460644_peptide number 56 1014.0937999999999 0 LQQRLNNE I.claudius_F1_200_865_460644_peptide number 57 1042.0576999999998 0 GNTPATQPQE I.claudius_F1_200_865_460644_peptide number 58 278.34680000000003 0 LF I.claudius_F1_201_231_466596_peptide number 1 940.0519 0 MQFCPDAE I.claudius_F1_201_231_466596_peptide number 2 3236.6808000000005 0 YRKSKITLNIAGGTFIAQARNLQTAGWKE I.claudius_F1_201_231_466596_peptide number 3 558.6681 0 LLGKE I.claudius_F1_201_231_466596_peptide number 4 478.408 0 DDTE I.claudius_F1_201_231_466596_peptide number 5 2059.4319 0 NQEPLLPIVKKGQILHCE I.claudius_F1_201_231_466596_peptide number 6 360.3663 0 RGE I.claudius_F1_201_231_466596_peptide number 7 3537.1132 0 VMSKKTQPPKPFTDATLLSAMTGIARFVQDKE I.claudius_F1_201_231_466596_peptide number 8 899.1324000000001 0 LKKILRE I.claudius_F1_201_231_466596_peptide number 9 691.6847 0 TDGLGTE I.claudius_F1_201_231_466596_peptide number 10 829.9412000000001 0 ATRAGIIE I.claudius_F1_201_231_466596_peptide number 11 2245.6254 0 LLFKRGFLTKKGRNIHSTE I.claudius_F1_201_231_466596_peptide number 12 2576.9238 0 TGRILIQALPNIATQPDMTAHWE I.claudius_F1_201_231_466596_peptide number 13 7444.5139 0 SQLTDISQKQATYQQFMHNLNQILPDLVRFVDLNALRQLSRIKMIKSDRAKPKSAVKKSSKSNGE I.claudius_F1_201_231_466596_peptide number 14 234.2066 0 TD I.claudius_F1_202_54_468061_peptide number 1 2292.6936 0 MAYLTNPLSDTQIKKAKLKE I.claudius_F1_202_54_468061_peptide number 2 3972.6352000000006 0 KDCSYFYKRFTNTSITKRTKPCRLQSLVLDFIV I.claudius_F1_203_64_468463_peptide number 1 1576.6878 0 MTRIGSAATNGNAPSE I.claudius_F1_203_64_468463_peptide number 2 4884.724600000002 0 IKHKPRTNDAFPASHWLTVNLLRAIQVATVIPIGGTIPAAIAAAIGV I.claudius_F1_204_264_480782_peptide number 1 3712.1756000000005 0 MRYSIQDFIQLIAQLRNPNGGCPWDLKQNYE I.claudius_F1_204_264_480782_peptide number 2 883.042 0 SMISCLTE I.claudius_F1_204_264_480782_peptide number 3 147.1293 0 E I.claudius_F1_204_264_480782_peptide number 4 411.40650000000005 0 TYE I.claudius_F1_204_264_480782_peptide number 5 359.418 0 VIE I.claudius_F1_204_264_480782_peptide number 6 331.36480000000006 0 AIE I.claudius_F1_204_264_480782_peptide number 7 1112.28 0 KKDIPNLRE I.claudius_F1_204_264_480782_peptide number 8 147.1293 0 E I.claudius_F1_204_264_480782_peptide number 9 1948.2653 0 LGDLLLQVVFFSQLARE I.claudius_F1_204_264_480782_peptide number 10 1774.8771000000004 0 DKYFAFDDVLQDVAE I.claudius_F1_204_264_480782_peptide number 11 2032.2660000000005 0 KIVRRHPHVFGDAKAGDE I.claudius_F1_204_264_480782_peptide number 12 248.23319999999998 0 TE I.claudius_F1_204_264_480782_peptide number 13 874.9403 0 ALSRWNE I.claudius_F1_204_264_480782_peptide number 14 605.7479000000001 0 MKAKE I.claudius_F1_204_264_480782_peptide number 15 675.7317 0 KQGKSE I.claudius_F1_204_264_480782_peptide number 16 147.1293 0 E I.claudius_F1_204_264_480782_peptide number 17 3601.1418999999996 0 TSILDNVPRALPSLTRAAKLQKRCSKVGFDWE I.claudius_F1_204_264_480782_peptide number 18 147.1293 0 E I.claudius_F1_204_264_480782_peptide number 19 1189.3609000000001 0 ISPVFDKVRE I.claudius_F1_204_264_480782_peptide number 20 147.1293 0 E I.claudius_F1_204_264_480782_peptide number 21 260.2869 0 LE I.claudius_F1_204_264_480782_peptide number 22 147.1293 0 E I.claudius_F1_204_264_480782_peptide number 23 445.4675000000001 0 VQAE I.claudius_F1_204_264_480782_peptide number 24 831.9140000000001 0 INRTSIE I.claudius_F1_204_264_480782_peptide number 25 616.6645 0 QNKVE I.claudius_F1_204_264_480782_peptide number 26 147.1293 0 E I.claudius_F1_204_264_480782_peptide number 27 147.1293 0 E I.claudius_F1_204_264_480782_peptide number 28 2225.5661 0 IGDLLFATVNLARHLKCDPE I.claudius_F1_204_264_480782_peptide number 29 1304.4945 0 DALRKANLKFE I.claudius_F1_204_264_480782_peptide number 30 933.0693000000001 0 RRFRAVE I.claudius_F1_204_264_480782_peptide number 31 1893.1056999999998 0 QAVQQQGKQVNNVPLIE I.claudius_F1_204_264_480782_peptide number 32 902.9868 0 LDLLWDE I.claudius_F1_204_264_480782_peptide number 33 630.7342000000001 0 VKKQE I.claudius_F1_204_264_480782_peptide number 34 132.1179 0 N I.claudius_F1_205_804_482691_peptide number 1 4434.3638 0 MAKNTQRTMPVLPLRDVVVFPYMVMPLFVGRAKSINALE I.claudius_F1_205_804_482691_peptide number 2 147.1293 0 E I.claudius_F1_205_804_482691_peptide number 3 1759.9783 0 AMNDDKQILLVSQRE I.claudius_F1_205_804_482691_peptide number 4 446.45220000000006 0 ADLE I.claudius_F1_205_804_482691_peptide number 5 571.5776000000001 0 EPTPE I.claudius_F1_205_804_482691_peptide number 6 2982.4666 0 DLFDVGTIANIIQLLKLPDDTVKVLVE I.claudius_F1_205_804_482691_peptide number 7 1229.3434000000002 0 GQNRAKINSLE I.claudius_F1_205_804_482691_peptide number 8 319.26800000000003 0 DGE I.claudius_F1_205_804_482691_peptide number 9 1236.4370999999999 0 KCFSAQITPIE I.claudius_F1_205_804_482691_peptide number 10 684.6491000000001 0 TTYGDE I.claudius_F1_205_804_482691_peptide number 11 275.3016 0 KE I.claudius_F1_205_804_482691_peptide number 12 1115.3205 0 LVVAKSAVLSE I.claudius_F1_205_804_482691_peptide number 13 294.30320000000006 0 FE I.claudius_F1_205_804_482691_peptide number 14 5225.9353 0 NYLTLNKKVPTDILNALQRIDDVDRLADTMAAHLPVSIRHKQNALE I.claudius_F1_205_804_482691_peptide number 15 672.7277 0 LANVQE I.claudius_F1_205_804_482691_peptide number 16 416.47260000000006 0 RLE I.claudius_F1_205_804_482691_peptide number 17 856.0613000000001 0 YLLGMME I.claudius_F1_205_804_482691_peptide number 18 234.2066 0 SE I.claudius_F1_205_804_482691_peptide number 19 786.8701000000001 0 ADILQVE I.claudius_F1_205_804_482691_peptide number 20 1528.8685999999998 0 KRIRGRVKKQME I.claudius_F1_205_804_482691_peptide number 21 1314.4032 0 KSQRNYYLNE I.claudius_F1_205_804_482691_peptide number 22 985.1819 0 QIKAIRKE I.claudius_F1_205_804_482691_peptide number 23 507.5154 0 MDGGE I.claudius_F1_205_804_482691_peptide number 24 261.2319 0 NE I.claudius_F1_205_804_482691_peptide number 25 591.5656 0 DTIDE I.claudius_F1_205_804_482691_peptide number 26 246.2604 0 VE I.claudius_F1_205_804_482691_peptide number 27 880.988 0 QLHQKVE I.claudius_F1_205_804_482691_peptide number 28 1358.5206000000003 0 AAGMPADVRDKVE I.claudius_F1_205_804_482691_peptide number 29 261.2319 0 NE I.claudius_F1_205_804_482691_peptide number 30 1483.8164000000002 0 LQKLKMMSAMSSE I.claudius_F1_205_804_482691_peptide number 31 1051.1937 0 ATVIRSYIE I.claudius_F1_205_804_482691_peptide number 32 4376.0079 0 WMIQVPWHQRSKVKKDIVKAQQVLDTDHYGLDRVKE I.claudius_F1_205_804_482691_peptide number 33 529.6302000000001 0 RILE I.claudius_F1_205_804_482691_peptide number 34 5424.353200000001 0 YLAVQARLNKVKGPILCLVGPPGVGKTSLGQSIANATGRKYVRMALGGVRDE I.claudius_F1_205_804_482691_peptide number 35 218.2072 0 AE I.claudius_F1_205_804_482691_peptide number 36 3805.582300000001 0 IRGHRKTYIGALPGKLIQKMAKVGVKNPLFLLDE I.claudius_F1_205_804_482691_peptide number 37 1920.1692999999998 0 IDKMASDMRGDPASALLE I.claudius_F1_205_804_482691_peptide number 38 571.6206000000001 0 VLDPE I.claudius_F1_205_804_482691_peptide number 39 1381.4029999999998 0 QNTTFNDHYLE I.claudius_F1_205_804_482691_peptide number 40 3130.5244000000002 0 VDYDLSDVMFVATSNSMNIPGPLLDRME I.claudius_F1_205_804_482691_peptide number 41 1037.1671 0 VIRLSGYTE I.claudius_F1_205_804_482691_peptide number 42 262.2167 0 DE I.claudius_F1_205_804_482691_peptide number 43 1778.1706000000001 0 KLNIAMRHLLAKQIE I.claudius_F1_205_804_482691_peptide number 44 901.0224 0 RNGLKKGE I.claudius_F1_205_804_482691_peptide number 45 460.5219000000001 0 LTVE I.claudius_F1_205_804_482691_peptide number 46 147.1293 0 E I.claudius_F1_205_804_482691_peptide number 47 1612.8242 0 SAILDIIRYYTRE I.claudius_F1_205_804_482691_peptide number 48 700.7842 0 AGVRGLE I.claudius_F1_205_804_482691_peptide number 49 303.31500000000005 0 RE I.claudius_F1_205_804_482691_peptide number 50 4355.1145 0 ISKICRKAVKNLLVNPKLKSITVNSDNLHDYLGVKRFE I.claudius_F1_205_804_482691_peptide number 51 1335.4224000000002 0 FGKADTQNRIGE I.claudius_F1_205_804_482691_peptide number 52 875.9649000000001 0 VTGLAWTE I.claudius_F1_205_804_482691_peptide number 53 916.0271 0 VGGDLLTIE I.claudius_F1_205_804_482691_peptide number 54 2211.5349000000006 0 TASVVGKGKLSFTGSLGDVMKE I.claudius_F1_205_804_482691_peptide number 55 2214.5453 0 SIQAAMTVVRARADKLGINAE I.claudius_F1_205_804_482691_peptide number 56 431.4425 0 FHE I.claudius_F1_205_804_482691_peptide number 57 4688.347900000002 0 KRDIHIHVPDGATPKDGPSAGIAMCTALISCLTGNPVRADVAMTGE I.claudius_F1_205_804_482691_peptide number 58 1579.9251000000002 0 ISLRGKVLPIGGLKE I.claudius_F1_205_804_482691_peptide number 59 1944.3678 0 KLLAAHRGGIKTVLIPKE I.claudius_F1_205_804_482691_peptide number 60 716.7803000000001 0 NVKDLE I.claudius_F1_205_804_482691_peptide number 61 147.1293 0 E I.claudius_F1_205_804_482691_peptide number 62 357.4021 0 IPE I.claudius_F1_205_804_482691_peptide number 63 1335.5085000000001 0 NVKQNLAIHAVE I.claudius_F1_205_804_482691_peptide number 64 476.4782 0 TIDE I.claudius_F1_205_804_482691_peptide number 65 747.8787000000001 0 VLGFALE I.claudius_F1_205_804_482691_peptide number 66 455.4623 0 NPPE I.claudius_F1_205_804_482691_peptide number 67 317.33820000000003 0 GIE I.claudius_F1_205_804_482691_peptide number 68 620.7377 0 FVKVE I.claudius_F1_205_804_482691_peptide number 69 1682.9657 0 AKPKAPRRKVTSKSE I.claudius_F1_205_804_482691_peptide number 70 458.5126 0 RAVN I.claudius_F1_206_287_487563_peptide number 1 1129.2476 0 MRNVPQANAE I.claudius_F1_206_287_487563_peptide number 2 1664.7796 0 VHRGVWNKSATGSHE I.claudius_F1_206_287_487563_peptide number 3 2409.8246999999997 0 VRGKKLGIIGYGHIGSQLSIIAE I.claudius_F1_206_287_487563_peptide number 4 1451.5956 0 SLGMDVYFYDIE I.claudius_F1_206_287_487563_peptide number 5 1666.9196000000002 0 NKLPLGNAKQVRSLE I.claudius_F1_206_287_487563_peptide number 6 147.1293 0 E I.claudius_F1_206_287_487563_peptide number 7 1497.7121000000002 0 LLSSCDVVSLHVPE I.claudius_F1_206_287_487563_peptide number 8 6453.4250999999995 0 LPSTKNLMNVARIAQLKQGAILINAARGTVVDIDALAQALKDGKLQGAAIDVFPVEPASINE I.claudius_F1_206_287_487563_peptide number 9 147.1293 0 E I.claudius_F1_206_287_487563_peptide number 10 860.9966000000001 0 FISPLRE I.claudius_F1_206_287_487563_peptide number 11 1670.8172000000002 0 FDNVILTPHIGGSTAE I.claudius_F1_206_287_487563_peptide number 12 346.3364 0 AQE I.claudius_F1_206_287_487563_peptide number 13 578.6147000000001 0 NIGFE I.claudius_F1_206_287_487563_peptide number 14 2346.5472999999997 0 VAGKFVKYSDNGSTLSSVNFPE I.claudius_F1_206_287_487563_peptide number 15 543.6105 0 VSLPE I.claudius_F1_206_287_487563_peptide number 16 284.2686 0 HE I.claudius_F1_206_287_487563_peptide number 17 1203.3939 0 GTKRLLHIHE I.claudius_F1_206_287_487563_peptide number 18 1755.0262 0 NRPGILNKLNQIFVE I.claudius_F1_206_287_487563_peptide number 19 2633.9455000000003 0 ANLNIAAQYLQTDPKIGYVVVDVE I.claudius_F1_206_287_487563_peptide number 20 1429.6149 0 TNDASPLLTKLKE I.claudius_F1_206_287_487563_peptide number 21 1276.4844 0 IDGTIRARVLY I.claudius_F1_207_52_489401_peptide number 1 5745.7017 0 MDLDARVLDSRFNSCIIKSNLRPTAPPFFKIFVVSFTCICKRSSSSATSMR I.claudius_F1_208_304_490630_peptide number 1 4615.432599999999 0 MTNTTMQPNRLRIALQKKGRLSQDCAILLKQCGVKINWNE I.claudius_F1_208_304_490630_peptide number 2 963.0885000000001 0 QRLIAYAE I.claudius_F1_208_304_490630_peptide number 3 584.6623000000001 0 NLPIE I.claudius_F1_208_304_490630_peptide number 4 2710.0861000000004 0 ILRVRDDDIPGLIFDGVVDLGIIGE I.claudius_F1_208_304_490630_peptide number 5 473.52060000000006 0 NVLE I.claudius_F1_208_304_490630_peptide number 6 147.1293 0 E I.claudius_F1_208_304_490630_peptide number 7 147.1293 0 E I.claudius_F1_208_304_490630_peptide number 8 147.1293 0 E I.claudius_F1_208_304_490630_peptide number 9 885.9680000000001 0 LGRRAANE I.claudius_F1_208_304_490630_peptide number 10 3345.7623 0 TVTYKKLRQLDFGDCRLSLAVDRDCHYE I.claudius_F1_208_304_490630_peptide number 11 2903.3219000000004 0 NVKDLANRRIATSYPHLLKRYMNE I.claudius_F1_208_304_490630_peptide number 12 1553.7355 0 NGVSFKSCLLNGSVE I.claudius_F1_208_304_490630_peptide number 13 2108.3686 0 VAPSAGIAYAICDLVSSGATLE I.claudius_F1_208_304_490630_peptide number 14 630.691 0 ANGLKE I.claudius_F1_208_304_490630_peptide number 15 2203.5607000000005 0 VDVIYRSKACLIQRAEPLE I.claudius_F1_208_304_490630_peptide number 16 2397.726500000001 0 STKQALVDKLLTRIQGVQQAAE I.claudius_F1_208_304_490630_peptide number 17 1316.5682 0 SKYIMLHAPKE I.claudius_F1_208_304_490630_peptide number 18 388.4592 0 KLE I.claudius_F1_208_304_490630_peptide number 19 1040.2538 0 KITALLPGVE I.claudius_F1_208_304_490630_peptide number 20 2379.6882000000005 0 NPTILPLASDTTRVAMHVVSQE I.claudius_F1_208_304_490630_peptide number 21 707.7733000000001 0 NLFWE I.claudius_F1_208_304_490630_peptide number 22 379.4293 0 TME I.claudius_F1_208_304_490630_peptide number 23 516.5884000000001 0 QLKE I.claudius_F1_208_304_490630_peptide number 24 1169.3677 0 AGASSILVLPIE I.claudius_F1_208_304_490630_peptide number 25 537.6938 0 KMME I.claudius_F1_209_76_492690_peptide number 1 4090.504700000001 0 MGDYASGTNHVLPTYGYTKTYSSLGLADFSKRMTVQE I.claudius_F1_209_76_492690_peptide number 2 1217.4139 0 LTPKGFKNLAE I.claudius_F1_209_76_492690_peptide number 3 347.36430000000007 0 TVE I.claudius_F1_209_76_492690_peptide number 4 448.5344 0 VMAE I.claudius_F1_209_76_492690_peptide number 5 218.2072 0 AE I.claudius_F1_209_76_492690_peptide number 6 1963.3942999999997 0 QLAAHKMAVSVRLAKLNI I.claudius_F1_210_213_494651_peptide number 1 991.1184000000001 0 MNWDLIAE I.claudius_F1_210_213_494651_peptide number 2 558.6681000000001 0 KLLGE I.claudius_F1_210_213_494651_peptide number 3 1575.7909 0 TVTNCGKRPPRFAE I.claudius_F1_210_213_494651_peptide number 4 873.0091 0 VIRQTKE I.claudius_F1_210_213_494651_peptide number 5 1345.4968 0 TDIKVQVWLDE I.claudius_F1_210_213_494651_peptide number 6 488.4922 0 AGVNE I.claudius_F1_210_213_494651_peptide number 7 3980.5079 0 IKTGVGFFDHMLDQIATHGGFRMNVQCKGDLWIDE I.claudius_F1_210_213_494651_peptide number 8 621.6429 0 HHTVE I.claudius_F1_210_213_494651_peptide number 9 3288.7738 0 DTALALGQALKQAVGDKRGIARFGFVLPMDE I.claudius_F1_210_213_494651_peptide number 10 449.52240000000006 0 CKAE I.claudius_F1_210_213_494651_peptide number 11 3204.6358000000005 0 CALDLSGRPWIKFNACFKRDKVGDFSTE I.claudius_F1_210_213_494651_peptide number 12 361.3908 0 LTE I.claudius_F1_210_213_494651_peptide number 13 3222.5896000000002 0 HFFQSLAFSMLATLHLNVTGNNDHHKIE I.claudius_F1_210_213_494651_peptide number 14 2006.3544000000002 0 SLFKAFGRTLRQAIRIE I.claudius_F1_210_213_494651_peptide number 15 318.2832 0 GNE I.claudius_F1_210_213_494651_peptide number 16 817.9935 0 MPSSKGVL I.claudius_F1_211_250_495990_peptide number 1 8289.399900000002 0 MKQSIIIPALDLINGQVVRLHQGDYAKQTTYSDNPIKQFDNYVRQGAKQLHLVDLTGAKNPQSRQTALIGKIVE I.claudius_F1_211_250_495990_peptide number 2 1546.748 0 ATQCKVQVGGGIRTE I.claudius_F1_211_250_495990_peptide number 3 4017.5698000000007 0 QDVADLLAVGANRVVIGSTAVTHRSMVKNWFIKYGAE I.claudius_F1_211_250_495990_peptide number 4 2701.0809 0 KFVLALDVNINASGQKIVAISGWQE I.claudius_F1_211_250_495990_peptide number 5 147.1293 0 E I.claudius_F1_211_250_495990_peptide number 6 616.7042 0 SGVLLE I.claudius_F1_211_250_495990_peptide number 7 474.5484 0 TLIE I.claudius_F1_211_250_495990_peptide number 8 3372.6699000000003 0 DFQTVGLQQVLCTDISRDGTLTGSNIGLYQE I.claudius_F1_211_250_495990_peptide number 9 363.4298 0 ICE I.claudius_F1_211_250_495990_peptide number 10 2107.3191 0 KYPPIQFQSSGGIGSLADIE I.claudius_F1_211_250_495990_peptide number 11 1740.0532000000003 0 ALKGTGVSGVIVGRALLE I.claudius_F1_211_250_495990_peptide number 12 780.8656000000002 0 GKFTLSE I.claudius_F1_211_250_495990_peptide number 13 919.0590000000001 0 AIKCWQNG I.claudius_F1_212_222_497497_peptide number 1 3024.5362000000005 0 MNITKIDWQKVNGLLPVIIQNISTRE I.claudius_F1_212_222_497497_peptide number 2 1069.295 0 VLMLGYMNE I.claudius_F1_212_222_497497_peptide number 3 147.1293 0 E I.claudius_F1_212_222_497497_peptide number 4 903.0748000000001 0 ALTKTIKE I.claudius_F1_212_222_497497_peptide number 5 2268.6192000000005 0 RKVTFFSRTKQRLWTKGE I.claudius_F1_212_222_497497_peptide number 6 992.0833 0 ISGNFLNVE I.claudius_F1_212_222_497497_peptide number 7 147.1293 0 E I.claudius_F1_212_222_497497_peptide number 8 2646.9641 0 MSLDCDNDTLLILVDPIGATCHTGE I.claudius_F1_212_222_497497_peptide number 9 1560.6419999999998 0 YSCFHQFTSPQSE I.claudius_F1_212_222_497497_peptide number 10 2051.3484 0 NKKQQFANWAWFIKLE I.claudius_F1_212_222_497497_peptide number 11 653.7277 0 QHLKE I.claudius_F1_212_222_497497_peptide number 12 2986.3395000000005 0 KKNADPSNSYTATLHAKGTKKIAQKVGE I.claudius_F1_212_222_497497_peptide number 13 147.1293 0 E I.claudius_F1_212_222_497497_peptide number 14 303.31170000000003 0 GVE I.claudius_F1_212_222_497497_peptide number 15 1187.3003 0 TALAAVAQDKAE I.claudius_F1_212_222_497497_peptide number 16 446.49530000000004 0 VISE I.claudius_F1_212_222_497497_peptide number 17 2571.8360999999995 0 ATDLVYHLTVLLHNQDLQWYE I.claudius_F1_212_222_497497_peptide number 18 813.9815 0 IIAKLQE I.claudius_F1_212_222_497497_peptide number 19 1143.2558 0 RHQGIGLHPE I.claudius_F1_212_222_497497_peptide number 20 374.3928 0 GGNK I.claudius_F1_213_254_498867_peptide number 1 1605.0142000000003 0 MLAAFAVVLSLMLPE I.claudius_F1_213_254_498867_peptide number 2 8414.7484 0 IKFDNLMATPIDKALIISASPVFFTAFGFHGSIPSLNKYLDGNVKALRFSILVGSAITLCAYILWQLSTHGLLTQNE I.claudius_F1_213_254_498867_peptide number 3 890.0775000000001 0 FLQILKE I.claudius_F1_213_254_498867_peptide number 4 4508.256399999999 0 DATLNGLVKATFAITGSNVIASAVKLFSTLALITSFLGVGLGLLE I.claudius_F1_213_254_498867_peptide number 5 363.4298 0 CIE I.claudius_F1_213_254_498867_peptide number 6 3709.3789000000015 0 DLLKRSFNVTAGRISLGLLTFIPPLVFALFYPE I.claudius_F1_213_254_498867_peptide number 7 7904.494200000001 0 GFILALGYAGQMFAFYAVVLPVSLVWKARRAHANLPYKVWGGNLTLIIVLVLGVLITSIPFAIRAGYLPFVVG I.claudius_F1_214_81_502337_peptide number 1 9480.0234 0 MFITDTCLRHMTNNVTDSFRIRTRCSHTILRFTHFRGCHHFHCLSDFLCTLYTGNFGFYLFCTCHLISPLLPSTIRFKTI I.claudius_F1_215_54_503266_peptide number 1 6325.408200000003 0 MKFDDKLRLVLINHHKQLTHLRRDHGNIPPSHNQHKGLNIVTLLIQMQMQLPR I.claudius_F1_216_87_505183_peptide number 1 1256.4517000000003 0 MNGFAKMKSNE I.claudius_F1_216_87_505183_peptide number 2 7973.329700000003 0 IPTAIIAIASKRPATINILVCKLDANSGWRADDSKNLPPRIAKPIAVPNAANARRIDAPMIVAVITVSIIFSNRS I.claudius_F1_217_78_508415_peptide number 1 2554.9748 0 MLMDKLAIAPYFNAIVSADDVKE I.claudius_F1_217_78_508415_peptide number 2 743.8106 0 HKPHPE I.claudius_F1_217_78_508415_peptide number 3 838.9712000000002 0 TFLRCAE I.claudius_F1_217_78_508415_peptide number 4 1489.7379 0 LIQANPSRCIVFE I.claudius_F1_217_78_508415_peptide number 5 2422.6268 0 DADLGVQAGLSAGMDVFDVRTRE I.claudius_F1_217_78_508415_peptide number 6 584.7087 0 IISPR I.claudius_F1_218_94_508887_peptide number 1 3430.9311999999995 0 MDAKIRSQKLPHFMGNKSATALWGDCFTFE I.claudius_F1_218_94_508887_peptide number 2 2768.3273000000004 0 LAACSWRFILCHSWLVKIKFCNE I.claudius_F1_218_94_508887_peptide number 3 2060.3935 0 QSLYLSGKNGSLCCVIVFE I.claudius_F1_218_94_508887_peptide number 4 2332.8037 0 YTILIIKCARKSPTINVGQIT I.claudius_F1_219_168_509451_peptide number 1 5218.147 0 MPLLDSFKVDHTKMNAPAVRIAKTMLTPKGDNITVFDLRFCIPNKE I.claudius_F1_219_168_509451_peptide number 2 1207.4189999999999 0 ILSPKGIHTLE I.claudius_F1_219_168_509451_peptide number 3 1959.1455 0 HLFAGFMRDHLNGDSIE I.claudius_F1_219_168_509451_peptide number 4 2515.9220000000005 0 IIDISPMGCRTGFYMSLIGTPNE I.claudius_F1_219_168_509451_peptide number 5 589.6392000000001 0 QKVSE I.claudius_F1_219_168_509451_peptide number 6 2158.3875 0 AWLASMQDVLGVQDQASIPE I.claudius_F1_219_168_509451_peptide number 7 1290.3983 0 LNIYQCGSYTE I.claudius_F1_219_168_509451_peptide number 8 484.50350000000003 0 HSLE I.claudius_F1_219_168_509451_peptide number 9 470.4339 0 DAHE I.claudius_F1_219_168_509451_peptide number 10 1695.9608 0 IAKNVIARGIGVNKNE I.claudius_F1_219_168_509451_peptide number 11 1117.25 0 DLSLDNSLLK I.claudius_F1_220_72_510594_peptide number 1 1179.3891 0 MVGYQAILRE I.claudius_F1_220_72_510594_peptide number 2 2327.5106 0 NSIQQNMSRKGNYLDNNAME I.claudius_F1_220_72_510594_peptide number 3 1111.2504999999999 0 NFFGRLKTE I.claudius_F1_220_72_510594_peptide number 4 1123.2381 0 CYYDKRFE I.claudius_F1_220_72_510594_peptide number 5 2860.4826000000003 0 TFKQLKKQLMSIFIITTMITFRGN I.claudius_F1_221_176_511827_peptide number 1 6186.050000000002 0 MTTIVSVRRNGQVVVGGDGQVSLGNTVMKGNARKVRRLYNGKVLAGFAGGTADAFTLFE I.claudius_F1_221_176_511827_peptide number 2 407.46080000000006 0 LFE I.claudius_F1_221_176_511827_peptide number 3 544.6449 0 RKLE I.claudius_F1_221_176_511827_peptide number 4 1349.5583 0 MHQGHLLKSAVE I.claudius_F1_221_176_511827_peptide number 5 1871.1482 0 LAKDWRTDRALRKLE I.claudius_F1_221_176_511827_peptide number 6 861.0149 0 AMLIVADE I.claudius_F1_221_176_511827_peptide number 7 275.3016 0 KE I.claudius_F1_221_176_511827_peptide number 8 1440.6375 0 SLIITGIGDVVQPE I.claudius_F1_221_176_511827_peptide number 9 147.1293 0 E I.claudius_F1_221_176_511827_peptide number 10 2189.4246 0 DQILAIGSGGNYALSAARALVE I.claudius_F1_221_176_511827_peptide number 11 362.33580000000006 0 NTE I.claudius_F1_221_176_511827_peptide number 12 555.5814 0 LSAHE I.claudius_F1_221_176_511827_peptide number 13 359.418 0 IVE I.claudius_F1_221_176_511827_peptide number 14 2242.5503000000003 0 KSLRIAGDICVFTNTNFTIE I.claudius_F1_221_176_511827_peptide number 15 147.1293 0 E I.claudius_F1_221_176_511827_peptide number 16 342.39070000000004 0 LPN I.claudius_F1_222_86_513442_peptide number 1 450.5072 0 MATE I.claudius_F1_222_86_513442_peptide number 2 1676.908 0 GVNIAFTTDAVKKIAE I.claudius_F1_222_86_513442_peptide number 3 805.8784 0 AAFRVNE I.claudius_F1_222_86_513442_peptide number 4 376.4055000000001 0 KTE I.claudius_F1_222_86_513442_peptide number 5 1396.6181000000001 0 NIGARRLHTVME I.claudius_F1_222_86_513442_peptide number 6 3303.6312000000007 0 RLMDKISFSASDMNGQTVNIDAAYVADALGE I.claudius_F1_222_86_513442_peptide number 7 345.39150000000006 0 VVE I.claudius_F1_222_86_513442_peptide number 8 261.2319 0 NE I.claudius_F1_222_86_513442_peptide number 9 863.0124000000001 0 DLSRFIL I.claudius_F1_223_62_514238_peptide number 1 6404.353000000001 0 MSSSLVVFGDLPSSNNATWNTSRASLVMRTLPLNSGFHKSAQLVMVLGSISSALTSIPVKP I.claudius_F1_224_432_514962_peptide number 1 1015.1399000000001 0 MLNFAYQE I.claudius_F1_224_432_514962_peptide number 2 2888.1085000000003 0 HVRSYYFDSRNQDFQFPPLTQIE I.claudius_F1_224_432_514962_peptide number 3 1877.1245000000001 0 HADVCVIGAGFFGLSAALE I.claudius_F1_224_432_514962_peptide number 4 331.36480000000006 0 LAE I.claudius_F1_224_432_514962_peptide number 5 1013.2749000000001 0 KGKKVIVLE I.claudius_F1_224_432_514962_peptide number 6 1995.1164000000003 0 GARVGFGASGRSGGQAINGFE I.claudius_F1_224_432_514962_peptide number 7 147.1293 0 E I.claudius_F1_224_432_514962_peptide number 8 432.42560000000003 0 GIDE I.claudius_F1_224_432_514962_peptide number 9 835.9441 0 YIKQVGE I.claudius_F1_224_432_514962_peptide number 10 1471.6796 0 DKAHKLWNMSLE I.claudius_F1_224_432_514962_peptide number 11 817.8808 0 TIDIIDE I.claudius_F1_224_432_514962_peptide number 12 416.47260000000006 0 RIE I.claudius_F1_224_432_514962_peptide number 13 2231.5259 0 KYSIQCDWKKGYATLALNE I.claudius_F1_224_432_514962_peptide number 14 1047.1868 0 RRMDDLIE I.claudius_F1_224_432_514962_peptide number 15 278.32540000000006 0 ME I.claudius_F1_224_432_514962_peptide number 16 275.3016 0 KE I.claudius_F1_224_432_514962_peptide number 17 6850.7283 0 SHKNFGYQNMQLWDKTKLKQHLGSDIYVGGLFDSNSGHLHPLNYCLGLAKACVDLGVQIFE I.claudius_F1_224_432_514962_peptide number 18 1003.1278 0 QSPVVDMVE I.claudius_F1_224_432_514962_peptide number 19 648.7295 0 KNGCVE I.claudius_F1_224_432_514962_peptide number 20 4353.0722 0 VKTAKSAVISQDVILATNAYIDVLPKSIHHGINRKILPVE I.claudius_F1_224_432_514962_peptide number 21 5527.025600000001 0 SFIIATEPLSQAVADSVINNGMSVCDNNLLLDYYRLSADNRLLFGSDSSSE I.claudius_F1_224_432_514962_peptide number 22 2266.8120000000004 0 KDMVAIMRKNMLCVFPQLE I.claudius_F1_224_432_514962_peptide number 23 5566.227099999998 0 NVKIDYGWAGPIDMTLNSTPHFGRISPHIYFAHGYSGHGVALTGLAGRIVAE I.claudius_F1_224_432_514962_peptide number 24 731.7485 0 AILGDDE I.claudius_F1_224_432_514962_peptide number 25 763.8814 0 RLSIFE I.claudius_F1_224_432_514962_peptide number 26 3690.3377000000005 0 GLKVPSVYGGRIIKDLATKIGVQYYKFLDKYR I.claudius_F1_225_140_518033_peptide number 1 2380.7853000000005 0 MKKTALLNAQLSHCIATLGHTE I.claudius_F1_225_140_518033_peptide number 2 1627.8968 0 SLTICDAGLPIPLSVE I.claudius_F1_225_140_518033_peptide number 3 2471.8033 0 RIDLALTAGVPSFLQTLNVVTNE I.claudius_F1_225_140_518033_peptide number 4 540.6298 0 MYVE I.claudius_F1_225_140_518033_peptide number 5 685.8127000000001 0 RVVIAE I.claudius_F1_225_140_518033_peptide number 6 147.1293 0 E I.claudius_F1_225_140_518033_peptide number 7 388.4592 0 IKE I.claudius_F1_225_140_518033_peptide number 8 486.5194 0 KNPE I.claudius_F1_225_140_518033_peptide number 9 1483.7913 0 ILTALLTQLQKLE I.claudius_F1_225_140_518033_peptide number 10 1139.1761 0 SHQGNQIQVE I.claudius_F1_225_140_518033_peptide number 11 617.6509 0 FVSHE I.claudius_F1_225_140_518033_peptide number 12 1013.1871 0 TFKKFTLE I.claudius_F1_225_140_518033_peptide number 13 960.0863999999999 0 SKAIVRTGE I.claudius_F1_225_140_518033_peptide number 14 1629.8729 0 CSPYANVILYSGVPF I.claudius_F1_226_346_518910_peptide number 1 377.4565 0 MVE I.claudius_F1_226_346_518910_peptide number 2 878.0238 0 IAKALSFE I.claudius_F1_226_346_518910_peptide number 3 1878.0599000000002 0 SKVIIMDEPTDALTDTE I.claudius_F1_226_346_518910_peptide number 4 248.23319999999998 0 TE I.claudius_F1_226_346_518910_peptide number 5 961.1157000000001 0 ALFNVIRE I.claudius_F1_226_346_518910_peptide number 6 459.5371 0 LKAE I.claudius_F1_226_346_518910_peptide number 7 1584.8207000000002 0 NRGIVYISHRLKE I.claudius_F1_226_346_518910_peptide number 8 2168.4254000000005 0 IFQICDDVTVLRDGQFIGE I.claudius_F1_226_346_518910_peptide number 9 604.7201 0 RVMAE I.claudius_F1_226_346_518910_peptide number 10 361.3908 0 ITE I.claudius_F1_226_346_518910_peptide number 11 603.6193000000001 0 DDLIE I.claudius_F1_226_346_518910_peptide number 12 1106.3203 0 MMVGRRLDE I.claudius_F1_226_346_518910_peptide number 13 1001.0504000000001 0 QYPHLSQE I.claudius_F1_226_346_518910_peptide number 14 332.35290000000003 0 KGE I.claudius_F1_226_346_518910_peptide number 15 2512.7924 0 CVLDVKHVSGSGIDDVSFKLHAGE I.claudius_F1_226_346_518910_peptide number 16 1346.5528 0 IVGVSGLMGAGRTE I.claudius_F1_226_346_518910_peptide number 17 2397.8572 0 LGKLLYGALPKTAGKVRLKNQE I.claudius_F1_226_346_518910_peptide number 18 260.2869 0 IE I.claudius_F1_226_346_518910_peptide number 19 1876.9738 0 NRSPQDGLDNGIVYISE I.claudius_F1_226_346_518910_peptide number 20 1603.8391 0 DRKGDGLVLGMSVKE I.claudius_F1_226_346_518910_peptide number 21 2356.5733999999998 0 NMSLTSLDHFSQKGGIRHQAE I.claudius_F1_226_346_518910_peptide number 22 6808.864500000001 0 KMAVDDFILMFNIKTPNRDQQVGLLSGGNQQKVAIARGLMTRPNVLILDEPTRGVDVGAKKE I.claudius_F1_226_346_518910_peptide number 23 892.0072 0 IYQLINE I.claudius_F1_226_346_518910_peptide number 24 550.6478000000001 0 FKKE I.claudius_F1_226_346_518910_peptide number 25 1392.6377 0 GLSILMISSDMPE I.claudius_F1_226_346_518910_peptide number 26 1504.8174000000004 0 VLGMSDRVLVMRE I.claudius_F1_226_346_518910_peptide number 27 603.6657 0 GKISAE I.claudius_F1_226_346_518910_peptide number 28 537.5662 0 FSRE I.claudius_F1_226_346_518910_peptide number 29 147.1293 0 E I.claudius_F1_226_346_518910_peptide number 30 447.4403000000001 0 ATQE I.claudius_F1_226_346_518910_peptide number 31 884.1177 0 KLLAAAIGK I.claudius_F1_227_160_521350_peptide number 1 2161.4775 0 MAGDFIAQKLGDNAKVIQLE I.claudius_F1_227_160_521350_peptide number 2 931.9901 0 GIAGTSAARE I.claudius_F1_227_160_521350_peptide number 3 360.3663 0 RGE I.claudius_F1_227_160_521350_peptide number 4 3418.7682000000004 0 GFKQAIDAHKFNVLASQPADFDRTKGLNVTE I.claudius_F1_227_160_521350_peptide number 5 1933.0801000000001 0 NLLASKGDVQAIFAQNDE I.claudius_F1_227_160_521350_peptide number 6 4570.339500000001 0 MALGALRAVKAANKKVLIVGFDGTDDGVKAVKSGKMAATIAQQPE I.claudius_F1_227_160_521350_peptide number 7 1713.0245 0 LIGSLGVVTADKILKGE I.claudius_F1_227_160_521350_peptide number 8 374.43270000000007 0 KVE I.claudius_F1_227_160_521350_peptide number 9 1311.5667 0 AKIPVDLKVISE I.claudius_F1_228_170_522338_peptide number 1 519.6122 0 MQLE I.claudius_F1_228_170_522338_peptide number 2 701.7657000000002 0 TPLSGVE I.claudius_F1_228_170_522338_peptide number 3 2688.1269999999995 0 LAAQIAKKNGVKVVLNPAPAQILSDE I.claudius_F1_228_170_522338_peptide number 4 1340.5612999999998 0 LLSLIDIITPNE I.claudius_F1_228_170_522338_peptide number 5 248.23319999999998 0 TE I.claudius_F1_228_170_522338_peptide number 6 218.2072 0 AE I.claudius_F1_228_170_522338_peptide number 7 630.7308 0 ILTGVE I.claudius_F1_228_170_522338_peptide number 8 432.4257 0 VADE I.claudius_F1_228_170_522338_peptide number 9 1686.8631000000003 0 QSAVKAASVFHDKGIE I.claudius_F1_228_170_522338_peptide number 10 5090.916400000001 0 TVMITLGAKGVFVSRKGKSRIIKGFCVQAIDTTAAGDTFNGGFVTALLE I.claudius_F1_228_170_522338_peptide number 11 147.1293 0 E I.claudius_F1_228_170_522338_peptide number 12 624.6402 0 KSFDE I.claudius_F1_228_170_522338_peptide number 13 2787.1356 0 AIRFGQAAAAISVTKKGAQSSIPTRQE I.claudius_F1_228_170_522338_peptide number 14 361.3908 0 TLE I.claudius_F1_228_170_522338_peptide number 15 407.46080000000006 0 FLE I.claudius_F1_228_170_522338_peptide number 16 226.2325 0 HA I.claudius_F1_229_65_523679_peptide number 1 841.8824000000001 0 MGYDDIE I.claudius_F1_229_65_523679_peptide number 2 1987.323 0 LARYLSPPLSTICQPKAE I.claudius_F1_229_65_523679_peptide number 3 728.8771000000002 0 LGKLAVE I.claudius_F1_229_65_523679_peptide number 4 1325.5136 0 TLLQRIKNPNE I.claudius_F1_229_65_523679_peptide number 5 1806.0915000000002 0 NYRTLVLEPTCVLRE I.claudius_F1_229_65_523679_peptide number 6 709.8307 0 SIYSLK I.claudius_F1_230_116_524183_peptide number 1 2791.4355000000005 0 MLGVLNLIDVVMIANLLVMVTIGGYE I.claudius_F1_230_116_524183_peptide number 2 1937.1633000000002 0 IFVSKLRTRNHPDQPE I.claudius_F1_230_116_524183_peptide number 3 4215.9792 0 WMSHVNATVLKVKLSMSIIGISSIHMLQTFVNASNMPE I.claudius_F1_230_116_524183_peptide number 4 4032.7713 0 KTMMWQLLLHLGFLVSAIALAYTDKILYSTSHKTH I.claudius_F1_231_71_528633_peptide number 1 2159.5478 0 MLQFSVAALPLLNKKSNVGE I.claudius_F1_231_71_528633_peptide number 2 5644.3968 0 LNNLYLASCPIIAGFFINKSLRYSYCLNVKSDRFSFKNLYTNFSNGSPAA I.claudius_F1_232_76_533045_peptide number 1 4644.3981 0 MPFGAIIHKIARPIVVSVSVVFASNSPASFFTYSVIRTFTRE I.claudius_F1_232_76_533045_peptide number 2 3546.9868000000006 0 CNSASPVRYAFSASRGSCNNIPSPLPFTFSRVI I.claudius_F1_233_55_534674_peptide number 1 1458.5485 0 MVSGFFTSPNDQE I.claudius_F1_233_55_534674_peptide number 2 673.7588000000001 0 RIISGE I.claudius_F1_233_55_534674_peptide number 3 3502.0406000000003 0 ANPILITSKSSLVFDCAFKNLTKSFTNVLLSE I.claudius_F1_233_55_534674_peptide number 4 358.47630000000004 0 LKV I.claudius_F1_234_106_535968_peptide number 1 6166.955199999999 0 MIFLRFTSSLCSNSLRSSSYCSASCSNWFCFSSSAMVCSNHLVRSNLSNCAASAPLE I.claudius_F1_234_106_535968_peptide number 2 5302.043199999999 0 IRRLRTRANKPASKISNSSVKSFFASRSCISSISNARLSFSTPSRVKT I.claudius_F1_235_66_536983_peptide number 1 1118.3691 0 MVYPHVMLE I.claudius_F1_235_66_536983_peptide number 2 2370.5835 0 LLDVACSHPSTHGSHRHAQGME I.claudius_F1_235_66_536983_peptide number 3 2094.4330999999997 0 LMQPQQIPLVVSKHPYSE I.claudius_F1_235_66_536983_peptide number 4 1930.1291 0 YLQVYINQIHHVHHE I.claudius_F1_235_66_536983_peptide number 5 146.1445 0 Q I.claudius_F1_236_55_538275_peptide number 1 2140.4651999999996 0 MRRPRSTYTLPFASISKE I.claudius_F1_236_55_538275_peptide number 2 3867.5858000000003 0 AVSPRKRSGTKVINNLSPAISKVILSKNKFKISSVV I.claudius_F1_237_51_540673_peptide number 1 4391.0374999999985 0 MSHKRLIMGTDYIKSAVVFQALLKSDRRYYSASPINTE I.claudius_F1_237_51_540673_peptide number 2 1244.3944000000001 0 SNAISIISLNVN I.claudius_F1_238_50_543159_peptide number 1 5611.4551 0 MATRQLNFANSAPVYRFLYVNVLVSLAVVQYLLDFSDQNKVFASQCPRL I.claudius_F1_239_102_543560_peptide number 1 2555.0259 0 MVSGLWQYKQFSLQPCRKILE I.claudius_F1_239_102_543560_peptide number 2 1049.201 0 RLPCPSTFE I.claudius_F1_239_102_543560_peptide number 3 1404.5919999999999 0 NGIIRCNGTKISE I.claudius_F1_239_102_543560_peptide number 4 7076.202900000001 0 SAVIFLIIFQRSHLFHRVIGDQTHWHIHPYPSHTKLYRVMRLRLYGIFQLRFSSLDNL I.claudius_F1_240_140_545702_peptide number 1 10169.397500000008 0 MLVWKPLKLRLGLGTLLNIIVIALFLGITTKILAPPTALFSRMIFCLIGILLYGFGTALYLTCHLGAGPRDGLMVGICQRFHLSINVVRSSLE I.claudius_F1_240_140_545702_peptide number 2 4745.667 0 ISVCLLGFLLGGVVGLGTVLFATSIGSVVQFFLNIIARLPHIPYE I.claudius_F1_240_140_545702_peptide number 3 146.1876 0 K I.claudius_F1_241_68_547732_peptide number 1 4266.981199999999 0 MPISISRVIPILSIRARYSRQIAIFSSIDSSDKSIICE I.claudius_F1_241_68_547732_peptide number 2 147.1293 0 E I.claudius_F1_241_68_547732_peptide number 3 2911.2545 0 KSGRPVSAKCFSPASNKPSIQGNNFFAA I.claudius_F1_242_71_548874_peptide number 1 2078.538 0 MKVFAMPPPTIIWSAIFE I.claudius_F1_242_71_548874_peptide number 2 303.31500000000005 0 RE I.claudius_F1_242_71_548874_peptide number 3 922.9783 0 FNTSNLVE I.claudius_F1_242_71_548874_peptide number 4 4006.306700000001 0 TLEPPTIATIGRAGSFNALPNASNSAANNGPAQAIGANSATP I.claudius_F1_243_65_549414_peptide number 1 1032.2186 0 MVARIRASE I.claudius_F1_243_65_549414_peptide number 2 6168.514800000004 0 VTLPSFTGTLRSARINTRLPAKSKSVILITDIIYPLVKLKLKLKLKTFRIIPTSC I.claudius_F1_244_87_550533_peptide number 1 1986.4211000000005 0 MALLITSKCTNCDMCLPE I.claudius_F1_244_87_550533_peptide number 2 461.49 0 CPNE I.claudius_F1_244_87_550533_peptide number 3 703.7384000000001 0 AISIGDE I.claudius_F1_244_87_550533_peptide number 4 1278.5135000000002 0 IYVIDPILCTE I.claudius_F1_244_87_550533_peptide number 5 2762.1659000000004 0 CVGHYDTPTCQKVCPITNCIKPDPE I.claudius_F1_244_87_550533_peptide number 6 412.3978000000001 0 HQE I.claudius_F1_244_87_550533_peptide number 7 248.23319999999998 0 TE I.claudius_F1_244_87_550533_peptide number 8 147.1293 0 E I.claudius_F1_244_87_550533_peptide number 9 574.6260000000001 0 QLWE I.claudius_F1_244_87_550533_peptide number 10 1382.6329 0 RFVMIHHSDKL I.claudius_F1_245_72_554042_peptide number 1 971.2184000000002 0 MPVIKVRE I.claudius_F1_245_72_554042_peptide number 2 261.2319 0 NE I.claudius_F1_245_72_554042_peptide number 3 1713.958 0 SFDVALRRFKRSCE I.claudius_F1_245_72_554042_peptide number 4 700.8239000000001 0 KAGILAE I.claudius_F1_245_72_554042_peptide number 5 629.7097 0 VRARE I.claudius_F1_245_72_554042_peptide number 6 457.4765000000001 0 FYE I.claudius_F1_245_72_554042_peptide number 7 1128.3259 0 KPTTIRKRE I.claudius_F1_245_72_554042_peptide number 8 1735.9486 0 NATLAKRHAKRNARE I.claudius_F1_245_72_554042_peptide number 9 1007.1046 0 NARNTRLY I.claudius_F1_246_503_554664_peptide number 1 519.6122 0 MAGLE I.claudius_F1_246_503_554664_peptide number 2 520.5754000000001 0 IPYE I.claudius_F1_246_503_554664_peptide number 3 2531.784 0 KRVNHSGKPQANYQTKRNLYE I.claudius_F1_246_503_554664_peptide number 4 519.6122 0 LMQE I.claudius_F1_246_503_554664_peptide number 5 1979.1501 0 IATFYQNQLPLNTQAQE I.claudius_F1_246_503_554664_peptide number 6 1190.3057000000001 0 YLQQRGLSPE I.claudius_F1_246_503_554664_peptide number 7 373.44450000000006 0 IIE I.claudius_F1_246_503_554664_peptide number 8 2695.1064 0 RFQIGFVPNAMDTVLRKFGVNRE I.claudius_F1_246_503_554664_peptide number 9 147.1293 0 E I.claudius_F1_246_503_554664_peptide number 10 757.8752000000001 0 QQKLIE I.claudius_F1_246_503_554664_peptide number 11 4942.646599999999 0 LGMLSRNDRGNIYDKFRNRIMFPIRDKRGRTVAFGGRVLTDE I.claudius_F1_246_503_554664_peptide number 12 1075.2151 0 KPKYLNSPE I.claudius_F1_246_503_554664_peptide number 13 1076.2032000000002 0 TITYHKGKE I.claudius_F1_246_503_554664_peptide number 14 756.8424000000001 0 LYGLYE I.claudius_F1_246_503_554664_peptide number 15 1696.8960000000002 0 ALQTNDEPKQLLVVE I.claudius_F1_246_503_554664_peptide number 16 2752.9986000000004 0 GYMDVVALAQFGVDYAVASLGTSTTSE I.claudius_F1_246_503_554664_peptide number 17 1200.385 0 QIQLILRSTE I.claudius_F1_246_503_554664_peptide number 18 2354.5808 0 QVVCCYDGDRAGRDAAWRALE I.claudius_F1_246_503_554664_peptide number 19 818.9135000000001 0 NALPYLE I.claudius_F1_246_503_554664_peptide number 20 1634.8297000000002 0 DGRQLKFIFLPDGE I.claudius_F1_246_503_554664_peptide number 21 1498.5925 0 EPDTYIRQYGKE I.claudius_F1_246_503_554664_peptide number 22 422.4755 0 KFE I.claudius_F1_246_503_554664_peptide number 23 147.1293 0 E I.claudius_F1_246_503_554664_peptide number 24 423.4602000000001 0 YIE I.claudius_F1_246_503_554664_peptide number 25 720.7259 0 SAQSLSE I.claudius_F1_246_503_554664_peptide number 26 1884.1156 0 FMFAHLSPQVDFSTKE I.claudius_F1_246_503_554664_peptide number 27 1940.2929000000001 0 GRGKLVALAAPLIHQIPGE I.claudius_F1_246_503_554664_peptide number 28 2719.2302999999997 0 MLRLSLRNMLAQKLGIFDQTQLE I.claudius_F1_246_503_554664_peptide number 29 954.1645000000001 0 NLIPKKLE I.claudius_F1_246_503_554664_peptide number 30 3508.1463000000003 0 QANTQQKVTHNKIKKTPMRMVISLLMQNPE I.claudius_F1_246_503_554664_peptide number 31 862.0494000000001 0 LVKRMSE I.claudius_F1_246_503_554664_peptide number 32 930.0173000000001 0 SGVQALRAE I.claudius_F1_246_503_554664_peptide number 33 422.43240000000003 0 AGFE I.claudius_F1_246_503_554664_peptide number 34 373.44450000000006 0 ILE I.claudius_F1_246_503_554664_peptide number 35 1217.4421000000002 0 KLTALCRQRE I.claudius_F1_246_503_554664_peptide number 36 931.0417 0 GITTGQILE I.claudius_F1_246_503_554664_peptide number 37 1490.5720000000001 0 YFRNTSYSNPLE I.claudius_F1_246_503_554664_peptide number 38 1325.4655000000002 0 ILATWDHLLDE I.claudius_F1_246_503_554664_peptide number 39 2365.5999 0 SDIINAFSQNYRRLNIQAIE I.claudius_F1_246_503_554664_peptide number 40 531.5600000000001 0 RDIE I.claudius_F1_246_503_554664_peptide number 41 703.8908000000001 0 MLIAKE I.claudius_F1_246_503_554664_peptide number 42 404.4189 0 RTE I.claudius_F1_246_503_554664_peptide number 43 532.5447 0 GLTNE I.claudius_F1_246_503_554664_peptide number 44 147.1293 0 E I.claudius_F1_246_503_554664_peptide number 45 1307.5813 0 KTVLVHLLAGKE I.claudius_F1_246_503_554664_peptide number 46 1195.4116 0 QQKKQLVNPL I.claudius_F1_247_141_557709_peptide number 1 491.5624 0 MGRE I.claudius_F1_247_141_557709_peptide number 2 416.4263000000001 0 ATPE I.claudius_F1_247_141_557709_peptide number 3 147.1293 0 E I.claudius_F1_247_141_557709_peptide number 4 331.36480000000006 0 LAE I.claudius_F1_247_141_557709_peptide number 5 719.8737 0 RMGMPE I.claudius_F1_247_141_557709_peptide number 6 1998.4335999999998 0 DKIRKVLKIAKEPISME I.claudius_F1_247_141_557709_peptide number 7 1745.7513000000001 0 TPIGDDDDSHLGDFIE I.claudius_F1_247_141_557709_peptide number 8 563.5555 0 DSTLE I.claudius_F1_247_141_557709_peptide number 9 1780.9727 0 LPLDSATAQSLKVATHE I.claudius_F1_247_141_557709_peptide number 10 359.418 0 VLE I.claudius_F1_247_141_557709_peptide number 11 671.743 0 GLTPRE I.claudius_F1_247_141_557709_peptide number 12 2247.5967000000005 0 AKVLRMRFGIDMNTDHTLE I.claudius_F1_247_141_557709_peptide number 13 147.1293 0 E I.claudius_F1_247_141_557709_peptide number 14 1178.2952 0 VGKQFDVTRE I.claudius_F1_247_141_557709_peptide number 15 813.9451 0 RIRQIE I.claudius_F1_247_141_557709_peptide number 16 1648.9110999999998 0 AKALRKLRHPSRSE I.claudius_F1_247_141_557709_peptide number 17 980.0727 0 TLRSFLDE I.claudius_F1_248_68_559043_peptide number 1 7902.560800000004 0 MLLQLSFLLVHKLIQSLQQDVLQLILYSLVAYLNQYRLPLHQGLLQVINLLYVLSYALLLQVIRRKL I.claudius_F1_249_59_561237_peptide number 1 2358.6674000000003 0 MNTISTSGKRVTISSTASKFIE I.claudius_F1_249_59_561237_peptide number 2 3735.274 0 ASSRIAVCGQPPVSTPIIRSGGSKLFFVKNSASSWV I.claudius_F1_250_64_562025_peptide number 1 1794.0159999999998 0 MCFIANKNFQQSYAE I.claudius_F1_250_64_562025_peptide number 2 294.30320000000006 0 FE I.claudius_F1_250_64_562025_peptide number 3 5030.058400000001 0 TPFTTFACHFGGGKLPIQFAQAVKIPLTHCIKGKRKIRPVVVNPVL I.claudius_F1_251_63_564115_peptide number 1 1180.3357 0 MHPLQFAHAE I.claudius_F1_251_63_564115_peptide number 2 2682.1918 0 DLGLNSCLYQKIRRLPARLLPLE I.claudius_F1_251_63_564115_peptide number 3 3753.2127999999993 0 TYVPYTMRQGYKWLRVYHQQGQFHHQLTW I.claudius_F1_252_51_564824_peptide number 1 5639.5829 0 MIWLPPKATNSTDFTSPGSKRTALPDGTFKRIPRAKVRSNLRALLVSKKW I.claudius_F1_253_97_565633_peptide number 1 1890.2608000000002 0 MNIRPLHDRVIIKRE I.claudius_F1_253_97_565633_peptide number 2 147.1293 0 E I.claudius_F1_253_97_565633_peptide number 3 246.2604 0 VE I.claudius_F1_253_97_565633_peptide number 4 3169.6781 0 TRSAGGIVLTGSAATKSTRAKVLAVGKGRILE I.claudius_F1_253_97_565633_peptide number 5 2764.0476000000003 0 NGTVQPLDVKVGDIVIFNDGYGVKSE I.claudius_F1_253_97_565633_peptide number 6 560.5979000000001 0 KIDGE I.claudius_F1_253_97_565633_peptide number 7 147.1293 0 E I.claudius_F1_253_97_565633_peptide number 8 672.8105 0 VLIISE I.claudius_F1_253_97_565633_peptide number 9 886.0011000000002 0 NDILAIVE I.claudius_F1_254_439_566276_peptide number 1 2160.5146 0 MNPMDLKRGIDKAVSAVVSE I.claudius_F1_254_439_566276_peptide number 2 1031.2271 0 LKNLSKPCE I.claudius_F1_254_439_566276_peptide number 3 447.4834000000001 0 TAKE I.claudius_F1_254_439_566276_peptide number 4 260.2869 0 IE I.claudius_F1_254_439_566276_peptide number 5 2248.4671000000003 0 QVGTISANSDSIVGQLISQAME I.claudius_F1_254_439_566276_peptide number 6 559.6563 0 KVGKE I.claudius_F1_254_439_566276_peptide number 7 616.7043000000001 0 GVITVE I.claudius_F1_254_439_566276_peptide number 8 590.5808000000001 0 DGTGLE I.claudius_F1_254_439_566276_peptide number 9 262.2167 0 DE I.claudius_F1_254_439_566276_peptide number 10 573.6365000000001 0 LDVVE I.claudius_F1_254_439_566276_peptide number 11 2162.4224999999997 0 GMQFDRGYLSPYFINKPE I.claudius_F1_254_439_566276_peptide number 12 519.5461 0 TATVE I.claudius_F1_254_439_566276_peptide number 13 2143.4820999999997 0 LDNPYLLLVDKKISNIRE I.claudius_F1_254_439_566276_peptide number 14 682.8484000000001 0 LLPVLE I.claudius_F1_254_439_566276_peptide number 15 1379.6869 0 GVAKAGKPLLIIAE I.claudius_F1_254_439_566276_peptide number 16 361.3478 0 DVE I.claudius_F1_254_439_566276_peptide number 17 204.1806 0 GE I.claudius_F1_254_439_566276_peptide number 18 4767.659900000001 0 ALATLVVNTMRGIVKVAAVKAPGFGDRRKAMLQDIAILTAGTVISE I.claudius_F1_254_439_566276_peptide number 19 147.1293 0 E I.claudius_F1_254_439_566276_peptide number 20 448.53430000000003 0 IGME I.claudius_F1_254_439_566276_peptide number 21 260.2869 0 LE I.claudius_F1_254_439_566276_peptide number 22 560.6410000000001 0 KATLE I.claudius_F1_254_439_566276_peptide number 23 2584.8334000000004 0 DLGQAKRVVINKDNTTIIDGIGDE I.claudius_F1_254_439_566276_peptide number 24 1738.0008000000003 0 AQIKGRVAQIRQQIE I.claudius_F1_254_439_566276_peptide number 25 147.1293 0 E I.claudius_F1_254_439_566276_peptide number 26 943.9082000000001 0 STSDYDKE I.claudius_F1_254_439_566276_peptide number 27 516.5884000000001 0 KLQE I.claudius_F1_254_439_566276_peptide number 28 1810.1465000000003 0 RVAKLAGGVAVIKVGAATE I.claudius_F1_254_439_566276_peptide number 29 246.2604 0 VE I.claudius_F1_254_439_566276_peptide number 30 406.4977 0 MKE I.claudius_F1_254_439_566276_peptide number 31 1895.0821000000003 0 KKDRVDDALHATRAAVE I.claudius_F1_254_439_566276_peptide number 32 147.1293 0 E I.claudius_F1_254_439_566276_peptide number 33 2394.7259000000004 0 GIVAGGGVALVRAAAKVAASLKGDNE I.claudius_F1_254_439_566276_peptide number 34 147.1293 0 E I.claudius_F1_254_439_566276_peptide number 35 1442.7262 0 QNVGIKLALRAME I.claudius_F1_254_439_566276_peptide number 36 1268.4193000000002 0 APLRQIVTNAGE I.claudius_F1_254_439_566276_peptide number 37 147.1293 0 E I.claudius_F1_254_439_566276_peptide number 38 1131.2370999999998 0 ASVVASAVKNGE I.claudius_F1_254_439_566276_peptide number 39 1029.0174 0 GNFGYNAGTE I.claudius_F1_254_439_566276_peptide number 40 854.9242 0 QYGDMIE I.claudius_F1_254_439_566276_peptide number 41 2922.4198 0 MGILDPTKVTRSALQFAASVAGLMITTE I.claudius_F1_254_439_566276_peptide number 42 2818.338500000001 0 CMVTDLPKDDKADLGAAGMGGMGGMGGMM I.claudius_F1_255_161_570166_peptide number 1 2738.2122000000004 0 MFHLFKYHDVIQDMHFMLQKE I.claudius_F1_255_161_570166_peptide number 2 3601.3340999999996 0 VVKRLCAAPNSKAYGRLTIMAQYFCQVMPVLE I.claudius_F1_255_161_570166_peptide number 3 2583.0364000000004 0 VPPSAFKPAPKVDSAVVRLIPHKE I.claudius_F1_255_161_570166_peptide number 4 4400.0324 0 LPHPVKDLYWLNRVCSQAFNQRRKTLRNALSTLFSPE I.claudius_F1_255_161_570166_peptide number 5 1470.6269 0 NLTALGIDLNARAE I.claudius_F1_255_161_570166_peptide number 6 2870.0898000000007 0 NLAIADYARLANWLADNPPADVNKDE I.claudius_F1_255_161_570166_peptide number 7 575.6092 0 ILDSE I.claudius_F1_255_161_570166_peptide number 8 147.1293 0 E I.claudius_F1_256_276_571716_peptide number 1 1711.8659000000002 0 MATYFVGDLQGCYDE I.claudius_F1_256_276_571716_peptide number 2 727.8889 0 LQLLLE I.claudius_F1_256_276_571716_peptide number 3 2949.2745 0 RVDFNPTQDKLYLVGDLVARGDKSLE I.claudius_F1_256_276_571716_peptide number 4 5547.308500000002 0 CLRFVKSLGNAAQTVLGNHDLHLIATALDIKKVKPRDRVDAIFNAPDFDE I.claudius_F1_256_276_571716_peptide number 5 1905.2089 0 LIHWLRHQPLLVHNE I.claudius_F1_256_276_571716_peptide number 6 2834.230000000001 0 KLNFLMSHAGISPDWDLKTAKSCAAE I.claudius_F1_256_276_571716_peptide number 7 246.2604 0 VE I.claudius_F1_256_276_571716_peptide number 8 1612.7826 0 QILQHGDFHYLIE I.claudius_F1_256_276_571716_peptide number 9 642.6786 0 NMYSE I.claudius_F1_256_276_571716_peptide number 10 5754.504400000001 0 QPDRWSPDLQGLARHRYIINAFTRMRFCYLDHRFDFACKSPLKDAPAE I.claudius_F1_256_276_571716_peptide number 11 6249.1598 0 LTPWFNLDNPLYKQIPIVFGHWASLVDEPTPKGIYALDTGCVWNNRMTMLRWE I.claudius_F1_256_276_571716_peptide number 12 1925.0581999999997 0 DKQFFTQSAVKNYSDF I.claudius_F1_257_70_575712_peptide number 1 8387.764400000004 0 MMNTCIIFRSHTFRCNCFYRANVIFPYKRSILCNHLQNYCQHCRQPLLYQYPLILRRNCPKNCGDNHTT I.claudius_F1_258_70_577048_peptide number 1 1199.2993000000001 0 MRHAQHQYE I.claudius_F1_258_70_577048_peptide number 2 6639.6345 0 QTRLHRLSSHPTINVHKRLILAHLLNLHNGNPLILLSPQNLHLVFSNQNALKSLHQVE I.claudius_F1_258_70_577048_peptide number 3 310.30260000000004 0 YE I.claudius_F1_259_57_579901_peptide number 1 1525.8514 0 MTPIKLSPTIKPAE I.claudius_F1_259_57_579901_peptide number 2 4443.158200000002 0 KSVPKRSALADTSLLPSFAIWRAIIHARNAPTITGVLIDGGK I.claudius_F1_260_52_581219_peptide number 1 6290.442000000002 0 MPLILLKHHRKQYLSHRCRHLHDYLLSKFLQRLPLQDKVNYYLPPLHGVME I.claudius_F1_261_79_581539_peptide number 1 391.48300000000006 0 MLE I.claudius_F1_261_79_581539_peptide number 2 1075.2134 0 SLKNLSTAIE I.claudius_F1_261_79_581539_peptide number 3 6344.3193 0 MTAAGIDDANVTPTFRPRYTLDAVKITVINAPRIIPQTVNSFKFSLYINCSLSLKKE I.claudius_F1_261_79_581539_peptide number 4 902.0502000000001 0 NRATLSKI I.claudius_F1_262_106_582028_peptide number 1 391.48300000000006 0 MIE I.claudius_F1_262_106_582028_peptide number 2 2057.3136 0 SGKVHYNNQRAKVSKIVE I.claudius_F1_262_106_582028_peptide number 3 1315.542 0 VGAMLKLRQGNE I.claudius_F1_262_106_582028_peptide number 4 147.1293 0 E I.claudius_F1_262_106_582028_peptide number 5 275.3016 0 KE I.claudius_F1_262_106_582028_peptide number 6 1666.9196000000002 0 IKIIALSDQRRGAPE I.claudius_F1_262_106_582028_peptide number 7 863.9541 0 AQLLYQE I.claudius_F1_262_106_582028_peptide number 8 248.23319999999998 0 TE I.claudius_F1_262_106_582028_peptide number 9 832.9453000000001 0 SSVKKRE I.claudius_F1_262_106_582028_peptide number 10 147.1293 0 E I.claudius_F1_262_106_582028_peptide number 11 2746.1150000000007 0 IAWARKNNSLSMPHPDRRPNKKE I.claudius_F1_262_106_582028_peptide number 12 1860.1239 0 RRDLLKFKHQDKFE I.claudius_F1_263_331_582977_peptide number 1 1393.6506000000002 0 MKKTFILQQQE I.claudius_F1_263_331_582977_peptide number 2 1653.8727999999999 0 ISFVKNTFTQNLIE I.claudius_F1_263_331_582977_peptide number 3 671.7826 0 QLGIIE I.claudius_F1_263_331_582977_peptide number 4 2156.3732 0 VQGPILSQVGNGMQDNLSGIE I.claudius_F1_263_331_582977_peptide number 5 1759.0781 0 KAVQVNVKCIPNAVFE I.claudius_F1_263_331_582977_peptide number 6 2467.8709000000003 0 VVHSLAKWKRHTLARFNFKE I.claudius_F1_263_331_582977_peptide number 7 262.2167 0 DE I.claudius_F1_263_331_582977_peptide number 8 1512.7747 0 GLFVHMKALRPDE I.claudius_F1_263_331_582977_peptide number 9 2092.134 0 DSLDPTHSVYVDQWDWE I.claudius_F1_263_331_582977_peptide number 10 584.7055 0 KVIPE I.claudius_F1_263_331_582977_peptide number 11 1253.4096000000002 0 GRRNFAYLKE I.claudius_F1_263_331_582977_peptide number 12 1535.7435 0 TVNSIYRAIRLTE I.claudius_F1_263_331_582977_peptide number 13 430.4959 0 LAVE I.claudius_F1_263_331_582977_peptide number 14 2198.5193000000004 0 ARFDIPSILPKQITFVHSE I.claudius_F1_263_331_582977_peptide number 15 1549.7238 0 DLVKRYPDLSSKE I.claudius_F1_263_331_582977_peptide number 16 303.31500000000005 0 RE I.claudius_F1_263_331_582977_peptide number 17 676.7826 0 NAICKE I.claudius_F1_263_331_582977_peptide number 18 3451.7068999999997 0 YGAVFLIGIGGKLSDGKPHDGRAPDYDDWTTE I.claudius_F1_263_331_582977_peptide number 19 234.2066 0 SE I.claudius_F1_263_331_582977_peptide number 20 2451.6874000000003 0 NGYKGLNGDILVWNDQLGKAFE I.claudius_F1_263_331_582977_peptide number 21 1106.2506999999998 0 LSSMGIRVDE I.claudius_F1_263_331_582977_peptide number 22 1358.4971999999998 0 SALRLQVGLTGDE I.claudius_F1_263_331_582977_peptide number 23 4604.4064 0 DHLKMDWHQDLLNGKLPLTIGGGIGQSRLAMLLLRKKHIGE I.claudius_F1_263_331_582977_peptide number 24 1059.1727 0 VQSSVWPKE I.claudius_F1_263_331_582977_peptide number 25 391.48300000000006 0 MLE I.claudius_F1_263_331_582977_peptide number 26 147.1293 0 E I.claudius_F1_263_331_582977_peptide number 27 592.6843 0 FSNIL I.claudius_F1_264_94_586579_peptide number 1 3578.4280000000003 0 MCPLLGKTTFCRNVLFLRLRFYLSMAKLLE I.claudius_F1_264_94_586579_peptide number 2 2858.1273 0 FYDHDQLLQNHPRSPPPPSKVQKE I.claudius_F1_264_94_586579_peptide number 3 4415.202399999999 0 QDLFLGSLLVYLVNLQYLMPLYGASFHALYVLLHAHALP I.claudius_F1_265_60_587524_peptide number 1 462.56090000000006 0 MAIE I.claudius_F1_265_60_587524_peptide number 2 1114.2097999999999 0 APLNDKTARE I.claudius_F1_265_60_587524_peptide number 3 761.7348000000001 0 RDLDDE I.claudius_F1_265_60_587524_peptide number 4 4615.3962 0 WLIVTYQKAHSLQIRPRRVNRPILYKSYRQIYRLRE I.claudius_F1_265_60_587524_peptide number 5 304.29970000000003 0 AQS I.claudius_F1_266_50_588876_peptide number 1 5236.9119 0 MFCAKVFVIPATRASNGADAVFKSTPTAFTQSSTTASSLRASWVWFTSC I.claudius_F1_267_94_589944_peptide number 1 2150.412 0 MRAPSNAALLSATPFSASTKE I.claudius_F1_267_94_589944_peptide number 2 7736.883800000001 0 SAVDSGSFFGSFQSKLANGSRPASMAICPLVRRLGLYGKYKSSNSVLLCVAWILSRNSSVNFPCSSIDFKIV I.claudius_F1_268_159_590530_peptide number 1 2124.3761 0 MAKSNYITRQGWLALDQE I.claudius_F1_268_159_590530_peptide number 2 963.1729 0 LKFLWKE I.claudius_F1_268_159_590530_peptide number 3 147.1293 0 E I.claudius_F1_268_159_590530_peptide number 4 1971.1334000000002 0 RPKVTQAVSDAAALGDRSE I.claudius_F1_268_159_590530_peptide number 5 332.3098 0 NAE I.claudius_F1_268_159_590530_peptide number 6 1353.5718000000002 0 YIYGKRRLRE I.claudius_F1_268_159_590530_peptide number 7 1702.0135 0 IDRRVRFLTKRLE I.claudius_F1_268_159_590530_peptide number 8 1445.6159 0 VLQIVDYNPKQE I.claudius_F1_268_159_590530_peptide number 9 1139.3020000000001 0 GKVFFGAWVE I.claudius_F1_268_159_590530_peptide number 10 260.2869 0 LE I.claudius_F1_268_159_590530_peptide number 11 261.2319 0 NE I.claudius_F1_268_159_590530_peptide number 12 147.1293 0 E I.claudius_F1_268_159_590530_peptide number 13 204.1806 0 GE I.claudius_F1_268_159_590530_peptide number 14 1311.464 0 TKQYRIVGCDE I.claudius_F1_268_159_590530_peptide number 15 2828.1791000000003 0 FAPAKNWISIDSPVARALIGKTLDDE I.claudius_F1_268_159_590530_peptide number 16 501.57720000000006 0 VRVE I.claudius_F1_268_159_590530_peptide number 17 1931.1901 0 TPSGFITLYVNKIWYE I.claudius_F1_268_159_590530_peptide number 18 146.1876 0 K I.claudius_F1_269_242_592722_peptide number 1 583.6761 0 MSSME I.claudius_F1_269_242_592722_peptide number 2 2763.0697000000005 0 GKKVPQVTFRTRQGDKWVDVTTSE I.claudius_F1_269_242_592722_peptide number 3 3341.7454 0 LFDNKTVIVFSLPGAFTPTCSSSHLPRYNE I.claudius_F1_269_242_592722_peptide number 4 3298.8036000000006 0 LAPVFKKYGVDDILVVSVNDTFVMNAWKE I.claudius_F1_269_242_592722_peptide number 5 262.2167 0 DE I.claudius_F1_269_242_592722_peptide number 6 362.37890000000004 0 KSE I.claudius_F1_269_242_592722_peptide number 7 1162.2060999999999 0 NISFIPDGNGE I.claudius_F1_269_242_592722_peptide number 8 395.4071 0 FTE I.claudius_F1_269_242_592722_peptide number 9 921.1364000000001 0 GMGMLVGKE I.claudius_F1_269_242_592722_peptide number 10 2441.8055 0 DLGFGKRSWRYSMLVKNGVVE I.claudius_F1_269_242_592722_peptide number 11 3804.2633 0 KMFIEPNEPGDPFKVSDADTMLKYLAPQHQVQE I.claudius_F1_269_242_592722_peptide number 12 3066.5944999999997 0 SISIFTKPGCPFCAKAKQLLHDKGLSFE I.claudius_F1_269_242_592722_peptide number 13 147.1293 0 E I.claudius_F1_269_242_592722_peptide number 14 3916.398 0 IILGHDATIVSVRAVSGRTTVPQVFIGGKHIGGSDDLE I.claudius_F1_269_242_592722_peptide number 15 527.6127 0 KYFA I.claudius_F1_270_108_594256_peptide number 1 682.8286 0 MYKIE I.claudius_F1_270_108_594256_peptide number 2 3466.8048000000013 0 SAGKGDTIKSTDTVKVHYTGKLPNGKVFDSSVE I.claudius_F1_270_108_594256_peptide number 3 684.7418 0 RGQPVE I.claudius_F1_270_108_594256_peptide number 4 1463.6327 0 FQLDQVIKGWTE I.claudius_F1_270_108_594256_peptide number 5 1925.3181 0 GLQLVKKGGKIQFVIAPE I.claudius_F1_270_108_594256_peptide number 6 537.5628 0 LGYGE I.claudius_F1_270_108_594256_peptide number 7 1815.9735999999998 0 QGAGASIPPNSTLIFDVE I.claudius_F1_270_108_594256_peptide number 8 1000.1039 0 VLDVNPKSE I.claudius_F1_270_108_594256_peptide number 9 146.1876 0 K I.claudius_F1_271_127_594953_peptide number 1 4565.491499999999 0 MKSVTIAIRNKTQRIIGLLCININLDVPVSQFLQCFMLTE I.claudius_F1_271_127_594953_peptide number 2 499.4751 0 HTNE I.claudius_F1_271_127_594953_peptide number 3 1154.1843 0 TSSVNFANSVE I.claudius_F1_271_127_594953_peptide number 4 887.974 0 DLVAQTIE I.claudius_F1_271_127_594953_peptide number 5 489.5631000000001 0 KTIE I.claudius_F1_271_127_594953_peptide number 6 147.1293 0 E I.claudius_F1_271_127_594953_peptide number 7 2488.7543 0 VNADRAVANNTKNRQIVLSLYE I.claudius_F1_271_127_594953_peptide number 8 1645.8938000000003 0 KGIFDIKDAINLVAE I.claudius_F1_271_127_594953_peptide number 9 2431.7907 0 RLDISRHTVYLYIRQIKQE I.claudius_F1_271_127_594953_peptide number 10 275.2585 0 QE I.claudius_F1_272_96_596078_peptide number 1 1709.8700000000001 0 MLYTFSQSDYPKTE I.claudius_F1_272_96_596078_peptide number 2 1265.3210000000001 0 LDDYFSYITE I.claudius_F1_272_96_596078_peptide number 3 6291.491400000002 0 KDAVVLWQDGVLLAIKYPDYFAKCKGNCMILKQDILARNLTALLPQSSKIKLISIE I.claudius_F1_272_96_596078_peptide number 4 147.1293 0 E I.claudius_F1_272_96_596078_peptide number 5 630.7308 0 LVGITE I.claudius_F1_272_96_596078_peptide number 6 947.0857000000001 0 NYLPQLSL I.claudius_F1_273_77_596857_peptide number 1 5818.706400000001 0 MFSPARPSSSNLRNISTPVTVVFAVSLIPTISTSSPVRIIPRSTRPVTTVPRPE I.claudius_F1_273_77_596857_peptide number 2 260.2869 0 IE I.claudius_F1_273_77_596857_peptide number 3 2094.2723 0 NTSSIGRRNGWSIARSGSGM I.claudius_F1_274_51_597686_peptide number 1 4968.746800000002 0 MFPKKCGIKQSYFTPLVYKNYFLRASITAAATLVGASAYFNGSIE I.claudius_F1_274_51_597686_peptide number 2 620.6548 0 YDARP I.claudius_F1_275_88_606000_peptide number 1 3113.5966000000003 0 MSFISSTSLFISTASPTISVSYATLKLME I.claudius_F1_275_88_606000_peptide number 2 3236.8233999999998 0 IPLAICMTCSVMYSLIALFSPRTSNCNSAE I.claudius_F1_275_88_606000_peptide number 3 3112.7077000000004 0 DGMTFRPSPAFSTPTLILVMPLPWRAIP I.claudius_F1_276_66_607113_peptide number 1 6777.9606 0 MLRIKQQVSCLARYVLPFLLGLPSQGLHKQWLHLQLVKLYDQLHQQWLLPYQDLHE I.claudius_F1_276_66_607113_peptide number 2 1067.2659 0 CNRVLQHVV I.claudius_F1_277_412_609240_peptide number 1 1543.7869 0 MSINLNRVQNLIE I.claudius_F1_277_412_609240_peptide number 2 1204.3721 0 KLAFISSVPNE I.claudius_F1_277_412_609240_peptide number 3 950.0898000000001 0 LTRLAFTE I.claudius_F1_277_412_609240_peptide number 4 147.1293 0 E I.claudius_F1_277_412_609240_peptide number 5 262.2167 0 DE I.claudius_F1_277_412_609240_peptide number 6 955.1327000000001 0 KAHNMIIE I.claudius_F1_277_412_609240_peptide number 7 491.60210000000006 0 LCKE I.claudius_F1_277_412_609240_peptide number 8 2451.7787000000003 0 YDLSIRRDSIGNLFIRKAGKE I.claudius_F1_277_412_609240_peptide number 9 3201.539200000001 0 DFLPAVAFGSHIDTVVNAGKFDGPLGSVAGLE I.claudius_F1_277_412_609240_peptide number 10 831.0318 0 ILLQLCE I.claudius_F1_277_412_609240_peptide number 11 1261.3836000000001 0 QNIQTRYPLE I.claudius_F1_277_412_609240_peptide number 12 838.0228 0 LIIFTCE I.claudius_F1_277_412_609240_peptide number 13 147.1293 0 E I.claudius_F1_277_412_609240_peptide number 14 2288.6022 0 SSRFNFATLGSKVMCGIVNQE I.claudius_F1_277_412_609240_peptide number 15 1645.8558000000003 0 KLSSLRDKQGKGLSE I.claudius_F1_277_412_609240_peptide number 16 420.48120000000006 0 AMAE I.claudius_F1_277_412_609240_peptide number 17 1934.1808999999998 0 VGMNFNLVNQAKRDAKE I.claudius_F1_277_412_609240_peptide number 18 819.9662000000001 0 FKCFFE I.claudius_F1_277_412_609240_peptide number 19 510.5838 0 LHIE I.claudius_F1_277_412_609240_peptide number 20 698.7683000000001 0 QGPRLE I.claudius_F1_277_412_609240_peptide number 21 261.2319 0 NE I.claudius_F1_277_412_609240_peptide number 22 4469.091299999999 0 GKTIGVVTGIAAPIRAIVKIKGQADHSGATAMHYRHDALLGGSE I.claudius_F1_277_412_609240_peptide number 23 644.7573 0 LSLAIE I.claudius_F1_277_412_609240_peptide number 24 3212.6581000000006 0 RAAIQAGHSTVATVGNITAKPGVMNVVPGYCE I.claudius_F1_277_412_609240_peptide number 25 2055.2943999999998 0 LLVDIRGTHVQARDSVFE I.claudius_F1_277_412_609240_peptide number 26 501.57370000000003 0 LLQE I.claudius_F1_277_412_609240_peptide number 27 147.1293 0 E I.claudius_F1_277_412_609240_peptide number 28 661.7449 0 ISKVSE I.claudius_F1_277_412_609240_peptide number 29 828.0114000000001 0 KRGLLIE I.claudius_F1_277_412_609240_peptide number 30 1592.8741 0 LQLISKDNPIILPE I.claudius_F1_277_412_609240_peptide number 31 918.0264000000001 0 NMVNQIAE I.claudius_F1_277_412_609240_peptide number 32 1127.1605000000002 0 TAHSLGYSYE I.claudius_F1_277_412_609240_peptide number 33 3785.4203 0 IMPSGAGHDAMHMATLCPTGMIFIPSHLGISHNPLE I.claudius_F1_277_412_609240_peptide number 34 1053.1217 0 FTDWKDIE I.claudius_F1_277_412_609240_peptide number 35 1310.6249000000003 0 AGIKVLQKVILE I.claudius_F1_277_412_609240_peptide number 36 346.3364 0 QAE I.claudius_F1_277_412_609240_peptide number 37 220.2893 0 VC I.claudius_F1_278_58_612022_peptide number 1 391.48300000000006 0 MIE I.claudius_F1_278_58_612022_peptide number 2 1513.7545 0 IPTTGIITPQMVNE I.claudius_F1_278_58_612022_peptide number 3 3089.7621 0 LILPVILAPPKLRTVASQRVKIVHNAIE I.claudius_F1_278_58_612022_peptide number 4 291.25790000000006 0 SGE I.claudius_F1_278_58_612022_peptide number 5 1012.1610000000001 0 RIVPKSSEP I.claudius_F1_279_65_612403_peptide number 1 7033.579500000001 0 MVPISANLVGNIMIPEPIILTMVRMVSCTTPILLLLALIIYTPTSAVKKSDIFNRTFLFVLRE I.claudius_F1_279_65_612403_peptide number 2 131.1729 0 L I.claudius_F1_280_55_612928_peptide number 1 1114.2925 0 MSLCGTNLFE I.claudius_F1_280_55_612928_peptide number 2 2160.4728 0 VVLHFGLHKDHAFLGIIDE I.claudius_F1_280_55_612928_peptide number 3 3032.6061000000004 0 WCNLCNDLHCFYTQLVRHILIKSLV I.claudius_F1_281_65_618037_peptide number 1 721.8862 0 MALQME I.claudius_F1_281_65_618037_peptide number 2 1005.1683 0 LNYRVLVE I.claudius_F1_281_65_618037_peptide number 3 6011.9444 0 SYNQSFQLFLLPIHLKDRLAHQYRQHLVRRANPLVGHYRVLSLIHYLAKS I.claudius_F1_282_150_620122_peptide number 1 975.1258 0 MRQFHKE I.claudius_F1_282_150_620122_peptide number 2 2152.239 0 SGFDYNVVDFSKHHGRGTE I.claudius_F1_282_150_620122_peptide number 3 1165.3808 0 KVFFIGKTPE I.claudius_F1_282_150_620122_peptide number 4 474.5054 0 DLVE I.claudius_F1_282_150_620122_peptide number 5 246.2604 0 VE I.claudius_F1_282_150_620122_peptide number 6 2478.8142 0 TYLRDKFGDVTTIVYSALACLE I.claudius_F1_282_150_620122_peptide number 7 1896.2157000000002 0 VMNKNVSKGDALKHLLE I.claudius_F1_282_150_620122_peptide number 8 390.3923 0 SRE I.claudius_F1_282_150_620122_peptide number 9 310.30260000000004 0 YE I.claudius_F1_282_150_620122_peptide number 10 1626.8061000000002 0 LKDCIAFGDGMNDVE I.claudius_F1_282_150_620122_peptide number 11 2668.2499000000003 0 MLSWAGKGCIMKDADIRLKMACPE I.claudius_F1_282_150_620122_peptide number 12 260.2869 0 LE I.claudius_F1_282_150_620122_peptide number 13 745.8215 0 VIGSNKE I.claudius_F1_282_150_620122_peptide number 14 147.1293 0 E I.claudius_F1_282_150_620122_peptide number 15 1688.8805000000002 0 SVARYLRTQFGLDY I.claudius_F1_283_218_622875_peptide number 1 748.8453000000001 0 MNIKDE I.claudius_F1_283_218_622875_peptide number 2 3481.9282000000007 0 HIDSVCSLLDQLVGNVSFKNLFTGYGLFHKE I.claudius_F1_283_218_622875_peptide number 3 147.1293 0 E I.claudius_F1_283_218_622875_peptide number 4 1998.3505 0 TMFAIWQNKKLYLRGE I.claudius_F1_283_218_622875_peptide number 5 2034.3331000000003 0 GVLAIQLTKLGCEPFTTNE I.claudius_F1_283_218_622875_peptide number 6 4450.299599999999 0 LNKRFVLSQYYALSDQILRSNRLCRKLIILSIKQILE I.claudius_F1_283_218_622875_peptide number 7 516.5884000000001 0 QKLE I.claudius_F1_283_218_622875_peptide number 8 2405.861 0 CTLRKLNRLKDLPNLTIKHE I.claudius_F1_283_218_622875_peptide number 9 1784.1752999999999 0 RALIKVGITNVAMLRE I.claudius_F1_283_218_622875_peptide number 10 388.41610000000003 0 IGAE I.claudius_F1_283_218_622875_peptide number 11 544.5985000000001 0 NALVE I.claudius_F1_283_218_622875_peptide number 12 3560.0633000000003 0 LKKSGSGATLDFYWKLVCALQNKNSQMLSQAE I.claudius_F1_283_218_622875_peptide number 13 275.3016 0 KE I.claudius_F1_283_218_622875_peptide number 14 1013.2350000000001 0 RLLKKLNE I.claudius_F1_283_218_622875_peptide number 15 1977.2271 0 VWRKNGLKGYRKLDDE I.claudius_F1_284_57_629998_peptide number 1 1755.0184000000002 0 MMVLNTSSVVPYDVAE I.claudius_F1_284_57_629998_peptide number 2 4776.752199999999 0 QAVMFFLYFGFIGLIVQYFKSGYHFPLRYLFMLGSLRCCV I.claudius_F1_285_54_632111_peptide number 1 5197.1259 0 MLLDNLSLFLDVSSKFT-KASVIHRLCLQAVIVFALSHFDPHLKAKE I.claudius_F1_285_54_632111_peptide number 2 671.7827000000001 0 VVLNLD I.claudius_F1_286_682_633646_peptide number 1 1223.3191 0 MDQQRFRNE I.claudius_F1_286_682_633646_peptide number 2 1058.1415 0 HYADPLTIE I.claudius_F1_286_682_633646_peptide number 3 1440.5745000000002 0 NSGSAQYMLLLDE I.claudius_F1_286_682_633646_peptide number 4 2555.0291 0 FYRSAVRLAGKPLLWLHLWVE I.claudius_F1_286_682_633646_peptide number 5 261.2319 0 NE I.claudius_F1_286_682_633646_peptide number 6 553.5623 0 KDYE I.claudius_F1_286_682_633646_peptide number 7 275.3016 0 KE I.claudius_F1_286_682_633646_peptide number 8 800.9431000000001 0 VARLITE I.claudius_F1_286_682_633646_peptide number 9 204.1806 0 GE I.claudius_F1_286_682_633646_peptide number 10 2081.1542000000004 0 IDPNDWVDFGGLGQFSANE I.claudius_F1_286_682_633646_peptide number 11 3154.6961 0 YFGASLWHLYKGIDSPYKSVLKILLLE I.claudius_F1_286_682_633646_peptide number 12 596.6301000000001 0 AYSKE I.claudius_F1_286_682_633646_peptide number 13 5106.7664 0 YPNTCLIARTFKRDLLAGNTNPDHHFDPYIAILAKVTQYLTALSE I.claudius_F1_286_682_633646_peptide number 14 2159.5115 0 FKRLDFVHRCFYVKATE I.claudius_F1_286_682_633646_peptide number 15 2133.3481 0 DFARYQANNWRIRYME I.claudius_F1_286_682_633646_peptide number 16 572.6516 0 ILAQE I.claudius_F1_286_682_633646_peptide number 17 734.7556000000001 0 WGWSAE I.claudius_F1_286_682_633646_peptide number 18 2222.6766000000002 0 TVKHLNKRPFWKIKAVKE I.claudius_F1_286_682_633646_peptide number 19 2237.6 0 NHDNIMKFLMLSYRNLVE I.claudius_F1_286_682_633646_peptide number 20 3307.7605 0 FARKHHIHSSVVPQDINILSRKLYTAFE I.claudius_F1_286_682_633646_peptide number 21 147.1293 0 E I.claudius_F1_286_682_633646_peptide number 22 1950.1967 0 LPGKVSLLNTQISHNLSE I.claudius_F1_286_682_633646_peptide number 23 815.913 0 AHLTFVE I.claudius_F1_286_682_633646_peptide number 24 3195.6553 0 VRGNKHFKDGWYLINQPIHHIMFSKE I.claudius_F1_286_682_633646_peptide number 25 515.6037 0 RVIE I.claudius_F1_286_682_633646_peptide number 26 367.35390000000007 0 YGE I.claudius_F1_286_682_633646_peptide number 27 2035.3011000000001 0 SLNKLVSWAYFNHLLTE I.claudius_F1_286_682_633646_peptide number 28 376.4055000000001 0 KTE I.claudius_F1_286_682_633646_peptide number 29 4768.4075 0 LSIFSKNVTLSTLQRFVTNLRQSFPSTIAKQPKNSDLLNQCE I.claudius_F1_286_682_633646_peptide number 30 2118.4297 0 IRSLFIAINLTTDPTSKVE I.claudius_F1_286_682_633646_peptide number 31 147.1293 0 E I.claudius_F1_286_682_633646_peptide number 32 1828.0274 0 VLTGISSRDLFSFGSLE I.claudius_F1_286_682_633646_peptide number 33 2028.1811 0 QSLVGSIDFTYRNVWNE I.claudius_F1_286_682_633646_peptide number 34 915.0473000000001 0 IRTLHFE I.claudius_F1_286_682_633646_peptide number 35 3726.2636999999995 0 GQNAILLALKVLSNKIYRGVNRPDSIQVYCYSE I.claudius_F1_286_682_633646_peptide number 36 5451.277299999999 0 RYRQDLRQLVMGLVNRCVSIQVGDIQQPCQTSRLRVAGKNWQLFFE I.claudius_F1_286_682_633646_peptide number 37 916.9754 0 DRGISLQE I.claudius_F1_286_682_633646_peptide number 38 431.4408000000001 0 IGNE I.claudius_F1_286_682_633646_peptide number 39 550.5832 0 SVCNE I.claudius_F1_286_682_633646_peptide number 40 218.2072 0 AE I.claudius_F1_286_682_633646_peptide number 41 781.7643 0 SAVDFDE I.claudius_F1_286_682_633646_peptide number 42 798.9239000000001 0 VLQTPIE I.claudius_F1_286_682_633646_peptide number 43 319.26800000000003 0 DGE I.claudius_F1_286_682_633646_peptide number 44 490.46500000000003 0 TNQE I.claudius_F1_286_682_633646_peptide number 45 903.9816999999999 0 SRRYPPE I.claudius_F1_286_682_633646_peptide number 46 769.8198000000001 0 MDAFASE I.claudius_F1_286_682_633646_peptide number 47 1034.163 0 GFLQFFFE I.claudius_F1_286_682_633646_peptide number 48 1667.6841 0 DNSDHSFNVYILDE I.claudius_F1_286_682_633646_peptide number 49 598.6061 0 SNHLE I.claudius_F1_286_682_633646_peptide number 50 992.0668000000001 0 IYRHCDGE I.claudius_F1_286_682_633646_peptide number 51 390.389 0 KDE I.claudius_F1_286_682_633646_peptide number 52 530.6184000000001 0 KVRE I.claudius_F1_286_682_633646_peptide number 53 1348.4608 0 INQLYQNAKQE I.claudius_F1_286_682_633646_peptide number 54 4788.362100000001 0 GDKNPYNIVQHNFNYPQFYQLQNGKNGISIVPFKFRQMNK I.claudius_F1_287_209_637786_peptide number 1 650.7868000000001 0 MPFKE I.claudius_F1_287_209_637786_peptide number 2 955.1063 0 TCMPFLDE I.claudius_F1_287_209_637786_peptide number 3 965.0613000000001 0 IHPSAQAIE I.claudius_F1_287_209_637786_peptide number 4 3056.4240999999997 0 SVNTIVNDNGFLRAYNTDYIAIVKLIE I.claudius_F1_287_209_637786_peptide number 5 3373.883300000001 0 KYHLNKNAKVIVHGSGGMAKAVVAAFKNSGFE I.claudius_F1_287_209_637786_peptide number 6 3224.7049000000006 0 KLKIYARNVKTGQYLAALYGYAYINSLE I.claudius_F1_287_209_637786_peptide number 7 2102.369 0 NQQADILVNVTSIGMKGGKE I.claudius_F1_287_209_637786_peptide number 8 147.1293 0 E I.claudius_F1_287_209_637786_peptide number 9 2698.1171000000004 0 MDLAFPKAFIDNASVAFDVVAMPVE I.claudius_F1_287_209_637786_peptide number 10 2888.3239000000003 0 TPFIRYAQARGKQTISGAAVIVLQAVE I.claudius_F1_287_209_637786_peptide number 11 422.43240000000003 0 QFE I.claudius_F1_287_209_637786_peptide number 12 1245.2982000000002 0 LYTHQRPSDE I.claudius_F1_287_209_637786_peptide number 13 444.52240000000006 0 LIAE I.claudius_F1_287_209_637786_peptide number 14 982.1366 0 AAAFARTKF I.claudius_F1_288_278_639103_peptide number 1 6313.6207 0 MGTLVGSPPNAIVASNLNLTFSDWLWYGLPIMIILLPLMIGILYIIFKPKLHLNFE I.claudius_F1_288_278_639103_peptide number 2 523.5363 0 QTFE I.claudius_F1_288_278_639103_peptide number 3 374.3895 0 NIE I.claudius_F1_288_278_639103_peptide number 4 13465.954600000008 0 MNPMRILTFIIFPVIALTWIFSGKINPFISGLLGLQKNIASFDSIVALLAAIVICSTGVASWKQIQSNTDWGVLMLFGGGLTLSAVLKDSGASKILADSIVFMIDGQHFYLIGLLVAAFIIFLTE I.claudius_F1_288_278_639103_peptide number 5 2679.0920000000006 0 FTSNTASAALLVPIFISIAQSLGMPE I.claudius_F1_288_278_639103_peptide number 6 3671.330900000001 0 IGLALIIGIGASCAFMLPVATPPNAIVFGSGQVKQSE I.claudius_F1_288_278_639103_peptide number 7 2975.7837000000004 0 MVKVGFLLNLVCVVVIATMGYMFWLK I.claudius_F1_289_848_648549_peptide number 1 1781.0371 0 MNGLLFYLVKNPQDE I.claudius_F1_289_848_648549_peptide number 2 701.7657 0 DVIVQE I.claudius_F1_289_848_648549_peptide number 3 7457.461000000002 0 RDISPIISFSQAKDRLFSAQIDRSTHFALRYRTLCHQQAQFKSPLRGLRGTRASLIPHQLHIAAE I.claudius_F1_289_848_648549_peptide number 4 1551.7462 0 VGNRVNPRVLLADE I.claudius_F1_289_848_648549_peptide number 5 815.9544000000001 0 VGLGKTIE I.claudius_F1_289_848_648549_peptide number 6 1334.5402000000001 0 AGMILQNQLFAE I.claudius_F1_289_848_648549_peptide number 7 1293.5978 0 KVQRVLIIVPE I.claudius_F1_289_848_648549_peptide number 8 1153.2871000000002 0 TLQHQWLVE I.claudius_F1_289_848_648549_peptide number 9 1809.0985 0 MLRRFNLHFALFDE I.claudius_F1_289_848_648549_peptide number 10 147.1293 0 E I.claudius_F1_289_848_648549_peptide number 11 1856.9627000000003 0 RCNDFDLDAVNPFTTE I.claudius_F1_289_848_648549_peptide number 12 1290.5273000000002 0 SLIICSLNWLE I.claudius_F1_289_848_648549_peptide number 13 851.9071000000001 0 THPNRVE I.claudius_F1_289_848_648549_peptide number 14 1591.8232000000003 0 LVLNAQFDCLIVDE I.claudius_F1_289_848_648549_peptide number 15 978.0617000000001 0 AHHLVWSE I.claudius_F1_289_848_648549_peptide number 16 1180.3044 0 TSPSTAYLLVE I.claudius_F1_289_848_648549_peptide number 17 1835.1922000000002 0 QLARIIPSVLLLTATPE I.claudius_F1_289_848_648549_peptide number 18 573.5966000000001 0 QLGQE I.claudius_F1_289_848_648549_peptide number 19 1453.6445 0 SHFARLRLLDPE I.claudius_F1_289_848_648549_peptide number 20 1479.6339 0 RFFDYQTFVKE I.claudius_F1_289_848_648549_peptide number 21 275.2585 0 QE I.claudius_F1_289_848_648549_peptide number 22 1155.2601 0 HYQPVVNAVE I.claudius_F1_289_848_648549_peptide number 23 1215.3964 0 SLLANKALSAVE I.claudius_F1_289_848_648549_peptide number 24 1181.3386 0 KNHISDLLLE I.claudius_F1_289_848_648549_peptide number 25 1789.8932999999997 0 QDVEPLFKAIASNNDE I.claudius_F1_289_848_648549_peptide number 26 147.1293 0 E I.claudius_F1_289_848_648549_peptide number 27 914.9662 0 QQRARQE I.claudius_F1_289_848_648549_peptide number 28 4447.095499999999 0 LIQALIDRHGTGRMLFRNTRQGVKGFPHRVYHQITLSE I.claudius_F1_289_848_648549_peptide number 29 147.1293 0 E I.claudius_F1_289_848_648549_peptide number 30 2169.4381 0 NDKIDWLIDFLKLHRNE I.claudius_F1_289_848_648549_peptide number 31 1749.0798000000002 0 KIFVICQTAATAIQLE I.claudius_F1_289_848_648549_peptide number 32 657.7594 0 QILRE I.claudius_F1_289_848_648549_peptide number 33 303.31500000000005 0 RE I.claudius_F1_289_848_648549_peptide number 34 1013.1506000000002 0 AIRAAVFHE I.claudius_F1_289_848_648549_peptide number 35 719.8902 0 KMSIIE I.claudius_F1_289_848_648549_peptide number 36 1397.4919 0 RDRAAAYFADLE I.claudius_F1_289_848_648549_peptide number 37 1361.4547000000002 0 NGAQVLLSSSIGSE I.claudius_F1_289_848_648549_peptide number 38 2604.909 0 GRNFQFAANLVLFDLPTNPDLLE I.claudius_F1_289_848_648549_peptide number 39 4249.7934 0 QCIGRLDRIGQKRDVQVYVPCAKDSPQSRLARWYNE I.claudius_F1_289_848_648549_peptide number 40 649.6926000000001 0 GLNAFE I.claudius_F1_289_848_648549_peptide number 41 1776.0191 0 QTCPMGMALFSQFADE I.claudius_F1_289_848_648549_peptide number 42 260.2869 0 LE I.claudius_F1_289_848_648549_peptide number 43 1191.2923 0 KVRSNSTALSE I.claudius_F1_289_848_648549_peptide number 44 261.2319 0 NE I.claudius_F1_289_848_648549_peptide number 45 1478.6922 0 FSGLLKQTKTARE I.claudius_F1_289_848_648549_peptide number 46 629.7891000000001 0 KLKIE I.claudius_F1_289_848_648549_peptide number 47 260.2869 0 LE I.claudius_F1_289_848_648549_peptide number 48 986.1269000000001 0 KGRDRLLE I.claudius_F1_289_848_648549_peptide number 49 712.7087 0 LNSHGGE I.claudius_F1_289_848_648549_peptide number 50 1272.3184999999999 0 QAQALADQIADE I.claudius_F1_289_848_648549_peptide number 51 560.5118 0 DNSPE I.claudius_F1_289_848_648549_peptide number 52 1691.0188000000003 0 LVNFALKLFDIIGVE I.claudius_F1_289_848_648549_peptide number 53 275.2585 0 QE I.claudius_F1_289_848_648549_peptide number 54 2571.9390000000008 0 DLGANSIVISPTGTMLVPDFPGLKE I.claudius_F1_289_848_648549_peptide number 55 147.1293 0 E I.claudius_F1_289_848_648549_peptide number 56 1023.0976 0 GVTVTFDRE I.claudius_F1_289_848_648549_peptide number 57 671.7860000000001 0 LALARE I.claudius_F1_289_848_648549_peptide number 58 147.1293 0 E I.claudius_F1_289_848_648549_peptide number 59 278.32540000000006 0 ME I.claudius_F1_289_848_648549_peptide number 60 4518.304100000002 0 FLTWDHPMIRQGIDLVASGDIGKAAMALLVNKQLPAGTLLIE I.claudius_F1_289_848_648549_peptide number 61 734.8800000000001 0 LIYVVE I.claudius_F1_289_848_648549_peptide number 62 3430.9094000000005 0 SQSPKGLQLNRFLPPTPIRLLLDNKGNNIGE I.claudius_F1_289_848_648549_peptide number 63 592.6414000000001 0 QVAFE I.claudius_F1_289_848_648549_peptide number 64 2952.498600000001 0 TLHSKLKPLGKNITNQMVKMARSNIE I.claudius_F1_289_848_648549_peptide number 65 2183.5676 0 SLIMRGDQLVKSLAEPIIAE I.claudius_F1_289_848_648549_peptide number 66 1302.3478 0 AKNQADQQLSAE I.claudius_F1_289_848_648549_peptide number 67 2123.4195 0 INRLQALRAVNKNIRQSE I.claudius_F1_289_848_648549_peptide number 68 601.6895000000001 0 IDILE I.claudius_F1_289_848_648549_peptide number 69 1104.1288 0 QQRTQSLDE I.claudius_F1_289_848_648549_peptide number 70 2258.6424000000006 0 LSKANWRLDCLRVIVTNKE I.claudius_F1_290_74_656544_peptide number 1 945.1776 0 MLLQAIKE I.claudius_F1_290_74_656544_peptide number 2 1773.0567000000003 0 LKIDPTQSIMVGDKVE I.claudius_F1_290_74_656544_peptide number 3 2582.0715000000005 0 DLKAGIGAKVKMNVLVRTGKPVTGE I.claudius_F1_290_74_656544_peptide number 4 204.1806 0 GE I.claudius_F1_290_74_656544_peptide number 5 2526.0262000000002 0 GIADYVLDSIVDLPRILKRLKK I.claudius_F1_291_78_658775_peptide number 1 5116.879000000001 0 MSPSSRGLGHRPFTAVTGVRIPVGTPIKDNFIRLSYCSLKNWKQAE I.claudius_F1_291_78_658775_peptide number 2 936.0268000000001 0 NKRFSRE I.claudius_F1_291_78_658775_peptide number 3 1275.412 0 SLSRQNSKVKE I.claudius_F1_291_78_658775_peptide number 4 404.4189 0 RTE I.claudius_F1_291_78_658775_peptide number 5 275.3016 0 KE I.claudius_F1_291_78_658775_peptide number 6 899.1292000000001 0 TLKTKPVL I.claudius_F1_292_319_663210_peptide number 1 6055.919400000002 0 MKSLNIIFAGTPDFAAQHLQAILNSQHNVIAVYTQPDKPAGRGKKLQASPVKQLAE I.claudius_F1_292_319_663210_peptide number 2 1814.0504999999998 0 QNNIPVYQPKSLRKE I.claudius_F1_292_319_663210_peptide number 3 147.1293 0 E I.claudius_F1_292_319_663210_peptide number 4 433.41370000000006 0 AQSE I.claudius_F1_292_319_663210_peptide number 5 7210.474500000002 0 LKALNADVMVVVAYGLILPKAVLDAPRLGCLNVHGSILPRWRGAAPIQRSIWAGDVQTGVTIMQMDE I.claudius_F1_292_319_663210_peptide number 6 2120.4024999999997 0 GLDTGDMLHKVYCDILPTE I.claudius_F1_292_319_663210_peptide number 7 1226.333 0 TSTSLYNKLAE I.claudius_F1_292_319_663210_peptide number 8 1482.6741 0 LAPSALIDVLDNLE I.claudius_F1_292_319_663210_peptide number 9 777.8649 0 NGKFIAE I.claudius_F1_292_319_663210_peptide number 10 1226.2071 0 KQDGSQSNYAE I.claudius_F1_292_319_663210_peptide number 11 603.7088 0 KLSKE I.claudius_F1_292_319_663210_peptide number 12 147.1293 0 E I.claudius_F1_292_319_663210_peptide number 13 1490.6795000000002 0 AQLNWSLSAMQLE I.claudius_F1_292_319_663210_peptide number 14 2082.3194999999996 0 RNIRAFNPWPIAYFSTE I.claudius_F1_292_319_663210_peptide number 15 7206.114900000004 0 DKDGNAHTLKVYQAKVLPHQDKPAGTILSADKNGIQIATVDGVLNLLQLQSAGKKPMSAQDLLNGRAE I.claudius_F1_292_319_663210_peptide number 16 1034.2508 0 WFTIGKVLA I.claudius_F1_293_54_666749_peptide number 1 2634.1920000000005 0 MGIIIGALLRGNDVIIARRQVIIE I.claudius_F1_293_54_666749_peptide number 2 147.1293 0 E I.claudius_F1_293_54_666749_peptide number 3 1827.0427 0 GDHIVIYLSDKKNVPE I.claudius_F1_293_54_666749_peptide number 4 260.2869 0 IE I.claudius_F1_293_54_666749_peptide number 5 1197.4241000000002 0 KLFQPSAFFI I.claudius_F1_294_73_667151_peptide number 1 5669.8521 0 MKFVLAQAQGDVPAVTLNYGLFIQNVIDFIIIAFAIFMMIKVINKVRKPE I.claudius_F1_294_73_667151_peptide number 2 147.1293 0 E I.claudius_F1_294_73_667151_peptide number 3 872.0211000000002 0 KKTAPKAE I.claudius_F1_294_73_667151_peptide number 4 575.6523000000001 0 TLLTE I.claudius_F1_294_73_667151_peptide number 5 999.2084 0 IRDLLKNK I.claudius_F1_295_154_668544_peptide number 1 562.6834 0 MRKE I.claudius_F1_295_154_668544_peptide number 2 1899.1682999999998 0 SAVFLGADFTAKMADLIE I.claudius_F1_295_154_668544_peptide number 3 260.2869 0 LE I.claudius_F1_295_154_668544_peptide number 4 1752.9595000000002 0 DVKKVDVIAVSQPEPE I.claudius_F1_295_154_668544_peptide number 5 5193.9317 0 DAHNSVFMQKLKAFFAPMTQVAVAAGVCLVAVLGVQSFNNKNDASNLPE I.claudius_F1_295_154_668544_peptide number 6 1670.8603 0 TPVLQTLPFNNAVQE I.claudius_F1_295_154_668544_peptide number 7 1867.9606 0 VSYNAPSKDTLTSDQLE I.claudius_F1_295_154_668544_peptide number 8 1693.9682 0 KKSRRIGAMLQNYE I.claudius_F1_295_154_668544_peptide number 9 2085.3055000000004 0 LQRRMHSDALDVSSSQVR I.claudius_F1_296_297_672057_peptide number 1 2072.3631 0 MDGAILVVAATDGPMPQTRE I.claudius_F1_296_297_672057_peptide number 2 2987.4945999999995 0 HILLGRQVGVPYIIVFLNKCDMVDDE I.claudius_F1_296_297_672057_peptide number 3 147.1293 0 E I.claudius_F1_296_297_672057_peptide number 4 373.44450000000006 0 LLE I.claudius_F1_296_297_672057_peptide number 5 359.418 0 LVE I.claudius_F1_296_297_672057_peptide number 6 278.32540000000006 0 ME I.claudius_F1_296_297_672057_peptide number 7 402.4461 0 VRE I.claudius_F1_296_297_672057_peptide number 8 2947.2121 0 LLSQYDFPGDDTPIVRGSALQALNGVAE I.claudius_F1_296_297_672057_peptide number 9 333.3392 0 WE I.claudius_F1_296_297_672057_peptide number 10 147.1293 0 E I.claudius_F1_296_297_672057_peptide number 11 501.6168 0 KILE I.claudius_F1_296_297_672057_peptide number 12 1511.6309 0 LANHLDTYIPEPE I.claudius_F1_296_297_672057_peptide number 13 1411.6442 0 RAIDQPFLLPIE I.claudius_F1_296_297_672057_peptide number 14 1778.9603000000002 0 DVFSISGRGTVVTGRVE I.claudius_F1_296_297_672057_peptide number 15 1016.1098 0 RGIIRTGDE I.claudius_F1_296_297_672057_peptide number 16 246.2604 0 VE I.claudius_F1_296_297_672057_peptide number 17 1631.8659000000005 0 IVGIKDTAKTTVTGVE I.claudius_F1_296_297_672057_peptide number 18 1051.2599 0 MFRKLLDE I.claudius_F1_296_297_672057_peptide number 19 488.4955 0 GRAGE I.claudius_F1_296_297_672057_peptide number 20 1327.5328 0 NIGALLRGTKRE I.claudius_F1_296_297_672057_peptide number 21 147.1293 0 E I.claudius_F1_296_297_672057_peptide number 22 260.2869 0 IE I.claudius_F1_296_297_672057_peptide number 23 1953.1594000000002 0 RGQVLAKPGSITPHTDFE I.claudius_F1_296_297_672057_peptide number 24 234.2066 0 SE I.claudius_F1_296_297_672057_peptide number 25 952.0594 0 VYVLSKDE I.claudius_F1_296_297_672057_peptide number 26 3179.5006000000003 0 GGRHTPFFKGYRPQFYFRTTDVTGTIE I.claudius_F1_296_297_672057_peptide number 27 357.4021 0 LPE I.claudius_F1_296_297_672057_peptide number 28 303.31170000000003 0 GVE I.claudius_F1_296_297_672057_peptide number 29 3385.0550000000003 0 MVMPGDNIKMTVSLIHPIAMDQGLRFAIRE I.claudius_F1_296_297_672057_peptide number 30 1425.719 0 GGRTVGAGVVAKIIK I.claudius_F1_297_202_673873_peptide number 1 2085.4679 0 MQSAVKIPVTVKTRIGIDE I.claudius_F1_297_202_673873_peptide number 2 625.6249 0 LDSYE I.claudius_F1_297_202_673873_peptide number 3 886.0226 0 FLCDFIE I.claudius_F1_297_202_673873_peptide number 4 976.1088999999998 0 KVQGKGCQE I.claudius_F1_297_202_673873_peptide number 5 1953.29 0 FIIHARKAWLSGLSPKE I.claudius_F1_297_202_673873_peptide number 6 417.4176 0 NRE I.claudius_F1_297_202_673873_peptide number 7 3595.195100000001 0 IPPLDYIRVYQLKRDFPHLTIAINGGIKTIE I.claudius_F1_297_202_673873_peptide number 8 147.1293 0 E I.claudius_F1_297_202_673873_peptide number 9 1890.1914000000006 0 MKQHLQYVDGVMVGRE I.claudius_F1_297_202_673873_peptide number 10 2923.192200000001 0 AYQNPSLLGQIDQALFDPNAPIVTAHE I.claudius_F1_297_202_673873_peptide number 11 317.3383 0 AVE I.claudius_F1_297_202_673873_peptide number 12 852.0064000000001 0 SMLPYIE I.claudius_F1_297_202_673873_peptide number 13 4158.7121 0 QQLSQGIHLNHIVRHILGAFQNCKGARQWRRYLSE I.claudius_F1_297_202_673873_peptide number 14 1034.1233 0 NAFKQGAGIE I.claudius_F1_297_202_673873_peptide number 15 345.39150000000006 0 VVE I.claudius_F1_297_202_673873_peptide number 16 765.8510000000001 0 TALSFVE I.claudius_F1_297_202_673873_peptide number 17 105.09259999999999 0 S I.claudius_F1_298_52_676797_peptide number 1 1143.4034 0 MIPKRRLTE I.claudius_F1_298_52_676797_peptide number 2 4891.8330000000005 0 IFITKLNIFSFGLIVNNTLTVFFIVSCTIWSKSVRQIYTLCF I.claudius_F1_299_206_679683_peptide number 1 2953.4386 0 MKNYHDIVLALAGVCQSAKLVHQLATE I.claudius_F1_299_206_679683_peptide number 2 663.6349 0 SRADSE I.claudius_F1_299_206_679683_peptide number 3 2092.3939 0 TFLTALNSLFITQPQRIE I.claudius_F1_299_206_679683_peptide number 4 622.6243000000001 0 DVFGGE I.claudius_F1_299_206_679683_peptide number 5 1064.2818 0 VRHLKLGLE I.claudius_F1_299_206_679683_peptide number 6 2911.2707 0 TLIHQLNAQGDQNLTRYWLSLLALE I.claudius_F1_299_206_679683_peptide number 7 2443.7584000000006 0 GKLSKNSDAKQTLGNRISRLKE I.claudius_F1_299_206_679683_peptide number 8 275.2585 0 QE I.claudius_F1_299_206_679683_peptide number 9 990.0278000000001 0 IHYARDSE I.claudius_F1_299_206_679683_peptide number 10 3718.3442999999997 0 TMLSIMANIYSDIISPLGKKIHILGSPDYLRQE I.claudius_F1_299_206_679683_peptide number 11 5679.8169000000025 0 LVQNKIRAVLLAGIRSAVLWKQMGGTKWQILFFRRKLLATAKQIYSSIY I.claudius_F1_300_160_681214_peptide number 1 1326.5200000000002 0 MPHKVNPIDFE I.claudius_F1_300_160_681214_peptide number 2 348.30920000000003 0 NSE I.claudius_F1_300_160_681214_peptide number 3 6171.117600000002 0 GNLGLANAVMTHLGQKLPISRWQRDLTDSTVLRNLGVGLGYCLIAYASTRKGISKLE I.claudius_F1_300_160_681214_peptide number 4 949.0619 0 VNQPHLLE I.claudius_F1_300_160_681214_peptide number 5 147.1293 0 E I.claudius_F1_300_160_681214_peptide number 6 802.8312000000001 0 LNQNWE I.claudius_F1_300_160_681214_peptide number 7 1875.1966000000002 0 VLAEPIQTVMRRYGIE I.claudius_F1_300_160_681214_peptide number 8 535.5901000000001 0 KPYE I.claudius_F1_300_160_681214_peptide number 9 516.6315000000001 0 KLKE I.claudius_F1_300_160_681214_peptide number 10 1059.2208 0 LTRGKRVTE I.claudius_F1_300_160_681214_peptide number 11 633.7182 0 QAMRE I.claudius_F1_300_160_681214_peptide number 12 1217.3675 0 FIDKLDIPQE I.claudius_F1_300_160_681214_peptide number 13 147.1293 0 E I.claudius_F1_300_160_681214_peptide number 14 1972.3316000000002 0 KLRLQKLTPATYIGAAVE I.claudius_F1_300_160_681214_peptide number 15 359.418 0 LVE I.claudius_F1_300_160_681214_peptide number 16 346.4225 0 KLS I.claudius_F1_301_124_682511_peptide number 1 693.7668000000001 0 MSLTNE I.claudius_F1_301_124_682511_peptide number 2 501.57370000000003 0 QIIE I.claudius_F1_301_124_682511_peptide number 3 919.0312 0 AIASKTVTE I.claudius_F1_301_124_682511_peptide number 4 359.418 0 IVE I.claudius_F1_301_124_682511_peptide number 5 646.7964000000001 0 LIAAME I.claudius_F1_301_124_682511_peptide number 6 147.1293 0 E I.claudius_F1_301_124_682511_peptide number 7 1900.0968000000003 0 KFGVSAAAAVAAAPAAGGAAAAE I.claudius_F1_301_124_682511_peptide number 8 147.1293 0 E I.claudius_F1_301_124_682511_peptide number 9 376.4055000000001 0 KTE I.claudius_F1_301_124_682511_peptide number 10 2912.4299000000005 0 FDVVLKSAGANKVAVIKAVRGATGLGLKE I.claudius_F1_301_124_682511_peptide number 11 673.7556000000001 0 AKDLVE I.claudius_F1_301_124_682511_peptide number 12 828.9101 0 SAPANLKE I.claudius_F1_301_124_682511_peptide number 13 518.5613000000001 0 GVSKE I.claudius_F1_301_124_682511_peptide number 14 147.1293 0 E I.claudius_F1_301_124_682511_peptide number 15 218.2072 0 AE I.claudius_F1_301_124_682511_peptide number 16 587.7094000000001 0 ALKKE I.claudius_F1_301_124_682511_peptide number 17 260.2869 0 LE I.claudius_F1_301_124_682511_peptide number 18 147.1293 0 E I.claudius_F1_301_124_682511_peptide number 19 346.3364 0 AGAE I.claudius_F1_301_124_682511_peptide number 20 246.2604 0 VE I.claudius_F1_301_124_682511_peptide number 21 245.3187 0 VK I.claudius_F1_302_285_683558_peptide number 1 2479.7259000000004 0 MVSDGASFKKWLARVGNNNAQGE I.claudius_F1_302_285_683558_peptide number 2 3001.3441000000007 0 YYLTDLIALANQDNCQVVAVQATDVME I.claudius_F1_302_285_683558_peptide number 3 246.2604 0 VE I.claudius_F1_302_285_683558_peptide number 4 1269.4072 0 GANNRLQLAALE I.claudius_F1_302_285_683558_peptide number 5 1737.9958 0 RYFQNKQASKLLLE I.claudius_F1_302_285_683558_peptide number 6 1953.2223000000004 0 GVMIYDPARFDLRGTLE I.claudius_F1_302_285_683558_peptide number 7 683.7107000000001 0 HGKDVE I.claudius_F1_302_285_683558_peptide number 8 914.0543 0 IDVNVIIE I.claudius_F1_302_285_683558_peptide number 9 2797.2348000000006 0 GNVKLGDRVKIGTGCVLKNVVIGNDVE I.claudius_F1_302_285_683558_peptide number 10 948.1137000000001 0 IKPYSVLE I.claudius_F1_302_285_683558_peptide number 11 618.634 0 DSIVGE I.claudius_F1_302_285_683558_peptide number 12 1569.8061000000002 0 KAAIGPFSRLRPGAE I.claudius_F1_302_285_683558_peptide number 13 402.44270000000006 0 LAAE I.claudius_F1_302_285_683558_peptide number 14 901.9625000000001 0 THVGNFVE I.claudius_F1_302_285_683558_peptide number 15 2347.6232 0 IKKSTVGKGSKVNHLTYVGDSE I.claudius_F1_302_285_683558_peptide number 16 6200.874000000001 0 IGSNCNIGAGVITCNYDGANKFKTIIGDDVFVGSDTQLVAPVKVANGATIGAGTTITRDVGE I.claudius_F1_302_285_683558_peptide number 17 261.2319 0 NE I.claudius_F1_302_285_683558_peptide number 18 2556.067000000001 0 LVITRVAQRHIQGWQRPIKKK I.claudius_F1_303_53_690753_peptide number 1 6156.429100000002 0 MKQGLLIHSKLLVLINPFVKVIHAYFLRQHLKPLDKLPQKSIPPNLFQIDRR I.claudius_F1_304_50_694316_peptide number 1 5664.5538000000015 0 MIASIQNRIIFIFGFTAKTMGDQLGDNPLCFVFFIFCFDDKQFFPFTNG I.claudius_F1_305_53_696591_peptide number 1 2888.395 0 MISSSPLCVLAAIHIGRSCFQRVRNE I.claudius_F1_305_53_696591_peptide number 2 2977.4564999999993 0 SILRNSSSFVLRSYLILPVIFNFSFG I.claudius_F1_306_255_697402_peptide number 1 1446.7746000000002 0 MPTISVAMIIKNE I.claudius_F1_306_255_697402_peptide number 2 1935.0729000000001 0 AQDLANCLDTVKDWVDE I.claudius_F1_306_255_697402_peptide number 3 1505.6231 0 IIILDSGSTDNTKE I.claudius_F1_306_255_697402_peptide number 4 1261.4216999999999 0 IALSYGAKFYE I.claudius_F1_306_255_697402_peptide number 5 3561.7776999999996 0 NSDWQGFGKQRQLAQQYVTSDYVLWLDADE I.claudius_F1_306_255_697402_peptide number 6 2166.4809 0 RVTPKLQQAILSAVKNDRE I.claudius_F1_306_255_697402_peptide number 7 624.6402 0 NTVYE I.claudius_F1_306_255_697402_peptide number 8 699.7962000000001 0 IPRVSE I.claudius_F1_306_255_697402_peptide number 9 606.6713000000001 0 VFGRE I.claudius_F1_306_255_697402_peptide number 10 3615.9195999999993 0 IRHSGWYPDYVVRLYRTNYAQYNDSLVHE I.claudius_F1_306_255_697402_peptide number 11 374.43270000000007 0 KVE I.claudius_F1_306_255_697402_peptide number 12 847.9549000000002 0 FPAGTKVE I.claudius_F1_306_255_697402_peptide number 13 774.8594 0 KLTGDLE I.claudius_F1_306_255_697402_peptide number 14 9147.548 0 HFTYKSIHHYLVKSAGYAKAWADQRQAKGKKATLWQGISHALGCFVKMYLLKAGFLDGKQGFLLAVLSAHSTFVKYADLWE I.claudius_F1_306_255_697402_peptide number 15 819.8685 0 RDQHKH I.claudius_F1_307_53_700876_peptide number 1 6168.173400000001 0 MVQFVGVTLLHGVFVPCDFEPNFHYRPLFPKLYFQTYCFVHSAIFDSLLNRL I.claudius_F1_308_58_701795_peptide number 1 3983.793200000001 0 MGNLLLLLTIHRCLLSQFSGSLHFKGRIIARVFVE I.claudius_F1_308_58_701795_peptide number 2 880.0595000000001 0 LLIFDME I.claudius_F1_308_58_701795_peptide number 3 1887.212 0 DFCHNWIKKITIVRN I.claudius_F1_309_71_702832_peptide number 1 2188.6337 0 MRAIIGCFTPLKVSSCFWE I.claudius_F1_309_71_702832_peptide number 2 890.0179 0 IPSCWRE I.claudius_F1_309_71_702832_peptide number 3 4977.8857 0 VINSLIKATRKLLSRISSSLKICCSNSFQFEPNGLILFIFQSLF I.claudius_F1_310_111_706273_peptide number 1 7074.323899999998 0 MAKPLCPKRPASTTVTPVSYLTMSLMLFACSLSSVLAVFTVSAIFGGVFVSLFSVEPDTFICSSCSE I.claudius_F1_310_111_706273_peptide number 2 3753.5203 0 TLLFWLVGWLVGWLVGWLVGWLVGWLVGWLVE I.claudius_F1_310_111_706273_peptide number 3 1255.4684 0 LHKQHLPLAQA I.claudius_F1_311_55_706951_peptide number 1 6040.158500000002 0 MMIDKRLINTVADSKKWIGITVLWNWVALVVVGWASAH-QTVVRYFGGLKPTLR I.claudius_F1_312_411_707677_peptide number 1 6082.135500000003 0 MSIIAVNKIAKKLLAKYWSIYVGLGSSFLDNLQGLITLKIYQDDAYKAKAMDKE I.claudius_F1_312_411_707677_peptide number 2 218.2072 0 AE I.claudius_F1_312_411_707677_peptide number 3 6306.5457000000015 0 HFRKITMKVLTMQLNSVSLMDLLAYGGAAIGILTALLQFQNAQLSVLGVILFILLSSE I.claudius_F1_312_411_707677_peptide number 4 3796.4364 0 FFIPLRLLGSFFHVAMNGKAASDKIFTLLDTPVE I.claudius_F1_312_411_707677_peptide number 5 1024.0392 0 TQQSAVDFE I.claudius_F1_312_411_707677_peptide number 6 900.9761000000001 0 AKNNVQVE I.claudius_F1_312_411_707677_peptide number 7 1238.3453000000002 0 IKDLHFSYSE I.claudius_F1_312_411_707677_peptide number 8 147.1293 0 E I.claudius_F1_312_411_707677_peptide number 9 4547.300700000002 0 KPAITGLNLSILPNQLSVFVGKSGCGKSTLVSLLMGFNKAQQGE I.claudius_F1_312_411_707677_peptide number 10 4133.6202 0 ILFNGQNALNIDRTSFYQKVSLVSHSSYVFKGTLRE I.claudius_F1_312_411_707677_peptide number 11 1339.4924 0 NMTMAKIDATDE I.claudius_F1_312_411_707677_peptide number 12 838.9678000000001 0 QIYACLE I.claudius_F1_312_411_707677_peptide number 13 4730.329300000001 0 QVNLAQFVRDNGGLDMQLLSRGANLSGGQIQRLALARALLHNAE I.claudius_F1_312_411_707677_peptide number 14 798.8791000000001 0 LYIFDE I.claudius_F1_312_411_707677_peptide number 15 847.8671000000002 0 ATSNIDVE I.claudius_F1_312_411_707677_peptide number 16 234.2066 0 SE I.claudius_F1_312_411_707677_peptide number 17 147.1293 0 E I.claudius_F1_312_411_707677_peptide number 18 4695.5089 0 IILQFIQQFKQQKTIVMISHRLANAVNADCINVLDQGKLIE I.claudius_F1_312_411_707677_peptide number 19 698.7253000000001 0 QGTHKE I.claudius_F1_312_411_707677_peptide number 20 391.48300000000006 0 LME I.claudius_F1_312_411_707677_peptide number 21 765.8112000000001 0 KQGAYAE I.claudius_F1_312_411_707677_peptide number 22 1166.3041999999998 0 MFQQQKDLE I.claudius_F1_312_411_707677_peptide number 23 544.6018 0 QIRE I.claudius_F1_312_411_707677_peptide number 24 373.4048 0 VANA I.claudius_F1_313_139_710144_peptide number 1 1621.8077999999998 0 MAYITQQTYIFNE I.claudius_F1_313_139_710144_peptide number 2 361.3908 0 TIE I.claudius_F1_313_139_710144_peptide number 3 147.1293 0 E I.claudius_F1_313_139_710144_peptide number 4 1427.6089000000002 0 NIRLARRDATLE I.claudius_F1_313_139_710144_peptide number 5 147.1293 0 E I.claudius_F1_313_139_710144_peptide number 6 391.48300000000006 0 IME I.claudius_F1_313_139_710144_peptide number 7 2678.0676000000003 0 AAKKASIHDFILSLPQGYQTKMTE I.claudius_F1_313_139_710144_peptide number 8 860.8657000000001 0 LGGNLSDGE I.claudius_F1_313_139_710144_peptide number 9 3459.9043 0 KQRIGIARAFLHNAPIILLDEPTSNLDSLNE I.claudius_F1_313_139_710144_peptide number 10 1429.7672000000002 0 AMILKSLLNVKAE I.claudius_F1_313_139_710144_peptide number 11 2568.0645 0 KLIILVSHRQSTMAICDQVIGIE I.claudius_F1_313_139_710144_peptide number 12 563.6283000000001 0 NGRMS I.claudius_F1_314_71_711112_peptide number 1 8443.301500000003 0 MIFCVLQNKLSNLFITYILLIICTYFSILVSNIHCTIKLFLVHWFLLFITIKTRYNKSKFFMILFASKRN I.claudius_F1_315_147_713966_peptide number 1 1488.7283000000002 0 MHICILSGSTLGGAE I.claudius_F1_315_147_713966_peptide number 2 480.51160000000004 0 YVAE I.claudius_F1_315_147_713966_peptide number 3 838.9049 0 HLNDVLE I.claudius_F1_315_147_713966_peptide number 4 1934.0665 0 TQGFSTALFHGPNLSDIE I.claudius_F1_315_147_713966_peptide number 5 261.2319 0 NE I.claudius_F1_315_147_713966_peptide number 6 1497.6938000000005 0 KIWLVVTSTHGAGE I.claudius_F1_315_147_713966_peptide number 7 1300.4560999999999 0 LPDNLKPLFDE I.claudius_F1_315_147_713966_peptide number 8 3719.0065 0 LANSQKDFSDVRFAVVGLGSSDYDTFCYAADKVE I.claudius_F1_315_147_713966_peptide number 9 1418.6585 0 QTLQAKSAVKICE I.claudius_F1_315_147_713966_peptide number 10 1501.6345 0 TLKIDVLNVDDQE I.claudius_F1_315_147_713966_peptide number 11 468.4578 0 SYAE I.claudius_F1_315_147_713966_peptide number 12 147.1293 0 E I.claudius_F1_315_147_713966_peptide number 13 891.0208 0 WLPSFIE I.claudius_F1_315_147_713966_peptide number 14 316.39650000000006 0 GLK I.claudius_F1_316_51_715734_peptide number 1 1354.6161000000002 0 MLHLLYSHLVE I.claudius_F1_316_51_715734_peptide number 2 4395.2955 0 FLWKAHLLIYLLGKTAVSLLAKAGYDLLFLQYIADCPLV I.claudius_F1_317_485_717268_peptide number 1 365.4027 0 MSE I.claudius_F1_317_485_717268_peptide number 2 3124.5674000000004 0 ITTLQPSLLWKWFDQICAIPHPSHYE I.claudius_F1_317_485_717268_peptide number 3 1520.684 0 DTLANFIVNWAKE I.claudius_F1_317_485_717268_peptide number 4 805.9198000000001 0 KHFFVE I.claudius_F1_317_485_717268_peptide number 5 418.40240000000006 0 RDE I.claudius_F1_317_485_717268_peptide number 6 1612.9353 0 VGNVLIRKPATKGME I.claudius_F1_317_485_717268_peptide number 7 2113.3536000000004 0 NHTPVVLQAHLDMVPQANE I.claudius_F1_317_485_717268_peptide number 8 2043.1494000000002 0 GNPHDFTKDPIQPYIDGE I.claudius_F1_317_485_717268_peptide number 9 2529.8426000000004 0 WVKARGTTLGSDNGIGLASTLAVLE I.claudius_F1_317_485_717268_peptide number 10 1092.1594 0 SNDLAHPPLE I.claudius_F1_317_485_717268_peptide number 11 805.9795 0 VLLTMTE I.claudius_F1_317_485_717268_peptide number 12 147.1293 0 E I.claudius_F1_317_485_717268_peptide number 13 1900.08 0 TGMDGAKGLRHNWLQSE I.claudius_F1_317_485_717268_peptide number 14 917.9999 0 ILINTDTE I.claudius_F1_317_485_717268_peptide number 15 147.1293 0 E I.claudius_F1_317_485_717268_peptide number 16 317.33820000000003 0 IGE I.claudius_F1_317_485_717268_peptide number 17 1441.6071 0 IYIGCAGGINANFE I.claudius_F1_317_485_717268_peptide number 18 747.8357000000001 0 IPVQYE I.claudius_F1_317_485_717268_peptide number 19 610.6136 0 TNTFE I.claudius_F1_317_485_717268_peptide number 20 5056.7026000000005 0 HSAQITLKGLRGGHSGGDIHTGRANAIKVLARVLAKLSQNQPHFALSE I.claudius_F1_317_485_717268_peptide number 21 1438.6347999999998 0 IRGGSIRNAIPRE I.claudius_F1_317_485_717268_peptide number 22 1518.7097 0 AAAVLAFNGDVKTIE I.claudius_F1_317_485_717268_peptide number 23 404.41560000000004 0 SAVE I.claudius_F1_317_485_717268_peptide number 24 885.0595000000001 0 NLAVVLKE I.claudius_F1_317_485_717268_peptide number 25 147.1293 0 E I.claudius_F1_317_485_717268_peptide number 26 1463.6725 0 LAIAEPNFTLFVE I.claudius_F1_317_485_717268_peptide number 27 305.2845 0 SAE I.claudius_F1_317_485_717268_peptide number 28 3937.457100000001 0 KAPTVFTAQSTQTVINALNVLPNGVIRNSDVVKNVVE I.claudius_F1_317_485_717268_peptide number 29 1119.2660999999998 0 SSLSVGVLKTE I.claudius_F1_317_485_717268_peptide number 30 1627.9234 0 GNVVKSTILVRSLIE I.claudius_F1_317_485_717268_peptide number 31 946.0118000000001 0 SGKYYVTE I.claudius_F1_317_485_717268_peptide number 32 1459.7501 0 MLSSLAILANAKVE I.claudius_F1_317_485_717268_peptide number 33 2992.2561 0 FSAPYPGWQPVNDSTILDVTRKHYAE I.claudius_F1_317_485_717268_peptide number 34 416.4693000000001 0 VLGE I.claudius_F1_317_485_717268_peptide number 35 1289.5230000000001 0 QPVVKVIHAGLE I.claudius_F1_317_485_717268_peptide number 36 661.8110000000001 0 CGLLKE I.claudius_F1_317_485_717268_peptide number 37 771.8173 0 HYPNIE I.claudius_F1_317_485_717268_peptide number 38 1723.9047999999998 0 MISVGPTIRNAHSPDE I.claudius_F1_317_485_717268_peptide number 39 374.43270000000007 0 KVE I.claudius_F1_317_485_717268_peptide number 40 2387.7713000000003 0 IATVQTYWDLLTRVLADIPAK I.claudius_F1_318_219_720397_peptide number 1 783.8894 0 MYLGTAE I.claudius_F1_318_219_720397_peptide number 2 3672.0839 0 AALSGCGCSCGGKSVIQLGAQNVDINVKGAFTGDISTE I.claudius_F1_318_219_720397_peptide number 3 1822.1321 0 MLKDFGAKYIIIGHSE I.claudius_F1_318_219_720397_peptide number 4 989.0895 0 RRTYHKE I.claudius_F1_318_219_720397_peptide number 5 349.294 0 SDE I.claudius_F1_318_219_720397_peptide number 6 1237.4898 0 FVAKKFGALKE I.claudius_F1_318_219_720397_peptide number 7 1070.3029 0 AGLVPVLCIGE I.claudius_F1_318_219_720397_peptide number 8 234.2066 0 SE I.claudius_F1_318_219_720397_peptide number 9 218.2072 0 AE I.claudius_F1_318_219_720397_peptide number 10 261.2319 0 NE I.claudius_F1_318_219_720397_peptide number 11 504.53470000000004 0 AGKTE I.claudius_F1_318_219_720397_peptide number 12 147.1293 0 E I.claudius_F1_318_219_720397_peptide number 13 1670.9282 0 VCARQIDAVINALGVE I.claudius_F1_318_219_720397_peptide number 14 4691.265399999999 0 AFNGAVIAYEPIWAIGTGKSATPAQAQAVHAFIRGHIAAKSQAVAE I.claudius_F1_318_219_720397_peptide number 15 1748.8446 0 QVIIQYGGSVNDANAAE I.claudius_F1_318_219_720397_peptide number 16 3296.8124000000016 0 LFTQPDIDGALVGGASLKAPAFAVIVKAAAAAKN I.claudius_F1_319_50_721871_peptide number 1 564.6098000000001 0 MASQE I.claudius_F1_319_50_721871_peptide number 2 1059.2157 0 RPPFSTILE I.claudius_F1_319_50_721871_peptide number 3 1713.0046 0 ITPNVAMITAINLNVE I.claudius_F1_319_50_721871_peptide number 4 2073.4637000000002 0 MRSLKNTRPAATITIGKSK I.claudius_F1_320_63_722927_peptide number 1 7171.771000000002 0 MAIGCGYRTKKFNFTAKFIGFIFQLLFKLLPVLPFCFSKLQKFLAIFSKFDLAIITDKKCLP I.claudius_F1_321_471_723984_peptide number 1 549.5985000000001 0 MDRE I.claudius_F1_321_471_723984_peptide number 2 147.1293 0 E I.claudius_F1_321_471_723984_peptide number 3 480.46850000000006 0 FADE I.claudius_F1_321_471_723984_peptide number 4 4147.779100000001 0 ANFLKGKKIVIVGCGAQGLNQGLNMRDSGLDISYALRPE I.claudius_F1_321_471_723984_peptide number 5 402.44270000000006 0 AIAE I.claudius_F1_321_471_723984_peptide number 6 1193.3131 0 KRASFQRATE I.claudius_F1_321_471_723984_peptide number 7 1014.089 0 NGFKVGTYE I.claudius_F1_321_471_723984_peptide number 8 147.1293 0 E I.claudius_F1_321_471_723984_peptide number 9 4826.548199999999 0 LIPTADLVVNLTPDKQHSKVVADVMPLMKKDSAFGYSHGFNIVE I.claudius_F1_321_471_723984_peptide number 10 303.31170000000003 0 VGE I.claudius_F1_321_471_723984_peptide number 11 147.1293 0 E I.claudius_F1_321_471_723984_peptide number 12 1957.3619 0 IRKDITVVMVAPKCPGTE I.claudius_F1_321_471_723984_peptide number 13 402.4461 0 VRE I.claudius_F1_321_471_723984_peptide number 14 147.1293 0 E I.claudius_F1_321_471_723984_peptide number 15 1784.066 0 YKRGFGVPTLIAVHPE I.claudius_F1_321_471_723984_peptide number 16 658.6581000000001 0 NDPKGE I.claudius_F1_321_471_723984_peptide number 17 2010.3199000000004 0 GMAIAKAWAAATGGHKAGVLE I.claudius_F1_321_471_723984_peptide number 18 638.6668 0 SSFVAE I.claudius_F1_321_471_723984_peptide number 19 878.0024000000001 0 VKSDLMGE I.claudius_F1_321_471_723984_peptide number 20 4119.7375999999995 0 QTILCGMLQAGSIVCYDKLVADGKDPAYAGKLIQYGWE I.claudius_F1_321_471_723984_peptide number 21 462.4947000000001 0 TITE I.claudius_F1_321_471_723984_peptide number 22 2651.1133999999997 0 ALKQGGITLMMDRLSNSAKLRAFE I.claudius_F1_321_471_723984_peptide number 23 331.36480000000006 0 LAE I.claudius_F1_321_471_723984_peptide number 24 516.5884000000001 0 QIKE I.claudius_F1_321_471_723984_peptide number 25 4440.9435 0 SLGFLYYKHMDDIISGHFSATMMADWANGDKDLFAWRE I.claudius_F1_321_471_723984_peptide number 26 823.8904 0 ATGKTAFE I.claudius_F1_321_471_723984_peptide number 27 1221.3165 0 NAPKYDGKISE I.claudius_F1_321_471_723984_peptide number 28 275.2585 0 QE I.claudius_F1_321_471_723984_peptide number 29 1857.1979000000001 0 YFDNGVLMIAMVKAGVE I.claudius_F1_321_471_723984_peptide number 30 1386.5686 0 LAFDAMVASGIYE I.claudius_F1_321_471_723984_peptide number 31 147.1293 0 E I.claudius_F1_321_471_723984_peptide number 32 631.6311000000001 0 SAYYE I.claudius_F1_321_471_723984_peptide number 33 484.50350000000003 0 SLHE I.claudius_F1_321_471_723984_peptide number 34 1771.1118 0 LPLIANTIARKRLYE I.claudius_F1_321_471_723984_peptide number 35 1078.1942999999999 0 MNVVISDTAE I.claudius_F1_321_471_723984_peptide number 36 1900.1347 0 YGNYLFSNVATPILAKE I.claudius_F1_321_471_723984_peptide number 37 1891.1263000000001 0 IIPNLQKGDLGEPTPAVE I.claudius_F1_321_471_723984_peptide number 38 2190.3731 0 VDNITLRDVNDAIRNHPVE I.claudius_F1_321_471_723984_peptide number 39 558.625 0 LIGQE I.claudius_F1_321_471_723984_peptide number 40 1682.0205 0 LRGYMTDMKRIAVAG I.claudius_F1_322_481_730071_peptide number 1 1441.6951 0 MFGPFKPAPHIAE I.claudius_F1_322_481_730071_peptide number 2 428.48 0 LPAE I.claudius_F1_322_481_730071_peptide number 3 5555.3038000000015 0 KIDSTYKRLRWQVFAGIFFGYAAYYFVRANFDLAQPGLIQAGLYSKAE I.claudius_F1_322_481_730071_peptide number 4 9746.582700000003 0 LGVIGSAAGLAYGLSKFVMAGMSDRSNPRVFLPFGLLLSGLCMTLMGLFPWATSGIAIMWVMIFLNGWFQGMGWPPCGRTMVHWWSKSE I.claudius_F1_322_481_730071_peptide number 5 3869.4721 0 RGTIVSIWNTAHNIGGMVPGAMVLLASAIFFSTHGIE I.claudius_F1_322_481_730071_peptide number 6 4690.419799999999 0 AQAKDVWQQSLYFPGIAAMIFAIPVYFVMRDTPQSCGLPSIE I.claudius_F1_322_481_730071_peptide number 7 1614.6263999999999 0 KWRNDYPDDYNE I.claudius_F1_322_481_730071_peptide number 8 539.5788000000001 0 KTYE I.claudius_F1_322_481_730071_peptide number 9 789.8310000000001 0 NDLTAKE I.claudius_F1_322_481_730071_peptide number 10 4696.614600000001 0 IFVTYVLKNKLLWYIAIANVFVYLIRYGVLKWSPVYLSE I.claudius_F1_322_481_730071_peptide number 11 2041.3074 0 VKHFNIKGTAWAYTIYE I.claudius_F1_322_481_730071_peptide number 12 5143.096800000002 0 LAAVPGTLLCGWVSDKVFKGKRGLTGFIFMILTTAAVVAYWMNPATPE I.claudius_F1_322_481_730071_peptide number 13 218.2072 0 AE I.claudius_F1_322_481_730071_peptide number 14 1116.1791 0 LANYSAWYE I.claudius_F1_322_481_730071_peptide number 15 3493.1826 0 NPYQLTDFVLMTLIGFLIYGPVMLIGLHALE I.claudius_F1_322_481_730071_peptide number 16 6315.362100000002 0 LAPKKAAGTAAGFTGLFGYLGGTVSASAVIGWAAQHYGWDGGFYVMIGGGVLAVLLLLIVMVE I.claudius_F1_322_481_730071_peptide number 17 147.1293 0 E I.claudius_F1_322_481_730071_peptide number 18 1503.7017 0 GKHKAKLGDTYGTK I.claudius_F1_323_340_733020_peptide number 1 2632.0240000000003 0 MANTQMKSDKIIIAHRGASGYLPE I.claudius_F1_323_340_733020_peptide number 2 498.53010000000006 0 HTLE I.claudius_F1_323_340_733020_peptide number 3 1579.7082 0 SKALAFAQHSDYLE I.claudius_F1_323_340_733020_peptide number 4 5722.4944000000005 0 QDLAMTKDGRLVVIHDHFLDGLTDVAKKFPYRHRKDGRYYVIDFTLKE I.claudius_F1_323_340_733020_peptide number 5 588.6510000000001 0 IQSLE I.claudius_F1_323_340_733020_peptide number 6 379.4293 0 MTE I.claudius_F1_323_340_733020_peptide number 7 408.4058 0 NFE I.claudius_F1_323_340_733020_peptide number 8 3331.7404999999994 0 TKDGKQAQVYPNRFPLWKSHFRIHTFE I.claudius_F1_323_340_733020_peptide number 9 262.2167 0 DE I.claudius_F1_323_340_733020_peptide number 10 260.2869 0 IE I.claudius_F1_323_340_733020_peptide number 11 705.7989 0 FIQGLE I.claudius_F1_323_340_733020_peptide number 12 1306.5072 0 KSTGKKVGIYPE I.claudius_F1_323_340_733020_peptide number 13 1992.1969000000001 0 IKAPWFHHQNGKDIATE I.claudius_F1_323_340_733020_peptide number 14 3188.6466000000005 0 TLKVLKKYGYDKKTDMVYLQTFDFNE I.claudius_F1_323_340_733020_peptide number 15 887.0787 0 LKRIKTE I.claudius_F1_323_340_733020_peptide number 16 2606.1075 0 LLPQMGMDLKLVQLIAYTDWKE I.claudius_F1_323_340_733020_peptide number 17 376.3624 0 TQE I.claudius_F1_323_340_733020_peptide number 18 2811.151900000001 0 KDPKGYWVNYNYDWMFKPGAMAE I.claudius_F1_323_340_733020_peptide number 19 2125.4455 0 VVKYADGVGPGWYMLVNKE I.claudius_F1_323_340_733020_peptide number 20 147.1293 0 E I.claudius_F1_323_340_733020_peptide number 21 1602.8262 0 SKPDNIVYTPLVKE I.claudius_F1_323_340_733020_peptide number 22 835.9010000000001 0 LAQYNVE I.claudius_F1_323_340_733020_peptide number 23 1524.7192999999997 0 VHPYTVRKDALPE I.claudius_F1_323_340_733020_peptide number 24 3400.676900000001 0 FFTDVNQMYDALLNKSGATGVFTDFPDTGVE I.claudius_F1_323_340_733020_peptide number 25 704.9003 0 FLKGIK I.claudius_F1_324_504_735084_peptide number 1 3303.6975000000007 0 MTDKKYIIALDQGTTSSRAVLLDHNANVVE I.claudius_F1_324_504_735084_peptide number 2 615.6797 0 IAQRE I.claudius_F1_324_504_735084_peptide number 3 1466.6383000000003 0 FTQIYPRAGWVE I.claudius_F1_324_504_735084_peptide number 4 626.6825 0 HNPME I.claudius_F1_324_504_735084_peptide number 5 1249.3265000000001 0 IWATQSSTLNE I.claudius_F1_324_504_735084_peptide number 6 1089.1971 0 VVAKAGITSDE I.claudius_F1_324_504_735084_peptide number 7 1185.3305999999998 0 IAAIGITNQRE I.claudius_F1_324_504_735084_peptide number 8 747.8357000000001 0 TTIVWE I.claudius_F1_324_504_735084_peptide number 9 3474.8564000000006 0 KSTGTPVYNAIVWQCRRTADITDKLKADGHE I.claudius_F1_324_504_735084_peptide number 10 147.1293 0 E I.claudius_F1_324_504_735084_peptide number 11 3128.5316 0 YIRNTTGLVVDPYFSGTKVKWILDNVE I.claudius_F1_324_504_735084_peptide number 12 431.4442 0 GARE I.claudius_F1_324_504_735084_peptide number 13 346.3795 0 KAE I.claudius_F1_324_504_735084_peptide number 14 360.3663 0 RGE I.claudius_F1_324_504_735084_peptide number 15 5510.265100000001 0 LLFGTVDTWLVWKLTQGRVHVTDYTNASRTMLFNIHTKQWDDKMLE I.claudius_F1_324_504_735084_peptide number 16 1282.5518 0 ILNIPRSMLPE I.claudius_F1_324_504_735084_peptide number 17 690.7033 0 VRNSSE I.claudius_F1_324_504_735084_peptide number 18 7842.883000000004 0 IYGQTNIGGKGGVRIPVAGIAGDQQAALYGHLCVHAGQAKNTYGTGCFMLLHTGNKAITSKNGLLTTIACNAKGEPE I.claudius_F1_324_504_735084_peptide number 19 494.5381000000001 0 YALE I.claudius_F1_324_504_735084_peptide number 20 1748.9323000000004 0 GSVFIAGASIQWLRDE I.claudius_F1_324_504_735084_peptide number 21 1289.3905 0 LKIVHDSFDSE I.claudius_F1_324_504_735084_peptide number 22 5688.3288 0 YFAQKVTDSNGVYVVPAFTGLGAPYWDPYARGAIFGLSRGANRNHIVRATLE I.claudius_F1_324_504_735084_peptide number 23 1294.4103 0 SIAYQTRDVLE I.claudius_F1_324_504_735084_peptide number 24 823.8258000000001 0 AMQSDSGE I.claudius_F1_324_504_735084_peptide number 25 3454.8217 0 RLQYLRVDGGATNNNFLMQFQADILDVNVE I.claudius_F1_324_504_735084_peptide number 26 726.8647000000001 0 RPVVKE I.claudius_F1_324_504_735084_peptide number 27 2282.5462 0 VTALGAAYLAGLATGFWKDLDE I.claudius_F1_324_504_735084_peptide number 28 986.1270000000002 0 LRDKARVE I.claudius_F1_324_504_735084_peptide number 29 1167.14 0 RTFSPDSDNE I.claudius_F1_324_504_735084_peptide number 30 431.4873 0 KRE I.claudius_F1_324_504_735084_peptide number 31 1905.254 0 RRYKGWKKAVKRSLE I.claudius_F1_324_504_735084_peptide number 32 532.5894000000001 0 WAKE I.claudius_F1_324_504_735084_peptide number 33 262.2167 0 DE I.claudius_F1_324_504_735084_peptide number 34 147.1293 0 E I.claudius_F1_325_241_738385_peptide number 1 5772.818000000002 0 MMLQAFQNRNHKLMKKNFSAGKLPSKGKSAVNFHRTFKPKLKPKTLSLDE I.claudius_F1_325_241_738385_peptide number 2 2241.5376 0 TKVVLFNKPFDVLTQFTDE I.claudius_F1_325_241_738385_peptide number 3 2893.1713999999997 0 QGRATLKDFISIPNVYAAGRLDRDSE I.claudius_F1_325_241_738385_peptide number 4 1043.1713999999997 0 GLLILTNNGE I.claudius_F1_325_241_738385_peptide number 5 1582.8016 0 LQHRLADPKFKTE I.claudius_F1_325_241_738385_peptide number 6 1052.1801 0 KTYWVQVE I.claudius_F1_325_241_738385_peptide number 7 414.4534 0 GIPE I.claudius_F1_325_241_738385_peptide number 8 147.1293 0 E I.claudius_F1_325_241_738385_peptide number 9 1229.3833 0 TDLAQLRKGVE I.claudius_F1_325_241_738385_peptide number 10 2383.7413 0 LKDGVTKSAKVRLISEPNLWE I.claudius_F1_325_241_738385_peptide number 11 880.9913000000001 0 RNPPIRE I.claudius_F1_325_241_738385_peptide number 12 1243.4114 0 RKNIPTSWLE I.claudius_F1_325_241_738385_peptide number 13 588.6941 0 IKISE I.claudius_F1_325_241_738385_peptide number 14 3849.5405000000005 0 GRNRQVRRMTAHIGFPTLRLVRVSMGLLSINGLE I.claudius_F1_325_241_738385_peptide number 15 1250.3576 0 NGSFRLLSLDE I.claudius_F1_325_241_738385_peptide number 16 1160.4487 0 IKALFQTVKL I.claudius_F1_326_65_740406_peptide number 1 940.0717000000001 0 MYQGLSLE I.claudius_F1_326_65_740406_peptide number 2 6679.1493 0 YQKLRQYCPLIYRSLKCLNQLMLHQLIPLNPLLRCFLTNDLLINKKVLDLVVCLVH I.claudius_F1_327_115_740906_peptide number 1 649.7607 0 MRKSE I.claudius_F1_327_115_740906_peptide number 2 8306.7217 0 RISIPDFVFAANSRLISSSLLLCGPFKITSSSLTGSAVSGRLSILIRAQGISTVPLKFNSFGLAFIVIFGLKRSFAIE I.claudius_F1_327_115_740906_peptide number 3 3422.0718000000015 0 GISTLKLFACAFNSVVQCSIFAQFARPVKFK I.claudius_F1_328_64_741864_peptide number 1 5091.941999999999 0 MLVGNIILHRCFASNVRQYWLVFVCYRRTPQSLGWILHRQSE I.claudius_F1_328_64_741864_peptide number 2 2315.7997 0 FQILPVKLCLSTAPKCGQNVR I.claudius_F1_329_52_743127_peptide number 1 1355.6058 0 MAPNGILKLNRE I.claudius_F1_329_52_743127_peptide number 2 4666.514400000001 0 AYRHRVVIYLVKKDYPTSFLPLIFVIAVGYRRYPPVQLN I.claudius_F1_330_81_743609_peptide number 1 2245.7000000000003 0 MFTDKSCITKFSALILIGKE I.claudius_F1_330_81_743609_peptide number 2 1165.2946 0 IRFIEPDFE I.claudius_F1_330_81_743609_peptide number 3 3129.5693 0 LSGADGGNNAVLIAIVGLFKVKSRKQTSRE I.claudius_F1_330_81_743609_peptide number 4 2203.6518 0 NKQPKSSCKRACAICVSIPAV I.claudius_F1_331_55_744967_peptide number 1 2949.3672 0 MSTAINPRFCPAYLSVNAAISRKAHTE I.claudius_F1_331_55_744967_peptide number 2 3431.0251000000003 0 FHRIFFTWIKNNLHIHSFAFMINIRLN I.claudius_F1_332_56_746660_peptide number 1 6516.108899999999 0 MNTRLFFIFIIKKFPIVTVFIFIIKKFPIVTVFIVIGIWVFKISSPTVVNTIMFF I.claudius_F1_333_340_747227_peptide number 1 391.48300000000006 0 MLE I.claudius_F1_333_340_747227_peptide number 2 2196.6277 0 QLPYLALKTPPKTTALLKAE I.claudius_F1_333_340_747227_peptide number 3 924.0724 0 CADFIVKE I.claudius_F1_333_340_747227_peptide number 4 617.6508000000001 0 HLGYE I.claudius_F1_333_340_747227_peptide number 5 594.5927 0 MSGDGE I.claudius_F1_333_340_747227_peptide number 6 2075.3868 0 FVALYVRKTDCNTLFVGE I.claudius_F1_333_340_747227_peptide number 7 1049.2209 0 KLAKFAGVSE I.claudius_F1_333_340_747227_peptide number 8 1837.0691000000004 0 RNMGYAGLKDRRAVTE I.claudius_F1_333_340_747227_peptide number 9 1369.6307000000002 0 QWFCLQMPGME I.claudius_F1_333_340_747227_peptide number 10 969.9901000000001 0 TPDFSQFE I.claudius_F1_333_340_747227_peptide number 11 531.5567 0 LDGVE I.claudius_F1_333_340_747227_peptide number 12 1994.3024 0 ILTVTRHNRKIRTGSLE I.claudius_F1_333_340_747227_peptide number 13 1367.5055000000002 0 GNYFDILLRGAE I.claudius_F1_333_340_747227_peptide number 14 147.1293 0 E I.claudius_F1_333_340_747227_peptide number 15 349.294 0 SDE I.claudius_F1_333_340_747227_peptide number 16 2249.5213 0 LKARLDFVANFGFPNYFTE I.claudius_F1_333_340_747227_peptide number 17 2340.5159000000003 0 QRFGRDGHNLTQALRWAQGE I.claudius_F1_333_340_747227_peptide number 18 2282.6441999999997 0 IKVKDRKKRSFYLSAARSE I.claudius_F1_333_340_747227_peptide number 19 1244.4823000000001 0 IFNLVVAARIE I.claudius_F1_333_340_747227_peptide number 20 2898.186100000001 0 KSTINQVLPNDIVQLAGSHSWFKADE I.claudius_F1_333_340_747227_peptide number 21 275.3016 0 KE I.claudius_F1_333_340_747227_peptide number 22 1157.3173 0 DLTALQVRLE I.claudius_F1_333_340_747227_peptide number 23 1396.5848 0 NQDILLTAPLIGE I.claudius_F1_333_340_747227_peptide number 24 717.7650000000001 0 DILAASE I.claudius_F1_333_340_747227_peptide number 25 260.2869 0 IE I.claudius_F1_333_340_747227_peptide number 26 261.2319 0 NE I.claudius_F1_333_340_747227_peptide number 27 1756.976 0 IVNQHSAFDPLMKQE I.claudius_F1_333_340_747227_peptide number 28 2721.2529999999997 0 RMKAARRPLLMKAKGFSWAFEPE I.claudius_F1_333_340_747227_peptide number 29 2225.5877000000005 0 GLRLKFYLPAGSYATALVRE I.claudius_F1_333_340_747227_peptide number 30 737.7978 0 LVNYTE I.claudius_F1_333_340_747227_peptide number 31 147.1293 0 E I.claudius_F1_334_63_749404_peptide number 1 3589.3214999999996 0 MQMAFFPFVITAFVSRLARFLLVAKLAAWGGE I.claudius_F1_334_63_749404_peptide number 2 1290.5541 0 KFAAKLRKSIE I.claudius_F1_334_63_749404_peptide number 3 2118.6017 0 IIGWSVVVLAVIAYFILKN I.claudius_F1_335_406_749810_peptide number 1 5492.1968000000015 0 MKKSFLLLPLSLVVLSACTSNFPAPISDADGNFSPSVIQSVNGSNVGGAWQPE I.claudius_F1_335_406_749810_peptide number 2 12445.981300000009 0 IQKNSLPTTGNMVTPQQNFQPINQQPTMPTAPAQPAFQPSPKTVVSAPTVQTKTVTKTVADCVDGQHINIPRNPNTNAPDYSKISKGSYKGNTYKVNKGDTMFLIAYLAGIDVKE I.claudius_F1_335_406_749810_peptide number 3 7727.706900000003 0 LAALNNLSEPYNLSLGQVLKISNCDIKTVTTTVSVKQPAVTASTATPVKPAVTYTPGANGTQIGSDGTIIGPIKSE I.claudius_F1_335_406_749810_peptide number 4 12425.525500000009 0 AGTSPSVPVATSSTQVTSSVNNANSTPINSNVVAPIASNVVWQWPTSGNIIQGFSSTDGGNKGIDISGSRGQAVKAAAAGRIVYAGNALRGYGNLIIIKHNDDFLSAYAHNDKILVADQQE I.claudius_F1_335_406_749810_peptide number 5 2418.7242 0 VKAGQDIAKMGSSGTNTVKLHFE I.claudius_F1_335_406_749810_peptide number 6 2084.4267 0 IRYKGKSVDPVRYLPRH I.claudius_F1_336_423_752477_peptide number 1 1227.3409000000001 0 MLSDGATQYLE I.claudius_F1_336_423_752477_peptide number 2 374.3895 0 NLE I.claudius_F1_336_423_752477_peptide number 3 431.4873 0 KRE I.claudius_F1_336_423_752477_peptide number 4 303.31500000000005 0 RE I.claudius_F1_336_423_752477_peptide number 5 4825.4024 0 STGIDTLKIGFNAVHGYYIQISQGQAHKAPIHYVRRQTLKNAE I.claudius_F1_336_423_752477_peptide number 6 789.9187000000001 0 RYIIPE I.claudius_F1_336_423_752477_peptide number 7 388.4592 0 LKE I.claudius_F1_336_423_752477_peptide number 8 310.30260000000004 0 YE I.claudius_F1_336_423_752477_peptide number 9 1442.6998 0 DKVLKSKGAALALE I.claudius_F1_336_423_752477_peptide number 10 794.8491000000001 0 KQLYDE I.claudius_F1_336_423_752477_peptide number 11 2250.6317 0 LFDLLLPHLGSLQLASLALSE I.claudius_F1_336_423_752477_peptide number 12 985.1322 0 LDVLVNLAE I.claudius_F1_336_423_752477_peptide number 13 1774.9682000000003 0 RADTLNYVMPTFCDE I.claudius_F1_336_423_752477_peptide number 14 1561.8273 0 VSVKIKNGRHPVVE I.claudius_F1_336_423_752477_peptide number 15 1469.6804 0 QVLKDPFIANPVE I.claudius_F1_336_423_752477_peptide number 16 7706.7966000000015 0 LNHNRHLLVITGPNMGGKSTYMRQTALITLLAYIGSFVPADSARIGPIDRIFTRIGASDDLASGRSTFMVE I.claudius_F1_336_423_752477_peptide number 17 379.4293 0 MTE I.claudius_F1_336_423_752477_peptide number 18 1967.2471 0 MANILHQATAQSLVLIDE I.claudius_F1_336_423_752477_peptide number 19 1971.1513 0 IGRGTSTYDGLSLAWACAE I.claudius_F1_336_423_752477_peptide number 20 2240.6006 0 WLSKKIRSLTLFATHYFE I.claudius_F1_336_423_752477_peptide number 21 642.7415000000001 0 LTALPE I.claudius_F1_336_423_752477_peptide number 22 388.41610000000003 0 QLE I.claudius_F1_336_423_752477_peptide number 23 1165.2961 0 GIANIHLDALE I.claudius_F1_336_423_752477_peptide number 24 4790.5025 0 HNNTIAFMHAVQNGAASKSYGLAVAALAGVPQSVIKLAKQKLTQLE I.claudius_F1_336_423_752477_peptide number 25 884.8873000000001 0 KNSSYSAE I.claudius_F1_336_423_752477_peptide number 26 985.0957000000001 0 QQIQALRE I.claudius_F1_336_423_752477_peptide number 27 768.7322 0 ANHNQGE I.claudius_F1_336_423_752477_peptide number 28 554.6347000000001 0 LFFE I.claudius_F1_336_423_752477_peptide number 29 275.2585 0 QE I.claudius_F1_336_423_752477_peptide number 30 703.7418 0 TDALRE I.claudius_F1_336_423_752477_peptide number 31 331.36480000000006 0 AIE I.claudius_F1_336_423_752477_peptide number 32 2735.2017000000005 0 KLDPDDLSPKQALAYLYQLKKMVG I.claudius_F1_337_63_755148_peptide number 1 278.32540000000006 0 ME I.claudius_F1_337_63_755148_peptide number 2 1155.3446 0 RIPSVAVTIAE I.claudius_F1_337_63_755148_peptide number 3 2788.2726000000007 0 KTNAKLSALSARFKQLSQPIIGRME I.claudius_F1_337_63_755148_peptide number 4 1742.9691000000003 0 NGKIWLDLRSLADIE I.claudius_F1_337_63_755148_peptide number 5 917.9999 0 TLLNTLDE I.claudius_F1_337_63_755148_peptide number 6 131.1729 0 L I.claudius_F1_338_554_755531_peptide number 1 1931.2796000000003 0 MLAGLGGVHYAMLIVAADE I.claudius_F1_338_554_755531_peptide number 2 830.9260999999999 0 GVAVQTKE I.claudius_F1_338_554_755531_peptide number 3 1504.7342 0 HLAILRQLQFHE I.claudius_F1_338_554_755531_peptide number 4 1871.14 0 IIVVITKADRTNSAQIE I.claudius_F1_338_554_755531_peptide number 5 2809.0897 0 SLIQTIKQDYSFLRNANYFVTSAE I.claudius_F1_338_554_755531_peptide number 6 690.6999000000001 0 TGQGISE I.claudius_F1_338_554_755531_peptide number 7 1199.3588 0 LRHYLANLAE I.claudius_F1_338_554_755531_peptide number 8 4146.614500000001 0 LADTQKPFRYAIDRVFSVKGAGTVVTGTAFSGTVKVNDE I.claudius_F1_338_554_755531_peptide number 9 2458.768 0 IYLSTGQKIRIKAIHAQNTSSE I.claudius_F1_338_554_755531_peptide number 10 5138.8147 0 QGIAGQRLALNLNADLDRTPMKRGDWLLQNEPLPPTDRISVQILAE I.claudius_F1_338_554_755531_peptide number 11 570.6358 0 VPLNE I.claudius_F1_338_554_755531_peptide number 12 3677.0905000000016 0 SQPVHIYHGASRTTGKLTLLQGKNAAKNDRTLAE I.claudius_F1_338_554_755531_peptide number 13 3557.1852000000013 0 IILDSPLFLAFGDKLILRSGDTKTLIAGARVLE I.claudius_F1_338_554_755531_peptide number 14 1365.5412000000001 0 INSPKRHKRTE I.claudius_F1_338_554_755531_peptide number 15 1443.6893 0 VRLNFLANLALAE I.claudius_F1_338_554_755531_peptide number 16 2755.0737000000004 0 NASQRIALTLQHNATTARQLMWTE I.claudius_F1_338_554_755531_peptide number 17 1429.6148 0 QLTSLQLDKALAE I.claudius_F1_338_554_755531_peptide number 18 2303.4676999999997 0 RDAVRYQDWCFNPNYVQE I.claudius_F1_338_554_755531_peptide number 19 1671.8913 0 KTQQILTALNIYHE I.claudius_F1_338_554_755531_peptide number 20 2669.9693 0 QHNDQLGVSKARLYRMATLNQPE I.claudius_F1_338_554_755531_peptide number 21 1137.2446 0 NLIHHFIDE I.claudius_F1_338_554_755531_peptide number 22 2165.4313 0 MLDDGRLQQTRGWIHLPE I.claudius_F1_338_554_755531_peptide number 23 1016.1081 0 HKIQFNTE I.claudius_F1_338_554_755531_peptide number 24 147.1293 0 E I.claudius_F1_338_554_755531_peptide number 25 1247.3571 0 KSRWTDVLNE I.claudius_F1_338_554_755531_peptide number 26 294.30320000000006 0 FE I.claudius_F1_338_554_755531_peptide number 27 2186.4472 0 KANGQAIWVRDMANALAIDE I.claudius_F1_338_554_755531_peptide number 28 3339.968 0 SIMRNFMYKAGKLGYLTPIVKDRFFLTE I.claudius_F1_338_554_755531_peptide number 29 1652.9311 0 TLYAYARLIKQIAE I.claudius_F1_338_554_755531_peptide number 30 147.1293 0 E I.claudius_F1_338_554_755531_peptide number 31 859.9673 0 KGKVSVNE I.claudius_F1_338_554_755531_peptide number 32 2047.4247000000005 0 VRDKLNFGRKLTVQLME I.claudius_F1_338_554_755531_peptide number 33 3126.5519999999997 0 YFDRMGFLRRKGNDHILRDKNVFDL I.claudius_F1_339_433_761636_peptide number 1 705.8205 0 MSLNIE I.claudius_F1_339_433_761636_peptide number 2 647.6752 0 TTQGLE I.claudius_F1_339_433_761636_peptide number 3 1141.3213999999998 0 RRVAITVPTE I.claudius_F1_339_433_761636_peptide number 4 901.0623 0 IVSKAVRE I.claudius_F1_339_433_761636_peptide number 5 147.1293 0 E I.claudius_F1_339_433_761636_peptide number 6 2746.1797 0 FKRAAKNVRVDGFRKGHVPAHIIE I.claudius_F1_339_433_761636_peptide number 7 3127.5135000000005 0 QRFGASIRQDVLNDLLPRHFFNAVIAE I.claudius_F1_339_433_761636_peptide number 8 1429.6627999999998 0 KINIAGRPTFAIE I.claudius_F1_339_433_761636_peptide number 9 395.4071 0 TFE I.claudius_F1_339_433_761636_peptide number 10 147.1293 0 E I.claudius_F1_339_433_761636_peptide number 11 1227.3625 0 GKDLVFTATFE I.claudius_F1_339_433_761636_peptide number 12 506.5489 0 VYPE I.claudius_F1_339_433_761636_peptide number 13 785.9284 0 VKLQGLE I.claudius_F1_339_433_761636_peptide number 14 601.6929 0 NIKVE I.claudius_F1_339_433_761636_peptide number 15 572.6518000000001 0 KPTVE I.claudius_F1_339_433_761636_peptide number 16 361.3908 0 ITE I.claudius_F1_339_433_761636_peptide number 17 2231.5277 0 ADIDKMIDVLRKQQATWAE I.claudius_F1_339_433_761636_peptide number 18 2351.4795000000004 0 SQDVVKADDRVTIDFVGSVDGE I.claudius_F1_339_433_761636_peptide number 19 147.1293 0 E I.claudius_F1_339_433_761636_peptide number 20 294.30320000000006 0 FE I.claudius_F1_339_433_761636_peptide number 21 2258.6176000000005 0 GGKATDFVLFMGQGRMIPGFE I.claudius_F1_339_433_761636_peptide number 22 147.1293 0 E I.claudius_F1_339_433_761636_peptide number 23 866.9614 0 GIVGHKAGE I.claudius_F1_339_433_761636_peptide number 24 1281.3668 0 QFDIDVTFPAE I.claudius_F1_339_433_761636_peptide number 25 518.5198 0 YHAE I.claudius_F1_339_433_761636_peptide number 26 1873.2866 0 NLKGKAAKFAITLKKIE I.claudius_F1_339_433_761636_peptide number 27 701.8319 0 NMVLPE I.claudius_F1_339_433_761636_peptide number 28 476.4782 0 LTDE I.claudius_F1_339_433_761636_peptide number 29 1950.1986 0 FVAKFGPNTKSVADLRAE I.claudius_F1_339_433_761636_peptide number 30 789.9436000000001 0 IRKNME I.claudius_F1_339_433_761636_peptide number 31 303.31500000000005 0 RE I.claudius_F1_339_433_761636_peptide number 32 2122.511 0 LKNALVSRVKQQVINGLIE I.claudius_F1_339_433_761636_peptide number 33 1267.385 0 QNPIDVPVSAVE I.claudius_F1_339_433_761636_peptide number 34 147.1293 0 E I.claudius_F1_339_433_761636_peptide number 35 147.1293 0 E I.claudius_F1_339_433_761636_peptide number 36 2781.0513000000005 0 INVLRNQAAQRFGGNAQQTAQLPRE I.claudius_F1_339_433_761636_peptide number 37 407.46080000000006 0 LFE I.claudius_F1_339_433_761636_peptide number 38 218.2072 0 AE I.claudius_F1_339_433_761636_peptide number 39 1475.6915999999999 0 ATRRVQVGLLFSE I.claudius_F1_339_433_761636_peptide number 40 688.7702 0 VIKSNE I.claudius_F1_339_433_761636_peptide number 41 574.6245 0 LKADE I.claudius_F1_339_433_761636_peptide number 42 147.1293 0 E I.claudius_F1_339_433_761636_peptide number 43 1509.7261 0 RAKAMIADIASAYE I.claudius_F1_339_433_761636_peptide number 44 443.4516 0 QPAE I.claudius_F1_339_433_761636_peptide number 45 345.39150000000006 0 VVE I.claudius_F1_339_433_761636_peptide number 46 802.8281 0 YYSKNE I.claudius_F1_339_433_761636_peptide number 47 147.1293 0 E I.claudius_F1_339_433_761636_peptide number 48 1314.5539 0 LMNNIRNVVLE I.claudius_F1_339_433_761636_peptide number 49 147.1293 0 E I.claudius_F1_339_433_761636_peptide number 50 1442.6138000000003 0 QAVDAVLAKAQVTE I.claudius_F1_339_433_761636_peptide number 51 810.8486 0 KVSSFDE I.claudius_F1_339_433_761636_peptide number 52 672.7939 0 IMNPQA I.claudius_F1_340_180_764344_peptide number 1 4418.1406 0 MVKLDTSKILFICGGAFAGLDKIIDKRTQTSTSIGFNAKVE I.claudius_F1_340_180_764344_peptide number 2 390.389 0 KDE I.claudius_F1_340_180_764344_peptide number 3 818.8722000000001 0 KQQSLSE I.claudius_F1_340_180_764344_peptide number 4 2147.4923999999996 0 LFRQVEPDDLMKFGLIPE I.claudius_F1_340_180_764344_peptide number 5 1443.7522999999999 0 FIGRLPMIAPLSE I.claudius_F1_340_180_764344_peptide number 6 375.37430000000006 0 LDE I.claudius_F1_340_180_764344_peptide number 7 2829.3359 0 DALIQILTKPKNALIKQYQALFGLE I.claudius_F1_340_180_764344_peptide number 8 374.43270000000007 0 KVE I.claudius_F1_340_180_764344_peptide number 9 720.7673000000001 0 LDFTPE I.claudius_F1_340_180_764344_peptide number 10 1173.4691 0 ALKAMAKKALE I.claudius_F1_340_180_764344_peptide number 11 1442.6667 0 RKTGARGLRSIVE I.claudius_F1_340_180_764344_peptide number 12 1579.8093000000001 0 AVLLDTMYDLPSLE I.claudius_F1_340_180_764344_peptide number 13 1057.1982 0 NLQKVIVDE I.claudius_F1_340_180_764344_peptide number 14 1299.4697999999999 0 STIVDNLAPKLE I.claudius_F1_340_180_764344_peptide number 15 181.1886 0 Y I.claudius_F1_341_186_765443_peptide number 1 379.4293 0 MTE I.claudius_F1_341_186_765443_peptide number 2 147.1293 0 E I.claudius_F1_341_186_765443_peptide number 3 2147.4312 0 TTVSKKRWYVLQAFSGFE I.claudius_F1_341_186_765443_peptide number 4 1044.2060999999999 0 SRVALTLRE I.claudius_F1_341_186_765443_peptide number 5 1067.2162 0 YIKQQQME I.claudius_F1_341_186_765443_peptide number 6 594.5711 0 DQFGE I.claudius_F1_341_186_765443_peptide number 7 656.7682000000001 0 VLVPTE I.claudius_F1_341_186_765443_peptide number 8 147.1293 0 E I.claudius_F1_341_186_765443_peptide number 9 345.39150000000006 0 VVE I.claudius_F1_341_186_765443_peptide number 10 1144.2855 0 NVAGKRRKSE I.claudius_F1_341_186_765443_peptide number 11 1354.5947 0 RKFFPGYVLVE I.claudius_F1_341_186_765443_peptide number 12 278.32540000000006 0 ME I.claudius_F1_341_186_765443_peptide number 13 507.5154 0 MNDE I.claudius_F1_341_186_765443_peptide number 14 3204.7453000000005 0 TWHLVKSVPRVMGFIGGTPDKPAPISKRE I.claudius_F1_341_186_765443_peptide number 15 1044.1596 0 ADTILNRLE I.claudius_F1_341_186_765443_peptide number 16 1394.4532 0 QNTDKPRHRNE I.claudius_F1_341_186_765443_peptide number 17 601.6084000000001 0 YHPGE I.claudius_F1_341_186_765443_peptide number 18 147.1293 0 E I.claudius_F1_341_186_765443_peptide number 19 602.6811 0 VRVTE I.claudius_F1_341_186_765443_peptide number 20 1153.1978 0 GPFADFNGTVE I.claudius_F1_341_186_765443_peptide number 21 147.1293 0 E I.claudius_F1_341_186_765443_peptide number 22 524.5211 0 VDYE I.claudius_F1_341_186_765443_peptide number 23 1962.3204000000003 0 KGRLKVSVSMFGRATPVE I.claudius_F1_341_186_765443_peptide number 24 260.2869 0 LE I.claudius_F1_341_186_765443_peptide number 25 578.6148000000001 0 FGQVE I.claudius_F1_341_186_765443_peptide number 26 396.4845 0 KIH I.claudius_F1_342_130_766960_peptide number 1 972.1169000000001 0 MTQIIHTE I.claudius_F1_342_130_766960_peptide number 2 3261.6789000000003 0 KAPAAIGPYVQAVDLGNLVLTSGQIPVNPATGE I.claudius_F1_342_130_766960_peptide number 3 1496.6644 0 VPADIVAQARQSLE I.claudius_F1_342_130_766960_peptide number 4 785.9284 0 NVKAIIE I.claudius_F1_342_130_766960_peptide number 5 2922.289000000001 0 KAGLTAADIVKTTVFVKDLNDFAAVNAE I.claudius_F1_342_130_766960_peptide number 6 310.30260000000004 0 YE I.claudius_F1_342_130_766960_peptide number 7 725.8351 0 RFFKE I.claudius_F1_342_130_766960_peptide number 8 1484.5956 0 NNHPNFPARSCVE I.claudius_F1_342_130_766960_peptide number 9 1196.3964999999998 0 VARLPKDVGLE I.claudius_F1_342_130_766960_peptide number 10 260.2869 0 IE I.claudius_F1_342_130_766960_peptide number 11 656.8178 0 AIAVRK I.claudius_F1_343_192_767793_peptide number 1 3937.3676000000014 0 MPDVAIYHSPDVNAFATGATKSNSLVAVSTGLLNNMTE I.claudius_F1_343_192_767793_peptide number 2 218.2072 0 AE I.claudius_F1_343_192_767793_peptide number 3 218.2072 0 AE I.claudius_F1_343_192_767793_peptide number 4 638.7131 0 AVLAHE I.claudius_F1_343_192_767793_peptide number 5 4562.189600000001 0 ISHISNGDMVTMALLQGVLNTFVIFLSRVIATAVASSRNNNGE I.claudius_F1_343_192_767793_peptide number 6 147.1293 0 E I.claudius_F1_343_192_767793_peptide number 7 1701.9804000000004 0 TRSSGIYFLVSMVLE I.claudius_F1_343_192_767793_peptide number 8 2290.7471 0 MLFGVLASIIAMWFSRYRE I.claudius_F1_343_192_767793_peptide number 9 1407.5282000000002 0 FRADAGSASLVGKE I.claudius_F1_343_192_767793_peptide number 10 2320.7333000000003 0 KMIMALQRLQQLHEPQNLE I.claudius_F1_343_192_767793_peptide number 11 1523.7128 0 GSLNAFMINGKRSE I.claudius_F1_343_192_767793_peptide number 12 1070.2614999999998 0 LFMSHPPLE I.claudius_F1_343_192_767793_peptide number 13 544.6449 0 KRIE I.claudius_F1_343_192_767793_peptide number 14 585.6967 0 ALRNL I.claudius_F1_344_474_769430_peptide number 1 5413.409599999999 0 MCFSGTMLVPAFVALIYGDGGGKAFMQAFMLSLIAGTLLWWPCHHHKQE I.claudius_F1_344_474_769430_peptide number 2 4499.297499999999 0 LRSRDGFLIVVAFWLVLGSLATLPLLLFDSPHLTIASAVFE I.claudius_F1_344_474_769430_peptide number 3 6369.4955 0 AFSGLTTTGATVMTGLDNLPKSILFYRQFLQWLGGMGIIVLAVAIIPLLGIGGTQLYRAE I.claudius_F1_344_474_769430_peptide number 4 1713.9264999999998 0 SSGPLKDQKSLPKISE I.claudius_F1_344_474_769430_peptide number 5 10856.384400000003 0 VAKALWIIYASLTVLCAIAYWLSGMNLFDAIGHSFSTISNGGFSTHDASIGYFNQASIYWVTTIFMLIGGVNFSLHISAFLALGKRNIWRNYWKDPE I.claudius_F1_344_474_769430_peptide number 6 3457.0428 0 FRFFLTMQIIFIGIVSLSLYGYGLVSDINE I.claudius_F1_344_474_769430_peptide number 7 6909.097500000003 0 AVTKGALQLTSMSMTAGYTIFDIDNLPPFIGLLLVISAVIGGCGGSTTGGLKAIRTLILWKQIDRE I.claudius_F1_344_474_769430_peptide number 8 3016.6118000000006 0 LHSLIHPNLVQPIRIGKNRLAPRMIE I.claudius_F1_344_474_769430_peptide number 9 5446.429400000001 0 SIWAFFIIFILVYWGCVFAVILCGMNTFDAMGAVFATLTNAGPGLGFIHE I.claudius_F1_344_474_769430_peptide number 10 747.8357000000001 0 SFIGVPE I.claudius_F1_344_474_769430_peptide number 11 1772.1397000000002 0 SAKLVFSFAMICGRLE I.claudius_F1_344_474_769430_peptide number 12 1872.3183 0 MFSLIVLFIPSYWKK I.claudius_F1_345_174_776947_peptide number 1 2894.4594 0 MPIRKADKKIDITKARSGKKLTCYE I.claudius_F1_345_174_776947_peptide number 2 801.8881000000001 0 LDAKARE I.claudius_F1_345_174_776947_peptide number 3 2219.5072 0 DKKKRKHKGLASGSRHSAVE I.claudius_F1_345_174_776947_peptide number 4 147.1293 0 E I.claudius_F1_345_174_776947_peptide number 5 944.0438000000001 0 KANKLQNE I.claudius_F1_345_174_776947_peptide number 6 1892.3298 0 IKDPKIGSKKKIPLVVE I.claudius_F1_345_174_776947_peptide number 7 732.8244000000001 0 FVNKPE I.claudius_F1_345_174_776947_peptide number 8 2193.6521 0 KGQVIPVIKQVKKQDPMKE I.claudius_F1_345_174_776947_peptide number 9 260.2869 0 LE I.claudius_F1_345_174_776947_peptide number 10 374.3895 0 NLE I.claudius_F1_345_174_776947_peptide number 11 375.33450000000005 0 NNE I.claudius_F1_345_174_776947_peptide number 12 487.5471 0 ILNE I.claudius_F1_345_174_776947_peptide number 13 2293.4829000000004 0 LLDALDAGKTISKSDQQFVDE I.claudius_F1_345_174_776947_peptide number 14 834.9378 0 CLDRISE I.claudius_F1_345_174_776947_peptide number 15 391.48300000000006 0 LME I.claudius_F1_345_174_776947_peptide number 16 147.1293 0 E I.claudius_F1_345_174_776947_peptide number 17 430.49580000000003 0 LGIE I.claudius_F1_345_174_776947_peptide number 18 262.2167 0 DE I.claudius_F1_345_174_776947_peptide number 19 262.2167 0 DE I.claudius_F1_345_174_776947_peptide number 20 234.2066 0 SE I.claudius_F1_345_174_776947_peptide number 21 1058.0985 0 DDLYRTFE I.claudius_F1_345_174_776947_peptide number 22 1079.2334999999998 0 RMDINQFR I.claudius_F1_346_71_778422_peptide number 1 1856.1503 0 MLRSKMITSGDVCNATE I.claudius_F1_346_71_778422_peptide number 2 5662.6046 0 IPSVPLLTSATTSKLSSNSTSCLMPRRINGWSSINKTFSLSCIISPLVVRSPL I.claudius_F1_347_75_778922_peptide number 1 1682.9007000000001 0 MTYLLHRHQQNIE I.claudius_F1_347_75_778922_peptide number 2 7442.794100000002 0 QYNPLQQLKVPVVCLRNQTFRKQALQHHKWLFLFLKCGQFRRCSCKPHTMLVGSYRSFLYR I.claudius_F1_348_102_780314_peptide number 1 576.6635 0 MNIAE I.claudius_F1_348_102_780314_peptide number 2 786.8319000000001 0 FHQNIE I.claudius_F1_348_102_780314_peptide number 3 930.0586000000001 0 QVWQKIE I.claudius_F1_348_102_780314_peptide number 4 147.1293 0 E I.claudius_F1_348_102_780314_peptide number 5 147.1293 0 E I.claudius_F1_348_102_780314_peptide number 6 260.2869 0 LE I.claudius_F1_348_102_780314_peptide number 7 949.9391 0 NQGADVDCE I.claudius_F1_348_102_780314_peptide number 8 2992.3389000000006 0 TQGSVFTITFDNRTQIVINKQEPLLE I.claudius_F1_348_102_780314_peptide number 9 3878.2882 0 LWIASKLGGFHFAFKNGDWVSNDGQRFWDCFVE I.claudius_F1_348_102_780314_peptide number 10 657.6965 0 ACAAHGE I.claudius_F1_348_102_780314_peptide number 11 506.5521 0 NVQF I.claudius_F1_349_394_781299_peptide number 1 278.32540000000006 0 ME I.claudius_F1_349_394_781299_peptide number 2 2853.3029000000006 0 QLTRFVLAQKGKSGIIYCNSRNKVE I.claudius_F1_349_394_781299_peptide number 3 487.55050000000006 0 RIAE I.claudius_F1_349_394_781299_peptide number 4 1761.9561000000003 0 SLRNKGVSAAAYHAGME I.claudius_F1_349_394_781299_peptide number 5 588.6544 0 TAIRE I.claudius_F1_349_394_781299_peptide number 6 4803.420300000001 0 RVQQDFQRDNVQVVVATIAFGMGINKSNVRFVAHFDLPRSIE I.claudius_F1_349_394_781299_peptide number 7 688.6824 0 SYYQE I.claudius_F1_349_394_781299_peptide number 8 1257.3106 0 TGRAGRDDLPAE I.claudius_F1_349_394_781299_peptide number 9 2282.6306 0 AVLFYEPADYAWLQKILLE I.claudius_F1_349_394_781299_peptide number 10 372.4168000000001 0 KPE I.claudius_F1_349_394_781299_peptide number 11 870.9501 0 TPQRQIE I.claudius_F1_349_394_781299_peptide number 12 653.7277 0 QHKLE I.claudius_F1_349_394_781299_peptide number 13 388.41610000000003 0 AIGE I.claudius_F1_349_394_781299_peptide number 14 365.38110000000006 0 FAE I.claudius_F1_349_394_781299_peptide number 15 1799.059 0 SQTCRRLVLLNYFGE I.claudius_F1_349_394_781299_peptide number 16 6589.6112 0 HRQTPCNNCDICLDPPKKYDGLVDAQKVMSTIYRVGQCFGAHYVIAVLRGMHNQKIIE I.claudius_F1_349_394_781299_peptide number 17 2110.3761999999997 0 RQHHKLSVYGIGKDKSKE I.claudius_F1_349_394_781299_peptide number 18 2517.8814 0 HWQSVIRQLIHLGFVQQVISE I.claudius_F1_349_394_781299_peptide number 19 1028.1569 0 LNPTLQLTE I.claudius_F1_349_394_781299_peptide number 20 944.1266999999999 0 SAKVILKGE I.claudius_F1_349_394_781299_peptide number 21 486.51610000000005 0 EPLE I.claudius_F1_349_394_781299_peptide number 22 4980.754100000001 0 LAMPRISAISKIAHNPQRQGVANYDKDLFARLRFLRKQIADKE I.claudius_F1_349_394_781299_peptide number 23 1733.9144000000001 0 NIPPYIVFNDATLQE I.claudius_F1_349_394_781299_peptide number 24 1284.4585 0 MAQYMPTSNIE I.claudius_F1_349_394_781299_peptide number 25 1401.6708999999998 0 MLQINGVGSIKLE I.claudius_F1_349_394_781299_peptide number 26 1436.6769000000002 0 RFGQPFMALIQE I.claudius_F1_349_394_781299_peptide number 27 1308.4002 0 HKAILANAQNND I.claudius_F1_350_238_789054_peptide number 1 1706.9156 0 MKHSYFISDLHLSE I.claudius_F1_350_238_789054_peptide number 2 473.47760000000005 0 TQPE I.claudius_F1_350_238_789054_peptide number 3 1908.1783000000003 0 LTALFVDFMQNLAPQAE I.claudius_F1_350_238_789054_peptide number 4 2087.2862 0 RLYILGDLFDFWIGDDE I.claudius_F1_350_238_789054_peptide number 5 4025.5020999999992 0 QSALIQQVKDLIKFVSDQGVQCYFQHGNRDFLIGE I.claudius_F1_350_238_789054_peptide number 6 665.7385 0 RFSKE I.claudius_F1_350_238_789054_peptide number 7 3622.1243999999992 0 TGAQLLPDYQLITLYDKKILLCHGDTLCIDDE I.claudius_F1_350_238_789054_peptide number 8 3909.699900000001 0 AYQQFRRRVHQKWLQRLFLCLPLKVRVIIAE I.claudius_F1_350_238_789054_peptide number 9 1859.0498 0 KIRAKSNQDKQAKSQE I.claudius_F1_350_238_789054_peptide number 10 1238.3669 0 IMDVNQAFTAE I.claudius_F1_350_238_789054_peptide number 11 502.56190000000004 0 KVQE I.claudius_F1_350_238_789054_peptide number 12 1629.8198000000002 0 FGVNLLIHGHTHRE I.claudius_F1_350_238_789054_peptide number 13 724.7625 0 AIHQQE I.claudius_F1_350_238_789054_peptide number 14 147.1293 0 E I.claudius_F1_350_238_789054_peptide number 15 2555.9478 0 FTRIVLGDWRKNYASILKMDE I.claudius_F1_350_238_789054_peptide number 16 291.25790000000006 0 SGE I.claudius_F1_350_238_789054_peptide number 17 725.8317000000001 0 FGFIKD I.claudius_F1_351_485_793024_peptide number 1 2279.8074 0 MLMAAMRLNIPTIFVSGGPME I.claudius_F1_351_485_793024_peptide number 2 2329.7120999999997 0 AGKTKLSDQLIRLDLVDAMIE I.claudius_F1_351_485_793024_peptide number 3 916.8861000000002 0 AADPNVSDE I.claudius_F1_351_485_793024_peptide number 4 715.7955000000001 0 RIDAIE I.claudius_F1_351_485_793024_peptide number 5 2471.81 0 RSACPTCGSCSGMFTANSMNCLTE I.claudius_F1_351_485_793024_peptide number 6 2138.4044 0 ALGLSLPGNGSMLATHADRKE I.claudius_F1_351_485_793024_peptide number 7 1273.5235 0 LFLKAGRQIVE I.claudius_F1_351_485_793024_peptide number 8 974.1344000000001 0 LCKRYYE I.claudius_F1_351_485_793024_peptide number 9 1968.0813000000003 0 QDDASVLPRSIGTFDAFE I.claudius_F1_351_485_793024_peptide number 10 2514.8296 0 NAMSLDIAMGGSSNTVLHLLAAAQE I.claudius_F1_351_485_793024_peptide number 11 896.0193 0 AGVDFKME I.claudius_F1_351_485_793024_peptide number 12 2929.3775 0 DIDRLSRKVPCLSKIAPNTNKYHME I.claudius_F1_351_485_793024_peptide number 13 1424.6248 0 DVHRAGGIMGLLGE I.claudius_F1_351_485_793024_peptide number 14 2280.6265000000003 0 LDRAGLIHKNTHTVLGMSMGE I.claudius_F1_351_485_793024_peptide number 15 1649.7134999999998 0 QLDQYDIIRNQDE I.claudius_F1_351_485_793024_peptide number 16 147.1293 0 E I.claudius_F1_351_485_793024_peptide number 17 4624.1017 0 LHKFFRAGPAGIRTTQAFSQDCRWDTVDNDRVNGCIRNKE I.claudius_F1_351_485_793024_peptide number 18 660.6739 0 NAISQE I.claudius_F1_351_485_793024_peptide number 19 1160.3194 0 GGLAVLFGNLAE I.claudius_F1_351_485_793024_peptide number 20 1206.3235 0 DGCIVKTAGVDE I.claudius_F1_351_485_793024_peptide number 21 1498.7198999999998 0 SIWKFTGTAIVFE I.claudius_F1_351_485_793024_peptide number 22 362.33580000000006 0 SQE I.claudius_F1_351_485_793024_peptide number 23 1256.4484 0 DAVAGILGGKVKE I.claudius_F1_351_485_793024_peptide number 24 1071.2298 0 GHVVVIRYE I.claudius_F1_351_485_793024_peptide number 25 957.0625 0 GPKGGPGMQE I.claudius_F1_351_485_793024_peptide number 26 4160.7914 0 MLYPTSYLKSMGLGKKCALLTDGRFSGGTSGLSIGHVSPE I.claudius_F1_351_485_793024_peptide number 27 2847.1871000000006 0 AASGGAIGLVRNGDIINIDIPNRAINLE I.claudius_F1_351_485_793024_peptide number 28 461.46680000000003 0 ISNE I.claudius_F1_351_485_793024_peptide number 29 147.1293 0 E I.claudius_F1_351_485_793024_peptide number 30 815.9180000000001 0 LATRRAE I.claudius_F1_351_485_793024_peptide number 31 1456.5192 0 QDQKGWQPANRE I.claudius_F1_351_485_793024_peptide number 32 303.31500000000005 0 RE I.claudius_F1_351_485_793024_peptide number 33 2907.3687000000004 0 VSFALKVFGHFATSADKGAVRDKTLLK I.claudius_F1_352_50_797852_peptide number 1 5476.431200000001 0 MAAISTRGLPSRTIRTLIISNAHLMIVRVRKPRKSNFTSPAYSTSFLSK I.claudius_F1_353_67_799032_peptide number 1 1595.9013 0 MVNHNVLLISTLLE I.claudius_F1_353_67_799032_peptide number 2 6326.493900000002 0 CNVLHLGDLYDLMLNKNDRQKILGKKRPHFQFRLRFLSTIFYPHRLAFPLIK I.claudius_F1_354_551_799856_peptide number 1 706.8484000000001 0 MTTLLE I.claudius_F1_354_551_799856_peptide number 2 1522.5739999999998 0 VAQHWLNQDPDAE I.claudius_F1_354_551_799856_peptide number 3 475.4968 0 TRAE I.claudius_F1_354_551_799856_peptide number 4 1543.7175 0 LTALLDAAKGGDKAAE I.claudius_F1_354_551_799856_peptide number 5 218.2072 0 AE I.claudius_F1_354_551_799856_peptide number 6 4270.858800000001 0 LHARFDGRLQFGTAGLRGRLQAGSMGMNRVLVSQAAGGLAE I.claudius_F1_354_551_799856_peptide number 7 3407.6960000000004 0 YLKGYDKEPSIVIGYDGRKNSDVFARDTAE I.claudius_F1_354_551_799856_peptide number 8 4674.4421999999995 0 IMAGAGVKAYLLPRKLPTPVLAYAIQYFDTTAGVMVTASHNPPE I.claudius_F1_354_551_799856_peptide number 9 5475.983800000001 0 DNGYKVYLGKANGGGQIVSPADKDIAALIDKVAAGNIQDLPRSDNYVVLNDE I.claudius_F1_354_551_799856_peptide number 10 3594.0303 0 VVDAYITKTASLAKEPACDINYVYTAMHGVGYE I.claudius_F1_354_551_799856_peptide number 11 3871.354100000002 0 VLSKTLAKAGLPQPHVVADQVWPDGTFPTVNFPNPE I.claudius_F1_354_551_799856_peptide number 12 147.1293 0 E I.claudius_F1_354_551_799856_peptide number 13 1355.6225000000002 0 KGALDLAIKVAKE I.claudius_F1_354_551_799856_peptide number 14 460.48210000000006 0 KNAE I.claudius_F1_354_551_799856_peptide number 15 6576.386900000002 0 FIIANDPDADRLAVAVPDAQGNWKSLHGNVVGCFLGWYLAKQYQGKQGTLACSLVSSPALAE I.claudius_F1_354_551_799856_peptide number 16 1200.3404 0 IAKKYSFQSE I.claudius_F1_354_551_799856_peptide number 17 147.1293 0 E I.claudius_F1_354_551_799856_peptide number 18 2077.4207 0 TLTGFKYIGKVSGLLFGFE I.claudius_F1_354_551_799856_peptide number 19 147.1293 0 E I.claudius_F1_354_551_799856_peptide number 20 4735.351300000001 0 ALGYLVDPDKVRDKDGISAAIVFLDLVRNLKKQGKTLADYADE I.claudius_F1_354_551_799856_peptide number 21 523.5794000000001 0 FTKE I.claudius_F1_354_551_799856_peptide number 22 1928.1035000000002 0 FGAYVSGQISIRVSDLSE I.claudius_F1_354_551_799856_peptide number 23 1624.9027999999998 0 IGKLMTALRNNPPAE I.claudius_F1_354_551_799856_peptide number 24 3070.4971000000005 0 IAGVKVAQFIDHIKTDRQSDILVFNLE I.claudius_F1_354_551_799856_peptide number 25 3955.4374000000003 0 NGGRLIARPSGTEPKIKFYLDARGKDPKDADRVLAE I.claudius_F1_354_551_799856_peptide number 26 409.39060000000006 0 FDE I.claudius_F1_354_551_799856_peptide number 27 1859.0745 0 GVRHILRQDAYGKQDC I.claudius_F1_355_350_803248_peptide number 1 5994.884300000002 0 MKLTKLALCTLFGLGVSIANAADLPNITILATGGTIAGSGQSSVNSAYKAGQLSIDTLIE I.claudius_F1_355_350_803248_peptide number 2 414.4535000000001 0 AVPE I.claudius_F1_355_350_803248_peptide number 3 1117.3195999999998 0 MKNIANIKGE I.claudius_F1_355_350_803248_peptide number 4 1476.6084 0 QIVKIGSQDMNDE I.claudius_F1_355_350_803248_peptide number 5 3178.6367 0 VWLKLAKAINAQCKSTDGFVITHGTDTME I.claudius_F1_355_350_803248_peptide number 6 147.1293 0 E I.claudius_F1_355_350_803248_peptide number 7 1402.6111 0 TAYFLDLTVKCE I.claudius_F1_355_350_803248_peptide number 8 1467.7757000000001 0 KPVVLVGAMRPATE I.claudius_F1_355_350_803248_peptide number 9 3388.8053000000004 0 KSADGPLNLYNAVVVAADKKSSGRGVLVAMNNE I.claudius_F1_355_350_803248_peptide number 10 4057.3920000000007 0 VLGARDVTKTSTTAVQTFHSPNYGSLGYIHNSKVDYE I.claudius_F1_355_350_803248_peptide number 11 487.50750000000005 0 RSPE I.claudius_F1_355_350_803248_peptide number 12 1386.5089999999998 0 SKHTINTPFNVE I.claudius_F1_355_350_803248_peptide number 13 5378.014500000002 0 KLDSLPKVGIIYAYSNAPVEPLNALLNAGYQGIVSAGVGNGNVNAAHLDRLE I.claudius_F1_355_350_803248_peptide number 14 2692.9784000000004 0 KAAKDSVVVVRSSRVPTGYTTRDAE I.claudius_F1_355_350_803248_peptide number 15 4514.097199999999 0 VDDSKYGFVASGTLNPQKARVLLQLALTQTKD-KVIQQYFE I.claudius_F1_355_350_803248_peptide number 16 280.27660000000003 0 DF I.claudius_F1_356_141_805353_peptide number 1 2658.1456 0 MRAVIAIFGIAWLGDTLMQAHITE I.claudius_F1_356_141_805353_peptide number 2 374.43270000000007 0 VKE I.claudius_F1_356_141_805353_peptide number 3 774.9688000000001 0 MVKGLVE I.claudius_F1_356_141_805353_peptide number 4 11219.306600000007 0 TAPWAFAFALFVLSVLVNSQGATVATLFPLGIALGIPAPVLIGVFVAVNGYFFIPNYGPIIASLDFDTTGTTKIGKYILNHSFMLPGLLSMFFCLLIGLGLSHVIL I.claudius_F1_357_197_806723_peptide number 1 1451.6652000000001 0 MGTNVQLNTMITE I.claudius_F1_357_197_806723_peptide number 2 1343.4395000000004 0 AQPNTLITKDGGE I.claudius_F1_357_197_806723_peptide number 3 2689.0273 0 IKADLIVWAAGVRASTVTQQFDGLE I.claudius_F1_357_197_806723_peptide number 4 6583.575100000003 0 INRINQLVVKDTLQTTVDDSIFAIGDCAALIQSNGKLVPPRAQAAHQMAKACAKNIFALFE I.claudius_F1_357_197_806723_peptide number 5 9558.232900000006 0 NKPLKSFKYNDKGTLVSLSNFTALGSLTNKFGKNPLTVQGKFAQFAYVSLYRMHQHALHGCIKIGLIILVDKLNRYLKPRLKLH I.claudius_F1_358_208_810080_peptide number 1 1229.4098000000001 0 MRPLTARQQE I.claudius_F1_358_208_810080_peptide number 2 1235.4755 0 VLDLLKRHLE I.claudius_F1_358_208_810080_peptide number 3 1060.1824 0 TTGMPPTRAE I.claudius_F1_358_208_810080_peptide number 4 503.5499 0 ISRE I.claudius_F1_358_208_810080_peptide number 5 1007.098 0 LGFKSANAAE I.claudius_F1_358_208_810080_peptide number 6 147.1293 0 E I.claudius_F1_358_208_810080_peptide number 7 1322.5561000000002 0 HLKALSRKGAIE I.claudius_F1_358_208_810080_peptide number 8 2027.1962999999996 0 IIPGASRGIRILDNSSNDE I.claudius_F1_358_208_810080_peptide number 9 2009.3087 0 FDGLPLVGRVRAGEPILAE I.claudius_F1_358_208_810080_peptide number 10 525.5554000000001 0 QHIE I.claudius_F1_358_208_810080_peptide number 11 6092.997900000001 0 ATYRVDADMFKPQADFLLKVYGLSMKNVGILDGDLLAVHSTKDVRNGQIVVARIE I.claudius_F1_358_208_810080_peptide number 12 262.2167 0 DE I.claudius_F1_358_208_810080_peptide number 13 844.0110000000001 0 VTVKRLE I.claudius_F1_358_208_810080_peptide number 14 1258.4658 0 KKGSIIYLHAE I.claudius_F1_358_208_810080_peptide number 15 261.2319 0 NE I.claudius_F1_358_208_810080_peptide number 16 147.1293 0 E I.claudius_F1_358_208_810080_peptide number 17 1045.1858 0 FDPIVVNLE I.claudius_F1_358_208_810080_peptide number 18 147.1293 0 E I.claudius_F1_358_208_810080_peptide number 19 664.7073 0 QKNFE I.claudius_F1_358_208_810080_peptide number 20 260.2869 0 IE I.claudius_F1_358_208_810080_peptide number 21 1414.6745 0 GIAVGIIRNNAWM I.claudius_F1_359_1162_813443_peptide number 1 391.48300000000006 0 MLE I.claudius_F1_359_1162_813443_peptide number 2 711.7638000000001 0 TVLNHE I.claudius_F1_359_1162_813443_peptide number 3 248.23319999999998 0 TE I.claudius_F1_359_1162_813443_peptide number 4 2912.2971000000007 0 AALLFTQQEPKALTTIDILNGGRQALE I.claudius_F1_359_1162_813443_peptide number 5 1413.5292 0 QANIALGLALADDE I.claudius_F1_359_1162_813443_peptide number 6 768.8748 0 MDYLVE I.claudius_F1_359_1162_813443_peptide number 7 1504.6434 0 SFTALKRNPQDVE I.claudius_F1_359_1162_813443_peptide number 8 1173.2951 0 LYMFAQANSE I.claudius_F1_359_1162_813443_peptide number 9 3792.3930000000005 0 HCRHKIFNADWIIDGKKQDKSLFKMIKNTFE I.claudius_F1_359_1162_813443_peptide number 10 1999.2014 0 QTPDFVLSAYKDNAAVME I.claudius_F1_359_1162_813443_peptide number 11 2358.5264 0 GSKVGRWFPDPDGQYRVHQE I.claudius_F1_359_1162_813443_peptide number 12 1083.3018000000002 0 DVHILMKVE I.claudius_F1_359_1162_813443_peptide number 13 2006.0928000000004 0 THNHPTAISPFPGAATGSGGE I.claudius_F1_359_1162_813443_peptide number 14 531.5600000000001 0 IRDE I.claudius_F1_359_1162_813443_peptide number 15 2689.0306000000005 0 GATGRGAKPKAGLTGFSVSNLVIPNFE I.claudius_F1_359_1162_813443_peptide number 16 558.5836 0 QPWE I.claudius_F1_359_1162_813443_peptide number 17 3040.4064000000003 0 NPLSKPNRIASALDIMIDAPLGSAAFNNE I.claudius_F1_359_1162_813443_peptide number 18 1689.9099 0 FGRPALLGYFRTYE I.claudius_F1_359_1162_813443_peptide number 19 147.1293 0 E I.claudius_F1_359_1162_813443_peptide number 20 979.088 0 KVNSFAGKE I.claudius_F1_359_1162_813443_peptide number 21 2138.4954000000002 0 VRGYHKPIMLAGGIGNIRGE I.claudius_F1_359_1162_813443_peptide number 22 687.7424000000001 0 QVQKGE I.claudius_F1_359_1162_813443_peptide number 23 3171.687000000001 0 IPIGAKLIVLGGAAMNIGLGGGAASSMDSGKSKE I.claudius_F1_359_1162_813443_peptide number 24 1179.2368000000001 0 DLDFASVQRE I.claudius_F1_359_1162_813443_peptide number 25 358.34710000000007 0 NPE I.claudius_F1_359_1162_813443_peptide number 26 278.32540000000006 0 ME I.claudius_F1_359_1162_813443_peptide number 27 690.7728000000001 0 RRCQE I.claudius_F1_359_1162_813443_peptide number 28 1218.382 0 VIDRCWQLGE I.claudius_F1_359_1162_813443_peptide number 29 147.1293 0 E I.claudius_F1_359_1162_813443_peptide number 30 2052.3100999999997 0 NPILFIHDVGAGGLSNAMPE I.claudius_F1_359_1162_813443_peptide number 31 2258.5563 0 LVHDGKRGGKFDLRSILCDE I.claudius_F1_359_1162_813443_peptide number 32 760.8991000000001 0 KGMSPLE I.claudius_F1_359_1162_813443_peptide number 33 663.7423000000001 0 IWCNE I.claudius_F1_359_1162_813443_peptide number 34 362.33580000000006 0 SQE I.claudius_F1_359_1162_813443_peptide number 35 1017.1791000000001 0 RYVLAVAPE I.claudius_F1_359_1162_813443_peptide number 36 374.3895 0 NLE I.claudius_F1_359_1162_813443_peptide number 37 795.9431000000002 0 LFTALCE I.claudius_F1_359_1162_813443_peptide number 38 303.31500000000005 0 RE I.claudius_F1_359_1162_813443_peptide number 39 959.0999 0 RAPFAVIGE I.claudius_F1_359_1162_813443_peptide number 40 518.5182000000001 0 ATQAE I.claudius_F1_359_1162_813443_peptide number 41 3597.129900000001 0 HLILHDSHFDNNPIDLPMNVLLGKTPKMTRE I.claudius_F1_359_1162_813443_peptide number 42 774.9026000000001 0 VLSKTVE I.claudius_F1_359_1162_813443_peptide number 43 830.9259000000001 0 NQSLKIE I.claudius_F1_359_1162_813443_peptide number 44 716.8233 0 SIQLKE I.claudius_F1_359_1162_813443_peptide number 45 1506.7934000000002 0 AFHRVLRLPVVAE I.claudius_F1_359_1162_813443_peptide number 46 4850.442200000001 0 KTFLITIGDRSVTGMVARDQMVGPWQIPVSDVAVTTASLDSYHGE I.claudius_F1_359_1162_813443_peptide number 47 590.6901 0 AMAIGE I.claudius_F1_359_1162_813443_peptide number 48 1973.2336 0 RSPVALLDFSASARLAVAE I.claudius_F1_359_1162_813443_peptide number 49 1172.3285 0 AITNIAGTLIGE I.claudius_F1_359_1162_813443_peptide number 50 2088.4136000000003 0 MKRIKLSANWMSAAGHTGE I.claudius_F1_359_1162_813443_peptide number 51 666.6768000000001 0 DAGLYE I.claudius_F1_359_1162_813443_peptide number 52 672.7709000000001 0 AVKAVGE I.claudius_F1_359_1162_813443_peptide number 53 147.1293 0 E I.claudius_F1_359_1162_813443_peptide number 54 2878.3439 0 LCPALGLTIPVGKDSMSMKTTWIDNGE I.claudius_F1_359_1162_813443_peptide number 55 2016.3412 0 QKSVTAPLSLVISAFARVE I.claudius_F1_359_1162_813443_peptide number 56 2916.3289999999997 0 DVRKTLTPQLRTDKGFSSLLLIDLGE I.claudius_F1_359_1162_813443_peptide number 57 4758.417800000001 0 GHNRLGATALAQVYKQLGDKPADVVKVQRLKDFYNAMQTLVAE I.claudius_F1_359_1162_813443_peptide number 58 2188.3936 0 DKLLAYHDRSDGGLITTLAE I.claudius_F1_359_1162_813443_peptide number 59 1021.171 0 MAFAGHCGVE I.claudius_F1_359_1162_813443_peptide number 60 1804.9476000000002 0 VDISALGDNDLAVLFNE I.claudius_F1_359_1162_813443_peptide number 61 147.1293 0 E I.claudius_F1_359_1162_813443_peptide number 62 1342.4945000000002 0 LGAVIQVADSQLE I.claudius_F1_359_1162_813443_peptide number 63 489.52340000000004 0 SVRE I.claudius_F1_359_1162_813443_peptide number 64 2661.020400000001 0 VLKAHNLLGIIHQLGTVTADDRFE I.claudius_F1_359_1162_813443_peptide number 65 1260.3989 0 ISRGSHKLFSE I.claudius_F1_359_1162_813443_peptide number 66 518.5646 0 KRSE I.claudius_F1_359_1162_813443_peptide number 67 873.9953 0 LRSIWAE I.claudius_F1_359_1162_813443_peptide number 68 1663.8527999999997 0 LTYQMQRLRDNPE I.claudius_F1_359_1162_813443_peptide number 69 321.3501 0 CAE I.claudius_F1_359_1162_813443_peptide number 70 275.2585 0 QE I.claudius_F1_359_1162_813443_peptide number 71 294.30320000000006 0 FE I.claudius_F1_359_1162_813443_peptide number 72 2225.4106 0 AKKNPDDKGLSAFLTYDVNE I.claudius_F1_359_1162_813443_peptide number 73 2196.5879 0 DITAPFINKGVKPTIAILRE I.claudius_F1_359_1162_813443_peptide number 74 932.9334 0 QGVNSHYE I.claudius_F1_359_1162_813443_peptide number 75 3193.6380000000004 0 MAAAFDRAGFNAIDVHMSDLMIGRRNLAE I.claudius_F1_359_1162_813443_peptide number 76 3514.9828000000007 0 FNAMVACGGFSYGDVLGAGGGWAKSILFNPKLHE I.claudius_F1_359_1162_813443_peptide number 77 3090.5081000000005 0 QFSQFFINPNTLTLGVCNGCQMISNLAE I.claudius_F1_359_1162_813443_peptide number 78 628.7149000000001 0 IIPGTE I.claudius_F1_359_1162_813443_peptide number 79 1413.5392 0 NWPHFVRNKSE I.claudius_F1_359_1162_813443_peptide number 80 450.48890000000006 0 RFE I.claudius_F1_359_1162_813443_peptide number 81 1128.3225 0 ARVSLVKINE I.claudius_F1_359_1162_813443_peptide number 82 2285.5569 0 VDSVWFAGMAGSHMPIAVSHGE I.claudius_F1_359_1162_813443_peptide number 83 1021.1677999999999 0 GQVKFKSVE I.claudius_F1_359_1162_813443_peptide number 84 2506.7213 0 QFAGLKAQGIIAAQYIDNNGSPTE I.claudius_F1_359_1162_813443_peptide number 85 1148.1796 0 LYPANPNGSSE I.claudius_F1_359_1162_813443_peptide number 86 2136.4946 0 GITAITNLDGRVAIMMPHPE I.claudius_F1_359_1162_813443_peptide number 87 1584.7363000000003 0 RVFRAVSNSWHPE I.claudius_F1_359_1162_813443_peptide number 88 548.5457 0 NWTE I.claudius_F1_359_1162_813443_peptide number 89 1870.2081 0 DGAWMRLFRNARMVF I.claudius_F1_360_55_820484_peptide number 1 1329.605 0 MFVFLQLFGVE I.claudius_F1_360_55_820484_peptide number 2 2220.6971000000003 0 QVPLFHVFLVRALLVQLVE I.claudius_F1_360_55_820484_peptide number 3 522.5482000000001 0 FLDE I.claudius_F1_360_55_820484_peptide number 4 2386.8675 0 VLVRLLLVYSIYLDLGLNFY I.claudius_F1_361_191_823163_peptide number 1 3922.7055 0 MMDIGAMVCMRTKPKCDLCPLNIDCLAYKNTNWE I.claudius_F1_361_191_823163_peptide number 2 1499.8621999999998 0 KFPAKKPKKAMPE I.claudius_F1_361_191_823163_peptide number 3 1957.3368 0 KTTYFLILSKNGKVCLE I.claudius_F1_361_191_823163_peptide number 4 431.4442 0 QRE I.claudius_F1_361_191_823163_peptide number 5 1701.8972 0 NSGLWGGLFCFPQFE I.claudius_F1_361_191_823163_peptide number 6 1387.5367 0 DKSSLLHFLAQE I.claudius_F1_361_191_823163_peptide number 7 903.9784000000001 0 KVTHYQE I.claudius_F1_361_191_823163_peptide number 8 2637.9041 0 WPSFRHTFSHFHLDIHPIYAE I.claudius_F1_361_191_823163_peptide number 9 278.32540000000006 0 ME I.claudius_F1_361_191_823163_peptide number 10 650.7421 0 STLCVE I.claudius_F1_361_191_823163_peptide number 11 1389.5791 0 QANLDWRKVME I.claudius_F1_361_191_823163_peptide number 12 463.4828 0 STKE I.claudius_F1_361_191_823163_peptide number 13 5204.847900000002 0 YQSNLSSAVKYWYDPQNPEPIGLAQPVKNLLIQFVRNHYGKNSIL I.claudius_F1_362_253_824315_peptide number 1 8511.5824 0 MGADAKGIDLFASGDVPISSRPFLLGQVVDHQGQHIANQVIASNFATYLIQNKLQTRRLQNGHTVQFVSVPMIANHVE I.claudius_F1_362_253_824315_peptide number 2 2516.9416 0 VRARKYLPLIRKAAQRYGIDE I.claudius_F1_362_253_824315_peptide number 3 1104.3174999999999 0 SLILGIMQTE I.claudius_F1_362_253_824315_peptide number 4 12121.52230000001 0 SSFNPYAISYANAIGLMQVVPHTAGRDVFAMKGKGGQPSTRYLYDPANNIDAGVSYLWILQNQYLDGITNPTSKRFAMISAYNSGAGAVLRVFDNDKDTAIYKINQMYPE I.claudius_F1_362_253_824315_peptide number 5 4000.658600000001 0 QVYRILTTVHPSSQARNYLLKVDKAQKKFRVRR I.claudius_F1_363_161_828010_peptide number 1 2085.5107000000003 0 MAKLIRYGSGIVCLCITDE I.claudius_F1_363_161_828010_peptide number 2 1428.6765 0 RCQQLDLPPMVE I.claudius_F1_363_161_828010_peptide number 3 1674.8093 0 HNNSVNKTAFTVTIE I.claudius_F1_363_161_828010_peptide number 4 5648.271900000001 0 AAKGVSTGVSAADRVTTIQTAIADNAVLTDLHRPGHVFPLRAANGGVLTRRGHTE I.claudius_F1_363_161_828010_peptide number 5 1376.5572 0 ASVDLARLAGFKE I.claudius_F1_363_161_828010_peptide number 6 590.6901 0 AGVICE I.claudius_F1_363_161_828010_peptide number 7 1390.4762 0 ITNDDGTMARAPE I.claudius_F1_363_161_828010_peptide number 8 359.418 0 IVE I.claudius_F1_363_161_828010_peptide number 9 1502.7517000000003 0 FAKKFGYSVLTIE I.claudius_F1_363_161_828010_peptide number 10 474.5054 0 DLVE I.claudius_F1_363_161_828010_peptide number 11 886.0092999999999 0 YRLAHNI I.claudius_F1_364_114_829014_peptide number 1 2419.8150000000005 0 MTVKQSGCAGYTVTAKGAKYLLE I.claudius_F1_364_114_829014_peptide number 2 1886.1928 0 LVKNKPLDVAVDSLVFE I.claudius_F1_364_114_829014_peptide number 3 3662.1304000000005 0 DFLHFKDYKIVQLSPGICVQDFVLHPDNPFE I.claudius_F1_364_114_829014_peptide number 4 562.5707 0 SSLQE I.claudius_F1_364_114_829014_peptide number 5 1852.0206999999998 0 GRDRVHGNQRKSSILE I.claudius_F1_364_114_829014_peptide number 6 630.7341 0 KIKNE I.claudius_F1_364_114_829014_peptide number 7 1910.3748000000003 0 FGRVKIKMFGKQVPFK I.claudius_F1_365_202_831172_peptide number 1 2405.8149 0 MVGVNGVGKTTTIGKLARKFQAE I.claudius_F1_365_202_831172_peptide number 2 1794.0378 0 GKSVMLAAGDTFRAAAVE I.claudius_F1_365_202_831172_peptide number 3 858.9376000000001 0 QLQVWGE I.claudius_F1_365_202_831172_peptide number 4 5440.991100000001 0 RNHIPVVAQSTGSDSASVIFDAMQSAAARNIDILIADTAGRLQNKNNLMDE I.claudius_F1_365_202_831172_peptide number 5 1650.0384 0 LKKIVRVMKKYDE I.claudius_F1_365_202_831172_peptide number 6 553.5656 0 TAPHE I.claudius_F1_365_202_831172_peptide number 7 2335.632 0 IMLTLDAGTGQNAISQAKLFNE I.claudius_F1_365_202_831172_peptide number 8 3990.6436000000003 0 AVGLTGISLTKLDGTAKGGVIFAIADQFKLPIRYIGVGE I.claudius_F1_365_202_831172_peptide number 9 388.4592 0 KIE I.claudius_F1_365_202_831172_peptide number 10 531.5600000000001 0 DLRE I.claudius_F1_365_202_831172_peptide number 11 607.6560000000001 0 FNAKE I.claudius_F1_365_202_831172_peptide number 12 407.46080000000006 0 FIE I.claudius_F1_365_202_831172_peptide number 13 714.8091000000001 0 ALFVHE I.claudius_F1_365_202_831172_peptide number 14 147.1293 0 E I.claudius_F1_365_202_831172_peptide number 15 147.1293 0 E I.claudius_F1_366_311_832462_peptide number 1 7465.6473000000005 0 MSRSTDASVFVQTAYTLRAVWADLWQRKFGTLLTILVIAVSLTIPTVSYLMWKNLHLATTQFYPE I.claudius_F1_366_311_832462_peptide number 2 234.2066 0 SE I.claudius_F1_366_311_832462_peptide number 3 1330.5284 0 LTIYLHKNLSE I.claudius_F1_366_311_832462_peptide number 4 147.1293 0 E I.claudius_F1_366_311_832462_peptide number 5 757.8322000000001 0 NANLVVE I.claudius_F1_366_311_832462_peptide number 6 1085.258 0 KIRQQKGVE I.claudius_F1_366_311_832462_peptide number 7 1095.1634000000001 0 SLNYVSRQE I.claudius_F1_366_311_832462_peptide number 8 475.53650000000005 0 SLKE I.claudius_F1_366_311_832462_peptide number 9 1044.1164999999999 0 FKSWSGFGE I.claudius_F1_366_311_832462_peptide number 10 147.1293 0 E I.claudius_F1_366_311_832462_peptide number 11 260.2869 0 LE I.claudius_F1_366_311_832462_peptide number 12 1920.2074 0 ILDDNPLPAVVIVKPTSE I.claudius_F1_366_311_832462_peptide number 13 594.6142 0 FNVSE I.claudius_F1_366_311_832462_peptide number 14 546.5747 0 KRDE I.claudius_F1_366_311_832462_peptide number 15 1512.7531000000001 0 LRTNLNKIKGVQE I.claudius_F1_366_311_832462_peptide number 16 1177.2871 0 VRLDNDWME I.claudius_F1_366_311_832462_peptide number 17 11971.027100000012 0 KLTALSWLIAHVAIFCTVLMTIAVFLVIGNSIRSDVYSSRSSIDVMKLLGATDQFILRPYLYTGMIYALLGGLVAAIFSSFIISYFTSAVKYVTDIFAVQFSLNGLGVGE I.claudius_F1_366_311_832462_peptide number 18 3159.9164000000005 0 FVFLLVCCLIMGYVGAWIAATRHIAMME I.claudius_F1_366_311_832462_peptide number 19 431.4873 0 RKE I.claudius_F1_367_118_835697_peptide number 1 2446.88 0 MIQAIEPINVTKTTPCAGVFAIE I.claudius_F1_367_118_835697_peptide number 2 430.4959 0 AIVE I.claudius_F1_367_118_835697_peptide number 3 960.1127 0 RNLRICGE I.claudius_F1_367_118_835697_peptide number 4 7639.984300000003 0 VARALPVTTINAICIPKPSKFQKPLPHILTKSTGVLSVNPQAQMNVTKVSNTAKISGSGRYLLTNVVIKRE I.claudius_F1_367_118_835697_peptide number 5 1212.4818 0 TRLIIIQVLSG I.claudius_F1_368_310_837584_peptide number 1 5562.4939 0 MAVLRGVKMMDIRHLRYFVSIVDNDFNLSRASQNLYVSQPALSMMITE I.claudius_F1_368_310_837584_peptide number 2 294.30320000000006 0 FE I.claudius_F1_368_310_837584_peptide number 3 417.4176 0 NRE I.claudius_F1_368_310_837584_peptide number 4 2163.5181000000002 0 NIQIFKRASGKIIGLTFAGE I.claudius_F1_368_310_837584_peptide number 5 1058.1018000000001 0 NYYRDAKE I.claudius_F1_368_310_837584_peptide number 6 6356.545100000002 0 VIKRYNDMRTNLYKSKDCKKGTITIGIPPLVLSAVFSSVLPHLILKNPDINFIIKE I.claudius_F1_368_310_837584_peptide number 7 951.0745000000001 0 IGAYALKSE I.claudius_F1_368_310_837584_peptide number 8 1714.0506 0 LLLDKVDLAVLLYPE I.claudius_F1_368_310_837584_peptide number 9 1287.4623000000001 0 RISKNIIDSIE I.claudius_F1_368_310_837584_peptide number 10 571.5808 0 IHSSE I.claudius_F1_368_310_837584_peptide number 11 5022.893299999999 0 LALFLSPKHVLAKKQQITWADLHQQKMAIFDQTFMIHHHLKE I.claudius_F1_368_310_837584_peptide number 12 365.38110000000006 0 AFE I.claudius_F1_368_310_837584_peptide number 13 3131.4940000000006 0 RNNCYPDIVLDSSCWDFLLSAVKTNKE I.claudius_F1_368_310_837584_peptide number 14 1210.5256 0 LLTILPLPMAE I.claudius_F1_368_310_837584_peptide number 15 775.8491000000001 0 LYHSKE I.claudius_F1_368_310_837584_peptide number 16 908.1193000000001 0 FLCRKIE I.claudius_F1_368_310_837584_peptide number 17 2541.9678 0 SPVPWKVTLCRQRKTVYTHLE I.claudius_F1_368_310_837584_peptide number 18 147.1293 0 E I.claudius_F1_368_310_837584_peptide number 19 1040.209 0 YIFDKLLE I.claudius_F1_368_310_837584_peptide number 20 718.8442 0 AFRPTK I.claudius_F1_369_201_839719_peptide number 1 278.32540000000006 0 ME I.claudius_F1_369_201_839719_peptide number 2 1300.4578999999999 0 LQVVGANALTVSE I.claudius_F1_369_201_839719_peptide number 3 709.748 0 TTFGRE I.claudius_F1_369_201_839719_peptide number 4 408.4058 0 FNE I.claudius_F1_369_201_839719_peptide number 5 2766.1231000000002 0 ALIHQVVVAYAAGARQGTRAQKTRAE I.claudius_F1_369_201_839719_peptide number 6 6541.4244000000035 0 VSGSGKKPWRQKGTGRARAGDIKSPIWRSGGTTFAAKPQDHSQKVNKKMYRGAIKSILSE I.claudius_F1_369_201_839719_peptide number 7 1325.5569000000003 0 LVRQDRLVVVE I.claudius_F1_369_201_839719_peptide number 8 422.4755 0 KFE I.claudius_F1_369_201_839719_peptide number 9 2108.5211 0 LDAPKTKVLVQKLKDLAVE I.claudius_F1_369_201_839719_peptide number 10 1160.2715 0 DALIITASLDE I.claudius_F1_369_201_839719_peptide number 11 4686.408199999999 0 NLFLAARNLYKVDVRDVQGIDPVSLIAFDKVIVTVDAVKQIE I.claudius_F1_369_201_839719_peptide number 12 147.1293 0 E I.claudius_F1_369_201_839719_peptide number 13 315.40840000000003 0 ILA I.claudius_F1_370_143_841028_peptide number 1 1552.7542 0 MRNIPVGSTVHNVE I.claudius_F1_370_143_841028_peptide number 2 2383.7478 0 LKPGKGGQIARSAGAYVQIIARE I.claudius_F1_370_143_841028_peptide number 3 1364.5067 0 GNYVTLRLRSGE I.claudius_F1_370_143_841028_peptide number 4 846.0500000000001 0 MRKVLAE I.claudius_F1_370_143_841028_peptide number 5 691.7940000000001 0 CVATIGE I.claudius_F1_370_143_841028_peptide number 6 504.49159999999995 0 VGNSE I.claudius_F1_370_143_841028_peptide number 7 4002.5550000000007 0 HMLRVLGKAGANRWRGIRPTVRGTAMNPVDHPHGGGE I.claudius_F1_370_143_841028_peptide number 8 4389.046500000001 0 GRNFGKHPVTPWGVQTKGKKTRHNKRTDKYIVRRRGK I.claudius_F1_371_236_842119_peptide number 1 3881.3354000000004 0 MGQKVHPHGIRLGIVKPWSSTWFANTQDFADNLE I.claudius_F1_371_236_842119_peptide number 2 1480.7096999999999 0 GDFKVRKFLNKE I.claudius_F1_371_236_842119_peptide number 3 1246.4105 0 LASASVSRITIE I.claudius_F1_371_236_842119_peptide number 4 2585.0604000000008 0 RPAKSIRVTIHTARPGIVIGKKGE I.claudius_F1_371_236_842119_peptide number 5 361.3478 0 DVE I.claudius_F1_371_236_842119_peptide number 6 2092.442 0 KLRNAVSKIAGVPAQINIAE I.claudius_F1_371_236_842119_peptide number 7 599.7202000000001 0 VKKPE I.claudius_F1_371_236_842119_peptide number 8 1572.7554000000002 0 LDAKLVADSIASQLE I.claudius_F1_371_236_842119_peptide number 9 3146.851800000001 0 RRVMFRRAMKRAVQSAMRLGAKGIKVE I.claudius_F1_371_236_842119_peptide number 10 844.9128 0 VSGRLGGAE I.claudius_F1_371_236_842119_peptide number 11 574.6278 0 IARSE I.claudius_F1_371_236_842119_peptide number 12 652.6982 0 WYRE I.claudius_F1_371_236_842119_peptide number 13 2041.2247000000002 0 GRVPLHTLRADIDYNTAE I.claudius_F1_371_236_842119_peptide number 14 2005.3184 0 AHTTYGVIGVKVWIFKGE I.claudius_F1_371_236_842119_peptide number 15 1146.3145 0 ILGGMAAVAQSE I.claudius_F1_371_236_842119_peptide number 16 1890.1979999999999 0 QQPADKPKKAPRGKGRK I.claudius_F1_372_105_845032_peptide number 1 2872.4553000000005 0 MCIKVLGGSHRRYAAIGDIIKITVKE I.claudius_F1_372_105_845032_peptide number 2 5089.923500000002 0 AIPRGKVKKGDVLKAVVVRTKKGVRRPDGSVIRFDGNACVILNNNTE I.claudius_F1_372_105_845032_peptide number 3 1570.7909000000002 0 QPIGTRIFGPVTRE I.claudius_F1_372_105_845032_peptide number 4 503.5499 0 LRSE I.claudius_F1_372_105_845032_peptide number 5 1276.5871 0 KFMKIISLAPE I.claudius_F1_372_105_845032_peptide number 6 230.304 0 VL I.claudius_F1_373_143_845797_peptide number 1 491.55910000000006 0 MGVGE I.claudius_F1_373_143_845797_peptide number 2 5511.447099999999 0 ALTDKKLLDNAVADLAAISGQKPLVTKARKSVAGFKIRQGYPIGCKVTLRGE I.claudius_F1_373_143_845797_peptide number 3 620.721 0 RMWE I.claudius_F1_373_143_845797_peptide number 4 441.47710000000006 0 FFE I.claudius_F1_373_143_845797_peptide number 5 3739.2726000000002 0 RLITIAVPRIRDFRGLSAKSFDGRGNYSMGVRE I.claudius_F1_373_143_845797_peptide number 6 745.8628 0 QIIFPE I.claudius_F1_373_143_845797_peptide number 7 2751.995600000001 0 IDYDKVDRVRGLDITITTTAKNDE I.claudius_F1_373_143_845797_peptide number 8 147.1293 0 E I.claudius_F1_373_143_845797_peptide number 9 1579.8421999999998 0 GQALLAAFNFPFRK I.claudius_F1_374_105_846657_peptide number 1 1742.0890000000002 0 MPSSKLKVAIANVLAAE I.claudius_F1_374_105_846657_peptide number 2 480.51150000000007 0 GYIE I.claudius_F1_374_105_846657_peptide number 3 673.7987 0 SVKVLE I.claudius_F1_374_105_846657_peptide number 4 500.54600000000005 0 GAKPE I.claudius_F1_374_105_846657_peptide number 5 260.2869 0 LE I.claudius_F1_374_105_846657_peptide number 6 1521.7981000000002 0 ITLKYFQGKPVVE I.claudius_F1_374_105_846657_peptide number 7 2201.5316 0 SIQRVSRPGLRIYKRKDE I.claudius_F1_374_105_846657_peptide number 8 3227.7572 0 LPKVMGGLGVAVISTSKGVMTDRAARQAGLGGE I.claudius_F1_374_105_846657_peptide number 9 680.8557000000001 0 IICYVA I.claudius_F1_375_102_847582_peptide number 1 565.7072000000001 0 MMRE I.claudius_F1_375_102_847582_peptide number 2 2913.2969000000007 0 QGVTRLVIHRTPRHIYAQVIAPNGSE I.claudius_F1_375_102_847582_peptide number 3 859.9639999999999 0 VLAAASTVE I.claudius_F1_375_102_847582_peptide number 4 615.7228 0 KAIRE I.claudius_F1_375_102_847582_peptide number 5 1991.2059000000002 0 QVKYTGNKDAAAAVGKAVAE I.claudius_F1_375_102_847582_peptide number 6 3489.8991999999994 0 RALAKGVQAVAFDRSGFKYHGRVQTLADAARE I.claudius_F1_375_102_847582_peptide number 7 534.6052 0 AGLQF I.claudius_F1_376_57_848232_peptide number 1 717.8777 0 MRAVLE I.claudius_F1_376_57_848232_peptide number 2 3657.1606000000006 0 VAGVRNVLSKAYGSTNPINVVRATIDALANMKSPE I.claudius_F1_376_57_848232_peptide number 3 1304.5162999999998 0 MVAAKRGKTVDE I.claudius_F1_376_57_848232_peptide number 4 301.3818 0 ILG I.claudius_F1_377_145_848592_peptide number 1 1131.3032 0 MRLNTLSPAE I.claudius_F1_377_145_848592_peptide number 2 4117.6043 0 GAKHSAKRLGRGIGSGLGKTGGRGHKGQKSRTGGGVRRGFE I.claudius_F1_377_145_848592_peptide number 3 2773.2366000000006 0 GGQMPLYRRLPKFGFTSMKSAVTAE I.claudius_F1_377_145_848592_peptide number 4 629.7063 0 VRLNE I.claudius_F1_377_145_848592_peptide number 5 588.6942 0 LTKVE I.claudius_F1_377_145_848592_peptide number 6 730.8069 0 GNVVTLE I.claudius_F1_377_145_848592_peptide number 7 2357.7867 0 TLKAANILTKDIQFAKVILAGE I.claudius_F1_377_145_848592_peptide number 8 2154.5564999999997 0 VKSAVTVRGLRVTKGAKAAIE I.claudius_F1_377_145_848592_peptide number 9 603.6226 0 AAGGSIE I.claudius_F1_377_145_848592_peptide number 10 147.1293 0 E I.claudius_F1_378_230_849670_peptide number 1 2705.3447000000006 0 MHPLVLLLIAAIVFAVTYFVVFVE I.claudius_F1_378_230_849670_peptide number 2 1169.3413 0 RGQRRIRVE I.claudius_F1_378_230_849670_peptide number 3 6072.9729000000025 0 YAKRQQGRQILGGHSTHLPLKVNMANVMPAIFASSIILFPATLTQWFGQNDKFE I.claudius_F1_378_230_849670_peptide number 4 6698.7201000000005 0 WLNNLSMLLNPGQPLYLLVYAVAIIFFSFFYTAMQYNPRDTADNLKKSGAFIPGIRPGE I.claudius_F1_378_230_849670_peptide number 5 8016.439300000001 0 QTSRYIDKVMTRLTLIGGLYVTFVCLVPYIMTSAWDVKFYFGGTSLLIVVVVIMDFIVQVQSHLMSSQYE I.claudius_F1_378_230_849670_peptide number 6 1361.5888000000002 0 SALKKANLKGFGQ I.claudius_F1_379_103_851741_peptide number 1 983.0999 0 MGFATTRAE I.claudius_F1_379_103_851741_peptide number 2 3715.2679000000007 0 ARQLVSHKAIVVNGRVVNIPSFQVSVNDVVAIRE I.claudius_F1_379_103_851741_peptide number 3 1486.759 0 KSKKQARIKASLE I.claudius_F1_379_103_851741_peptide number 4 331.36480000000006 0 LAE I.claudius_F1_379_103_851741_peptide number 5 431.4442 0 QRE I.claudius_F1_379_103_851741_peptide number 6 772.8882000000001 0 KPTWLE I.claudius_F1_379_103_851741_peptide number 7 778.8714 0 VDSAKME I.claudius_F1_379_103_851741_peptide number 8 931.0899000000002 0 GVFKRVPE I.claudius_F1_379_103_851741_peptide number 9 1119.1401 0 RSDLSADINE I.claudius_F1_379_103_851741_peptide number 10 609.7149000000001 0 HLIVE I.claudius_F1_379_103_851741_peptide number 11 509.59580000000005 0 LYSK I.claudius_F1_380_52_852484_peptide number 1 1858.2689000000003 0 MKTLQLVCVYVFSVVE I.claudius_F1_380_52_852484_peptide number 2 3700.617300000001 0 DMFLLHLVHIRKKNVQLVVCLLMLVIVRLNE I.claudius_F1_380_52_852484_peptide number 3 531.7123 0 LRIM I.claudius_F1_381_67_854351_peptide number 1 1582.9457 0 MILQMTLNMVPYE I.claudius_F1_381_67_854351_peptide number 2 2316.7165999999997 0 KVLNNMPHKVDYVLYQILE I.claudius_F1_381_67_854351_peptide number 3 1709.9146000000003 0 LYDVLDILRDMQSE I.claudius_F1_381_67_854351_peptide number 4 1362.5324 0 TYRFYTVRKE I.claudius_F1_381_67_854351_peptide number 5 1172.3335000000002 0 KISLHQNSFV I.claudius_F1_382_269_855168_peptide number 1 4360.380800000001 0 MAFSTIFILLICGICTNMVSAIFGIGGGVLMVPILRTLFPE I.claudius_F1_382_269_855168_peptide number 2 5993.300499999999 0 LPIQVISATSLTIVMCTALINLLFFHKQKIKIDYINMILWSIAMVIGVQIGFE I.claudius_F1_382_269_855168_peptide number 3 3964.6476000000007 0 LSFYFSTAIISLIFTVSLSALAIKTFLNRSRIQIE I.claudius_F1_382_269_855168_peptide number 4 936.0831000000001 0 VFNMSPIE I.claudius_F1_382_269_855168_peptide number 5 9289.794700000004 0 RAKGSISFCGGGLIAGITGIGGGSILAPLVGQLKGVKTQQIAVYTNYMMIIGGIGNLYGYLTRAFLYDASLSGQLGLNFLVVGVVTLGSFE I.claudius_F1_382_269_855168_peptide number 6 4152.2365 0 MSFFSMKLRGLMNPVLTRKLLAIILFCIAAYMCILE I.claudius_F1_382_269_855168_peptide number 7 548.6335 0 FVFH I.claudius_F1_383_100_857554_peptide number 1 349.40330000000006 0 MAE I.claudius_F1_383_100_857554_peptide number 2 218.2072 0 AE I.claudius_F1_383_100_857554_peptide number 3 5863.067300000002 0 HGLWYPLKMGLNLNLRLKLLFLPQRLKNDQTQLRLKYAHLLPLRLLIGE I.claudius_F1_383_100_857554_peptide number 4 1249.3762000000002 0 VGSPHRNIQLE I.claudius_F1_383_100_857554_peptide number 5 924.9975000000002 0 LHQVNSVE I.claudius_F1_383_100_857554_peptide number 6 690.6585000000001 0 HDQYE I.claudius_F1_383_100_857554_peptide number 7 2252.6245 0 FLKYDLLMLQGFFPYDLE I.claudius_F1_383_100_857554_peptide number 8 415.4861 0 HLF I.claudius_F1_384_170_859045_peptide number 1 1524.827 0 MRSVKLKATKFSE I.claudius_F1_384_170_859045_peptide number 2 8047.344000000002 0 FKPCSFQFGLVTLEPFITTKSGSKFLSCSSVGRINIFFTKCACHATSVTIRTAIRSCSLAPQKPSTTNKRLRE I.claudius_F1_384_170_859045_peptide number 3 5347.103300000002 0 SWLVTKSFKLCHVAWFIGLLSFFAVSDVHQTVSFVFSSNTIYLSFGE I.claudius_F1_384_170_859045_peptide number 4 3679.292300000001 0 RPVKIPVSTATAPVVVKVPFSKPSKPGLVSSSNNCS I.claudius_F1_385_121_861693_peptide number 1 1392.6195 0 MPYTNGQKLLVE I.claudius_F1_385_121_861693_peptide number 2 2283.7297000000003 0 LVVNGYSQALLLVVCFLRFE I.claudius_F1_385_121_861693_peptide number 3 6614.597300000001 0 LSVVANYVLILVIQSHAVCTTVLYRLPLDRYGYDQYVIFYQGCLLYQLAYFQPNYE I.claudius_F1_385_121_861693_peptide number 4 3632.3031 0 YLQHHLVKLLADLTALQQVIHLVLAQVDAVLR I.claudius_F1_386_50_868830_peptide number 1 5820.0806 0 MNLIYRSCNDIFIINNGLFKFKLCPLIISPACFLNSAVILPFRMIWRIW I.claudius_F1_387_92_870173_peptide number 1 3763.4130999999998 0 MLPLVYLNKSNHCSSMLPLHQVLVDFLLRHDE I.claudius_F1_387_92_870173_peptide number 2 823.9764 0 HVLLLTE I.claudius_F1_387_92_870173_peptide number 3 4095.9827000000005 0 KVRSIPLLFFGIAQLKHLVMLSRQKILLPLHIADGE I.claudius_F1_387_92_870173_peptide number 4 1932.2973 0 YCIRLLLNRAVRLNSQ I.claudius_F1_388_90_870882_peptide number 1 6009.9868 0 MIISFCTRNGRTKINCARHNKAVVVVGMFADDIYSARRIDGNFWQIFMLSIE I.claudius_F1_388_90_870882_peptide number 2 3742.4532 0 NLLSILDWGHISILYIKSILDLHPSLLKLKRE I.claudius_F1_388_90_870882_peptide number 3 623.6951 0 TDYII I.claudius_F1_389_333_872401_peptide number 1 3184.6232999999997 0 MSTIRDVAKLANVSVATVSRVLNHSLSVSE I.claudius_F1_389_333_872401_peptide number 2 829.9413000000002 0 NTRLVVE I.claudius_F1_389_333_872401_peptide number 3 5116.7318 0 QAIAQLAYQPNANAQALAVQNTDTIGVVVTDVTDAFFAILVKAVDKVAE I.claudius_F1_389_333_872401_peptide number 4 1788.0147000000002 0 AHQKTILIGIGYHHAE I.claudius_F1_389_333_872401_peptide number 5 275.3016 0 KE I.claudius_F1_389_333_872401_peptide number 6 303.31500000000005 0 RE I.claudius_F1_389_333_872401_peptide number 7 2656.0239999999994 0 AINTLLRKRCSSLVVHSKALSDDE I.claudius_F1_389_333_872401_peptide number 8 2547.9688000000006 0 LSHYLNTVQGMVIINRVIKGYE I.claudius_F1_389_333_872401_peptide number 9 1935.1226000000001 0 HRCVSLDNQKGTYLATE I.claudius_F1_389_333_872401_peptide number 10 2585.8923999999997 0 MLIRYGHQHIAYIGSNHAIFDE I.claudius_F1_389_333_872401_peptide number 11 246.2604 0 VE I.claudius_F1_389_333_872401_peptide number 12 2143.4042 0 RRNGYLAALKDHNYPIIE I.claudius_F1_389_333_872401_peptide number 13 1234.3119 0 QAITLNSPDFE I.claudius_F1_389_333_872401_peptide number 14 261.2319 0 GGE I.claudius_F1_389_333_872401_peptide number 15 3500.9913000000006 0 KAMIDLLSYNKNLTAVVAYNDSMAAGAISVLNE I.claudius_F1_389_333_872401_peptide number 16 5702.595500000002 0 NNISVPSQFSIIGFDDMPIARYLIPKLTTIRYPIDLMATYAAKLALSLTDE I.claudius_F1_389_333_872401_peptide number 17 2440.8805 0 KIITPPVVQFNPTLVRRFSVE I.claudius_F1_389_333_872401_peptide number 18 261.2783 0 SR I.claudius_F1_390_507_874605_peptide number 1 5076.7872 0 MTAQTQCQDSQVLLTMTNVCKSFPGVKALDNANLTVRSHSVHALMGE I.claudius_F1_390_507_874605_peptide number 2 2128.4476 0 NGAGKSTLLKCLFGIYAKDE I.claudius_F1_390_507_874605_peptide number 3 204.1806 0 GE I.claudius_F1_390_507_874605_peptide number 4 1721.9898999999998 0 ILFLGEPVNFKTSKE I.claudius_F1_390_507_874605_peptide number 5 331.36480000000006 0 ALE I.claudius_F1_390_507_874605_peptide number 6 1014.1138 0 NGISMVHQE I.claudius_F1_390_507_874605_peptide number 7 4739.435900000001 0 LNLVRQTSVMDNLWLGRYPLKGPFVDHAKMYRDTKAIFDE I.claudius_F1_390_507_874605_peptide number 8 1043.1253000000002 0 LDIDVDPKE I.claudius_F1_390_507_874605_peptide number 9 1591.9344 0 KVAKLSVSQMQMIE I.claudius_F1_390_507_874605_peptide number 10 2514.8447 0 IAKAFSYNAKIVIMDEPTSSLSE I.claudius_F1_390_507_874605_peptide number 11 275.3016 0 KE I.claudius_F1_390_507_874605_peptide number 12 246.2604 0 VE I.claudius_F1_390_507_874605_peptide number 13 2986.5561000000002 0 HLFKIIDKLKQRGCGIIYISHKMDE I.claudius_F1_390_507_874605_peptide number 14 867.0210000000001 0 IFKICDE I.claudius_F1_390_507_874605_peptide number 15 1999.3138000000001 0 ITILRDGKWINTVNVKE I.claudius_F1_390_507_874605_peptide number 16 466.50660000000005 0 STME I.claudius_F1_390_507_874605_peptide number 17 1119.3588 0 QIVGMMVGRE I.claudius_F1_390_507_874605_peptide number 18 889.9948 0 LTQRFPE I.claudius_F1_390_507_874605_peptide number 19 814.9267 0 KTNVPKE I.claudius_F1_390_507_874605_peptide number 20 699.8359 0 VILQVE I.claudius_F1_390_507_874605_peptide number 21 1790.9244 0 NLTAKNQPSIQDVSFE I.claudius_F1_390_507_874605_peptide number 22 601.6962000000001 0 LRKGE I.claudius_F1_390_507_874605_peptide number 23 1725.0385 0 ILGIAGLVGAKRTDIVE I.claudius_F1_390_507_874605_peptide number 24 790.9068 0 AIFGVRE I.claudius_F1_390_507_874605_peptide number 25 373.44450000000006 0 LIE I.claudius_F1_390_507_874605_peptide number 26 1847.1235 0 GTIKLHGKTVKNHTALE I.claudius_F1_390_507_874605_peptide number 27 1148.2657 0 AINNGFALVTE I.claudius_F1_390_507_874605_peptide number 28 147.1293 0 E I.claudius_F1_390_507_874605_peptide number 29 1495.6365 0 RRSTGIYSNLSIE I.claudius_F1_390_507_874605_peptide number 30 7621.771600000002 0 FNSLISNMKSYLTPWKLLSTKKMKSDTQWVIDSMNVKTPSHRTTIGSLSGGNQQKVIIGRWLLTQPE I.claudius_F1_390_507_874605_peptide number 31 2018.3337 0 ILMLDEPTRGIDIGAKFE I.claudius_F1_390_507_874605_peptide number 32 906.0338 0 IYQLIQE I.claudius_F1_390_507_874605_peptide number 33 1532.8438999999998 0 LAKKDKGIIMISSE I.claudius_F1_390_507_874605_peptide number 34 375.4406 0 MPE I.claudius_F1_390_507_874605_peptide number 35 2198.6252999999997 0 LLGVTDRILVMSNGKLAGIVE I.claudius_F1_390_507_874605_peptide number 36 749.7672 0 SAKTSQE I.claudius_F1_390_507_874605_peptide number 37 147.1293 0 E I.claudius_F1_390_507_874605_peptide number 38 1032.2763 0 ILQLAAKYL I.claudius_F1_391_129_877646_peptide number 1 1130.4211 0 MVAPMLLGLGE I.claudius_F1_391_129_877646_peptide number 2 4596.5007 0 AFAALLTKKSPSIMSLIAMLVGVWFFVRLNLTVVHYLSTQE I.claudius_F1_391_129_877646_peptide number 3 8908.6927 0 ALSQTIRKIWMRGNTRKGVLFIYTLLVYFLVPILIFQLSAFSNNAVFDMVIGIFTALLNIFMLVVTYRFYSLFMKD I.claudius_F1_392_56_878428_peptide number 1 1550.7977999999998 0 MLVNIYISHNMSE I.claudius_F1_392_56_878428_peptide number 2 147.1293 0 E I.claudius_F1_392_56_878428_peptide number 3 4413.0114 0 AWVDFKSFGIIGMTVIATIISGVYIYRYLPKDGSNSKDGE I.claudius_F1_392_56_878428_peptide number 4 146.1876 0 K I.claudius_F1_393_89_878793_peptide number 1 3515.239900000001 0 MNFIKPISVGDVVCCYGQCLKVGRSSIKIKVE I.claudius_F1_393_89_878793_peptide number 2 1441.6704000000002 0 VWVKKVASEPIGE I.claudius_F1_393_89_878793_peptide number 3 2987.3094000000006 0 RYCVTDAVFTFVAVDNNGRSRTIPRE I.claudius_F1_393_89_878793_peptide number 4 503.4637 0 NNQE I.claudius_F1_393_89_878793_peptide number 5 260.2869 0 LE I.claudius_F1_393_89_878793_peptide number 6 844.0075 0 KALALISE I.claudius_F1_393_89_878793_peptide number 7 356.4173 0 QPL I.claudius_F1_394_594_879388_peptide number 1 3341.891100000001 0 MKKVALISLCIFTALSAFADSPNTATASINLE I.claudius_F1_394_594_879388_peptide number 2 275.2585 0 QE I.claudius_F1_394_594_879388_peptide number 3 703.7433000000001 0 KQNWE I.claudius_F1_394_594_879388_peptide number 4 1926.1836 0 LAQHQDYLKRLKQRE I.claudius_F1_394_594_879388_peptide number 5 733.8522 0 VFLQVE I.claudius_F1_394_594_879388_peptide number 6 1562.8086 0 GLLKSAVKKQQFSE I.claudius_F1_394_594_879388_peptide number 7 3298.697199999999 0 ATQNITKTLIDSLQGYPLQYDLLARFWE I.claudius_F1_394_594_879388_peptide number 8 2302.4994000000006 0 TKIAFLQNDDIQGRQQAINE I.claudius_F1_394_594_879388_peptide number 9 3161.6043000000004 0 LNALVQQNYPFVTPAFQALLQKLSTLNE I.claudius_F1_394_594_879388_peptide number 10 1279.2682 0 QQTSATSDNAKE I.claudius_F1_394_594_879388_peptide number 11 886.9528 0 NNRVQKE I.claudius_F1_394_594_879388_peptide number 12 616.6214 0 QNQVE I.claudius_F1_394_594_879388_peptide number 13 798.8841000000001 0 NPKQLAE I.claudius_F1_394_594_879388_peptide number 14 3243.7499000000007 0 IVRKSDPNTLDKTVLIDAFPRYLKTLPE I.claudius_F1_394_594_879388_peptide number 15 982.0686000000001 0 QMNNLSFE I.claudius_F1_394_594_879388_peptide number 16 1640.7497 0 SYQKWANTWQLSE I.claudius_F1_394_594_879388_peptide number 17 262.2167 0 DE I.claudius_F1_394_594_879388_peptide number 18 2069.3637 0 IKQWKIAFLNRFFDNE I.claudius_F1_394_594_879388_peptide number 19 1338.3816000000002 0 NTDFQKWRDE I.claudius_F1_394_594_879388_peptide number 20 1458.5732 0 QIRQLQTDNLTE I.claudius_F1_394_594_879388_peptide number 21 1587.8909 0 RRLRMAIWQKTE I.claudius_F1_394_594_879388_peptide number 22 1246.4086 0 LTSWLNLLSAE I.claudius_F1_394_594_879388_peptide number 23 705.7577 0 SKSKQE I.claudius_F1_394_594_879388_peptide number 24 838.9081000000001 0 WRYWE I.claudius_F1_394_594_879388_peptide number 25 2029.3813 0 AKQDILKNTKKLTALSKE I.claudius_F1_394_594_879388_peptide number 26 3354.8302 0 RGFYPMLAATQLKQAYQLNVPIAPSFTQAE I.claudius_F1_394_594_879388_peptide number 27 1551.8472000000002 0 QLPFKQVFAMITE I.claudius_F1_394_594_879388_peptide number 28 416.47260000000006 0 LRE I.claudius_F1_394_594_879388_peptide number 29 3285.7531 0 LGRNGLAKQRWRILLDNVDFTTQLKLSE I.claudius_F1_394_594_879388_peptide number 30 1213.2976 0 YAKNQQWFE I.claudius_F1_394_594_879388_peptide number 31 2766.108 0 LAVDASIVAKAWDYLSLRLPNAYSE I.claudius_F1_394_594_879388_peptide number 32 2614.9718000000003 0 YFNAALQNLNISKTFAMAIARQE I.claudius_F1_394_594_879388_peptide number 33 3045.4495 0 SAWNPMAQSSANARGLMQLLPSTAKLTAE I.claudius_F1_394_594_879388_peptide number 34 1062.0902999999998 0 NNQLPYQGE I.claudius_F1_394_594_879388_peptide number 35 2150.4330999999997 0 QDLFKPLNNILLGTAHLNE I.claudius_F1_394_594_879388_peptide number 36 4086.6148 0 LNGKYPNNRILIAAAYNAGANRVGKWLSRASGKLALDE I.claudius_F1_394_594_879388_peptide number 37 1072.2095 0 FVASIPFYE I.claudius_F1_394_594_879388_peptide number 38 2711.9762000000005 0 TRGYVQNVVAYDFYYQILQNKE I.claudius_F1_394_594_879388_peptide number 39 962.0143 0 NPQIFSQE I.claudius_F1_394_594_879388_peptide number 40 147.1293 0 E I.claudius_F1_394_594_879388_peptide number 41 677.7921 0 LNRLY I.claudius_F1_395_50_883614_peptide number 1 5196.008900000002 0 MARYAYGRCNHVRKFYKPILVCYLPSSRKNRRSPYGKTNDKKE I.claudius_F1_395_50_883614_peptide number 2 735.8913 0 MVQVYP I.claudius_F1_396_57_884803_peptide number 1 391.48300000000006 0 MLE I.claudius_F1_396_57_884803_peptide number 2 688.7718 0 KLYHE I.claudius_F1_396_57_884803_peptide number 3 2731.0854000000004 0 GQVPYIYFAVCQLVFQDLDRNLE I.claudius_F1_396_57_884803_peptide number 4 3102.3301 0 DSDSHLYSLRYHLHHDNLQSLKYPY I.claudius_F1_397_55_885419_peptide number 1 528.6223 0 MLHE I.claudius_F1_397_55_885419_peptide number 2 2155.5342 0 IFHYILLTKPVPTSNGILE I.claudius_F1_397_55_885419_peptide number 3 3946.6291 0 VFIVRIFFFDNCRCATFCCYSMRTHWVYFRN I.claudius_F1_398_244_886137_peptide number 1 2462.9107000000004 0 MKRLLAAGSGPIFQISKVFRNE I.claudius_F1_398_244_886137_peptide number 2 147.1293 0 E I.claudius_F1_398_244_886137_peptide number 3 893.9039 0 AGNRHNPE I.claudius_F1_398_244_886137_peptide number 4 639.7608 0 FTMLE I.claudius_F1_398_244_886137_peptide number 5 1936.2048 0 WYRPHFHMHRLINE I.claudius_F1_398_244_886137_peptide number 6 1668.8626 0 VDDLLQQILDCPPAE I.claudius_F1_398_244_886137_peptide number 7 1247.3521 0 SLSYQFVFQE I.claudius_F1_398_244_886137_peptide number 8 1063.158 0 YVGLDPLSAE I.claudius_F1_398_244_886137_peptide number 9 390.3923 0 RSE I.claudius_F1_398_244_886137_peptide number 10 373.44450000000006 0 LIE I.claudius_F1_398_244_886137_peptide number 11 1174.3328999999999 0 AARKHNFMAE I.claudius_F1_398_244_886137_peptide number 12 376.3193 0 DNE I.claudius_F1_398_244_886137_peptide number 13 1483.6208 0 DRDTLLQFLFSE I.claudius_F1_398_244_886137_peptide number 14 998.1311000000001 0 VVEPQIGKE I.claudius_F1_398_244_886137_peptide number 15 2282.5530000000003 0 RPIAVYHFPSTQAALAQVSPE I.claudius_F1_398_244_886137_peptide number 16 716.7406000000001 0 DQRVAE I.claudius_F1_398_244_886137_peptide number 17 450.48890000000006 0 RFE I.claudius_F1_398_244_886137_peptide number 18 919.0310000000001 0 FYYKGLE I.claudius_F1_398_244_886137_peptide number 19 786.8319000000001 0 LANGFHE I.claudius_F1_398_244_886137_peptide number 20 645.6593 0 LADAQE I.claudius_F1_398_244_886137_peptide number 21 871.9431 0 QRHRFE I.claudius_F1_398_244_886137_peptide number 22 1261.3654000000001 0 LDNQQRQKCE I.claudius_F1_398_244_886137_peptide number 23 614.6917000000001 0 LPTRE I.claudius_F1_398_244_886137_peptide number 24 375.37430000000006 0 IDE I.claudius_F1_398_244_886137_peptide number 25 818.9599000000001 0 RFLAALE I.claudius_F1_398_244_886137_peptide number 26 2449.8855000000003 0 AGMPDASGVALGIDRLMMIALDCE I.claudius_F1_398_244_886137_peptide number 27 1405.5520000000001 0 KINDVISFAVDNA I.claudius_F1_399_73_889492_peptide number 1 2634.9783 0 MAQHSKYSDAQLSAIVNDMIAVLE I.claudius_F1_399_73_889492_peptide number 2 3280.77 0 KHKAPVDLSLIALGNMASNLLTTSVPQTQCE I.claudius_F1_399_73_889492_peptide number 3 1804.0556 0 ALAQAFSNSLINAVKTR I.claudius_F1_400_439_890153_peptide number 1 2121.5658 0 MPIILLAQMLFSRWSWE I.claudius_F1_400_439_890153_peptide number 2 744.8798 0 KLRSLE I.claudius_F1_400_439_890153_peptide number 3 6388.378100000001 0 RQKWLKGTGIFLTTTFIATHLIYAWADAYLYRPITMQRSNFPLSYPMTARSFLE I.claudius_F1_400_439_890153_peptide number 4 901.9624 0 KHGFLDGE I.claudius_F1_400_439_890153_peptide number 5 147.1293 0 E I.claudius_F1_400_439_890153_peptide number 6 980.0727 0 YTQKLAQE I.claudius_F1_400_439_890153_peptide number 7 1645.8971999999999 0 GRLDALKIDYPKKE I.claudius_F1_400_439_890153_peptide number 8 3073.5009999999993 0 LTYAPITHKPNILLVTVSGLRHDAISNE I.claudius_F1_400_439_890153_peptide number 9 1538.8072 0 KMPKLAKFATSSTE I.claudius_F1_400_439_890153_peptide number 10 4461.765399999999 0 FTNHYSTGNSNNAGLIGLFYGLNANYTDSILSNHTQSVLIE I.claudius_F1_400_439_890153_peptide number 11 615.7228 0 KLRAE I.claudius_F1_400_439_890153_peptide number 12 2866.1888999999996 0 NYQLGLFSATNFKDSIFRQALFRE I.claudius_F1_400_439_890153_peptide number 13 1586.7454999999998 0 IKLSSNKTNKPNNE I.claudius_F1_400_439_890153_peptide number 14 3198.5782 0 SAVKNLNDFIKAQKTDSPWFAYLDLALE I.claudius_F1_400_439_890153_peptide number 15 2576.8097000000007 0 AKNPSDYDRTLQDIDSLLAKALE I.claudius_F1_400_439_890153_peptide number 16 545.5833 0 STPLE I.claudius_F1_400_439_890153_peptide number 17 989.1209000000001 0 NTLVIITSE I.claudius_F1_400_439_890153_peptide number 18 816.8579 0 HGLTFNE I.claudius_F1_400_439_890153_peptide number 19 648.7295 0 MNQKE I.claudius_F1_400_439_890153_peptide number 20 303.31500000000005 0 RE I.claudius_F1_400_439_890153_peptide number 21 899.9035 0 NYFGRDE I.claudius_F1_400_439_890153_peptide number 22 4327.999599999999 0 IQVPLLVYWKDLPVGKQNGLSNHADIFSALMQTVFRVE I.claudius_F1_400_439_890153_peptide number 23 6725.386300000003 0 NPLMDYSQGRNLFDLKGDDWVLASNFRWNVVIQPDGTQYHIDRKGNYKKFDKDYIE I.claudius_F1_400_439_890153_peptide number 24 1458.6146 0 QSSDRPPLGIFLE I.claudius_F1_400_439_890153_peptide number 25 1290.4214 0 AFQLQNFFFE I.claudius_F1_400_439_890153_peptide number 26 146.1876 0 K I.claudius_F1_401_89_893462_peptide number 1 1021.2588000000001 0 MKCKRLNE I.claudius_F1_401_89_893462_peptide number 2 359.418 0 VLE I.claudius_F1_401_89_893462_peptide number 3 1915.1245 0 LLQSYWSKDSDLSLME I.claudius_F1_401_89_893462_peptide number 4 928.0841 0 ILQKIANE I.claudius_F1_401_89_893462_peptide number 5 1019.1087 0 SGFQKPLNE I.claudius_F1_401_89_893462_peptide number 6 476.4782 0 LTDE I.claudius_F1_401_89_893462_peptide number 7 2957.3959000000004 0 VIIYQLKMDGTDKYEPIPGLKKDYE I.claudius_F1_401_89_893462_peptide number 8 147.1293 0 E I.claudius_F1_401_89_893462_peptide number 9 1601.934 0 DFKTALLRARGIIK I.claudius_F1_402_106_894039_peptide number 1 590.6901 0 MALGAE I.claudius_F1_402_106_894039_peptide number 2 1034.2063 0 SKVKSPLFE I.claudius_F1_402_106_894039_peptide number 3 2679.0108999999998 0 AAQKDALKSMDDIRAIFLSNGITAE I.claudius_F1_402_106_894039_peptide number 4 2392.579 0 QFDGGINSFAVNGLVNKQVNAAE I.claudius_F1_402_106_894039_peptide number 5 2496.8195000000005 0 QFKVRGVPDFYVNGKFRVNPE I.claudius_F1_402_106_894039_peptide number 6 2443.7485 0 GLNYDDFVKDYVQTVKGLLQK I.claudius_F1_403_54_894976_peptide number 1 6170.5403000000015 0 MHQIFKFLTLQQVIIACVRSFVFGTSKMIFTILCLIKRRCSVIAWMNFQSPAC I.claudius_F1_404_169_895482_peptide number 1 391.48300000000006 0 MLE I.claudius_F1_404_169_895482_peptide number 2 1166.2179999999998 0 WAIDCTQNSE I.claudius_F1_404_169_895482_peptide number 3 545.5832 0 GDLLE I.claudius_F1_404_169_895482_peptide number 4 2529.8673000000003 0 LYCGNGNFSIALAQNFRKVLATE I.claudius_F1_404_169_895482_peptide number 5 1529.7356 0 IAKPSVAAAQFNIAE I.claudius_F1_404_169_895482_peptide number 6 1630.8643 0 NKVDNLQIIRMSAE I.claudius_F1_404_169_895482_peptide number 7 147.1293 0 E I.claudius_F1_404_169_895482_peptide number 8 2659.0278 0 FTQAMNGVRAFNRLKGIDLKSYE I.claudius_F1_404_169_895482_peptide number 9 4876.5023 0 CNTIFVDPPRAGLDPDTVKLVQNYDRILYISCNPHTLCDNLVE I.claudius_F1_404_169_895482_peptide number 10 983.123 0 LSKTHRIE I.claudius_F1_404_169_895482_peptide number 11 1812.9946 0 KAALFDQFPYTDHME I.claudius_F1_404_169_895482_peptide number 12 972.1846 0 SGLWLIRK I.claudius_F1_405_80_896504_peptide number 1 1687.0155 0 MYPHKQKSALVKKE I.claudius_F1_405_80_896504_peptide number 2 1816.0002 0 MRVFQHLVGADLDADE I.claudius_F1_405_80_896504_peptide number 3 2521.0529 0 LLLPALQLAKKRVVVKRPDYAE I.claudius_F1_405_80_896504_peptide number 4 1429.6015 0 FLCGKQPHFSHE I.claudius_F1_405_80_896504_peptide number 5 1770.986 0 TKNHRFDIYMGASQC I.claudius_F1_406_51_897019_peptide number 1 1186.2459000000001 0 MLSDYISDNE I.claudius_F1_406_51_897019_peptide number 2 3380.03 0 ILRAILIFGLTALSFILVKSYSRKLGQQTE I.claudius_F1_406_51_897019_peptide number 3 1171.4316 0 FQPVLLRVLS I.claudius_F1_407_127_897729_peptide number 1 748.8454 0 MQVDKE I.claudius_F1_407_127_897729_peptide number 2 1136.2816 0 GKDSWRMKE I.claudius_F1_407_127_897729_peptide number 3 1203.2565 0 AGSSQVILANDE I.claudius_F1_407_127_897729_peptide number 4 906.0604000000001 0 RWAIMTE I.claudius_F1_407_127_897729_peptide number 5 2862.2337 0 TPKPVSLDYLAQQFDRTLTDLVLVE I.claudius_F1_407_127_897729_peptide number 6 1933.2573000000002 0 GFKQEPIPKILLHRQE I.claudius_F1_407_127_897729_peptide number 7 814.9896000000001 0 MTKPLPE I.claudius_F1_407_127_897729_peptide number 8 375.37430000000006 0 IDE I.claudius_F1_407_127_897729_peptide number 9 1352.5308000000002 0 YVLAVATNYPLE I.claudius_F1_407_127_897729_peptide number 10 2255.5688000000005 0 IDRTLLDINRIPQIADFIE I.claudius_F1_407_127_897729_peptide number 11 1274.3921000000003 0 NWLHHFHGAR I.claudius_F1_408_280_898658_peptide number 1 1004.162 0 MNNIKGKAE I.claudius_F1_408_280_898658_peptide number 2 2775.2834000000003 0 KLDWTGFLLFALGLVGITLGLDLLGE I.claudius_F1_408_280_898658_peptide number 3 3286.7082000000005 0 SQHNSSVTYSILVVGILLLVTYCGYAKNNE I.claudius_F1_408_280_898658_peptide number 4 5373.362200000001 0 NAILPLSLFRTRTFRLGIIANIFIRLSASGVPFLLPLMFQLSFGYSAE I.claudius_F1_408_280_898658_peptide number 5 18276.564300000013 0 MSGWLLAPIALISVMLKILIGRILNRWGYKTTLISSALLMAGSVISMAWLDKQSSLTWIICNLMWYGACMSIIFTSINTLAVGDLSKQQSGTGSTVLSIVQQVGIGFGIAVSSIILNLYRHFFSASDCLPQAFSYTFLTSSLFVIALVWSLMKLHKHDGDHLRKMP I.claudius_F1_409_262_900502_peptide number 1 1301.5520000000001 0 MKTDPKVQLLE I.claudius_F1_409_262_900502_peptide number 2 1567.7405000000003 0 QKGLNVAYIAFNTE I.claudius_F1_409_262_900502_peptide number 3 2731.153500000001 0 KAPFDNVKVRQALNYAVDKKAIIE I.claudius_F1_409_262_900502_peptide number 4 2579.7705 0 AVYQGAGTSAKNPLPPTIWSYNDE I.claudius_F1_409_262_900502_peptide number 5 1139.1679 0 IQDYPYDPE I.claudius_F1_409_262_900502_peptide number 6 900.0741 0 KAKQLLAE I.claudius_F1_409_262_900502_peptide number 7 853.8748 0 AGYPNGFE I.claudius_F1_409_262_900502_peptide number 8 2470.8035999999997 0 TDFWIQPVIRASNPNPKRMAE I.claudius_F1_409_262_900502_peptide number 9 2149.5083 0 LIMADWAKIGVKTNPVTYE I.claudius_F1_409_262_900502_peptide number 10 1322.4717 0 WADYRKRAKE I.claudius_F1_409_262_900502_peptide number 11 204.1806 0 GE I.claudius_F1_409_262_900502_peptide number 12 4187.4304 0 LTAGIFGWSGDNGDPDNFLSPLLGSSNIGNSNMARFNNSE I.claudius_F1_409_262_900502_peptide number 13 820.8863000000001 0 FDALLNE I.claudius_F1_409_262_900502_peptide number 14 844.9525000000001 0 AIGLTNKE I.claudius_F1_409_262_900502_peptide number 15 147.1293 0 E I.claudius_F1_409_262_900502_peptide number 16 6045.861800000002 0 RAKLYKQAQVIVHNQAPWIPVAHSVGFAPLSPRVKGYVQSPFGYDAFYGVSVDGK I.claudius_F1_410_107_902491_peptide number 1 1944.2569 0 MPVPGTATPNPFFIRLGE I.claudius_F1_410_107_902491_peptide number 2 2545.8671 0 TFASMRSGVLPKYFAAVADASARE I.claudius_F1_410_107_902491_peptide number 3 7071.297500000002 0 MGSVQPRAGITSCLTMWSNGFSISLSLSKFIITYPINALHPNFVQHLLPQSMGQLIQQRLPCVV I.claudius_F1_411_101_905664_peptide number 1 819.0213000000001 0 MSLKLVE I.claudius_F1_411_101_905664_peptide number 2 1676.0522 0 ILVLGQVLRLNVPIE I.claudius_F1_411_101_905664_peptide number 3 275.2585 0 QE I.claudius_F1_411_101_905664_peptide number 4 147.1293 0 E I.claudius_F1_411_101_905664_peptide number 5 1710.9721 0 LLRQAARNLDILVSE I.claudius_F1_411_101_905664_peptide number 6 406.4977 0 MKE I.claudius_F1_411_101_905664_peptide number 7 2329.7335 0 KTGLIQLDRVLSIVALNLSFE I.claudius_F1_411_101_905664_peptide number 8 475.49340000000007 0 LSQE I.claudius_F1_411_101_905664_peptide number 9 931.0882000000001 0 KNKTAKIE I.claudius_F1_411_101_905664_peptide number 10 147.1293 0 E I.claudius_F1_411_101_905664_peptide number 11 1608.7940999999998 0 VLRTGIQQLDHSLE I.claudius_F1_411_101_905664_peptide number 12 1093.237 0 NIRVTKEPH I.claudius_F1_412_188_906284_peptide number 1 1532.7247 0 MNTQKRQQIRTE I.claudius_F1_412_188_906284_peptide number 2 1990.2705000000003 0 IRKIRANLTALQQHQAE I.claudius_F1_412_188_906284_peptide number 3 1352.4926 0 QSVTQHALNLIE I.claudius_F1_412_188_906284_peptide number 4 1887.0564 0 QRQAKNIALYFSFDGE I.claudius_F1_412_188_906284_peptide number 5 7522.789200000002 0 ISTKALIQSLWMQNKNVYLPVLHPFTKHYLLFLRYLPDTPMKQNQFGIWEPKLNVQNVLPLNE I.claudius_F1_412_188_906284_peptide number 6 5678.457900000001 0 LDILFTPLVAFDKKGNRLGMGGGFYDRTLQNWQNKSFIPVGLAYQCQQVE I.claudius_F1_412_188_906284_peptide number 7 572.6086 0 NLPTE I.claudius_F1_412_188_906284_peptide number 8 1410.6147 0 HWDVPLFDILVG I.claudius_F1_413_616_907698_peptide number 1 1336.5595000000003 0 MGALIAGAKYRGE I.claudius_F1_413_616_907698_peptide number 2 294.30320000000006 0 FE I.claudius_F1_413_616_907698_peptide number 3 147.1293 0 E I.claudius_F1_413_616_907698_peptide number 4 942.1141 0 RLKAVLNE I.claudius_F1_413_616_907698_peptide number 5 475.53650000000005 0 LSKE I.claudius_F1_413_616_907698_peptide number 6 147.1293 0 E I.claudius_F1_413_616_907698_peptide number 7 1061.2315 0 GRVILFIDE I.claudius_F1_413_616_907698_peptide number 8 2811.1984000000007 0 IHTMVGAGKTDGAMDAGNLLKPSLARGE I.claudius_F1_413_616_907698_peptide number 9 1158.2821999999999 0 LHCVGATTLDE I.claudius_F1_413_616_907698_peptide number 10 870.9484000000001 0 YRQYIE I.claudius_F1_413_616_907698_peptide number 11 645.7024 0 KDAALE I.claudius_F1_413_616_907698_peptide number 12 1735.9372 0 RRFQKVFVDEPSVE I.claudius_F1_413_616_907698_peptide number 13 1228.4382 0 DTIAILRGLKE I.claudius_F1_413_616_907698_peptide number 14 466.4883000000001 0 RYE I.claudius_F1_413_616_907698_peptide number 15 4260.719999999999 0 IHHHVDITDPAIVAAATLSHRYISDRQLPDKAIDLIDE I.claudius_F1_413_616_907698_peptide number 16 863.9791 0 AASSIRME I.claudius_F1_413_616_907698_peptide number 17 1411.5566 0 IDSKPEPLDRLE I.claudius_F1_413_616_907698_peptide number 18 1168.4326 0 RRIIQLKLE I.claudius_F1_413_616_907698_peptide number 19 843.9247 0 QQALQKE I.claudius_F1_413_616_907698_peptide number 20 147.1293 0 E I.claudius_F1_413_616_907698_peptide number 21 262.2167 0 DE I.claudius_F1_413_616_907698_peptide number 22 858.9858 0 ASRKRLE I.claudius_F1_413_616_907698_peptide number 23 391.48300000000006 0 MLE I.claudius_F1_413_616_907698_peptide number 24 275.3016 0 KE I.claudius_F1_413_616_907698_peptide number 25 331.36480000000006 0 LAE I.claudius_F1_413_616_907698_peptide number 26 275.3016 0 KE I.claudius_F1_413_616_907698_peptide number 27 303.31500000000005 0 RE I.claudius_F1_413_616_907698_peptide number 28 381.38050000000004 0 YAE I.claudius_F1_413_616_907698_peptide number 29 260.2869 0 LE I.claudius_F1_413_616_907698_peptide number 30 147.1293 0 E I.claudius_F1_413_616_907698_peptide number 31 647.7199 0 VWKSE I.claudius_F1_413_616_907698_peptide number 32 1426.5745000000002 0 KATLSGSQHIKQE I.claudius_F1_413_616_907698_peptide number 33 776.8323 0 LDTAKTE I.claudius_F1_413_616_907698_peptide number 34 260.2869 0 LE I.claudius_F1_413_616_907698_peptide number 35 1432.6055999999999 0 QARRAGDLAKMSE I.claudius_F1_413_616_907698_peptide number 36 1203.3442 0 LQYGRIPDLE I.claudius_F1_413_616_907698_peptide number 37 516.5884000000001 0 KQLE I.claudius_F1_413_616_907698_peptide number 38 346.3364 0 QAE I.claudius_F1_413_616_907698_peptide number 39 335.31050000000005 0 TSE I.claudius_F1_413_616_907698_peptide number 40 332.35290000000003 0 GKE I.claudius_F1_413_616_907698_peptide number 41 1396.6116000000002 0 MTLLRYRVTDE I.claudius_F1_413_616_907698_peptide number 42 147.1293 0 E I.claudius_F1_413_616_907698_peptide number 43 331.36480000000006 0 IAE I.claudius_F1_413_616_907698_peptide number 44 1590.9463999999998 0 VLSKATGIPVSKMME I.claudius_F1_413_616_907698_peptide number 45 204.1806 0 GE I.claudius_F1_413_616_907698_peptide number 46 275.3016 0 KE I.claudius_F1_413_616_907698_peptide number 47 788.9986000000001 0 KLLRME I.claudius_F1_413_616_907698_peptide number 48 262.2167 0 DE I.claudius_F1_413_616_907698_peptide number 49 1079.2534 0 LHKRVIGQE I.claudius_F1_413_616_907698_peptide number 50 147.1293 0 E I.claudius_F1_413_616_907698_peptide number 51 3911.384800000001 0 AVDAVANAIRRSRAGLSDPNRPIGSFLFLGPTGVGKTE I.claudius_F1_413_616_907698_peptide number 52 1514.7839 0 LCKTLAKFLFDSE I.claudius_F1_413_616_907698_peptide number 53 1166.3259 0 DAMVRIDMSE I.claudius_F1_413_616_907698_peptide number 54 425.49930000000006 0 FME I.claudius_F1_413_616_907698_peptide number 55 1916.1408999999999 0 KHSVSRLVGAPPGYVGYE I.claudius_F1_413_616_907698_peptide number 56 147.1293 0 E I.claudius_F1_413_616_907698_peptide number 57 638.6667 0 GGYLTE I.claudius_F1_413_616_907698_peptide number 58 1686.9525000000003 0 AVRRRPYSVILLDE I.claudius_F1_413_616_907698_peptide number 59 246.2604 0 VE I.claudius_F1_413_616_907698_peptide number 60 5601.180400000002 0 KAHADVFNILLQVLDDGRLTDGQGRTVDFRNTVVIMTSNLGSDLIQGNKDE I.claudius_F1_413_616_907698_peptide number 61 484.45720000000006 0 SYSE I.claudius_F1_413_616_907698_peptide number 62 1859.2205000000001 0 MKALVMSVVSQHFRPE I.claudius_F1_413_616_907698_peptide number 63 905.9941 0 FINRIDE I.claudius_F1_413_616_907698_peptide number 64 1126.305 0 TVVFHPLGKE I.claudius_F1_413_616_907698_peptide number 65 1227.4103 0 NIRAIASIQLE I.claudius_F1_413_616_907698_peptide number 66 903.1046 0 RLAKRME I.claudius_F1_413_616_907698_peptide number 67 624.6435000000001 0 TRGYE I.claudius_F1_413_616_907698_peptide number 68 1452.6465000000003 0 LVFTDALLDFIGE I.claudius_F1_413_616_907698_peptide number 69 2174.4581 0 VGYDPIYGARPLKRAIQQE I.claudius_F1_413_616_907698_peptide number 70 260.2869 0 IE I.claudius_F1_413_616_907698_peptide number 71 2686.0216000000005 0 NSLAQQILSGALLPGKVVTIDYANAE I.claudius_F1_413_616_907698_peptide number 72 600.6684 0 VQARQ I.claudius_F1_414_108_911891_peptide number 1 2129.4392999999995 0 MVTSGKLRKSTRPFFASSE I.claudius_F1_414_108_911891_peptide number 2 5937.927200000001 0 TSSVNFLTYFSTALGNLWRISWLRKAISTSIPFAILSPRISVITPIGWLKLAE I.claudius_F1_414_108_911891_peptide number 3 3755.3118000000004 0 RSCNSTTTTCPIRAPLRCSFGTRISRPILLSSGTT I.claudius_F1_415_56_913363_peptide number 1 3740.4628000000007 0 MIFLASSAPKIRTVKSVAKKINGNVSVPQVLWKE I.claudius_F1_415_56_913363_peptide number 2 2155.5162 0 KSFAAPSAVNFSVISKGICTK I.claudius_F1_416_211_913818_peptide number 1 278.32540000000006 0 ME I.claudius_F1_416_211_913818_peptide number 2 895.9595 0 LHNIRDE I.claudius_F1_416_211_913818_peptide number 3 1615.7686000000003 0 YTKRVLSQHDCHE I.claudius_F1_416_211_913818_peptide number 4 833.8851000000001 0 NPISQFE I.claudius_F1_416_211_913818_peptide number 5 717.7699 0 QWQKE I.claudius_F1_416_211_913818_peptide number 6 2024.2125 0 AIHAQVNEPTAMNIATVDE I.claudius_F1_416_211_913818_peptide number 7 1527.7910000000002 0 QGRPNSRMVLLKE I.claudius_F1_416_211_913818_peptide number 8 360.36300000000006 0 VNE I.claudius_F1_416_211_913818_peptide number 9 2066.3384 0 QGFVFFTNYLSRKGGCIE I.claudius_F1_416_211_913818_peptide number 10 1620.8030999999999 0 HNPYVALTFFWPE I.claudius_F1_416_211_913818_peptide number 11 260.2869 0 LE I.claudius_F1_416_211_913818_peptide number 12 799.9186 0 RQVRIE I.claudius_F1_416_211_913818_peptide number 13 912.0849000000001 0 GKAVKIPAE I.claudius_F1_416_211_913818_peptide number 14 2434.6175 0 QSDKYFATRPYTSRIGAWASE I.claudius_F1_416_211_913818_peptide number 15 4336.9866 0 QSAVISNYKSLLAKAALVAAKHPLNVPRPDYWGGYLVVPE I.claudius_F1_416_211_913818_peptide number 16 347.36430000000007 0 TVE I.claudius_F1_416_211_913818_peptide number 17 2400.7021000000004 0 FWQGRPSRLHDRIRYRKE I.claudius_F1_416_211_913818_peptide number 18 918.9498000000001 0 SDNWIRE I.claudius_F1_416_211_913818_peptide number 19 471.5511 0 RLSP I.claudius_F1_417_116_916719_peptide number 1 13524.951600000008 0 MVFLSQLALLMKICLKTARCLMVPLLKDGKPLIKPICCLCQWLKRQLLIHSRKFQRFLFVVVFMNQRQCKAMIAIRALLQFVQKIICVQQVLLIKLFLVQSLNSSYLMMCVLMYQ I.claudius_F1_418_93_917759_peptide number 1 2910.2814 0 MAGLDGVVNKIHPGDAMDKNLYDLPPE I.claudius_F1_418_93_917759_peptide number 2 147.1293 0 E I.claudius_F1_418_93_917759_peptide number 3 1242.4185000000002 0 LKDIPAVASSLE I.claudius_F1_418_93_917759_peptide number 4 147.1293 0 E I.claudius_F1_418_93_917759_peptide number 5 645.7023 0 ALNSLE I.claudius_F1_418_93_917759_peptide number 6 553.5623 0 KDYE I.claudius_F1_418_93_917759_peptide number 7 2631.0326000000005 0 FLTQGGVFAKDFIDAFISIKRKE I.claudius_F1_418_93_917759_peptide number 8 246.2604 0 VE I.claudius_F1_418_93_917759_peptide number 9 1163.3500000000001 0 RLNMAPHPVE I.claudius_F1_418_93_917759_peptide number 10 294.30320000000006 0 FE I.claudius_F1_418_93_917759_peptide number 11 546.6359000000001 0 MYYA I.claudius_F1_419_50_919134_peptide number 1 5582.6457 0 MKKKAIFISTGAVIIFKILTPCYSWCTSKIYDAFRKCLPAMDNPYFQE I.claudius_F1_419_50_919134_peptide number 2 105.09259999999999 0 S I.claudius_F1_420_307_919669_peptide number 1 493.53189999999995 0 MQSE I.claudius_F1_420_307_919669_peptide number 2 5796.9021 0 IMFYLVLSAIFQVFLSVQLSIRQCQKQAIPYTFIQVSSTITNAALTILMLE I.claudius_F1_420_307_919669_peptide number 3 1014.0857000000001 0 FYQTDLVE I.claudius_F1_420_307_919669_peptide number 4 8926.5951 0 KRILAILISNVFVALLSYLIYRKRVNNKKFYFLQYKTAFFYIMSFGFLMIFHHGSFFIRQLDRIFIFHRFSE I.claudius_F1_420_307_919669_peptide number 5 218.2072 0 AE I.claudius_F1_420_307_919669_peptide number 6 3400.1205999999997 0 LGLYAMGAQIAFILSVFILAINKALVPYLFE I.claudius_F1_420_307_919669_peptide number 7 3934.795600000001 0 KLKQGSVKLKDLHRWSLLSLLIVPIPSLVTLIVPE I.claudius_F1_420_307_919669_peptide number 8 5575.6262000000015 0 QWLLFFLGKHFIGVKYYIIVFLLSTSLTIPYLFLVNYLFYHGKTKE I.claudius_F1_420_307_919669_peptide number 9 5379.461500000001 0 ISFCSVLSTMIYLGALGGLIFTDVVYIPYASVLGALGILPVLYKITKRVE I.claudius_F1_420_307_919669_peptide number 10 147.1293 0 E I.claudius_F1_420_307_919669_peptide number 11 261.2319 0 NE I.claudius_F1_420_307_919669_peptide number 12 490.5097 0 YATH I.claudius_F1_421_82_923035_peptide number 1 2120.5149 0 MILLYFFRSGGLAFRISE I.claudius_F1_421_82_923035_peptide number 2 1863.2848000000001 0 LFLIFSIPLFALLINE I.claudius_F1_421_82_923035_peptide number 3 5633.733800000001 0 LSGVNRVLMFFILVYYISIVFLRRIYVHVVFGVNTFLPYKPIFDSYL I.claudius_F1_422_176_923685_peptide number 1 1842.2131 0 MYKNVKRIYLTKRE I.claudius_F1_422_176_923685_peptide number 2 1231.4191000000003 0 NVPDCIKSKVE I.claudius_F1_422_176_923685_peptide number 3 1697.97 0 YINIKDLWFKKTE I.claudius_F1_422_176_923685_peptide number 4 147.1293 0 E I.claudius_F1_422_176_923685_peptide number 5 147.1293 0 E I.claudius_F1_422_176_923685_peptide number 6 388.4592 0 KLE I.claudius_F1_422_176_923685_peptide number 7 3347.0562999999997 0 ILYLLGIDMKKIQLLIGEPFILFTQPLSE I.claudius_F1_422_176_923685_peptide number 8 752.8091000000001 0 DYILTE I.claudius_F1_422_176_923685_peptide number 9 261.2319 0 NE I.claudius_F1_422_176_923685_peptide number 10 388.4592 0 KIE I.claudius_F1_422_176_923685_peptide number 11 2614.0469 0 LYKSIIDKYDASKLVIKPHPRE I.claudius_F1_422_176_923685_peptide number 12 1958.1743000000001 0 KTDYSRIFPNVKVFDE I.claudius_F1_422_176_923685_peptide number 13 595.599 0 TYPSE I.claudius_F1_422_176_923685_peptide number 14 700.8206 0 VLDILE I.claudius_F1_422_176_923685_peptide number 15 2291.6427 0 VKFSRVITLFSTAAFSYPKE I.claudius_F1_422_176_923685_peptide number 16 2418.83 0 KVDFYGTKIHPKLLAKFGNIE I.claudius_F1_422_176_923685_peptide number 17 310.30260000000004 0 YE I.claudius_F1_423_280_924781_peptide number 1 2185.4958 0 MSSWTSVTKKTDQFIIALE I.claudius_F1_423_280_924781_peptide number 2 377.30410000000006 0 DDE I.claudius_F1_423_280_924781_peptide number 3 147.1293 0 E I.claudius_F1_423_280_924781_peptide number 4 4885.4528 0 VDRNNWLRYFSTNGYRSVSVIPTLRGLPLYNTDMSFMFSHE I.claudius_F1_423_280_924781_peptide number 5 8988.686400000002 0 IMLLQMNNNLAKLSSRILKRTMDIVVGSLAIIIFSPVLLYLYFAVKKDGGNAIYGHPRIGRNGKTFNCLKFRTMAVNSKE I.claudius_F1_423_280_924781_peptide number 6 474.5054 0 VLDE I.claudius_F1_423_280_924781_peptide number 7 842.9367 0 LLRTDPE I.claudius_F1_423_280_924781_peptide number 8 445.47080000000005 0 ARAE I.claudius_F1_423_280_924781_peptide number 9 333.3392 0 WE I.claudius_F1_423_280_924781_peptide number 10 2934.3923 0 KDFKLKNDPRITKIGAFIRKTSLDE I.claudius_F1_423_280_924781_peptide number 11 1257.4777000000001 0 LPQLFNVLKGE I.claudius_F1_423_280_924781_peptide number 12 1425.6925 0 MSLVGPRPIVIDE I.claudius_F1_423_280_924781_peptide number 13 260.2869 0 LE I.claudius_F1_423_280_924781_peptide number 14 466.4883000000001 0 RYE I.claudius_F1_423_280_924781_peptide number 15 147.1293 0 E I.claudius_F1_423_280_924781_peptide number 16 7530.450300000004 0 NVDYYLMARPGMTGLWQVSGRNNIDYNTRVYFDSWYVKNWSLWNDIAILFKTMNVVLNRDGAY I.claudius_F1_424_52_926540_peptide number 1 2805.1526 0 MTFVKDRPGHDVRYSLDCSKIHAE I.claudius_F1_424_52_926540_peptide number 2 1218.3571 0 LGWQPQITFE I.claudius_F1_424_52_926540_peptide number 3 2001.2020999999995 0 QGLRQTVKWYLFNSSSS I.claudius_F1_425_66_927262_peptide number 1 7245.831600000003 0 MVIMAIKVIISFLLMNSLYRNKIIPTTTGKPIHPPLAPDNALVMIASIMATNPNNVDLYCFLMKK I.claudius_F1_426_153_928621_peptide number 1 8044.247000000002 0 MLQLDFNPTQDSNAPVLACLVGKGITFDSGGYSIKPSDGMSTMRTDMGGAALLTGALGFAIARGLNQRVKLYLCCAE I.claudius_F1_426_153_928621_peptide number 2 2467.7284000000004 0 NLVSNNAFKLGDIITYKNGVSAE I.claudius_F1_426_153_928621_peptide number 3 760.7898 0 VLNTDAE I.claudius_F1_426_153_928621_peptide number 4 1155.3444 0 GRLVLADGLIE I.claudius_F1_426_153_928621_peptide number 5 3605.1303000000003 0 ADNQNPGFIIDCATLTGAAKSGCRKRLSFCIIYG I.claudius_F1_427_324_932924_peptide number 1 593.6477 0 MSIDE I.claudius_F1_427_324_932924_peptide number 2 6189.1939999999995 0 IQKLADPDMQKVNQNILAQLNSDVPLIGQLGFYIVQGGGKRIRPLIAVLAARSLGFE I.claudius_F1_427_324_932924_peptide number 3 1228.329 0 GSNSITCATFVE I.claudius_F1_427_324_932924_peptide number 4 1710.8381 0 FIHTASLLHDDVVDE I.claudius_F1_427_324_932924_peptide number 5 1434.5386999999998 0 SDMRRGRATANAE I.claudius_F1_427_324_932924_peptide number 6 2730.0775 0 FGNAASVLVGDFIYTRAFQLVAQLE I.claudius_F1_427_324_932924_peptide number 7 1789.0990000000002 0 SLKILSIMADATNVLAE I.claudius_F1_427_324_932924_peptide number 8 204.1806 0 GE I.claudius_F1_427_324_932924_peptide number 9 1286.4114000000002 0 VQQLMNVNDPE I.claudius_F1_427_324_932924_peptide number 10 335.31050000000005 0 TSE I.claudius_F1_427_324_932924_peptide number 11 1962.2755000000002 0 ANYMRVIYSKTARLFE I.claudius_F1_427_324_932924_peptide number 12 1214.3256000000001 0 VAGQAAAIVAGGTE I.claudius_F1_427_324_932924_peptide number 13 346.3364 0 AQE I.claudius_F1_427_324_932924_peptide number 14 4348.689300000001 0 KALQDYGRYLGTAFQLVDDVLDYSANTQALGKNVGDDLAE I.claudius_F1_427_324_932924_peptide number 15 2623.0452 0 GKPTLPLLHAMRHGNAQQAALIRE I.claudius_F1_427_324_932924_peptide number 16 331.36480000000006 0 AIE I.claudius_F1_427_324_932924_peptide number 17 673.7191 0 QGGKRE I.claudius_F1_427_324_932924_peptide number 18 446.45220000000006 0 AIDE I.claudius_F1_427_324_932924_peptide number 19 775.9535 0 VLAIMTE I.claudius_F1_427_324_932924_peptide number 20 1562.749 0 HKSLDYAMNRAKE I.claudius_F1_427_324_932924_peptide number 21 147.1293 0 E I.claudius_F1_427_324_932924_peptide number 22 944.0406 0 AQKAVDAIE I.claudius_F1_427_324_932924_peptide number 23 470.5597 0 ILPE I.claudius_F1_427_324_932924_peptide number 24 234.2066 0 SE I.claudius_F1_427_324_932924_peptide number 25 2017.2843 0 YKQALISLAYLSVDRNY I.claudius_F1_428_58_936471_peptide number 1 795.9465 0 MNFKKE I.claudius_F1_428_58_936471_peptide number 2 5965.915900000001 0 FLCRTITLFNISTKTIAFSMYSHNDIWSIGMIFKMFSDTSNCDIYGTILRF I.claudius_F1_429_111_937083_peptide number 1 5010.861 0 MICQYMMHFNTIFCFKHIISFRFKNPFKRISSDNFIFNNE I.claudius_F1_429_111_937083_peptide number 2 7196.31 0 NFWSSHFPSLYLFWRMLSKLSFYLCNIIVTIKKCGDFLPDFPFCDLNHSFRYSNFFVIE I.claudius_F1_429_111_937083_peptide number 3 1329.585 0 FRASIFLYSIL I.claudius_F1_430_311_938219_peptide number 1 10141.887200000006 0 MFGLFTIQLPNSLQNKLNTWSQKQTSGAFGGAFAMGMIAGLVASPCTSAPLSGALLYVAQSGDLFTGAVTLYLLALGMGVPLMLITLFGNKILPKSGE I.claudius_F1_430_311_938219_peptide number 2 3151.8265000000006 0 WMNTVKQTFGFVMLALPVFLLSRILPE I.claudius_F1_430_311_938219_peptide number 3 7136.254900000002 0 VWEPRLWAGLATVFFIWFALQMSKNGFGYAIKIISFALAMVTVQPLQNWIWQTQTTTQSAVE I.claudius_F1_430_311_938219_peptide number 4 1891.196 0 NMPVSQVKFKQIKNTE I.claudius_F1_430_311_938219_peptide number 5 147.1293 0 E I.claudius_F1_430_311_938219_peptide number 6 816.8994 0 LDRTLAE I.claudius_F1_430_311_938219_peptide number 7 2279.6135000000004 0 NPHSIAMLDLYADWCVACKE I.claudius_F1_430_311_938219_peptide number 8 294.30320000000006 0 FE I.claudius_F1_430_311_938219_peptide number 9 3362.8059000000007 0 KLTFSDPQVQQQFQNILLLQVSMTKNSPE I.claudius_F1_430_311_938219_peptide number 10 704.8358000000001 0 NKALME I.claudius_F1_430_311_938219_peptide number 11 2283.5607 0 RFNVMGLPTILFFDQQNNE I.claudius_F1_430_311_938219_peptide number 12 2244.4817 0 IKGSRVTGFMDADAFSNWIE I.claudius_F1_430_311_938219_peptide number 13 372.50280000000004 0 KLL I.claudius_F1_431_402_940248_peptide number 1 2977.3574000000003 0 MVRSAAKNHKDVAIVVNNHDFNAILAE I.claudius_F1_431_402_940248_peptide number 2 1349.4258 0 MDQHQNSLTFE I.claudius_F1_431_402_940248_peptide number 3 1310.4974 0 TRFDLAIKAFE I.claudius_F1_431_402_940248_peptide number 4 2797.1038000000003 0 HTAQYDSMIANYFGQLVKPYHIAE I.claudius_F1_431_402_940248_peptide number 5 147.1293 0 E I.claudius_F1_431_402_940248_peptide number 6 147.1293 0 E I.claudius_F1_431_402_940248_peptide number 7 147.1293 0 E I.claudius_F1_431_402_940248_peptide number 8 3013.459 0 ANAKCGQFPRTLNLNFVRKQAMRYGE I.claudius_F1_431_402_940248_peptide number 9 1848.9654 0 NSHQNAAFYVDLNVKE I.claudius_F1_431_402_940248_peptide number 10 2749.9363999999996 0 ASVATANQLQGKALSYNNIADTDAALE I.claudius_F1_431_402_940248_peptide number 11 477.5756 0 CVKE I.claudius_F1_431_402_940248_peptide number 12 5155.732800000001 0 FDDPACVIVKHANPCGVALGKDILDAYNRAYQTDPTSAFGGIIAFNRE I.claudius_F1_431_402_940248_peptide number 13 375.37430000000006 0 LDE I.claudius_F1_431_402_940248_peptide number 14 561.586 0 KTANE I.claudius_F1_431_402_940248_peptide number 15 359.418 0 IVE I.claudius_F1_431_402_940248_peptide number 16 677.7492 0 RQFVE I.claudius_F1_431_402_940248_peptide number 17 1026.2273 0 VIIAPKVSAE I.claudius_F1_431_402_940248_peptide number 18 346.3364 0 AQE I.claudius_F1_431_402_940248_peptide number 19 1513.8937 0 VMKRKKNVRLLE I.claudius_F1_431_402_940248_peptide number 20 307.3235 0 CGE I.claudius_F1_431_402_940248_peptide number 21 764.7834000000001 0 WTSRSE I.claudius_F1_431_402_940248_peptide number 22 3969.5254000000014 0 RLDFKRVNGGLLVQDADLGMVGVDDLKVVSKRQPTE I.claudius_F1_431_402_940248_peptide number 23 275.2585 0 QE I.claudius_F1_431_402_940248_peptide number 24 5589.4909000000025 0 LKDLLFCWKVAKFVKSNAIVYAKDNQTIGIGAGQMSRVYSAKIAGIKAQDE I.claudius_F1_431_402_940248_peptide number 25 317.33820000000003 0 GLE I.claudius_F1_431_402_940248_peptide number 26 4167.726100000001 0 VAGCVMASDAFFPFRDGIDAAAKVGIQCVIHPGGSMRDQE I.claudius_F1_431_402_940248_peptide number 27 731.7486000000001 0 VIDAADE I.claudius_F1_431_402_940248_peptide number 28 1866.2444000000003 0 HNMVMVLTGMRHFRH I.claudius_F1_432_422_942962_peptide number 1 2657.9701999999997 0 MFTRNMTIADYDPVLWQAIQDE I.claudius_F1_432_422_942962_peptide number 2 701.7325000000001 0 NRRQE I.claudius_F1_432_422_942962_peptide number 3 147.1293 0 E I.claudius_F1_432_422_942962_peptide number 4 397.4262 0 HIE I.claudius_F1_432_422_942962_peptide number 5 531.5997 0 LIASE I.claudius_F1_432_422_942962_peptide number 6 1066.1885 0 NYASPRVME I.claudius_F1_432_422_942962_peptide number 7 1343.3980999999999 0 AQGSQFTNKYAE I.claudius_F1_432_422_942962_peptide number 8 1349.4705000000004 0 GYPGKRYYGGCE I.claudius_F1_432_422_942962_peptide number 9 708.7566000000002 0 YADIVE I.claudius_F1_432_422_942962_peptide number 10 1043.1749 0 QLAIDRAKE I.claudius_F1_432_422_942962_peptide number 11 7438.172800000001 0 LFGADYVNVQPHSGSQANAAVYGALINAGDTILGMDLAHGGHLTHGAKVSFSGKIYNSVLYGITADGLIDYE I.claudius_F1_432_422_942962_peptide number 12 958.0705 0 DVRQKALE I.claudius_F1_432_422_942962_peptide number 13 2727.2079 0 CKPKLIVAGFSAYSQVVDWAKMRE I.claudius_F1_432_422_942962_peptide number 14 446.45220000000006 0 IADE I.claudius_F1_432_422_942962_peptide number 15 5497.268000000003 0 VGAYLFVDMAHVAGLIAAGLYPNPLPHAHVVTTTTHKTLGGPRGGLILSSCGDE I.claudius_F1_432_422_942962_peptide number 16 147.1293 0 E I.claudius_F1_432_422_942962_peptide number 17 4244.954100000001 0 IYKKLQSSVFPANQGGPLVHIIAAKAVCFKGALEPQYKE I.claudius_F1_432_422_942962_peptide number 18 1578.8312 0 YQANVIKNAKAMVE I.claudius_F1_432_422_942962_peptide number 19 1698.8308000000002 0 VFKQRGYDVVSNGTE I.claudius_F1_432_422_942962_peptide number 20 6464.308800000001 0 NHLFLVSFIKQGLTGKAADAALGKANITVNKNAVPNDPQKPFVTSGIRVGTPSVTRRGFNE I.claudius_F1_432_422_942962_peptide number 21 631.6361 0 NDVRE I.claudius_F1_432_422_942962_peptide number 22 1620.8876 0 LAGWMCDVLDALGKE I.claudius_F1_432_422_942962_peptide number 23 261.2319 0 NE I.claudius_F1_432_422_942962_peptide number 24 147.1293 0 E I.claudius_F1_432_422_942962_peptide number 25 558.6251000000001 0 QVIAE I.claudius_F1_432_422_942962_peptide number 26 376.4055000000001 0 TKE I.claudius_F1_432_422_942962_peptide number 27 1628.0774 0 KVLAICKRLPVYPK I.claudius_F1_433_174_945961_peptide number 1 1034.3337 0 MALLLTLME I.claudius_F1_433_174_945961_peptide number 2 262.2167 0 DE I.claudius_F1_433_174_945961_peptide number 3 430.4544000000001 0 WPE I.claudius_F1_433_174_945961_peptide number 4 1576.8451000000002 0 RCIVFANTKHRCE I.claudius_F1_433_174_945961_peptide number 5 147.1293 0 E I.claudius_F1_433_174_945961_peptide number 6 7406.2422000000015 0 IWGYLAADGHRVGLLTGDVAQKKRLSLLKQFTDGDLDILVATDVAARGLHISDVTHVFNYDLPDDRE I.claudius_F1_433_174_945961_peptide number 7 1586.7108000000003 0 DYVHRIGRTGRAGE I.claudius_F1_433_174_945961_peptide number 8 999.0959 0 SGVSISFACE I.claudius_F1_433_174_945961_peptide number 9 147.1293 0 E I.claudius_F1_433_174_945961_peptide number 10 1021.1875 0 YAMNLPAIE I.claudius_F1_433_174_945961_peptide number 11 147.1293 0 E I.claudius_F1_433_174_945961_peptide number 12 1392.5118 0 YIGHSIPVSQYE I.claudius_F1_433_174_945961_peptide number 13 248.23319999999998 0 TE I.claudius_F1_433_174_945961_peptide number 14 444.52240000000006 0 ALLE I.claudius_F1_433_174_945961_peptide number 15 2994.4641 0 LPKPYRLKRAVPPQGHTRHRSYHAK I.claudius_F1_434_399_947319_peptide number 1 5784.0956000000015 0 MSQTQHQRPKRSHIFLMKIILVVFVLIFVGVIGFNMIKGVMISRAIAGMPE I.claudius_F1_434_399_947319_peptide number 2 889.9469 0 SSSPVTALE I.claudius_F1_434_399_947319_peptide number 3 627.6905 0 VQPRE I.claudius_F1_434_399_947319_peptide number 4 4406.932400000001 0 WTPVINTTGLVRPNQGAMLSTQNAGAVSQVLVQNGQNVKKGE I.claudius_F1_434_399_947319_peptide number 5 458.54910000000007 0 VLVE I.claudius_F1_434_399_947319_peptide number 6 648.66 0 LDSSVE I.claudius_F1_434_399_947319_peptide number 7 3819.2064000000005 0 RANLQAAQAQLSALRQTYQRYVGLLNSNAVSRQE I.claudius_F1_434_399_947319_peptide number 8 1696.8331000000003 0 MDNAKAAYDAQVASIE I.claudius_F1_434_399_947319_peptide number 9 730.8499 0 SLKAAIE I.claudius_F1_434_399_947319_peptide number 10 3029.4950000000003 0 RRKIVAPFDGKAGIVKINVGQYVNVGTE I.claudius_F1_434_399_947319_peptide number 11 614.7348000000001 0 IVRVE I.claudius_F1_434_399_947319_peptide number 12 3834.186599999999 0 DTSSMKVDFALSQNDLDKLHIGQRVTATTDARLGE I.claudius_F1_434_399_947319_peptide number 13 3051.3167999999996 0 TFSARITAIEPAINSSTGLVDVQATFDPE I.claudius_F1_434_399_947319_peptide number 14 2241.6119 0 DGHKLLSGMFSRLRIALPTE I.claudius_F1_434_399_947319_peptide number 15 2012.2432 0 TNQVVVPQVAISYNMYGE I.claudius_F1_434_399_947319_peptide number 16 1147.3174000000001 0 IAYLLEPLSE I.claudius_F1_434_399_947319_peptide number 17 147.1293 0 E I.claudius_F1_434_399_947319_peptide number 18 147.1293 0 E I.claudius_F1_434_399_947319_peptide number 19 849.9525000000001 0 KGKMSGNE I.claudius_F1_434_399_947319_peptide number 20 3439.8768 0 KLDRLYRAKQITVFTKDRQGVYAQLQGNE I.claudius_F1_434_399_947319_peptide number 21 2169.4350000000004 0 VKVGDKIITGGQQGIGNGSLVE I.claudius_F1_434_399_947319_peptide number 22 2016.3857 0 WIKKDIVGAIEPAHKTPL I.claudius_F1_435_546_949976_peptide number 1 1982.3911000000003 0 MMSSKLLKSNAKPTWME I.claudius_F1_435_546_949976_peptide number 2 147.1293 0 E I.claudius_F1_435_546_949976_peptide number 3 402.4461 0 RVE I.claudius_F1_435_546_949976_peptide number 4 1315.4775 0 HTLGKVNRVYE I.claudius_F1_435_546_949976_peptide number 5 3898.6526000000003 0 YMLDLVMLNRKSMLAFAVVIFSTLPFLFNSLSSE I.claudius_F1_435_546_949976_peptide number 6 572.6086 0 LTPNE I.claudius_F1_435_546_949976_peptide number 7 3617.0916000000007 0 DKGAFIAIGNAPSSVNVDYIQNAMQPYMKNVME I.claudius_F1_435_546_949976_peptide number 8 345.3484 0 TPE I.claudius_F1_435_546_949976_peptide number 9 2867.2333999999996 0 VSFGMSIAGAPTSNSSLNIITLKDWKE I.claudius_F1_435_546_949976_peptide number 10 1319.491 0 RSRKQSAIMNE I.claudius_F1_435_546_949976_peptide number 11 374.3895 0 INE I.claudius_F1_435_546_949976_peptide number 12 771.9019000000001 0 KAKSIPE I.claudius_F1_435_546_949976_peptide number 13 1062.1733 0 VSVSAFNIPE I.claudius_F1_435_546_949976_peptide number 14 533.5295000000001 0 IDTGE I.claudius_F1_435_546_949976_peptide number 15 2430.7084 0 QGPPVSIVLKTAQDYKSLANTAE I.claudius_F1_435_546_949976_peptide number 16 3731.2507 0 KFLSAMKASGKFIYTNLDLTYDTAQMTISVDKE I.claudius_F1_435_546_949976_peptide number 17 5431.0579 0 KAGTYGITMQQISNTLGSFLSGATVTRVDVDGRAYKVISQVKRDDRLSPE I.claudius_F1_435_546_949976_peptide number 18 2864.1865 0 SFQNYYLTASNGQSVPLSSVISMKLE I.claudius_F1_435_546_949976_peptide number 19 1775.9131 0 TQPTSLPRFSQLNSAE I.claudius_F1_435_546_949976_peptide number 20 3984.3575000000005 0 ISAVPMPGISSGDAIAWLQQQATDNLPQGYTFDFKSE I.claudius_F1_435_546_949976_peptide number 21 842.9399999999999 0 ARQLVQE I.claudius_F1_435_546_949976_peptide number 22 2547.0816 0 GNALAVTFALAVIIIFLVLAIQFE I.claudius_F1_435_546_949976_peptide number 23 6332.601400000002 0 SIRDPMVIMISVPLAVSGALVSLNILSFFSIAGTTLNIYSQVGLITLVGLITKHGILMCE I.claudius_F1_435_546_949976_peptide number 24 445.51060000000007 0 VAKE I.claudius_F1_435_546_949976_peptide number 25 147.1293 0 E I.claudius_F1_435_546_949976_peptide number 26 1195.3288000000002 0 QLNHGKTRIE I.claudius_F1_435_546_949976_peptide number 27 7248.680099999999 0 AITHAAKVRLRPILMTTAAMVAGLIPLLYATGAGAVSRFSIGIVIVAGLSIGTIFTLFVLPVVYSYVATE I.claudius_F1_435_546_949976_peptide number 28 1081.2213 0 HKPLPVFDE I.claudius_F1_435_546_949976_peptide number 29 599.6373000000001 0 NKTTH I.claudius_F1_436_343_956192_peptide number 1 409.52150000000006 0 MME I.claudius_F1_436_343_956192_peptide number 2 6311.217600000002 0 IVRQIAQLHNDGFRIVIVTSGAIAAGRHYLNHPQLPPTIASKQLLAAVGQSQLIQAWE I.claudius_F1_436_343_956192_peptide number 3 2442.8496 0 KLFAIYDIHIGQLLLTRADIE I.claudius_F1_436_343_956192_peptide number 4 418.40240000000006 0 DRE I.claudius_F1_436_343_956192_peptide number 5 2711.079 0 RFLNARDTLYALLDNHIIPVINE I.claudius_F1_436_343_956192_peptide number 6 789.788 0 NDAVATAE I.claudius_F1_436_343_956192_peptide number 7 2082.3544 0 IKVGDNDNLSALVAILVQAE I.claudius_F1_436_343_956192_peptide number 8 2477.6802000000002 0 QLYLLTDQQGLFDSDPRKNPE I.claudius_F1_436_343_956192_peptide number 9 868.0721000000001 0 AKLIPVVE I.claudius_F1_436_343_956192_peptide number 10 3801.2675000000017 0 QITDHIRSIAGGSGTNLGTGGMMTKIIAADVATRSGIE I.claudius_F1_436_343_956192_peptide number 11 1927.1616999999999 0 TIIAPGNRPNVIADLAYE I.claudius_F1_436_343_956192_peptide number 12 1857.0321 0 QNIGTKFIAHQSDRLE I.claudius_F1_436_343_956192_peptide number 13 2885.2335 0 SRKQWLFAAPSAGIITIDNGAQNAILE I.claudius_F1_436_343_956192_peptide number 14 1495.7191999999998 0 QNKSLLPAGIINVE I.claudius_F1_436_343_956192_peptide number 15 807.8545 0 GRFSRGE I.claudius_F1_436_343_956192_peptide number 16 3972.5722 0 VVKIRTQSGKDIALGMPRYNSDALQLIKGRKSADIE I.claudius_F1_436_343_956192_peptide number 17 693.7452000000001 0 NVLGYE I.claudius_F1_436_343_956192_peptide number 18 1691.9688999999998 0 YGAVAMHRDDMIILS I.claudius_F1_437_143_958257_peptide number 1 8775.371500000001 0 MVLSIKKDQVTTKSLTPLSSVIGGILIGMASSAAGIGGGGFIVPFLTARGINIKQAIGSSAFCGMLLGISGMFSFIVSGWGNPLMPE I.claudius_F1_437_143_958257_peptide number 2 5858.025000000002 0 YSLGYIYLPAVLGITATSFFTSKLGASATAKLPVSTLKKGFALFLIVVAINMFLK I.claudius_F1_438_65_959306_peptide number 1 2189.6168000000002 0 MASVAGLFLIGYGVFRFIVE I.claudius_F1_438_65_959306_peptide number 2 791.8486 0 YVREPE I.claudius_F1_438_65_959306_peptide number 3 246.2604 0 VE I.claudius_F1_438_65_959306_peptide number 4 3945.7634 0 NFFGIITRGQALCLPMIIGGAFIMAWAYSRKSAVIK I.claudius_F1_439_66_959712_peptide number 1 3711.7096000000006 0 MTMPLISAHLARKLGMLMRMKMQLGLQIRIVE I.claudius_F1_439_66_959712_peptide number 2 1585.9512000000002 0 ALMIWGAYMVCKAE I.claudius_F1_439_66_959712_peptide number 3 771.8820000000001 0 HGVSLME I.claudius_F1_439_66_959712_peptide number 4 1377.7108 0 KLSISYVKLLIT I.claudius_F1_440_83_960113_peptide number 1 2571.9936 0 MAQITGKKAGKAYHKIVNAHIYE I.claudius_F1_440_83_960113_peptide number 2 503.50350000000003 0 DQLE I.claudius_F1_440_83_960113_peptide number 3 2209.653 0 LMRDVQLKREPFPLPKLE I.claudius_F1_440_83_960113_peptide number 4 1042.1834999999999 0 INPDIKTLE I.claudius_F1_440_83_960113_peptide number 5 375.37430000000006 0 DLE I.claudius_F1_440_83_960113_peptide number 6 2974.343700000001 0 TWVTMDDFKVVGYQSHEPIKYPFSV I.claudius_F1_441_82_960637_peptide number 1 4905.596499999999 0 MCAGAILHSRIKRLVFGASDYKTGAIGSRFHFFDDYKMNHTLE I.claudius_F1_441_82_960637_peptide number 2 774.8595 0 VTSGVLAE I.claudius_F1_441_82_960637_peptide number 3 147.1293 0 E I.claudius_F1_441_82_960637_peptide number 4 1758.0105 0 CSQKLSTFFQKRRE I.claudius_F1_441_82_960637_peptide number 5 147.1293 0 E I.claudius_F1_441_82_960637_peptide number 6 516.6315000000001 0 KKIE I.claudius_F1_441_82_960637_peptide number 7 1102.3249 0 KALLKSLSDK I.claudius_F1_442_101_961304_peptide number 1 3465.0698000000007 0 MISGTVKPNFWSRLLLSIIAIFALPNAQSFE I.claudius_F1_442_101_961304_peptide number 2 718.6702 0 NQNNTE I.claudius_F1_442_101_961304_peptide number 3 1425.497 0 NYSSSVSIQQALE I.claudius_F1_442_101_961304_peptide number 4 801.9313000000001 0 TVKVARE I.claudius_F1_442_101_961304_peptide number 5 1838.0306 0 VQRQAIPQPSISRQTE I.claudius_F1_442_101_961304_peptide number 6 1515.7537 0 KQLKIQPHFFTE I.claudius_F1_442_101_961304_peptide number 7 1518.8419 0 ALNISAPIRAGPLLI I.claudius_F1_443_824_961965_peptide number 1 2403.8452 0 MRHFDVQLIGGMVLTNRCIAE I.claudius_F1_443_824_961965_peptide number 2 592.6663000000001 0 MRTGE I.claudius_F1_443_824_961965_peptide number 3 1707.0397999999998 0 GKTLTATLPCYLIALE I.claudius_F1_443_824_961965_peptide number 4 2099.3073 0 GKGVHVVTVNDYLARRDAE I.claudius_F1_443_824_961965_peptide number 5 875.9682 0 TNRPLFE I.claudius_F1_443_824_961965_peptide number 6 1616.8757999999998 0 FLGMSVGVNIPGLSPE I.claudius_F1_443_824_961965_peptide number 7 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 8 1744.8561 0 KRAAYAADITYATNSE I.claudius_F1_443_824_961965_peptide number 9 1777.9305 0 LGFDYLRDNLAHSKE I.claudius_F1_443_824_961965_peptide number 10 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 11 1567.7439 0 RFQRTLGYALVDE I.claudius_F1_443_824_961965_peptide number 12 902.9853 0 VDSILIDE I.claudius_F1_443_824_961965_peptide number 13 1255.4205000000002 0 ARTPLIISGQAE I.claudius_F1_443_824_961965_peptide number 14 435.38649999999996 0 NSSE I.claudius_F1_443_824_961965_peptide number 15 1842.2260999999999 0 LYIAVNKLIPSLIKQE I.claudius_F1_443_824_961965_peptide number 16 275.3016 0 KE I.claudius_F1_443_824_961965_peptide number 17 363.3206 0 DTE I.claudius_F1_443_824_961965_peptide number 18 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 19 495.48310000000004 0 YQGE I.claudius_F1_443_824_961965_peptide number 20 1802.9782000000005 0 GDFTLDLKSKQAHLTE I.claudius_F1_443_824_961965_peptide number 21 488.4955 0 RGQE I.claudius_F1_443_824_961965_peptide number 22 374.43270000000007 0 KVE I.claudius_F1_443_824_961965_peptide number 23 1272.4691 0 DWLIAQGLMPE I.claudius_F1_443_824_961965_peptide number 24 3034.4931 0 GDSLYSPSRIVLLHHVMAALRAHTLFE I.claudius_F1_443_824_961965_peptide number 25 1280.3805000000002 0 KDVDYIVKDGE I.claudius_F1_443_824_961965_peptide number 26 686.7941000000001 0 IVIVDE I.claudius_F1_443_824_961965_peptide number 27 2279.4976 0 HTGRTMAGRRWSDGLHQAIE I.claudius_F1_443_824_961965_peptide number 28 346.3795 0 AKE I.claudius_F1_443_824_961965_peptide number 29 732.7798000000001 0 GVDVKSE I.claudius_F1_443_824_961965_peptide number 30 2096.2551 0 NQTVASISYQNYFRLYE I.claudius_F1_443_824_961965_peptide number 31 1222.3262 0 RLAGMTGTADTE I.claudius_F1_443_824_961965_peptide number 32 365.38110000000006 0 AFE I.claudius_F1_443_824_961965_peptide number 33 997.1014 0 FQQIYGLE I.claudius_F1_443_824_961965_peptide number 34 2505.8678999999997 0 TVVIPTNRPMIRDDRTDVMFE I.claudius_F1_443_824_961965_peptide number 35 261.2319 0 NE I.claudius_F1_443_824_961965_peptide number 36 1125.2737 0 QYKFNAIIE I.claudius_F1_443_824_961965_peptide number 37 820.9080000000001 0 DIKDCVE I.claudius_F1_443_824_961965_peptide number 38 1425.6296 0 RQQPVLVGTISVE I.claudius_F1_443_824_961965_peptide number 39 362.37890000000004 0 KSE I.claudius_F1_443_824_961965_peptide number 40 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 41 2589.9457999999995 0 LSKALDKAGIKHNVLNAKFHQQE I.claudius_F1_443_824_961965_peptide number 42 218.2072 0 AE I.claudius_F1_443_824_961965_peptide number 43 430.4959 0 IVAE I.claudius_F1_443_824_961965_peptide number 44 3430.8864000000003 0 AGFPSAVTIATNMAGRGTDIILGGNWKAQAAKLE I.claudius_F1_443_824_961965_peptide number 45 587.5802000000001 0 NPTQE I.claudius_F1_443_824_961965_peptide number 46 388.41610000000003 0 QIE I.claudius_F1_443_824_961965_peptide number 47 530.615 0 ALKAE I.claudius_F1_443_824_961965_peptide number 48 333.3392 0 WE I.claudius_F1_443_824_961965_peptide number 49 526.5435 0 KNHE I.claudius_F1_443_824_961965_peptide number 50 1438.7342 0 IVMKAGGLHIIGTE I.claudius_F1_443_824_961965_peptide number 51 440.4543 0 RHE I.claudius_F1_443_824_961965_peptide number 52 3208.4638000000004 0 SRRIDNQLRGRSGRQGDPGSSRFYLSLE I.claudius_F1_443_824_961965_peptide number 53 1223.3985 0 DGLMRIYLNE I.claudius_F1_443_824_961965_peptide number 54 1634.9408000000003 0 GKLNLMRKAFTVAGE I.claudius_F1_443_824_961965_peptide number 55 349.40330000000006 0 AME I.claudius_F1_443_824_961965_peptide number 56 1674.0151 0 SKMLAKVIASAQAKVE I.claudius_F1_443_824_961965_peptide number 57 1446.6088 0 AFHFDGRKNLLE I.claudius_F1_443_824_961965_peptide number 58 1708.7394 0 YDDVANDQRHAIYE I.claudius_F1_443_824_961965_peptide number 59 1568.6009999999997 0 QRNHLLDNDDISE I.claudius_F1_443_824_961965_peptide number 60 2740.0309 0 TINAIRHDVFNGVIDQYIPPQSLE I.claudius_F1_443_824_961965_peptide number 61 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 62 988.0946 0 QWDIKGLE I.claudius_F1_443_824_961965_peptide number 63 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 64 631.6791000000001 0 RLSQE I.claudius_F1_443_824_961965_peptide number 65 482.55060000000003 0 FGME I.claudius_F1_443_824_961965_peptide number 66 971.1071000000002 0 LPISNWLE I.claudius_F1_443_824_961965_peptide number 67 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 68 740.7188000000001 0 DNNLHE I.claudius_F1_443_824_961965_peptide number 69 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 70 503.5499 0 SLRE I.claudius_F1_443_824_961965_peptide number 71 515.6037 0 RIVE I.claudius_F1_443_824_961965_peptide number 72 331.36480000000006 0 IAE I.claudius_F1_443_824_961965_peptide number 73 275.3016 0 KE I.claudius_F1_443_824_961965_peptide number 74 438.47490000000005 0 YKE I.claudius_F1_443_824_961965_peptide number 75 275.3016 0 KE I.claudius_F1_443_824_961965_peptide number 76 487.5472000000001 0 ALVGE I.claudius_F1_443_824_961965_peptide number 77 904.9896000000001 0 DAMRHFE I.claudius_F1_443_824_961965_peptide number 78 1133.3157999999999 0 KGVMLQTLDE I.claudius_F1_443_824_961965_peptide number 79 574.6691000000001 0 LWKE I.claudius_F1_443_824_961965_peptide number 80 2955.3103 0 HLASMDYLRQGIHLRGYAQKDPKQE I.claudius_F1_443_824_961965_peptide number 81 566.6472 0 YKKE I.claudius_F1_443_824_961965_peptide number 82 917.0401 0 SFRMFTE I.claudius_F1_443_824_961965_peptide number 83 2595.0305 0 MLDSLKHQVITALTRVRVRTQE I.claudius_F1_443_824_961965_peptide number 84 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 85 278.32540000000006 0 ME I.claudius_F1_443_824_961965_peptide number 86 147.1293 0 E I.claudius_F1_443_824_961965_peptide number 87 218.2072 0 AE I.claudius_F1_443_824_961965_peptide number 88 658.7078 0 RARQE I.claudius_F1_443_824_961965_peptide number 89 1584.7528000000002 0 MAARINQNNLPVDE I.claudius_F1_443_824_961965_peptide number 90 1007.9553 0 NSQTTQNSE I.claudius_F1_443_824_961965_peptide number 91 248.23319999999998 0 TE I.claudius_F1_443_824_961965_peptide number 92 3662.0692999999997 0 DYSDRRIGRNEPCPCGSGKKYKHCHGSRVARQ I.claudius_F1_444_255_966977_peptide number 1 1864.0397 0 MNNKISVYDKDNFFE I.claudius_F1_444_255_966977_peptide number 2 1658.8957999999998 0 LYQKLRANPISLNE I.claudius_F1_444_255_966977_peptide number 3 373.44450000000006 0 IIE I.claudius_F1_444_255_966977_peptide number 4 3452.1373 0 KPTMLSLLPNLKGKKLLDLGCGTGGHLQLYLE I.claudius_F1_444_255_966977_peptide number 5 1316.4605999999999 0 RGAAKVIGTDLSE I.claudius_F1_444_255_966977_peptide number 6 519.6553 0 KMLE I.claudius_F1_444_255_966977_peptide number 7 346.3364 0 QAE I.claudius_F1_444_255_966977_peptide number 8 2466.8115000000003 0 KDLQKCGQFSGRFSLYHLPIE I.claudius_F1_444_255_966977_peptide number 9 459.5371 0 KLAE I.claudius_F1_444_255_966977_peptide number 10 357.4021 0 LPE I.claudius_F1_444_255_966977_peptide number 11 1900.0503 0 SHFDVITSSFAFHYIE I.claudius_F1_444_255_966977_peptide number 12 2662.9434999999994 0 NFPTLLSTIHDKLSSNGTLIFSQE I.claudius_F1_444_255_966977_peptide number 13 1065.2037 0 HPITTCHKE I.claudius_F1_444_255_966977_peptide number 14 204.1806 0 GE I.claudius_F1_444_255_966977_peptide number 15 489.5249 0 RWE I.claudius_F1_444_255_966977_peptide number 16 2190.4210999999996 0 KNDKKQQVAYRLNHYRE I.claudius_F1_444_255_966977_peptide number 17 147.1293 0 E I.claudius_F1_444_255_966977_peptide number 18 4200.724099999999 0 GKRNRNWFKQPFQTYHRTTATIINNLIHARFQIE I.claudius_F1_444_255_966977_peptide number 19 406.4546 0 QME I.claudius_F1_444_255_966977_peptide number 20 1594.7029 0 EPMLADQPQWHNE I.claudius_F1_444_255_966977_peptide number 21 2294.7392 0 FKDLSHRPPLLFIKARKVE I.claudius_F1_444_255_966977_peptide number 22 146.1876 0 K I.claudius_F1_445_284_968774_peptide number 1 349.40330000000006 0 MAE I.claudius_F1_445_284_968774_peptide number 2 860.0070000000001 0 ITASLVKE I.claudius_F1_445_284_968774_peptide number 3 1236.4223 0 LRDRTGAGMME I.claudius_F1_445_284_968774_peptide number 4 789.9834000000001 0 CKKALVE I.claudius_F1_445_284_968774_peptide number 5 617.6061000000001 0 ANGDIE I.claudius_F1_445_284_968774_peptide number 6 2484.8767000000003 0 LAIDNMRKSGQAKAAKKAGRVAAE I.claudius_F1_445_284_968774_peptide number 7 856.0216 0 GVILARVE I.claudius_F1_445_284_968774_peptide number 8 833.9282000000001 0 NGFGVLVE I.claudius_F1_445_284_968774_peptide number 9 495.57090000000005 0 MNCE I.claudius_F1_445_284_968774_peptide number 10 1667.8133 0 TDFVAKDAGFLGLANE I.claudius_F1_445_284_968774_peptide number 11 1437.5509 0 VTDFAAANKGTTIE I.claudius_F1_445_284_968774_peptide number 12 805.875 0 ALQAQFE I.claudius_F1_445_284_968774_peptide number 13 147.1293 0 E I.claudius_F1_445_284_968774_peptide number 14 1155.3908999999999 0 KRAALVAKIGE I.claudius_F1_445_284_968774_peptide number 15 3369.892800000001 0 NMNIRRVAYLDGQVIAQYLHGAKIGVLVAGE I.claudius_F1_445_284_968774_peptide number 16 477.42320000000007 0 GSADE I.claudius_F1_445_284_968774_peptide number 17 1508.8275999999998 0 LKKVAMHVAASKPE I.claudius_F1_445_284_968774_peptide number 18 604.6521 0 FVNPE I.claudius_F1_445_284_968774_peptide number 19 519.503 0 DVSAE I.claudius_F1_445_284_968774_peptide number 20 345.39150000000006 0 VVE I.claudius_F1_445_284_968774_peptide number 21 284.2686 0 HE I.claudius_F1_445_284_968774_peptide number 22 1810.0600999999997 0 RQIQIDIAINSGKPKE I.claudius_F1_445_284_968774_peptide number 23 331.36480000000006 0 IAE I.claudius_F1_445_284_968774_peptide number 24 505.62880000000007 0 KMVE I.claudius_F1_445_284_968774_peptide number 25 1053.2360999999999 0 GRMKKFTGE I.claudius_F1_445_284_968774_peptide number 26 3645.0986000000007 0 VSLTGQAFVMDPSVSVGDFLKSVNTSVSNFIRLE I.claudius_F1_445_284_968774_peptide number 27 303.31170000000003 0 VGE I.claudius_F1_445_284_968774_peptide number 28 317.33820000000003 0 GIE I.claudius_F1_445_284_968774_peptide number 29 403.47390000000007 0 KKE I.claudius_F1_445_284_968774_peptide number 30 147.1293 0 E I.claudius_F1_445_284_968774_peptide number 31 551.5464000000001 0 DFAAE I.claudius_F1_445_284_968774_peptide number 32 829.9412 0 VAKITGGNA I.claudius_F1_446_75_975021_peptide number 1 1078.2819 0 MLVIFAQQE I.claudius_F1_446_75_975021_peptide number 2 1991.2983 0 LLHYVHQAFLHSRLKE I.claudius_F1_446_75_975021_peptide number 3 5161.957300000001 0 SLKPQILYHICQCVSKLLFQNQWKNDGLLYRTFSLPKSDHIRE I.claudius_F1_446_75_975021_peptide number 4 769.9322 0 RILIQQ I.claudius_F1_447_823_977261_peptide number 1 5524.323000000001 0 MFPYPSGRLHMGHVRNYTIGDVISRYQRMLGKNVLQPFGWDAFGLPAE I.claudius_F1_447_823_977261_peptide number 2 1748.9755 0 GAAIKNKTAPAKWTYE I.claudius_F1_447_823_977261_peptide number 3 2572.9334 0 NIAYMKKQLQLLGFGFDWDRE I.claudius_F1_447_823_977261_peptide number 4 760.8991000000001 0 IATCKPE I.claudius_F1_447_823_977261_peptide number 5 787.8581000000001 0 YYKWE I.claudius_F1_447_823_977261_peptide number 6 856.9201 0 QWFFTE I.claudius_F1_447_823_977261_peptide number 7 2486.8395000000005 0 LYKKGLVYKKTSTVNWCPNDE I.claudius_F1_447_823_977261_peptide number 8 645.7024 0 TVLANE I.claudius_F1_447_823_977261_peptide number 9 511.5289 0 QVHE I.claudius_F1_447_823_977261_peptide number 10 1268.4425 0 GCCWRCDTPVE I.claudius_F1_447_823_977261_peptide number 11 403.4308000000001 0 QKE I.claudius_F1_447_823_977261_peptide number 12 1623.8451000000002 0 IPQWFIKITDYAE I.claudius_F1_447_823_977261_peptide number 13 3270.7385 0 QLLGGLDTLPQWPDMVKTMQRNWIGRSE I.claudius_F1_447_823_977261_peptide number 14 303.31170000000003 0 GVE I.claudius_F1_447_823_977261_peptide number 15 1123.1702 0 ITFDVANTNE I.claudius_F1_447_823_977261_peptide number 16 3797.1877999999997 0 KVAVYTTRPDTFYGVSYLGIAAAHPLASLAAQNNSE I.claudius_F1_447_823_977261_peptide number 17 790.9034 0 LAAFIQE I.claudius_F1_447_823_977261_peptide number 18 829.9413000000002 0 AKNAKVAE I.claudius_F1_447_823_977261_peptide number 19 749.8301000000001 0 ADLATME I.claudius_F1_447_823_977261_peptide number 20 5253.0882 0 KKGMATGLFAIHPLTGDKLPIWVANFVLMHYGTGAVMAVPAHDQRDFE I.claudius_F1_447_823_977261_peptide number 21 2131.4698000000003 0 FAQKYSLPIKQVIAPLADE I.claudius_F1_447_823_977261_peptide number 22 147.1293 0 E I.claudius_F1_447_823_977261_peptide number 23 1163.3202 0 IDLTKQAFVE I.claudius_F1_447_823_977261_peptide number 24 998.0482 0 HGKLVNSDE I.claudius_F1_447_823_977261_peptide number 25 1958.0878999999998 0 FDGKNFDGAFNGIADKLE I.claudius_F1_447_823_977261_peptide number 26 4044.6893 0 KLGVGKRQVNYRLRDWGVSRQRYWGAPIPMLTLE I.claudius_F1_447_823_977261_peptide number 27 1028.1372 0 NGDVVPAPME I.claudius_F1_447_823_977261_peptide number 28 909.0775000000001 0 DLPIILPE I.claudius_F1_447_823_977261_peptide number 29 3244.5856000000003 0 DVVMDGVKSPINADPNWAKTTFNDAPALKE I.claudius_F1_447_823_977261_peptide number 30 1106.1597 0 TDTFDTFME I.claudius_F1_447_823_977261_peptide number 31 2546.7439 0 SSWYYARYTCPQYQNGMLDAE I.claudius_F1_447_823_977261_peptide number 32 147.1293 0 E I.claudius_F1_447_823_977261_peptide number 33 1737.9046 0 ANYWLPVDQYIGGIE I.claudius_F1_447_823_977261_peptide number 34 3037.4970000000003 0 HATMHLLYFRFFHKLLRDAGFVTSE I.claudius_F1_447_823_977261_peptide number 35 2777.0861000000004 0 EPADKLLCQGMVLADAFYYTSPTNE I.claudius_F1_447_823_977261_peptide number 36 1428.6318 0 RIWVSPTQVTLE I.claudius_F1_447_823_977261_peptide number 37 418.40240000000006 0 RDE I.claudius_F1_447_823_977261_peptide number 38 1227.4105 0 KGRIIKATDPE I.claudius_F1_447_823_977261_peptide number 39 360.3663 0 GRE I.claudius_F1_447_823_977261_peptide number 40 2301.5994 0 LVHSGMTKMSKSKNNGIDPQE I.claudius_F1_447_823_977261_peptide number 41 377.4565 0 MVE I.claudius_F1_447_823_977261_peptide number 42 2034.3581 0 KYGADTVRLFMMFASPAE I.claudius_F1_447_823_977261_peptide number 43 492.5869 0 MTLE I.claudius_F1_447_823_977261_peptide number 44 461.4684000000001 0 WQE I.claudius_F1_447_823_977261_peptide number 45 390.389 0 SGVE I.claudius_F1_447_823_977261_peptide number 46 3739.1978999999997 0 GAKRFLGRVWNLVYQYQQNPAKTSLDLTALSAE I.claudius_F1_447_823_977261_peptide number 47 928.0909000000001 0 QKVLRRE I.claudius_F1_447_823_977261_peptide number 48 2972.379200000001 0 VHKTIAKVSDDIGRRQTFNTAIAAVME I.claudius_F1_447_823_977261_peptide number 49 1449.6691999999998 0 LMNKLTKASLDSE I.claudius_F1_447_823_977261_peptide number 50 919.0146000000001 0 QDRAVMAE I.claudius_F1_447_823_977261_peptide number 51 2160.6005 0 ALSAVVRMLYPITPHICFE I.claudius_F1_447_823_977261_peptide number 52 930.0154 0 LWQALGNE I.claudius_F1_447_823_977261_peptide number 53 705.7113 0 SAIDTAE I.claudius_F1_447_823_977261_peptide number 54 746.8079 0 WVKADE I.claudius_F1_447_823_977261_peptide number 55 519.6123 0 AAMVE I.claudius_F1_447_823_977261_peptide number 56 262.2167 0 DE I.claudius_F1_447_823_977261_peptide number 57 2439.8065000000006 0 KLIVVQVNGKVRGKVTVATDADE I.claudius_F1_447_823_977261_peptide number 58 1209.3026 0 DTVKTIAFADE I.claudius_F1_447_823_977261_peptide number 59 3204.891000000001 0 NVKKFIDNQHIVKVIYVVGKLLNVVVKP I.claudius_F1_448_80_982210_peptide number 1 4809.822099999999 0 MPHDVMQMGLRYLLVLGRCRRYPLKCQIYPLKRPHLQRE I.claudius_F1_448_80_982210_peptide number 2 3449.0174999999995 0 ILVIHHQQSVAYIVRLTPPLLLHLHRHDE I.claudius_F1_448_80_982210_peptide number 3 1337.526 0 RSAYPLRLAYQ I.claudius_F1_449_54_984363_peptide number 1 3829.7512 0 MKTAVLSFPKLKKLLLTLIGLKQHRHLVITMQE I.claudius_F1_449_54_984363_peptide number 2 2392.7114 0 CLNSHLLSSYQILHCYRVNE I.claudius_F1_450_97_984895_peptide number 1 8289.788800000002 0 MVTVFLKLITLVLLFRIDRSSRIRNLCLRVQSYRLIARLRFDGIHHRKWFYQAGHQTKLSHIQNLRLE I.claudius_F1_450_97_984895_peptide number 2 3285.9069000000004 0 CTWLNALNHKLLRLLQVYILSHPLVGNR I.claudius_F1_451_509_985887_peptide number 1 4910.437200000001 0 MSSQCPFSHLAATNLTMGNGAPVADNQNSLTAGPRGPLLAQDLWLNE I.claudius_F1_451_509_985887_peptide number 2 977.1152000000002 0 KLADFVRE I.claudius_F1_451_509_985887_peptide number 3 456.5332000000001 0 VIPE I.claudius_F1_451_509_985887_peptide number 4 3514.968400000001 0 RRMHAKGSGAFGTFTVTHDITKYTRAKIFSE I.claudius_F1_451_509_985887_peptide number 5 660.7602 0 VGKKTE I.claudius_F1_451_509_985887_peptide number 6 1229.4049 0 MFARFTTVAGE I.claudius_F1_451_509_985887_peptide number 7 688.6874 0 RGAADAE I.claudius_F1_451_509_985887_peptide number 8 1615.8298 0 RDIRGFALKFYTE I.claudius_F1_451_509_985887_peptide number 9 147.1293 0 E I.claudius_F1_451_509_985887_peptide number 10 6061.759900000002 0 GNWDLVGNNTPVFFLRDPRKFPDLNKAVKRDPRTNMRSATNNWDFWTLLPE I.claudius_F1_451_509_985887_peptide number 11 3919.324 0 ALHQVTVVMSDRGIPASYRHMHGFGSHTYSFWNE I.claudius_F1_451_509_985887_peptide number 12 275.2585 0 AGE I.claudius_F1_451_509_985887_peptide number 13 2621.9479000000006 0 RFWVKFHFRTQQGIKNLTDAE I.claudius_F1_451_509_985887_peptide number 14 289.28510000000006 0 AAE I.claudius_F1_451_509_985887_peptide number 15 829.8981000000001 0 IIANDRE I.claudius_F1_451_509_985887_peptide number 16 1047.0791 0 SHQRDLYE I.claudius_F1_451_509_985887_peptide number 17 331.36480000000006 0 AIE I.claudius_F1_451_509_985887_peptide number 18 1964.2896000000003 0 RGDFPKWTLFVQIMPE I.claudius_F1_451_509_985887_peptide number 19 404.37250000000006 0 ADAE I.claudius_F1_451_509_985887_peptide number 20 2704.1248 0 KVPYHPFDLTKVWSKKDYPLIE I.claudius_F1_451_509_985887_peptide number 21 303.31170000000003 0 VGE I.claudius_F1_451_509_985887_peptide number 22 294.30320000000006 0 FE I.claudius_F1_451_509_985887_peptide number 23 741.793 0 LNRNPE I.claudius_F1_451_509_985887_peptide number 24 840.8761000000002 0 NFFADVE I.claudius_F1_451_509_985887_peptide number 25 14224.398600000006 0 QSAFAPSNLVPGIGASPDRMLQARLFNYADAQRYRLGVNYRQIPVNRPRCPVHSNQRDGQGRVDGNYGSLPHYEPNSFSQWQQQPDFAEPPLRINGDAAHWDYRNDDNDYFSQPRALFNLMNAE I.claudius_F1_451_509_985887_peptide number 26 4243.677699999998 0 QKQSLFNNTAAAMGDAPDFIKYRHIRNCHWCDAAYGE I.claudius_F1_451_509_985887_peptide number 27 1057.2413 0 GVAKALGLTVE I.claudius_F1_451_509_985887_peptide number 28 1811.0018000000005 0 DALKARDTDPALGQGGLL I.claudius_F1_452_98_995373_peptide number 1 10959.511700000008 0 MPNQATKALKTHFLRDPRTTNRPSQVRNKPTKHQAQCQWLKITKKPTPIHALSGQFVVQIGYKSTHSNSLQNLPQSPHSQHIVKVDGKLIPHLATLD I.claudius_F1_453_52_996426_peptide number 1 5183.712699999999 0 MLLSPFQNNHQYGLTPHSINPMRQNQYDGNPQHLQLRHSSLQIE I.claudius_F1_453_52_996426_peptide number 2 739.9858000000002 0 LALILVV I.claudius_F1_454_90_998216_peptide number 1 2141.5079 0 MIKTKLTYQSVIPTNCTAE I.claudius_F1_454_90_998216_peptide number 2 2683.886400000001 0 TCKRAFQQTACNAGGGWADLLDNNE I.claudius_F1_454_90_998216_peptide number 3 310.30260000000004 0 YE I.claudius_F1_454_90_998216_peptide number 4 1432.6649000000002 0 ITRLQFNWLIE I.claudius_F1_454_90_998216_peptide number 5 502.56180000000006 0 GKGLE I.claudius_F1_454_90_998216_peptide number 6 1846.1319999999996 0 IKLKGNLKQTPNISYE I.claudius_F1_454_90_998216_peptide number 7 1286.519 0 TSLVVVLWNQK I.claudius_F1_455_132_998773_peptide number 1 2684.0292000000004 0 MSLFKKSPKKGDNQGALKDFVTDE I.claudius_F1_455_132_998773_peptide number 2 3940.4871 0 KLAYFRPHFSSPPRILNANKMPKLYWFSDSQAE I.claudius_F1_455_132_998773_peptide number 3 246.2604 0 VE I.claudius_F1_455_132_998773_peptide number 4 1186.3552000000002 0 INGTVSAVLIAE I.claudius_F1_455_132_998773_peptide number 5 5149.8509 0 GDLKLTGKGRISGAVITSGNLTLDGVTLAYGKKTVVALVQQYSQWQLAE I.claudius_F1_455_132_998773_peptide number 6 1354.3777 0 KSWSDFNVQDE I.claudius_F1_456_1081_999617_peptide number 1 1018.1868000000001 0 MAQWLQIE I.claudius_F1_456_1081_999617_peptide number 2 459.5371 0 LAKE I.claudius_F1_456_1081_999617_peptide number 3 3293.7867000000006 0 TGISANLKFPMPASFIWQLYAQNLPATALE I.claudius_F1_456_1081_999617_peptide number 4 2653.1921 0 NPFDKDSMMWRLMRLIPIFLE I.claudius_F1_456_1081_999617_peptide number 5 275.3016 0 KE I.claudius_F1_456_1081_999617_peptide number 6 1834.9388 0 NFSPLRNYLSSSPHSE I.claudius_F1_456_1081_999617_peptide number 7 2981.3559000000005 0 QYKLYQLSSKIADLFDQYLVYRPE I.claudius_F1_456_1081_999617_peptide number 8 850.9585000000002 0 WIFAWE I.claudius_F1_456_1081_999617_peptide number 9 332.35290000000003 0 KGE I.claudius_F1_456_1081_999617_peptide number 10 262.2167 0 DE I.claudius_F1_456_1081_999617_peptide number 11 3441.7598000000003 0 QITDQIQKQQPNLNATLFAQIQGNTKWQGE I.claudius_F1_456_1081_999617_peptide number 12 1742.9694000000002 0 LWRALVVDVKSDVNE I.claudius_F1_456_1081_999617_peptide number 13 5470.416200000002 0 ATHRAALHNQFLALLADKKAPKKLPSRIFIFGIPALPTAYLNILQAISSE I.claudius_F1_456_1081_999617_peptide number 14 1575.7426 0 VDIHLFFNNPCQE I.claudius_F1_456_1081_999617_peptide number 15 3365.6241999999997 0 YWGDISDLRLDYLRSRQRYQFNKQDE I.claudius_F1_456_1081_999617_peptide number 16 833.8851000000001 0 NQPLFSE I.claudius_F1_456_1081_999617_peptide number 17 831.8676 0 DQLSQLE I.claudius_F1_456_1081_999617_peptide number 18 1342.4101 0 NAQFDVTYQKE I.claudius_F1_456_1081_999617_peptide number 19 3103.5946 0 NLQLGNPLLAAWGKMGRDFLYILVRDE I.claudius_F1_456_1081_999617_peptide number 20 147.1293 0 E I.claudius_F1_456_1081_999617_peptide number 21 1431.5479 0 HIPTYPVNAYQE I.claudius_F1_456_1081_999617_peptide number 22 260.2869 0 IE I.claudius_F1_456_1081_999617_peptide number 23 1779.9876000000002 0 SNSLLGQLQSQILHLE I.claudius_F1_456_1081_999617_peptide number 24 2750.1218999999996 0 NKPLNIAKNDRTLTLHSCHSAMRE I.claudius_F1_456_1081_999617_peptide number 25 246.2604 0 VE I.claudius_F1_456_1081_999617_peptide number 26 6751.5365 0 VLHDYLLDLFNQDPSLTPKDVVVMVADINQYTPYIQAVFGQKNGDVPQIPFSLSDNKLSE I.claudius_F1_456_1081_999617_peptide number 27 1836.134 0 SDVLVSSYLTLLRLKE I.claudius_F1_456_1081_999617_peptide number 28 653.6383 0 SNFSAE I.claudius_F1_456_1081_999617_peptide number 29 1483.7716 0 DVLVLLDIPAMRE I.claudius_F1_456_1081_999617_peptide number 30 1642.8965 0 RFNISLADLPLVRE I.claudius_F1_456_1081_999617_peptide number 31 3181.4282000000003 0 WVTDSGIRFGLQKNQDGINFNSWQAGLE I.claudius_F1_456_1081_999617_peptide number 32 1239.5106 0 RMILGYAMRE I.claudius_F1_456_1081_999617_peptide number 33 147.1293 0 E I.claudius_F1_456_1081_999617_peptide number 34 2052.2007 0 QGIWQDSLGLNSSYGLKGE I.claudius_F1_456_1081_999617_peptide number 35 1828.0322 0 LAGNLSHFFTALSALHE I.claudius_F1_456_1081_999617_peptide number 36 1026.1013 0 TLQQAHSIE I.claudius_F1_456_1081_999617_peptide number 37 589.6407 0 KWQE I.claudius_F1_456_1081_999617_peptide number 38 1637.8734000000002 0 ILTALLSDFFVRNE I.claudius_F1_456_1081_999617_peptide number 39 1361.4730000000002 0 DTSDMIFYIQE I.claudius_F1_456_1081_999617_peptide number 40 502.56180000000006 0 KINE I.claudius_F1_456_1081_999617_peptide number 41 331.36480000000006 0 LAE I.claudius_F1_456_1081_999617_peptide number 42 1138.2758000000001 0 HLKTLHFNE I.claudius_F1_456_1081_999617_peptide number 43 147.1293 0 E I.claudius_F1_456_1081_999617_peptide number 44 459.494 0 LQAE I.claudius_F1_456_1081_999617_peptide number 45 1231.4587999999999 0 VIADVITMQLE I.claudius_F1_456_1081_999617_peptide number 46 8432.587100000004 0 DAPNSLKFLAGKVNFCTLLPMRSVPFKVVCLLGMNDADYPRTQTPNSFDLMQYHYQKGDRVRRDDDRYLFLE I.claudius_F1_456_1081_999617_peptide number 47 4860.413500000001 0 ALLAARDYCYISYVGRSITDNQPKEPSVLVSQLLDYINQGQKE I.claudius_F1_456_1081_999617_peptide number 48 786.9132000000001 0 NVLTVIE I.claudius_F1_456_1081_999617_peptide number 49 1748.8694999999998 0 HPMTAFSPDNFKNNE I.claudius_F1_456_1081_999617_peptide number 50 2745.9941000000003 0 KFTRSFATKWLPIAQFDASSNNSE I.claudius_F1_456_1081_999617_peptide number 51 797.9161 0 FAVTMTE I.claudius_F1_456_1081_999617_peptide number 52 374.3895 0 NLE I.claudius_F1_456_1081_999617_peptide number 53 388.4592 0 KIE I.claudius_F1_456_1081_999617_peptide number 54 147.1293 0 E I.claudius_F1_456_1081_999617_peptide number 55 246.2604 0 VE I.claudius_F1_456_1081_999617_peptide number 56 992.1232 0 LDALVSFVE I.claudius_F1_456_1081_999617_peptide number 57 1027.1722 0 NPVKFFFE I.claudius_F1_456_1081_999617_peptide number 58 1497.6508 0 KQLGVYFRDKDE I.claudius_F1_456_1081_999617_peptide number 59 689.7152000000001 0 RIADSE I.claudius_F1_456_1081_999617_peptide number 60 2433.5777999999996 0 NFTLSGLDNYSLNNDLIYLDE I.claudius_F1_456_1081_999617_peptide number 61 1388.4403000000002 0 QNFADYFRQAE I.claudius_F1_456_1081_999617_peptide number 62 968.1515 0 VKGVLPRAE I.claudius_F1_456_1081_999617_peptide number 63 812.9091000000001 0 FGKVYAE I.claudius_F1_456_1081_999617_peptide number 64 972.0539000000001 0 NIRDNVLE I.claudius_F1_456_1081_999617_peptide number 65 1148.3519000000001 0 FKKKIADLGE I.claudius_F1_456_1081_999617_peptide number 66 1960.0641000000003 0 AKHASVDFNLSVDWQNE I.claudius_F1_456_1081_999617_peptide number 67 5973.818600000001 0 NQKIRLFGYMDALFGDDSQVIHWHFAKYKDRYCIRPWIYYLIQCVTQE I.claudius_F1_456_1081_999617_peptide number 68 1638.903 0 NAVPAKLITQDKVLE I.claudius_F1_456_1081_999617_peptide number 69 567.6749000000001 0 LPPIE I.claudius_F1_456_1081_999617_peptide number 70 303.31500000000005 0 RE I.claudius_F1_456_1081_999617_peptide number 71 2222.5357 0 VALAQLQIYVKDYLQSQIE I.claudius_F1_456_1081_999617_peptide number 72 2045.2929 0 IQLVPTVRNISDFIVSDE I.claudius_F1_456_1081_999617_peptide number 73 534.5176 0 NSVSE I.claudius_F1_456_1081_999617_peptide number 74 516.5884000000001 0 KLQE I.claudius_F1_456_1081_999617_peptide number 75 361.3908 0 LTE I.claudius_F1_456_1081_999617_peptide number 76 2967.2532 0 SNGFGPKADPYWSRVLAQTSRFKQPE I.claudius_F1_456_1081_999617_peptide number 77 3148.7447000000006 0 NIAKLLKQTKAWFGLLFAQKKTRKTQS I.claudius_F1_457_128_1009494_peptide number 1 1273.5219 0 MPACSKANILPE I.claudius_F1_457_128_1009494_peptide number 2 3632.3481000000006 0 RQKPACTSSTIIKMPCFWVTSRTFCKKLIGAE I.claudius_F1_457_128_1009494_peptide number 3 8788.095800000003 0 TTPPSPWIASKITAAGFTTPLSTSSMKFSKYCSTAFAPASPPMPNGQRYSCGYGINCTPGIKFSTAFFAPRLPVKANAPWVIP I.claudius_F1_458_85_1010557_peptide number 1 3467.1838000000002 0 MKSKFSFLRVKRLNKKQTFLIRTNKKPE I.claudius_F1_458_85_1010557_peptide number 2 6037.101199999997 0 FLLGFKIIKSILFDFCFFIDNVFTHYWIKFFDFHFFRHITFVFISCVE I.claudius_F1_458_85_1010557_peptide number 3 895.0593000000001 0 VTCLCSRN I.claudius_F1_459_50_1011911_peptide number 1 4747.823700000001 0 MLLLQMPAIFPVALIHHCFPYIYKRKIRKILTALFRFDE I.claudius_F1_459_50_1011911_peptide number 2 1173.3861 0 QVIQNLRCIS I.claudius_F1_460_67_1012307_peptide number 1 8201.924900000004 0 MLYRNLYLIHKQSWQWGILNLPNGLMPLLLRQLVQILSPVLLLAWRMIYFQQFVLRLMRQFFLRQQ I.claudius_F1_461_186_1012780_peptide number 1 737.864 0 MGFAIAE I.claudius_F1_461_186_1012780_peptide number 2 3578.0853000000006 0 AFAKRGANVTLIAGPVNLTTPKNVNRINVISAQE I.claudius_F1_461_186_1012780_peptide number 3 863.9773000000001 0 MWQASLE I.claudius_F1_461_186_1012780_peptide number 4 2255.5492000000004 0 SAVKNQIFIGCAAVADYRVTE I.claudius_F1_461_186_1012780_peptide number 5 317.3383 0 VAE I.claudius_F1_461_186_1012780_peptide number 6 1032.1490000000001 0 QKIKKSGDE I.claudius_F1_461_186_1012780_peptide number 7 3417.9523000000013 0 ISIKLIKNPDIISDVGHLKTHRPFTVGFAAE I.claudius_F1_461_186_1012780_peptide number 8 1538.6117000000002 0 TQNVDDYAKDKLE I.claudius_F1_461_186_1012780_peptide number 9 2396.6125 0 RKNLDMICANDVSGGQVFNADE I.claudius_F1_461_186_1012780_peptide number 10 2468.8936000000003 0 NALQLFWKNGHKKLSLKSKVE I.claudius_F1_461_186_1012780_peptide number 11 843.9214 0 LAADLVNE I.claudius_F1_461_186_1012780_peptide number 12 373.44450000000006 0 IIE I.claudius_F1_461_186_1012780_peptide number 13 807.9372999999999 0 RYQKTL I.claudius_F1_462_178_1013967_peptide number 1 615.6996 0 MLHSE I.claudius_F1_462_178_1013967_peptide number 2 491.5624 0 RGME I.claudius_F1_462_178_1013967_peptide number 3 1176.3903 0 RMTTARLAKE I.claudius_F1_462_178_1013967_peptide number 4 489.52010000000007 0 VGVSE I.claudius_F1_462_178_1013967_peptide number 5 1852.1598999999999 0 AALYRYFPSKTKMFE I.claudius_F1_462_178_1013967_peptide number 6 444.52240000000006 0 ALIE I.claudius_F1_462_178_1013967_peptide number 7 397.4262 0 HIE I.claudius_F1_462_178_1013967_peptide number 8 1578.7897999999998 0 STLLSRITASMRNE I.claudius_F1_462_178_1013967_peptide number 9 4152.800700000001 0 TQTMNRIHDILQTILDFARKNPGLTRVLTGHALMFE I.claudius_F1_462_178_1013967_peptide number 10 147.1293 0 E I.claudius_F1_462_178_1013967_peptide number 11 1792.0035000000003 0 AQLQARVAQFFDRLE I.claudius_F1_462_178_1013967_peptide number 12 1806.204 0 MQFVNILQMRKLRE I.claudius_F1_462_178_1013967_peptide number 13 906.9392000000001 0 GRAFNVDE I.claudius_F1_462_178_1013967_peptide number 14 1354.6178000000002 0 RIIASHLVTLCE I.claudius_F1_462_178_1013967_peptide number 15 2467.7169 0 GQFMRYVRTNFRLNSSQSFE I.claudius_F1_462_178_1013967_peptide number 16 1434.6394 0 QQWRFIEPLFA I.claudius_F1_463_97_1015143_peptide number 1 4730.475399999999 0 MFLTAQLARRLQNTSRQVTNLAFLDVAGRIAQTLMNLAKQPE I.claudius_F1_463_97_1015143_peptide number 2 1856.132 0 AMTHPDGMQIKITRQE I.claudius_F1_463_97_1015143_peptide number 3 1079.2518 0 IGQMVGCSRE I.claudius_F1_463_97_1015143_peptide number 4 1159.4424999999999 0 TVGRIIKMLE I.claudius_F1_463_97_1015143_peptide number 5 1992.2417000000003 0 DQNLIHAHGKTIVVYGAR I.claudius_F1_464_65_1017168_peptide number 1 4455.106199999999 0 MTPSRSLHSNKRSQPALSAFLLRSTKFPITPAPFIPRSSE I.claudius_F1_464_65_1017168_peptide number 2 2943.4435000000003 0 KIVPWKFNFLRKISFNQYFEPLAG I.claudius_F1_465_81_1020796_peptide number 1 6864.8980999999985 0 MCSIPTAFATDSTNSAAKITRSSPSWTKLYSKSAFTAIARLDGIVQGVVVQMMADNLPCPLPCAE I.claudius_F1_465_81_1020796_peptide number 2 1475.6468000000002 0 NLASISSALSAGKRT I.claudius_F1_466_63_1023234_peptide number 1 2981.556500000001 0 MAAGTPSKKIIRTPQSIVLRKSTALLAE I.claudius_F1_466_63_1023234_peptide number 2 2073.3543 0 SPSRLTWWRASVGKITVE I.claudius_F1_466_63_1023234_peptide number 3 1771.9956999999997 0 IAMPNKPRGNSSKRSE I.claudius_F1_467_62_1024591_peptide number 1 1959.3363000000002 0 MMRTYIKKVYAQVAAGE I.claudius_F1_467_62_1024591_peptide number 2 504.53470000000004 0 KSAAE I.claudius_F1_467_62_1024591_peptide number 3 535.5901 0 AAFVE I.claudius_F1_467_62_1024591_peptide number 4 3700.4303 0 MQKVVDRMASKGLIHANKAANHKSKLAAQIKKLA I.claudius_F1_468_286_1025561_peptide number 1 1618.8057000000001 0 MQNPKDDVLYAPVE I.claudius_F1_468_286_1025561_peptide number 2 785.8008000000001 0 WIDHSE I.claudius_F1_468_286_1025561_peptide number 3 2634.8971000000006 0 GYSDIRYHKSTDGIAKITINRPE I.claudius_F1_468_286_1025561_peptide number 4 1444.6379 0 VRNAFRPQTVKE I.claudius_F1_468_286_1025561_peptide number 5 1420.5668 0 MMTAFSDARFDE I.claudius_F1_468_286_1025561_peptide number 6 1014.1734 0 NIGVIVLTGE I.claudius_F1_468_286_1025561_peptide number 7 204.1806 0 GE I.claudius_F1_468_286_1025561_peptide number 8 7361.3193 0 KAFCSGGDQKVRGDYGGYKDDSGVHHLNVLDFQRDIRSCPKPVVAMVAGYAIGGGHVLHMLCDLTIAAE I.claudius_F1_468_286_1025561_peptide number 9 3585.0149000000006 0 NAIFGQTGPKVGSFDGGWGASYMARLVGQKKARE I.claudius_F1_468_286_1025561_peptide number 10 1570.7691000000002 0 IWFLCRQYNAQE I.claudius_F1_468_286_1025561_peptide number 11 1820.0683999999997 0 ALDMGLVNTVVPYADLE I.claudius_F1_468_286_1025561_peptide number 12 275.3016 0 KE I.claudius_F1_468_286_1025561_peptide number 13 949.0885000000001 0 TVRWCRE I.claudius_F1_468_286_1025561_peptide number 14 2972.4234999999994 0 MLRNSPIAIRCLKAALNADCDGQAGLQE I.claudius_F1_468_286_1025561_peptide number 15 1461.7014 0 LAGNATMLFYMTE I.claudius_F1_468_286_1025561_peptide number 16 147.1293 0 E I.claudius_F1_468_286_1025561_peptide number 17 332.3098 0 GQE I.claudius_F1_468_286_1025561_peptide number 18 806.8233 0 GRNAFNE I.claudius_F1_468_286_1025561_peptide number 19 1618.8404 0 KRAPDFSKFRRNP I.claudius_F1_469_51_1027895_peptide number 1 4021.940600000001 0 MWLKALFAVWARKVTSLPFYLLWITLLKNKKIE I.claudius_F1_469_51_1027895_peptide number 2 2198.5272999999997 0 YFWRNSQNFIANLKKLR I.claudius_F1_470_449_1028778_peptide number 1 391.48300000000006 0 MLE I.claudius_F1_470_449_1028778_peptide number 2 985.1389 0 KVVIANRGE I.claudius_F1_470_449_1028778_peptide number 3 1285.6021 0 IALRILRACKE I.claudius_F1_470_449_1028778_peptide number 4 2601.9518 0 LGIKTVAVHSTADRDLKHVLLADE I.claudius_F1_470_449_1028778_peptide number 5 2384.7888 0 TICIGPAPSAKSYLNIPAIIAAAE I.claudius_F1_470_449_1028778_peptide number 6 1633.7556 0 VTGADAIHPGYGFLSE I.claudius_F1_470_449_1028778_peptide number 7 665.6490000000001 0 NADFAE I.claudius_F1_470_449_1028778_peptide number 8 374.38960000000003 0 QVE I.claudius_F1_470_449_1028778_peptide number 9 5275.090800000001 0 RSGFTFIGPTADVIRLMGDKVSAIKAMKKAGVPCVPGSDGPVSNDIAKNKE I.claudius_F1_470_449_1028778_peptide number 10 2899.4210000000003 0 IAKRIGYPIIIKASGGGGGRGMRVVRSE I.claudius_F1_470_449_1028778_peptide number 11 446.45220000000006 0 DALE I.claudius_F1_470_449_1028778_peptide number 12 147.1293 0 E I.claudius_F1_470_449_1028778_peptide number 13 849.9923000000001 0 SIAMTKAE I.claudius_F1_470_449_1028778_peptide number 14 1503.6984000000002 0 AKAAFNNDMVYME I.claudius_F1_470_449_1028778_peptide number 15 551.6325 0 KYLE I.claudius_F1_470_449_1028778_peptide number 16 750.8032000000001 0 NPRHVE I.claudius_F1_470_449_1028778_peptide number 17 1713.885 0 IQVLADTHGNAVYLAE I.claudius_F1_470_449_1028778_peptide number 18 1772.0223000000003 0 RDCSMQRRHQKVVE I.claudius_F1_470_449_1028778_peptide number 19 147.1293 0 E I.claudius_F1_470_449_1028778_peptide number 20 754.8283 0 APAPGITE I.claudius_F1_470_449_1028778_peptide number 21 147.1293 0 E I.claudius_F1_470_449_1028778_peptide number 22 1648.8664 0 VRRDIGSRCANACVE I.claudius_F1_470_449_1028778_peptide number 23 1070.1554999999998 0 IGYRGAGTFE I.claudius_F1_470_449_1028778_peptide number 24 570.6341000000001 0 FLYE I.claudius_F1_470_449_1028778_peptide number 25 318.2832 0 NGE I.claudius_F1_470_449_1028778_peptide number 26 717.8080000000001 0 FYFIE I.claudius_F1_470_449_1028778_peptide number 27 990.1355000000001 0 MNTRIQVE I.claudius_F1_470_449_1028778_peptide number 28 581.6188000000001 0 HPVTE I.claudius_F1_470_449_1028778_peptide number 29 1104.3177 0 MITGVDLVKE I.claudius_F1_470_449_1028778_peptide number 30 1670.9496 0 QLRIAAGLPISFKQE I.claudius_F1_470_449_1028778_peptide number 31 1127.3146 0 DIKVKGHAME I.claudius_F1_470_449_1028778_peptide number 32 704.796 0 CRINAE I.claudius_F1_470_449_1028778_peptide number 33 5965.6231000000025 0 DPKTFLPSPGKVNHLHSPGGLGVRWDSHVYGGYTVPPHYDSMIAKLITYGDTRE I.claudius_F1_470_449_1028778_peptide number 34 1387.608 0 VAIRRMQNALSE I.claudius_F1_470_449_1028778_peptide number 35 1563.7932 0 TIIDGIKTNIPLHE I.claudius_F1_470_449_1028778_peptide number 36 486.60210000000006 0 LILE I.claudius_F1_470_449_1028778_peptide number 37 262.2167 0 DE I.claudius_F1_470_449_1028778_peptide number 38 1520.6442 0 NFQKGGTNIHYLE I.claudius_F1_470_449_1028778_peptide number 39 818.9815000000001 0 KKLGMNE I.claudius_F1_471_80_1031835_peptide number 1 2336.7992000000004 0 MRQKPAQKLATGQLGKKKVPE I.claudius_F1_471_80_1031835_peptide number 2 4917.7328 0 DFRILGMLKKNGHYLTTTLQNCPWKAVGNIIGITRNIMNLTQE I.claudius_F1_471_80_1031835_peptide number 3 1802.0810000000001 0 LVWVLDIKLHDLNSH I.claudius_F1_472_485_1033018_peptide number 1 3949.740600000002 0 MNLGIILPLIIYLTFVFGAAIFAYVKRTKGDFLTE I.claudius_F1_472_485_1033018_peptide number 2 7280.4899000000005 0 YYVGNRSMTGFVLAMTTASTYASASSFVGGPGAAYKYGLGWVLLAMIQVPVVWLALGALGKKFALLSRE I.claudius_F1_472_485_1033018_peptide number 3 5418.3548 0 TNALTINDLFFYRYKNKYLVWLSSLALLLAFFAAMTVQFIGGARLLE I.claudius_F1_472_485_1033018_peptide number 4 6312.454300000003 0 TTIGISYTQALLLFALTVGIYTFIGGFRAVVLTDTIQGTVMIFGTIILLIGTIYALGGVE I.claudius_F1_472_485_1033018_peptide number 5 860.952 0 SAVNKLTE I.claudius_F1_472_485_1033018_peptide number 6 14897.814600000012 0 IDPDLVTPYGPNGMLDFQFMASFWILVCFGVVGLPHTAVRCMAFKDSKALHRGMLIGTIVLSIIMLGMHLAGALGRAVIPNLTVSDQVIPTLMIKVLPPIVAGIFLAAPMSAIMSTIDAQLIQSSSIFVKDLYLSAKPE I.claudius_F1_472_485_1033018_peptide number 7 531.5600000000001 0 AAKNE I.claudius_F1_472_485_1033018_peptide number 8 4555.463200000001 0 KKVSYFSSIITLILTALLIFAALNPPDMIIWLNLFAFGGLE I.claudius_F1_472_485_1033018_peptide number 9 7299.658000000003 0 AAFLWVIVLGIYWDKANAYGALSSMIIGLGSYILLTQLGIKLFNFHQIVPSLVFGLIAFLVGNKLGE I.claudius_F1_472_485_1033018_peptide number 10 572.6583 0 RRIE I.claudius_F1_472_485_1033018_peptide number 11 1001.2211000000001 0 KTQLKVTAL I.claudius_F1_473_297_1036081_peptide number 1 1575.7873 0 MAWIQIRLNSTNE I.claudius_F1_473_297_1036081_peptide number 2 346.3795 0 KAE I.claudius_F1_473_297_1036081_peptide number 3 868.9508000000001 0 QMSDFLE I.claudius_F1_473_297_1036081_peptide number 4 147.1293 0 E I.claudius_F1_473_297_1036081_peptide number 5 2466.7141000000006 0 IGSVSVTFMDSQDTPIFEPLPGE I.claudius_F1_473_297_1036081_peptide number 6 1820.9950000000001 0 TRLWGNTDVIALFDAE I.claudius_F1_473_297_1036081_peptide number 7 565.5946 0 TDMAE I.claudius_F1_473_297_1036081_peptide number 8 870.0912000000001 0 IVRLLKE I.claudius_F1_473_297_1036081_peptide number 9 2615.9003000000002 0 AKHLDSNTAYKIGTNRRLKNWE I.claudius_F1_473_297_1036081_peptide number 10 303.31500000000005 0 RE I.claudius_F1_473_297_1036081_peptide number 11 3291.7394 0 WMDNFHPMQFGKRLWICPSWRDVPDE I.claudius_F1_473_297_1036081_peptide number 12 2643.0003 0 NAVNVMLDPGLAFGTGTHPTTALCLE I.claudius_F1_473_297_1036081_peptide number 13 5325.056100000002 0 WLDGLDLKDKSVIDFGCGSGILAIAALKLGAKSAVGIDIDPQAILASRNNAE I.claudius_F1_473_297_1036081_peptide number 14 1734.8611 0 QNGVTDRLQLFLSDE I.claudius_F1_473_297_1036081_peptide number 15 2177.54 0 KPSDLKADVVVANILAGPLKE I.claudius_F1_473_297_1036081_peptide number 16 2339.7249 0 LYPIISQLVKPNGDLGLSGILE I.claudius_F1_473_297_1036081_peptide number 17 2529.7336 0 TQAQSVCDTYTQTFALEPVAARE I.claudius_F1_473_297_1036081_peptide number 18 147.1293 0 E I.claudius_F1_473_297_1036081_peptide number 19 1318.6303 0 WCRITGKLKTL I.claudius_F1_474_83_1037864_peptide number 1 703.8478 0 MPSLKE I.claudius_F1_474_83_1037864_peptide number 2 1324.5520000000001 0 KCGQILRHIQE I.claudius_F1_474_83_1037864_peptide number 3 892.9539000000001 0 LHQFYGE I.claudius_F1_474_83_1037864_peptide number 4 4220.745500000001 0 QKGYRIARKHVAWYLQGIQPDSVFKQTFNAISDPKE I.claudius_F1_474_83_1037864_peptide number 5 713.8624 0 QLIVLE I.claudius_F1_474_83_1037864_peptide number 6 1925.1890000000003 0 DFFNLILDKKNVRTTT I.claudius_F1_475_50_1039363_peptide number 1 1078.2456 0 MRPYVRQE I.claudius_F1_475_50_1039363_peptide number 2 888.9670000000001 0 YGQKHKE I.claudius_F1_475_50_1039363_peptide number 3 634.6416 0 NHHVE I.claudius_F1_475_50_1039363_peptide number 4 1001.1365000000001 0 YALKQLHE I.claudius_F1_475_50_1039363_peptide number 5 833.9349000000001 0 FRVQRE I.claudius_F1_475_50_1039363_peptide number 6 859.0204 0 LQFLLPE I.claudius_F1_475_50_1039363_peptide number 7 261.2319 0 NE I.claudius_F1_475_50_1039363_peptide number 8 779.9305 0 HRLKVQ I.claudius_F1_476_76_1042386_peptide number 1 4851.8222000000005 0 MKVLSQNVLPNILRKSCNNGFQPLPFGVVKVRLNFLLQIIVAE I.claudius_F1_476_76_1042386_peptide number 2 3635.0506 0 NLRSVSTKRDKKGKNNSLNDFPLFVTTQVQAQ I.claudius_F1_477_516_1043354_peptide number 1 1882.0998000000004 0 MTDRVIIFDTTLRDGE I.claudius_F1_477_516_1043354_peptide number 2 1187.3863999999999 0 QALKASLTVKE I.claudius_F1_477_516_1043354_peptide number 3 998.2170000000001 0 KLQIALALE I.claudius_F1_477_516_1043354_peptide number 4 918.0696000000002 0 RLGVDVME I.claudius_F1_477_516_1043354_peptide number 5 1268.3283000000001 0 VGFPVSSQGDFE I.claudius_F1_477_516_1043354_peptide number 6 3282.6651 0 SVQTIARHIKNARVAALSRAVDKDIDAAYE I.claudius_F1_477_516_1043354_peptide number 7 629.7461000000001 0 ALKVAE I.claudius_F1_477_516_1043354_peptide number 8 1799.0375 0 AFRIHTFIASSALHVE I.claudius_F1_477_516_1043354_peptide number 9 3225.6339000000003 0 AKLKRSFDDVVGMAVAAVKRARNYTDDVE I.claudius_F1_477_516_1043354_peptide number 10 484.52340000000004 0 FSCE I.claudius_F1_477_516_1043354_peptide number 11 1631.8093000000001 0 DAGRTGIDNICRIVE I.claudius_F1_477_516_1043354_peptide number 12 2288.5326 0 AAINAGATTVNIPDTVGFCLPNE I.claudius_F1_477_516_1043354_peptide number 13 5020.6424 0 YGNIIAQVRNCVPNIDKAVISVHCHNDLGMATANSLTAVQNGARQIE I.claudius_F1_477_516_1043354_peptide number 14 805.8965000000001 0 CTINGIGE I.claudius_F1_477_516_1043354_peptide number 15 846.8856000000001 0 RAGNTSLE I.claudius_F1_477_516_1043354_peptide number 16 147.1293 0 E I.claudius_F1_477_516_1043354_peptide number 17 2549.9436000000005 0 VVMAMKVRQDFMGVDTHINTQE I.claudius_F1_477_516_1043354_peptide number 18 5195.892700000001 0 IHRVSQMVSQLCNMPIQPNKAIVGSNAFAHSSGIHQDGMLKNKNTYE I.claudius_F1_477_516_1043354_peptide number 19 557.6370000000001 0 ILSPE I.claudius_F1_477_516_1043354_peptide number 20 787.9443000000001 0 TIGLKKE I.claudius_F1_477_516_1043354_peptide number 21 2590.9357000000005 0 KLNLTARSGRAAVKGHMADMGYNE I.claudius_F1_477_516_1043354_peptide number 22 1416.4422 0 QDYDLDKLYDE I.claudius_F1_477_516_1043354_peptide number 23 2029.2918 0 FLKLADKKGQVFDYDLE I.claudius_F1_477_516_1043354_peptide number 24 1337.4548 0 ALAFIDMQQGDE I.claudius_F1_477_516_1043354_peptide number 25 1711.914 0 DRLVLDKLSAHSTKE I.claudius_F1_477_516_1043354_peptide number 26 1551.7379 0 YPATAFVQLKLDGE I.claudius_F1_477_516_1043354_peptide number 27 2703.9938000000006 0 KLSTSSIGGNGPVDAVYNAILNLTGLE I.claudius_F1_477_516_1043354_peptide number 28 1491.7108000000003 0 IKMSHYNLTAKGE I.claudius_F1_477_516_1043354_peptide number 29 275.2585 0 GAE I.claudius_F1_477_516_1043354_peptide number 30 1042.1836 0 ALGQVDIVVE I.claudius_F1_477_516_1043354_peptide number 31 1864.1126000000004 0 HKGRKFHGVGLATDIVE I.claudius_F1_477_516_1043354_peptide number 32 3115.5525 0 SSALALVHAINAIYRAHKVADIKNHKHH I.claudius_F1_478_360_1046569_peptide number 1 432.4919 0 MGPE I.claudius_F1_478_360_1046569_peptide number 2 3318.6903999999995 0 QGLTLPGMTIVCGDSHTATHGAFGALAFGIGTSE I.claudius_F1_478_360_1046569_peptide number 3 246.2604 0 VE I.claudius_F1_478_360_1046569_peptide number 4 2153.5483999999997 0 HVLATQTLKQARAKSMKIE I.claudius_F1_478_360_1046569_peptide number 5 3264.837000000001 0 VRGKVASGITAKDIILAIIGKTTMAGGTGHVVE I.claudius_F1_478_360_1046569_peptide number 6 454.4974000000001 0 FCGE I.claudius_F1_478_360_1046569_peptide number 7 906.0124000000001 0 AIQDLSME I.claudius_F1_478_360_1046569_peptide number 8 1224.4744999999998 0 GRMTVCNMAIE I.claudius_F1_478_360_1046569_peptide number 9 1172.3518 0 MGAKAGLIAPDE I.claudius_F1_478_360_1046569_peptide number 10 2260.506 0 TTFAYLKDRPHAPKGKDWE I.claudius_F1_478_360_1046569_peptide number 11 2730.9284000000002 0 DAVAYWKTLKSDDDAQFDTVVTLE I.claudius_F1_478_360_1046569_peptide number 12 2324.5449000000003 0 AKDIAPQVTWGTNPGQVISVNE I.claudius_F1_478_360_1046569_peptide number 13 797.8530000000001 0 TIPNPQE I.claudius_F1_478_360_1046569_peptide number 14 1174.285 0 MADPVQRASAE I.claudius_F1_478_360_1046569_peptide number 15 1043.2162 0 KALHYIGLE I.claudius_F1_478_360_1046569_peptide number 16 2608.9211000000005 0 AGTNLKDIKVDQVFIGSCTNSRIE I.claudius_F1_478_360_1046569_peptide number 17 3391.0432000000005 0 DLRAAAAVMKGRKKADNVKRILVVPGSGLVKE I.claudius_F1_478_360_1046569_peptide number 18 346.3364 0 QAE I.claudius_F1_478_360_1046569_peptide number 19 275.3016 0 KE I.claudius_F1_478_360_1046569_peptide number 20 1204.3719999999998 0 GLDKIFIAAGAE I.claudius_F1_478_360_1046569_peptide number 21 2154.4302000000002 0 WRNPGCSMCLGMNDDRLGE I.claudius_F1_478_360_1046569_peptide number 22 333.3392 0 WE I.claudius_F1_478_360_1046569_peptide number 23 1284.3591 0 RCASTSNRNFE I.claudius_F1_478_360_1046569_peptide number 24 3683.1663 0 GRQGRNGRTHLVSPAMAAAAGVFGKFVDIRDVTLN I.claudius_F1_479_78_1055910_peptide number 1 1549.7717 0 MRTKCGSNSPNLLE I.claudius_F1_479_78_1055910_peptide number 2 5349.330700000001 0 CYCLAHGILVLLGKRLIRSCDHGQRHDRFLANCDLLILLLTPLQFGE I.claudius_F1_479_78_1055910_peptide number 3 262.2167 0 DE I.claudius_F1_479_78_1055910_peptide number 4 1622.905 0 SLNVHDFLILNLKP I.claudius_F1_480_50_1058314_peptide number 1 964.1363 0 MTIPVFQE I.claudius_F1_480_50_1058314_peptide number 2 4679.506500000002 0 KFLNLPTLIVDSLAFVRDTSYRIPKPKSTYFPNAILLRAAK I.claudius_F1_481_51_1060841_peptide number 1 3743.3405 0 MLLLYRFYLLPHNVYSLRSHHYFQFQVKE I.claudius_F1_481_51_1060841_peptide number 2 147.1293 0 E I.claudius_F1_481_51_1060841_peptide number 3 2318.5433000000003 0 QGNYQLKGNQLHQNLIYLSS I.claudius_F1_482_110_1063321_peptide number 1 833.9117000000001 0 MDFHRE I.claudius_F1_482_110_1063321_peptide number 2 4918.354899999999 0 NTQALDNAYQQKTLRLGWGQDWFYGISSRLTFSYANRVYRE I.claudius_F1_482_110_1063321_peptide number 3 1441.6321 0 KDLIGIQQKNRE I.claudius_F1_482_110_1063321_peptide number 4 5611.266100000002 0 YTTTITLWHRNIHFMGLTPKLSWDYQKSTSNHAFYRYDKNRIYLE I.claudius_F1_482_110_1063321_peptide number 5 576.7280000000001 0 IGKIF I.claudius_F1_483_87_1064308_peptide number 1 349.40330000000006 0 MAE I.claudius_F1_483_87_1064308_peptide number 2 4543.489199999999 0 THSLGTKILIKIIRLYQIMISPFIGARCRFVPTCSCYGIE I.claudius_F1_483_87_1064308_peptide number 3 4451.1172000000015 0 ALKTHGLLKGGWLTLKRVLKCHPLNAGGFDPVPPKTNNNDE I.claudius_F1_483_87_1064308_peptide number 4 274.35990000000004 0 KK I.claudius_F1_484_58_1065190_peptide number 1 6549.383300000001 0 MLQCLLILAVHILLQKLTIKNIVLVICKIIIFLLILKLVGLRCYNIISFLRGSQIKM I.claudius_F1_485_167_1065693_peptide number 1 1604.0146000000002 0 MAKMRILQPKMQE I.claudius_F1_485_167_1065693_peptide number 2 434.51110000000006 0 MRE I.claudius_F1_485_167_1065693_peptide number 3 1524.6182000000001 0 RFGDDRQRMSQE I.claudius_F1_485_167_1065693_peptide number 4 942.1970000000001 0 MMKLYKE I.claudius_F1_485_167_1065693_peptide number 5 147.1293 0 E I.claudius_F1_485_167_1065693_peptide number 6 3090.7828999999992 0 KVNPLGGCLPILLQMPIFIALYWTFLE I.claudius_F1_485_167_1065693_peptide number 7 317.3383 0 AVE I.claudius_F1_485_167_1065693_peptide number 8 10704.677900000002 0 LRHAPFFGWIQDLSAQDPYYILPILMGISMFLLQKMSPTPVTDPTQQKVMNFMPLVFMFFFLWFPSGLVLYWLVSNLITIAQQQLIYRGLE I.claudius_F1_485_167_1065693_peptide number 9 1081.3157 0 KKGLHSRKK I.claudius_F1_486_80_1067470_peptide number 1 900.0310999999999 0 MGFQTGME I.claudius_F1_486_80_1067470_peptide number 2 1996.2337 0 GGFLARRRHLDALDKAAE I.claudius_F1_486_80_1067470_peptide number 3 1250.4437 0 HLQIGLVQLTE I.claudius_F1_486_80_1067470_peptide number 4 559.5717000000001 0 FHAGE I.claudius_F1_486_80_1067470_peptide number 5 444.52240000000006 0 LLAE I.claudius_F1_486_80_1067470_peptide number 6 147.1293 0 E I.claudius_F1_486_80_1067470_peptide number 7 1207.3760000000002 0 LRLVQSYLSE I.claudius_F1_486_80_1067470_peptide number 8 2363.6404 0 ITGQFTSDDLLGNIFSSFCIGK I.claudius_F1_487_528_1068183_peptide number 1 634.6996 0 MIDQE I.claudius_F1_487_528_1068183_peptide number 2 1048.2361 0 LLRQYVKE I.claudius_F1_487_528_1068183_peptide number 3 859.9639000000001 0 LKLGVSDE I.claudius_F1_487_528_1068183_peptide number 4 5461.2159 0 MIKRAIVTDPNFQVKGKFDNAVYQRILQQNHLTSDGYASILRASLPLE I.claudius_F1_487_528_1068183_peptide number 5 1059.0881 0 QIQNGVANSE I.claudius_F1_487_528_1068183_peptide number 6 1302.4753999999998 0 FIVPAQVKNSAE I.claudius_F1_487_528_1068183_peptide number 7 2078.4138000000003 0 VFFQKRLARLATLSLADE I.claudius_F1_487_528_1068183_peptide number 8 1109.1653000000001 0 MAKQSVSDDE I.claudius_F1_487_528_1068183_peptide number 9 815.9097000000002 0 IKTYYE I.claudius_F1_487_528_1068183_peptide number 10 1147.2379999999998 0 ANQKSFVQPE I.claudius_F1_487_528_1068183_peptide number 11 2748.0067999999997 0 QVKVQYIDLSADNISRNLQVTDVE I.claudius_F1_487_528_1068183_peptide number 12 3010.2976000000003 0 IAQYYQDNKAQFMTQHLAHIQFANE I.claudius_F1_487_528_1068183_peptide number 13 922.9784000000001 0 QDAKVAYE I.claudius_F1_487_528_1068183_peptide number 14 147.1293 0 E I.claudius_F1_487_528_1068183_peptide number 15 2290.5717 0 LQKGANFADVAKAKSLDKISGE I.claudius_F1_487_528_1068183_peptide number 16 1060.0744 0 NGGDLGWVNE I.claudius_F1_487_528_1068183_peptide number 17 261.2319 0 NE I.claudius_F1_487_528_1068183_peptide number 18 703.8262000000001 0 LPKAFE I.claudius_F1_487_528_1068183_peptide number 19 3013.2735 0 DAAAALQVGQYSQPINVDGNYHIVLVQE I.claudius_F1_487_528_1068183_peptide number 20 830.9293000000001 0 RKAQSLE I.claudius_F1_487_528_1068183_peptide number 21 1815.143 0 NVKAQIADLVRKSLME I.claudius_F1_487_528_1068183_peptide number 22 900.9744000000001 0 SRYFSLE I.claudius_F1_487_528_1068183_peptide number 23 1023.0975000000001 0 KQASDKAFE I.claudius_F1_487_528_1068183_peptide number 24 1816.9635 0 DSKSLNTAAQAAGVKVQE I.claudius_F1_487_528_1068183_peptide number 25 2792.0607999999997 0 SDYFSRQNVPAGLNFPNVIYTIFE I.claudius_F1_487_528_1068183_peptide number 26 3444.7825 0 SDTTNVGMNSEPINVGDYHTIIVRVLDRKAE I.claudius_F1_487_528_1068183_peptide number 27 631.7189 0 GVKSLE I.claudius_F1_487_528_1068183_peptide number 28 147.1293 0 E I.claudius_F1_487_528_1068183_peptide number 29 687.7821000000001 0 AKIDIE I.claudius_F1_487_528_1068183_peptide number 30 1120.3021 0 TFLKRQKAE I.claudius_F1_487_528_1068183_peptide number 31 1698.9183999999998 0 NALNGKAQQAVKKLSE I.claudius_F1_487_528_1068183_peptide number 32 358.34710000000007 0 NPE I.claudius_F1_487_528_1068183_peptide number 33 1182.2374000000002 0 SKVDGINFSSE I.claudius_F1_487_528_1068183_peptide number 34 824.8751000000001 0 QTFTLSE I.claudius_F1_487_528_1068183_peptide number 35 1857.1115999999997 0 NKDPILTNGIFSIAKPE I.claudius_F1_487_528_1068183_peptide number 36 2669.982800000001 0 SSKALYQVVHNSNGDVVVVALNKVE I.claudius_F1_487_528_1068183_peptide number 37 619.622 0 QGSLSE I.claudius_F1_487_528_1068183_peptide number 38 275.3016 0 KE I.claudius_F1_487_528_1068183_peptide number 39 1774.9945 0 LSQFAMQLLRSHQSE I.claudius_F1_487_528_1068183_peptide number 40 1296.5154 0 LQVQLIQGLRE I.claudius_F1_487_528_1068183_peptide number 41 615.7228 0 RAKIE I.claudius_F1_487_528_1068183_peptide number 42 1295.2658000000001 0 VNDSFINQDDE I.claudius_F1_487_528_1068183_peptide number 43 345.3516 0 AQQ I.claudius_F1_488_172_1071483_peptide number 1 4053.8022 0 MSKKSGLSFLWLSAVAFVIDLLTKYIVVQKFDLYE I.claudius_F1_488_172_1071483_peptide number 2 6206.086999999999 0 SVNVLPVFNLTYVRNYGAAFSFLADHSGWQQYFFILLALAISGMLVYFLAKNNAE I.claudius_F1_488_172_1071483_peptide number 3 7382.3826000000045 0 QKIQNSAYALIIGGALANMVDRAYNGFVVDFFDFYWDIYHYPVFNIADIAICIGAGLLVLDAFKSE I.claudius_F1_488_172_1071483_peptide number 4 1229.4265 0 KKKVQDKQVE I.claudius_F1_488_172_1071483_peptide number 5 562.6832999999999 0 KCGQK I.claudius_F1_489_78_1072706_peptide number 1 3689.0648000000015 0 MGVKSQLLDEPADIQADWFNDVKTIGITAGASAPE I.claudius_F1_489_78_1072706_peptide number 2 147.1293 0 E I.claudius_F1_489_78_1072706_peptide number 3 1989.2791 0 LGQSIISRLKRFGANSIE I.claudius_F1_489_78_1072706_peptide number 4 147.1293 0 E I.claudius_F1_489_78_1072706_peptide number 5 558.625 0 LQGLE I.claudius_F1_489_78_1072706_peptide number 6 743.8271000000001 0 GNMFFE I.claudius_F1_489_78_1072706_peptide number 7 471.5479 0 VPKE I.claudius_F1_489_78_1072706_peptide number 8 657.8025 0 LRIKE I.claudius_F1_489_78_1072706_peptide number 9 231.249 0 VN I.claudius_F1_490_302_1074432_peptide number 1 278.32540000000006 0 ME I.claudius_F1_490_302_1074432_peptide number 2 3985.5178000000014 0 NQNYSVAVIGLGSMGMGAAVSCINAGLTTYGIDLNPVALE I.claudius_F1_490_302_1074432_peptide number 3 2032.2593 0 KLKAAGAKAVAANGYDFAHE I.claudius_F1_490_302_1074432_peptide number 4 2126.4517 0 LDAVVILVVNAAQANAVLFGE I.claudius_F1_490_302_1074432_peptide number 5 3404.9520999999995 0 NGIAKKLKAGTAVMVSSTMAAQDAQIISQKLTE I.claudius_F1_490_302_1074432_peptide number 6 2011.3858 0 LGLIMLDAPVSGGAAKALKGE I.claudius_F1_490_302_1074432_peptide number 7 1386.5936 0 MTVMASGSKQAFE I.claudius_F1_490_302_1074432_peptide number 8 1915.1907999999999 0 LLQPVLDATAAKVYNIGE I.claudius_F1_490_302_1074432_peptide number 9 147.1293 0 E I.claudius_F1_490_302_1074432_peptide number 10 2338.7469000000006 0 IGLGATVKIVHQLLAGVHIAAGAE I.claudius_F1_490_302_1074432_peptide number 11 3173.6368000000007 0 AMALASKAGIPLDVMYDVVTNAAGNSWMFE I.claudius_F1_490_302_1074432_peptide number 12 1012.1875000000002 0 NRMKHVVE I.claudius_F1_490_302_1074432_peptide number 13 4646.253200000001 0 GDYTPLSMVDIFVKDLGLVNDTAKSLHFPLHLASTAYSMFTE I.claudius_F1_490_302_1074432_peptide number 14 895.9132 0 ASNAGYGKE I.claudius_F1_490_302_1074432_peptide number 15 1932.2214 0 DDSAVIKIFSGVSLPKKGA I.claudius_F1_491_110_1076252_peptide number 1 3037.4044000000004 0 MVYATVPPDALKAIQHQFGVDQASHAIE I.claudius_F1_491_110_1076252_peptide number 2 2542.8828000000008 0 NTFAKLAAKLKQYGVTNFITAGGE I.claudius_F1_491_110_1076252_peptide number 3 861.9368000000001 0 TSSIVVQE I.claudius_F1_491_110_1076252_peptide number 4 2465.888000000001 0 LGFTGFHIGKQIAPGVPWLKAVE I.claudius_F1_491_110_1076252_peptide number 5 147.1293 0 E I.claudius_F1_491_110_1076252_peptide number 6 1538.7423000000001 0 DIFLALKSGNFGKE I.claudius_F1_491_110_1076252_peptide number 7 556.5645000000001 0 DFFE I.claudius_F1_491_110_1076252_peptide number 8 828.9746 0 YAQGMFL I.claudius_F1_492_89_1076944_peptide number 1 2420.8941 0 MRVGKMQVIPYYRPGSPKIAE I.claudius_F1_492_89_1076944_peptide number 2 147.1293 0 E I.claudius_F1_492_89_1076944_peptide number 3 3383.7191000000003 0 LSNRALTGKAFLLANHGVVVTGSDLLDAADNTE I.claudius_F1_492_89_1076944_peptide number 4 147.1293 0 E I.claudius_F1_492_89_1076944_peptide number 5 260.2869 0 LE I.claudius_F1_492_89_1076944_peptide number 6 147.1293 0 E I.claudius_F1_492_89_1076944_peptide number 7 2373.7017 0 TAKLFFTLQGQKIRYLTDTE I.claudius_F1_492_89_1076944_peptide number 8 602.6777000000001 0 VKDLE I.claudius_F1_492_89_1076944_peptide number 9 473.52720000000005 0 NRGK I.claudius_F1_493_155_1077525_peptide number 1 731.8580000000001 0 MSAVVPE I.claudius_F1_493_155_1077525_peptide number 2 518.5215000000001 0 GASRE I.claudius_F1_493_155_1077525_peptide number 3 147.1293 0 E I.claudius_F1_493_155_1077525_peptide number 4 3194.6791 0 YKQTFIKNVRYASDKYKPYGIKIQLE I.claudius_F1_493_155_1077525_peptide number 5 515.5573 0 ALSPE I.claudius_F1_493_155_1077525_peptide number 6 1795.0406000000003 0 VKPNYLLKSQFDTLE I.claudius_F1_493_155_1077525_peptide number 7 345.39150000000006 0 VVE I.claudius_F1_493_155_1077525_peptide number 8 5718.225700000001 0 LVDRDNVFVQLDYFHAQNVDGNLARLTDKLNGKFAHVQIASVPDRHEPDE I.claudius_F1_493_155_1077525_peptide number 9 204.1806 0 GE I.claudius_F1_493_155_1077525_peptide number 10 1560.7015000000001 0 INYQYIFDKLDE I.claudius_F1_493_155_1077525_peptide number 11 1061.1653000000001 0 IGYTGYVGCE I.claudius_F1_493_155_1077525_peptide number 12 748.8271000000001 0 YKPRGE I.claudius_F1_493_155_1077525_peptide number 13 1485.6814 0 TVTGLDWFQKYK I.claudius_F1_494_125_1078618_peptide number 1 968.0885 0 MREPLHGE I.claudius_F1_494_125_1078618_peptide number 2 818.8922000000001 0 DAVCPVSE I.claudius_F1_494_125_1078618_peptide number 3 147.1293 0 E I.claudius_F1_494_125_1078618_peptide number 4 6055.0157 0 LRLWLSSPNTVVANFIHALQLPSLPLRSWHTINLPGFSVTVKQMLSDLTQVKGE I.claudius_F1_494_125_1078618_peptide number 5 444.52240000000006 0 AILE I.claudius_F1_494_125_1078618_peptide number 6 672.7724000000001 0 HIKFE I.claudius_F1_494_125_1078618_peptide number 7 409.39060000000006 0 FDE I.claudius_F1_494_125_1078618_peptide number 8 4278.733300000001 0 SINNIVASWPSRIDNTQALALGFKVDSNFQNVIQQFIE I.claudius_F1_494_125_1078618_peptide number 9 427.47210000000007 0 YDM I.claudius_F1_495_311_1079535_peptide number 1 3834.6351000000013 0 MLLTGMCMAFLPVVGIVLYAKWLDKKYPNFNQE I.claudius_F1_495_311_1079535_peptide number 2 494.5382000000001 0 VFTE I.claudius_F1_495_311_1079535_peptide number 3 147.1293 0 E I.claudius_F1_495_311_1079535_peptide number 4 147.1293 0 E I.claudius_F1_495_311_1079535_peptide number 5 1286.4296000000002 0 LKQKYDSYIE I.claudius_F1_495_311_1079535_peptide number 6 390.3923 0 SRE I.claudius_F1_495_311_1079535_peptide number 7 403.47390000000007 0 KKE I.claudius_F1_495_311_1079535_peptide number 8 3593.470800000001 0 LPSLGLSLLPIVLPIVLIFIKAVVHLFVKDVPE I.claudius_F1_495_311_1079535_peptide number 9 4860.7298 0 ALTSIPYQIVSFLGHPVIVLALSVLISVYTLLPKADKNTTALHLE I.claudius_F1_495_311_1079535_peptide number 10 147.1293 0 E I.claudius_F1_495_311_1079535_peptide number 11 3064.5356000000006 0 GVKTAGIILLVTGAGGALGAVLRDSGAGKQLAE I.claudius_F1_495_311_1079535_peptide number 12 15389.19740000001 0 QIANLPISPILIPFIVSTLVRFIQGSGTVAMITAASISSPILAQIPGVNMLLAAQAATMGSLFFGYFNDSLFWVVNRMMGINDVKKQMVVWSVPTTIAWGIGGISVILANLIFGNDGSVFDLLFPVVVLASILFYIKLQNKNL I.claudius_F1_496_159_1083294_peptide number 1 1851.0873000000001 0 MNAVYPADKIQSAWKE I.claudius_F1_496_159_1083294_peptide number 2 2509.7669000000005 0 LDKHTVTVGKGWSDTYGAFLKGE I.claudius_F1_496_159_1083294_peptide number 3 2083.2961 0 ADLVLSYSTSPLYHQLFE I.claudius_F1_496_159_1083294_peptide number 4 1372.4361000000001 0 KKDNYAATDFAE I.claudius_F1_496_159_1083294_peptide number 5 782.8417000000002 0 GHITQVE I.claudius_F1_496_159_1083294_peptide number 6 4547.242799999999 0 LAARVANHPNQCADDFMAFLISPTAQKHIVTANIMLPVIQGE I.claudius_F1_496_159_1083294_peptide number 7 2869.2097000000012 0 IEPHFDALKVQQKTQTSINPMVNTE I.claudius_F1_496_159_1083294_peptide number 8 1848.1064000000003 0 QLKNWISTWQTTLTK I.claudius_F1_497_190_1084822_peptide number 1 1498.8755 0 MAIALLLLSRRLE I.claudius_F1_497_190_1084822_peptide number 2 8817.521999999999 0 WLHYQKISQFIINAGMVILAIPILVLAMGLFLLLQDRDFSNIDLFIIVVFCNALSAMPFVLRILSAPFHNNMRYYE I.claudius_F1_497_190_1084822_peptide number 3 2125.4483999999998 0 NLCNSLGIVGWQRFYLIE I.claudius_F1_497_190_1084822_peptide number 4 3625.1795 0 WKTLRAPLRYAFALGLALSLGDFTAIALFGNQE I.claudius_F1_497_190_1084822_peptide number 5 5511.269300000002 0 FTSLPHLLYQQLGNYRNQDAAVTAGILLLLCGILFAFIHTYRDADDLSK I.claudius_F1_498_334_1086135_peptide number 1 462.56090000000006 0 MLAE I.claudius_F1_498_334_1086135_peptide number 2 1562.7655 0 KLQINSITPHPSVE I.claudius_F1_498_334_1086135_peptide number 3 1013.1672000000001 0 YWSVCKVE I.claudius_F1_498_334_1086135_peptide number 4 478.53870000000006 0 ALFE I.claudius_F1_498_334_1086135_peptide number 5 605.6799000000001 0 TPFLE I.claudius_F1_498_334_1086135_peptide number 6 3753.3621000000003 0 LVYRATQVHRKHFNPRAIQLSTLMSIKTGGCPE I.claudius_F1_498_334_1086135_peptide number 7 2870.0486 0 DCSYCPQSARYHTGVQNQQLLDVDE I.claudius_F1_498_334_1086135_peptide number 8 3297.942900000001 0 IVAKAKIAKARGAGRFCMGAAWRGPKPKDIE I.claudius_F1_498_334_1086135_peptide number 9 475.5366 0 KVTE I.claudius_F1_498_334_1086135_peptide number 10 1170.4419 0 IIKAVKSLGLE I.claudius_F1_498_334_1086135_peptide number 11 1442.6136000000004 0 TCGTFGLLQDGMAE I.claudius_F1_498_334_1086135_peptide number 12 503.5466 0 DLKE I.claudius_F1_498_334_1086135_peptide number 13 1692.7366000000002 0 AGLDYYNHNLDTAPE I.claudius_F1_498_334_1086135_peptide number 14 518.5198 0 HYAE I.claudius_F1_498_334_1086135_peptide number 15 3650.3054000000006 0 VIGTRRFDDRLSTLGKVRKAGLKVCCGGIVGMNE I.claudius_F1_498_334_1086135_peptide number 16 532.5912000000001 0 TRKE I.claudius_F1_498_334_1086135_peptide number 17 1664.8573 0 RAGLIASLANLDPQPE I.claudius_F1_498_334_1086135_peptide number 18 1225.4344 0 SVPINQLVKVE I.claudius_F1_498_334_1086135_peptide number 19 772.8005 0 GTPLADAE I.claudius_F1_498_334_1086135_peptide number 20 147.1293 0 E I.claudius_F1_498_334_1086135_peptide number 21 662.6881000000001 0 LDWTE I.claudius_F1_498_334_1086135_peptide number 22 3098.645 0 FVRTIAVARITMPKSYVRLSAGRSGMTE I.claudius_F1_498_334_1086135_peptide number 23 147.1293 0 E I.claudius_F1_498_334_1086135_peptide number 24 2867.2997000000005 0 MQAMCFMAGANSIFYGDKLLVTDNPE I.claudius_F1_498_334_1086135_peptide number 25 147.1293 0 E I.claudius_F1_498_334_1086135_peptide number 26 1686.8779000000002 0 DGDQLLMAKLDLEPE I.claudius_F1_498_334_1086135_peptide number 27 319.3111 0 TAE I.claudius_F1_498_334_1086135_peptide number 28 501.62010000000004 0 NKKL I.claudius_F1_499_139_1094811_peptide number 1 1665.9480999999998 0 MITGSINAQTLFLKE I.claudius_F1_499_139_1094811_peptide number 2 1214.3935000000001 0 KQRSCFVAFE I.claudius_F1_499_139_1094811_peptide number 3 7087.500800000004 0 NVIKLRRLACHRHKIARQHPIITPGKIPAKNNLVIDTPLATPKTIKGIDGGIIGAMIPAVPIKPAE I.claudius_F1_499_139_1094811_peptide number 4 4818.678200000001 0 RCIGYPVVFIIGSNIAATAAVSATAEPDKLAIIIALKIATNPSPPRL I.claudius_F1_500_67_1095893_peptide number 1 947.1505 0 MDIKAKIE I.claudius_F1_500_67_1095893_peptide number 2 6523.7481 0 IQSISSALLIKWARDLIITPPIDYHKCDSFYIMAFYWKHIAVITSLILPKLVHPLE I.claudius_F1_500_67_1095893_peptide number 3 318.3279 0 YH I.claudius_F1_501_269_1097215_peptide number 1 505.5856 0 MNIE I.claudius_F1_501_269_1097215_peptide number 2 505.62880000000007 0 VKME I.claudius_F1_501_269_1097215_peptide number 3 275.3016 0 KE I.claudius_F1_501_269_1097215_peptide number 4 3452.0345 0 KSLGNQALIRGLRLLDILSNYPNGCPLAKLAE I.claudius_F1_501_269_1097215_peptide number 5 2120.3691000000003 0 LANLNKSTAHRLLQGLQNE I.claudius_F1_501_269_1097215_peptide number 6 4294.0049 0 GYVKPANAAGSYRLTIKCLSIGQKVLSSMNIIHVASPYLE I.claudius_F1_501_269_1097215_peptide number 7 914.0575 0 QLNLKLGE I.claudius_F1_501_269_1097215_peptide number 8 994.1026000000002 0 TINFSKRE I.claudius_F1_501_269_1097215_peptide number 9 4874.719900000001 0 DDHAIMIYKLEPTNGMLKTRAYIGQYLKLYCSAMGKIFLAYE I.claudius_F1_501_269_1097215_peptide number 10 2104.2838 0 KKVDYLSHYWQSHQRE I.claudius_F1_501_269_1097215_peptide number 11 1365.6174 0 IKKLTRYTITE I.claudius_F1_501_269_1097215_peptide number 12 844.9492 0 LDDIKLE I.claudius_F1_501_269_1097215_peptide number 13 260.2869 0 LE I.claudius_F1_501_269_1097215_peptide number 14 1454.6079 0 TIRQTAYAMDRE I.claudius_F1_501_269_1097215_peptide number 15 147.1293 0 E I.claudius_F1_501_269_1097215_peptide number 16 261.2319 0 NE I.claudius_F1_501_269_1097215_peptide number 17 1899.1914000000002 0 LGVTCIACPIFDSFGQVE I.claudius_F1_501_269_1097215_peptide number 18 2654.0013999999996 0 YAISVSMSIYRLNKFGTDAFLQE I.claudius_F1_501_269_1097215_peptide number 19 716.8267000000001 0 IRKTAE I.claudius_F1_501_269_1097215_peptide number 20 588.6510000000001 0 QISLE I.claudius_F1_501_269_1097215_peptide number 21 480.51150000000007 0 LGYE I.claudius_F1_501_269_1097215_peptide number 22 245.2755 0 NI I.claudius_F1_502_164_1099133_peptide number 1 1024.1452 0 MPSFDIVSE I.claudius_F1_502_164_1099133_peptide number 2 611.6877000000001 0 ITLHE I.claudius_F1_502_164_1099133_peptide number 3 686.7577000000001 0 VRNAVE I.claudius_F1_502_164_1099133_peptide number 4 1897.0564000000002 0 NANRVLSTRYDFRGVE I.claudius_F1_502_164_1099133_peptide number 5 430.4959 0 AVIE I.claudius_F1_502_164_1099133_peptide number 6 374.3895 0 LNE I.claudius_F1_502_164_1099133_peptide number 7 389.40420000000006 0 KNE I.claudius_F1_502_164_1099133_peptide number 8 804.9285 0 TIKITTE I.claudius_F1_502_164_1099133_peptide number 9 737.7547000000001 0 SDFQLE I.claudius_F1_502_164_1099133_peptide number 10 501.57370000000003 0 QLIE I.claudius_F1_502_164_1099133_peptide number 11 1301.5981000000002 0 ILIGSCIKRGIE I.claudius_F1_502_164_1099133_peptide number 12 968.0189 0 HSSLDIPAE I.claudius_F1_502_164_1099133_peptide number 13 234.2066 0 SE I.claudius_F1_502_164_1099133_peptide number 14 1098.212 0 HHGKLYSKE I.claudius_F1_502_164_1099133_peptide number 15 928.1272 0 IKLKQGIE I.claudius_F1_502_164_1099133_peptide number 16 248.23319999999998 0 TE I.claudius_F1_502_164_1099133_peptide number 17 2615.1411000000003 0 MAKKITKLVKDSKIKVQTQIQGE I.claudius_F1_502_164_1099133_peptide number 18 2540.8705000000004 0 QVRVTGKSRDDLQAVIQLVKSAE I.claudius_F1_502_164_1099133_peptide number 19 1482.5978 0 LGQPFQFNNFRD I.claudius_F1_503_201_1100264_peptide number 1 1275.4815 0 MRSRSQRLLE I.claudius_F1_503_201_1100264_peptide number 2 614.6254 0 CNSYE I.claudius_F1_503_201_1100264_peptide number 3 847.9945 0 VLLDLFE I.claudius_F1_503_201_1100264_peptide number 4 489.5631000000001 0 TKIE I.claudius_F1_503_201_1100264_peptide number 5 786.8701000000001 0 QLADVIE I.claudius_F1_503_201_1100264_peptide number 6 836.8857 0 NIYADLE I.claudius_F1_503_201_1100264_peptide number 7 147.1293 0 E I.claudius_F1_503_201_1100264_peptide number 8 1371.5390000000002 0 LSRVILNGKQDE I.claudius_F1_503_201_1100264_peptide number 9 480.46850000000006 0 AFDE I.claudius_F1_503_201_1100264_peptide number 10 760.8328 0 ALNTLTE I.claudius_F1_503_201_1100264_peptide number 11 275.2585 0 QE I.claudius_F1_503_201_1100264_peptide number 12 3691.287800000001 0 DTSSKVRLCLMDTQRALGFLVRKTRLPTNQLE I.claudius_F1_503_201_1100264_peptide number 13 502.5221 0 QARE I.claudius_F1_503_201_1100264_peptide number 14 757.8752000000001 0 ILRDIE I.claudius_F1_503_201_1100264_peptide number 15 823.8505 0 SLQPHNE I.claudius_F1_503_201_1100264_peptide number 16 2317.7244 0 SLFQKVNFLMQAAMGYINIE I.claudius_F1_503_201_1100264_peptide number 17 3891.5973000000017 0 QNKIMKFFSVVSVMFLPATLVASTYGMNFDFMPE I.claudius_F1_503_201_1100264_peptide number 18 3662.4167 0 LHFKYGYPMAIGLMIAAALTPYIYFRRKGWL I.claudius_F1_504_63_1101877_peptide number 1 1425.6790999999998 0 MCNHPLAIRKNE I.claudius_F1_504_63_1101877_peptide number 2 3525.1068999999993 0 IKRTVLSKSFCYFLNCFKNFHFTWFFAE I.claudius_F1_504_63_1101877_peptide number 3 1307.4935 0 SVFKIFSHITE I.claudius_F1_504_63_1101877_peptide number 4 1431.6604 0 SSFRICRTYWL I.claudius_F1_505_362_1102972_peptide number 1 1829.9836000000003 0 MQYRDYLQQQGIASE I.claudius_F1_505_362_1102972_peptide number 2 1025.1545 0 NILYLNFE I.claudius_F1_505_362_1102972_peptide number 3 381.3805 0 SFE I.claudius_F1_505_362_1102972_peptide number 4 2039.2037000000005 0 YQWVKDAQDFQQLIQE I.claudius_F1_505_362_1102972_peptide number 5 805.8967 0 KMPSSQE I.claudius_F1_505_362_1102972_peptide number 6 1040.209 0 KIYFLIDE I.claudius_F1_505_362_1102972_peptide number 7 634.7211 0 IQFVE I.claudius_F1_505_362_1102972_peptide number 8 3217.5864000000006 0 GWQKIVNALRVSFNTDIVITGSNANLLSGE I.claudius_F1_505_362_1102972_peptide number 9 1221.4026000000001 0 LATLLSGRYVE I.claudius_F1_505_362_1102972_peptide number 10 1237.4864 0 IKIYPLSFKE I.claudius_F1_505_362_1102972_peptide number 11 2349.5975000000003 0 FLHAKNVDSQSRLVDKLYSE I.claudius_F1_505_362_1102972_peptide number 12 310.30260000000004 0 YE I.claudius_F1_505_362_1102972_peptide number 13 1867.1266 0 KYGGFPSVVMADEPLKE I.claudius_F1_505_362_1102972_peptide number 14 5789.5916 0 TILSGIFDSIVLNDIAHRAGVKDTHILKSVILFLADNVGQLVNPSKISNTLTSE I.claudius_F1_505_362_1102972_peptide number 15 1986.2289999999998 0 RVPTSNHTISKYLDLLE I.claudius_F1_505_362_1102972_peptide number 16 5696.484800000003 0 NAFLFYKAKQYDIRGKGYLKTNAKYFIVDNGLRRHAIGKKGANYANRLE I.claudius_F1_505_362_1102972_peptide number 17 733.8521000000001 0 NIVFIE I.claudius_F1_505_362_1102972_peptide number 18 1935.1856 0 LLRRGYSVDVGKLDSKE I.claudius_F1_505_362_1102972_peptide number 19 1177.3070000000002 0 IDFIARKADE I.claudius_F1_505_362_1102972_peptide number 20 1081.2610000000002 0 ILYVQVAFE I.claudius_F1_505_362_1102972_peptide number 21 357.4021 0 IPE I.claudius_F1_505_362_1102972_peptide number 22 499.4751 0 NTHE I.claudius_F1_505_362_1102972_peptide number 23 2683.0624 0 TDNLLHIKDNYKKILITGKYYE I.claudius_F1_505_362_1102972_peptide number 24 376.3624 0 QTE I.claudius_F1_505_362_1102972_peptide number 25 545.5832 0 IDGIE I.claudius_F1_505_362_1102972_peptide number 26 1247.4812000000002 0 VIYVVDWLLQ I.claudius_F1_506_87_1105154_peptide number 1 5067.8415 0 MLVDIVKYGRFNHHKIIDLCSYNTKNDKAFASSGMITNVFMKSE I.claudius_F1_506_87_1105154_peptide number 2 416.47260000000006 0 RLE I.claudius_F1_506_87_1105154_peptide number 3 973.1911000000001 0 RPIIMKSE I.claudius_F1_506_87_1105154_peptide number 4 1141.3176999999998 0 IKNIILGGGQE I.claudius_F1_506_87_1105154_peptide number 5 557.6370000000001 0 LLSPE I.claudius_F1_506_87_1105154_peptide number 6 1470.5855999999999 0 RRFDAIIYNSSE I.claudius_F1_506_87_1105154_peptide number 7 434.5325 0 LFR I.claudius_F1_507_124_1105954_peptide number 1 1624.8134 0 MTVRDYLGNSLNLE I.claudius_F1_507_124_1105954_peptide number 2 5394.995500000002 0 FYYRHPRNYNRRGIFSIDEPSPTIRGVNRPIPKGYNINSCDPKGVE I.claudius_F1_507_124_1105954_peptide number 3 1240.4921 0 LAKVRPLTTIE I.claudius_F1_507_124_1105954_peptide number 4 2465.7540999999997 0 RSYIQTFPKSFLFSGTKTDLE I.claudius_F1_507_124_1105954_peptide number 5 2446.8615999999997 0 QMIGNAVPVNLAKFVASAIINFE I.claudius_F1_507_124_1105954_peptide number 6 917.0848 0 KEPIRSMG I.claudius_F1_508_50_1107025_peptide number 1 5722.931299999998 0 MGFCCFCHVPFVGVSRKRCQWFVCVLHQRIAPHHRPRVPQGKCLKCRLG I.claudius_F1_509_55_1107951_peptide number 1 6205.3642 0 MVLNTPQIVSSRVRILPLAAGTFYHRRINRRLRPCQPSTGLQSHLMGLVMFGKW I.claudius_F1_510_102_1110746_peptide number 1 3872.5176 0 MTFLCIILRCIIRTRHMTITTTDTNFFIDDHE I.claudius_F1_510_102_1110746_peptide number 2 7814.502500000002 0 TICIFVHCTSWANFCTSRICTMITRNRHIIGKYILMPASICLLIPLTTCIFINTTKIDFCAKIFVILTG I.claudius_F1_511_295_1114021_peptide number 1 826.9142 0 MNAYVTE I.claudius_F1_511_295_1114021_peptide number 2 3413.9654000000005 0 NNKYGAKTLFATWNKDAQKRDLKVMMVIE I.claudius_F1_511_295_1114021_peptide number 3 1473.6941000000002 0 TKDREPMVKGALE I.claudius_F1_511_295_1114021_peptide number 4 1896.0154 0 NYTPPKDIQYSVDVQE I.claudius_F1_511_295_1114021_peptide number 5 1813.1023000000002 0 YLKATPHIKTDGIVKE I.claudius_F1_511_295_1114021_peptide number 6 1046.2169000000001 0 FPDKILGKE I.claudius_F1_511_295_1114021_peptide number 7 900.0311000000002 0 TNPLKKAE I.claudius_F1_511_295_1114021_peptide number 8 1453.7089999999998 0 LIHHWFVKNME I.claudius_F1_511_295_1114021_peptide number 9 1435.4737 0 RDNSVLGCGDGDVE I.claudius_F1_511_295_1114021_peptide number 10 3313.9109000000003 0 KILTTGVLKGKCTDINSVFVALARAAGIPARE I.claudius_F1_511_295_1114021_peptide number 11 1046.2201 0 IFGIRLGAAE I.claudius_F1_511_295_1114021_peptide number 12 1574.7564000000002 0 KMGKYSKGAFGSANE I.claudius_F1_511_295_1114021_peptide number 13 1526.6339 0 QGIANVSGGQHCRAE I.claudius_F1_511_295_1114021_peptide number 14 2542.9044 0 FYLAGFGWVPVDSADVAKMRLAE I.claudius_F1_511_295_1114021_peptide number 15 589.6823 0 KKSVE I.claudius_F1_511_295_1114021_peptide number 16 1885.0373 0 DKDTQAVAKYLFGNWE I.claudius_F1_511_295_1114021_peptide number 17 2276.4207000000006 0 ANWVGFNHARDFDLYPQPE I.claudius_F1_511_295_1114021_peptide number 18 1468.6077 0 LAPINNFGYPYAE I.claudius_F1_511_295_1114021_peptide number 19 1374.4519 0 VGGDPLNSFDPKE I.claudius_F1_511_295_1114021_peptide number 20 1290.5061 0 FKYDYVSKKL I.claudius_F1_512_56_1115797_peptide number 1 3343.9766000000004 0 MVDKRWAMAITVLFSIILSRLSCIATSTSE I.claudius_F1_512_56_1115797_peptide number 2 2591.9401000000007 0 SNALVASSNNRIGASFNITRAMAIL I.claudius_F1_513_60_1116817_peptide number 1 872.0873000000001 0 MRPVIKE I.claudius_F1_513_60_1116817_peptide number 2 4041.710300000001 0 RASACRCAVFDSLGIRVRRIKPKSIIQVINGNKNQE I.claudius_F1_513_60_1116817_peptide number 3 906.8912999999999 0 SNATSTTPE I.claudius_F1_513_60_1116817_peptide number 4 837.9599999999999 0 VIKYTNT I.claudius_F1_514_114_1118582_peptide number 1 956.0728000000001 0 MFTDWKE I.claudius_F1_514_114_1118582_peptide number 2 1256.3673 0 HTSHVKKSFGE I.claudius_F1_514_114_1118582_peptide number 3 2222.5622000000003 0 LGKQYPKMLQAYQALGAAAAE I.claudius_F1_514_114_1118582_peptide number 4 1102.1990999999998 0 GNVLDAKTRE I.claudius_F1_514_114_1118582_peptide number 5 1359.6344000000001 0 LIALAVAVTTRCE I.claudius_F1_514_114_1118582_peptide number 6 816.8795 0 SCISAHAE I.claudius_F1_514_114_1118582_peptide number 7 147.1293 0 E I.claudius_F1_514_114_1118582_peptide number 8 731.7950000000001 0 AVKAGASE I.claudius_F1_514_114_1118582_peptide number 9 218.2072 0 AE I.claudius_F1_514_114_1118582_peptide number 10 2465.7987000000003 0 VAAALATAIALNAGAAYTYSLRALE I.claudius_F1_514_114_1118582_peptide number 11 765.8543 0 AYSVQKA I.claudius_F1_515_86_1119504_peptide number 1 9369.9374 0 MAVFTSSFLTHFCFGVPKISHNFLGVNSFVPINGISLSLRCFSTISKIFRQPASLSSGLICLSCPNPKNSICQSFNKLFCNSLRF I.claudius_F1_516_97_1120303_peptide number 1 278.32540000000006 0 ME I.claudius_F1_516_97_1120303_peptide number 2 9728.197000000007 0 NNARHDQLTAFLIRWRQLLPDFLFEPPPFCPSYKRTISNKFRTSQPSVNLSTVKIARIGLSAASKLFSNFSVSLSVFSVLLLLVSE I.claudius_F1_516_97_1120303_peptide number 3 939.2360000000001 0 LVIMTLCF I.claudius_F1_517_96_1120996_peptide number 1 10232.880700000007 0 MILSAYFCCTSAFSGSVAVNSNSTFSLGLPFLLSNNSKTICSQPLRSISALLVRSFISFSKSNSPCFLPLVCAFKWCASSPSITRFKSCRSVNVV I.claudius_F1_518_50_1125159_peptide number 1 1475.6204000000002 0 MGDLQSIASSAAVPE I.claudius_F1_518_50_1125159_peptide number 2 3546.2835999999998 0 ARSVASAAIIACRALPSIKCRSRFGVILALMVSN I.claudius_F1_519_126_1126580_peptide number 1 4012.5431000000012 0 MDCHVFTNFIAITNNGFCSFAFVFQILVYFANTSE I.claudius_F1_519_126_1126580_peptide number 2 4166.5207 0 LINFVIFANHGIATYHNVRFQYSASFDFNSTLNNTE I.claudius_F1_519_126_1126580_peptide number 3 2031.233 0 RPNKNIFANYRTFFNE I.claudius_F1_519_126_1126580_peptide number 4 2440.7062 0 GSWMNFCTWVDHIYPLINDE I.claudius_F1_519_126_1126580_peptide number 5 2443.9022999999997 0 HTLVLLHKRFRRLRWQRQ I.claudius_F1_520_238_1129109_peptide number 1 1876.2673000000002 0 MSQPIYKRILLKLSGE I.claudius_F1_520_238_1129109_peptide number 2 516.5453 0 ALQGE I.claudius_F1_520_238_1129109_peptide number 3 1684.9084 0 DGLGIDPAILDRMAVE I.claudius_F1_520_238_1129109_peptide number 4 388.4592 0 IKE I.claudius_F1_520_238_1129109_peptide number 5 359.418 0 LVE I.claudius_F1_520_238_1129109_peptide number 6 434.5078000000001 0 MGVE I.claudius_F1_520_238_1129109_peptide number 7 7592.785100000002 0 VSVVLGGGNLFRGAKLAKAGMNRVVGDHMGMLATVMNGLAMRDSLFRADVNAKLMSAFQLNGICDTYNWSE I.claudius_F1_520_238_1129109_peptide number 8 860.0765000000001 0 AIKMLRE I.claudius_F1_520_238_1129109_peptide number 9 2888.2577000000006 0 KRVVIFSAGTGNPFFTTDSTACLRGIE I.claudius_F1_520_238_1129109_peptide number 10 260.2869 0 IE I.claudius_F1_520_238_1129109_peptide number 11 3715.145400000001 0 ADVVLKATKVDGVYDCDPAKNPDAKLYKNLSYAE I.claudius_F1_520_238_1129109_peptide number 12 602.6777000000001 0 VIDKE I.claudius_F1_520_238_1129109_peptide number 13 4157.883700000001 0 LKVMDLSAFTLARDHGMPIRVFNMGKPGALRQVVTGTE I.claudius_F1_520_238_1129109_peptide number 14 147.1293 0 E I.claudius_F1_520_238_1129109_peptide number 15 493.5749 0 GTTIC I.claudius_F1_521_55_1132945_peptide number 1 897.0272000000001 0 MPQMDFE I.claudius_F1_521_55_1132945_peptide number 2 5531.568899999999 0 FGDRCKLYRPHLVLLAYGNLHKLPHFYRAYLKTKFQSQGVVLLTLVL I.claudius_F1_522_68_1135061_peptide number 1 792.8549 0 MPSSATAE I.claudius_F1_522_68_1135061_peptide number 2 6685.690299999998 0 ILSCTRSFKLNFSSSKFMDSAIFLPFSSTTRNVIFRWLGICSQFQCSASTVTPVIRRNS I.claudius_F1_523_65_1135807_peptide number 1 7454.4154 0 MLGIPTPFHQGRLNKDFTAYRWINSTVIHWSHSHNRHAVKCDFFICNHGATGFRPKGYGIGFFY I.claudius_F1_524_68_1136717_peptide number 1 2841.2459999999996 0 MCRSSGASTKGNASISSKPNAVICKITE I.claudius_F1_524_68_1136717_peptide number 2 1728.9511 0 AKLVRRISGSVNSGRE I.claudius_F1_524_68_1136717_peptide number 3 649.6911 0 LKSSSE I.claudius_F1_524_68_1136717_peptide number 4 2131.5294000000004 0 YKRIQIPSLTRPHRPLR I.claudius_F1_525_52_1138313_peptide number 1 4175.8901 0 MQRQVLQWYGTFDILTPYQSMIMLWLLIYGLSHE I.claudius_F1_525_52_1138313_peptide number 2 2260.7146000000002 0 LQMRLVRHRRIRLKQQE I.claudius_F1_526_114_1139293_peptide number 1 2064.3608999999997 0 MTTKTTAKISINVNVNSLE I.claudius_F1_526_114_1139293_peptide number 2 246.2604 0 VE I.claudius_F1_526_114_1139293_peptide number 3 1190.3504 0 SHINKLCSGCE I.claudius_F1_526_114_1139293_peptide number 4 260.2869 0 LE I.claudius_F1_526_114_1139293_peptide number 5 2167.4157999999998 0 GITNGNIDTAAVIITPAIVNAE I.claudius_F1_526_114_1139293_peptide number 6 1395.6499000000001 0 KKNAKPQRLALE I.claudius_F1_526_114_1139293_peptide number 7 4588.0992000000015 0 NAAFNNAATTANAGKIQRIGISLKFLNHAPVSTATSLFIGDDGAK I.claudius_F1_527_50_1140035_peptide number 1 5665.8796 0 MDVRITLPRLILMQCKNLRKILHIQLAKLQILHHLQLITKLGYHPNGE I.claudius_F1_527_50_1140035_peptide number 2 146.1445 0 Q I.claudius_F1_528_508_1142684_peptide number 1 2330.5926 0 MKLDPYINVDPGTMSPTQHGE I.claudius_F1_528_508_1142684_peptide number 2 965.0151000000001 0 VFVTQDGAE I.claudius_F1_528_508_1142684_peptide number 3 1062.0871 0 TDLDLGHYE I.claudius_F1_528_508_1142684_peptide number 4 2591.9851 0 RFIRTKMTKRNNFTTGKIYSE I.claudius_F1_528_508_1142684_peptide number 5 643.7760000000001 0 VLRKE I.claudius_F1_528_508_1142684_peptide number 6 2153.3975 0 RRGDYLGATIQVIPHITNE I.claudius_F1_528_508_1142684_peptide number 7 1919.1862000000006 0 IKDRVIAGAQGHDVVIVE I.claudius_F1_528_508_1142684_peptide number 8 845.8943 0 VGGTVGDIE I.claudius_F1_528_508_1142684_peptide number 9 704.8109000000001 0 SLPFLE I.claudius_F1_528_508_1142684_peptide number 10 1339.5436 0 ALRQLAVQVGRE I.claudius_F1_528_508_1142684_peptide number 11 2040.3840000000002 0 HTLFMHLTLVPYIPTAGE I.claudius_F1_528_508_1142684_peptide number 12 1381.5772 0 VKTKPTQHSVKE I.claudius_F1_528_508_1142684_peptide number 13 2580.032100000001 0 LLSIGIQPDVLICRSDRMIPPNE I.claudius_F1_528_508_1142684_peptide number 14 1334.5867 0 RAKIALFCNVAE I.claudius_F1_528_508_1142684_peptide number 15 3335.8235999999997 0 RAVISLKDVNSIYQIPALLKSQGLDDFVCE I.claudius_F1_528_508_1142684_peptide number 16 1021.1941999999999 0 RFRLTCPE I.claudius_F1_528_508_1142684_peptide number 17 547.5561 0 ADLTE I.claudius_F1_528_508_1142684_peptide number 18 333.3392 0 WE I.claudius_F1_528_508_1142684_peptide number 19 1345.5001000000002 0 QVLYKQANPVGE I.claudius_F1_528_508_1142684_peptide number 20 1197.4012 0 VTIGMVGKYTE I.claudius_F1_528_508_1142684_peptide number 21 1135.224 0 LPDAYKSVNE I.claudius_F1_528_508_1142684_peptide number 22 2684.9971999999993 0 ALKHAGLTNRLSVNIKYIDSQDVE I.claudius_F1_528_508_1142684_peptide number 23 532.5879 0 TKGVE I.claudius_F1_528_508_1142684_peptide number 24 2046.3686000000002 0 VLKGIDGILVPGGFGYRGVE I.claudius_F1_528_508_1142684_peptide number 25 1292.4441000000002 0 GKIRTAQYARE I.claudius_F1_528_508_1142684_peptide number 26 1989.4446000000003 0 NKIPYLGICLGMQIALIE I.claudius_F1_528_508_1142684_peptide number 27 1580.6979999999999 0 YARNVAGLTKANSSE I.claudius_F1_528_508_1142684_peptide number 28 755.7932000000001 0 FDKDCE I.claudius_F1_528_508_1142684_peptide number 29 969.1329 0 QPVVALITE I.claudius_F1_528_508_1142684_peptide number 30 647.6337000000001 0 WQDAE I.claudius_F1_528_508_1142684_peptide number 31 419.38710000000003 0 GNTE I.claudius_F1_528_508_1142684_peptide number 32 618.6374000000001 0 VRTDE I.claudius_F1_528_508_1142684_peptide number 33 2529.8112000000006 0 SDLGGTMRLGAQQCHLVSGSRARE I.claudius_F1_528_508_1142684_peptide number 34 608.6838 0 LYGKE I.claudius_F1_528_508_1142684_peptide number 35 361.3908 0 TIE I.claudius_F1_528_508_1142684_peptide number 36 147.1293 0 E I.claudius_F1_528_508_1142684_peptide number 37 1053.1383 0 RHRHRYE I.claudius_F1_528_508_1142684_peptide number 38 1140.2866999999999 0 VNNTLLPQIE I.claudius_F1_528_508_1142684_peptide number 39 1757.0805 0 KAGLKVTGLSADKKLVE I.claudius_F1_528_508_1142684_peptide number 40 373.44450000000006 0 IIE I.claudius_F1_528_508_1142684_peptide number 41 1808.0260000000003 0 VPNHPWFVACQFHPE I.claudius_F1_528_508_1142684_peptide number 42 2311.5495 0 FTSTPRDGHPLFAGFVKAAYE I.claudius_F1_528_508_1142684_peptide number 43 839.9825000000001 0 NHKKSVK I.claudius_F1_529_79_1151168_peptide number 1 2642.0902 0 MTPAQKRGAITRRKGSTAIISRLE I.claudius_F1_529_79_1151168_peptide number 2 3755.2242000000006 0 SCSVAFIKPISAVNAEPARPANKSAVTTGPNSRKRE I.claudius_F1_529_79_1151168_peptide number 3 1192.3400000000001 0 SATSCPKLVSAE I.claudius_F1_529_79_1151168_peptide number 4 662.7329 0 KSINTT I.claudius_F1_530_54_1151963_peptide number 1 3914.5112999999997 0 MQLDEPYLRKVLKASMRQHLATQLPPISSTQFGE I.claudius_F1_530_54_1151963_peptide number 2 1305.3947 0 LNFQANAYVHE I.claudius_F1_530_54_1151963_peptide number 3 260.2869 0 LE I.claudius_F1_530_54_1151963_peptide number 4 887.0008 0 RRHYQK I.claudius_F1_531_222_1154385_peptide number 1 651.8145000000001 0 MIFLE I.claudius_F1_531_222_1154385_peptide number 2 657.8025 0 IIKRE I.claudius_F1_531_222_1154385_peptide number 3 1173.3862 0 LQIAMRKNAE I.claudius_F1_531_222_1154385_peptide number 4 5160.2690999999995 0 ILNPLWFFLLVITLFPLVIGPDPKLLSRIAPGIAWVAALLSALLSFE I.claudius_F1_531_222_1154385_peptide number 5 1582.7121000000002 0 RLFRDDFIDGSLE I.claudius_F1_531_222_1154385_peptide number 6 4475.531 0 QLMLTAQPLPMTALAKVVAHWLLTGLPLILLSPIAALLLSLE I.claudius_F1_531_222_1154385_peptide number 7 6139.5493 0 VNIWWALVLTLLLGTPVLSCIGAIGVALTVGLRKGGVLLSLLVVPLFIPVLIFASSVLE I.claudius_F1_531_222_1154385_peptide number 8 3928.6204000000007 0 AAGLNVPYGGQLAILGAMMVGAVTLSPFAIAAALRISLDN I.claudius_F1_532_57_1155923_peptide number 1 4500.310699999999 0 MGGYGFYVWLSYAVSLVAVIALIVQSVKQRKTVLQNVLRE I.claudius_F1_532_57_1155923_peptide number 2 559.6165000000001 0 KQRE I.claudius_F1_532_57_1155923_peptide number 3 147.1293 0 E I.claudius_F1_532_57_1155923_peptide number 4 1242.3852 0 RLQQANKGNTL I.claudius_F1_533_109_1156285_peptide number 1 476.58760000000007 0 MVVE I.claudius_F1_533_109_1156285_peptide number 2 2840.2348000000006 0 GTVVRDPKSLKVRFDLNDIGPAITVE I.claudius_F1_533_109_1156285_peptide number 3 310.30260000000004 0 YE I.claudius_F1_533_109_1156285_peptide number 4 1059.2156 0 GILPDLFRE I.claudius_F1_533_109_1156285_peptide number 5 1983.2235000000005 0 GQGIVAQGVLTQPTVLTATE I.claudius_F1_533_109_1156285_peptide number 6 810.8949000000001 0 VLAKHDE I.claudius_F1_533_109_1156285_peptide number 7 717.7667 0 NYVPPE I.claudius_F1_533_109_1156285_peptide number 8 317.33820000000003 0 LGE I.claudius_F1_533_109_1156285_peptide number 9 1425.7621000000004 0 KMQKVHKPMGIE I.claudius_F1_533_109_1156285_peptide number 10 702.7537000000001 0 AADLKGE I.claudius_F1_533_109_1156285_peptide number 11 860.8725000000001 0 SARDRQE I.claudius_F1_533_109_1156285_peptide number 12 275.3016 0 KE I.claudius_F1_533_109_1156285_peptide number 13 274.31680000000006 0 GAK I.claudius_F1_534_521_1156992_peptide number 1 3579.124800000001 0 MGIISVGFVLFVLFTSNPFTRTFPDFPVDGKE I.claudius_F1_534_521_1156992_peptide number 2 8285.659099999999 0 LNPMLQDVGLIFHPPLLYMGYVGFSVAFAFAIASLMTGKLDSAWARWSRPWTLAAWVFLTLGIVLGSWWAYYE I.claudius_F1_534_521_1156992_peptide number 3 1634.7880000000002 0 LGWGGWWFWDPVE I.claudius_F1_534_521_1156992_peptide number 4 2261.5519 0 NSSFMPWLAGTALIHSLSVTE I.claudius_F1_534_521_1156992_peptide number 5 8319.722200000004 0 KRGSFKAWTVLLAILAFSLCLLGTFLVRSGILVSVHAFASDPTRGLYILAYLVVVIGGSLALYAYKGSQIRSRDNAE I.claudius_F1_534_521_1156992_peptide number 6 709.7513000000001 0 RYSRE I.claudius_F1_534_521_1156992_peptide number 7 13173.11190000001 0 SMLLLNNILLMTALCVVFLGTLLPLVHKQLGLGSISIGAPFFDQMFLIIMTPFALLLGIGPLVKWRRDQFSAIRTPVVICVFVMLIAGFALPYFLQDKITVSSVLGSMMTVIIALLALYE I.claudius_F1_534_521_1156992_peptide number 8 1138.2377999999999 0 LQQRATHRE I.claudius_F1_534_521_1156992_peptide number 9 4385.1023 0 SFFVGVRKLSRSHWGMMLAHLGVAMTVWGIAFSQNFSVE I.claudius_F1_534_521_1156992_peptide number 10 1089.27 0 RDVRMKVGE I.claudius_F1_534_521_1156992_peptide number 11 1934.0667000000003 0 SAQIGRYDFKFTGVTDE I.claudius_F1_534_521_1156992_peptide number 12 2201.3492 0 NGPNYIGGKAQIDISKDGQPE I.claudius_F1_534_521_1156992_peptide number 13 636.6939 0 ASLFAE I.claudius_F1_534_521_1156992_peptide number 14 1635.9059000000002 0 KRFYTVSRMSMTE I.claudius_F1_534_521_1156992_peptide number 15 1689.9066 0 AAIAGGLTRDLYVALGE I.claudius_F1_534_521_1156992_peptide number 16 388.4592 0 KLE I.claudius_F1_534_521_1156992_peptide number 17 5542.6392000000005 0 DNSWALRLYYKPFIRWIWIGGLFMALGGLLCMFDRRYRFNVLLKK I.claudius_F1_535_157_1160147_peptide number 1 7798.910000000003 0 MQQFSTALRIDLQKNPTDAKKWWMLGQIGMNLGDARLAFDSYQKANKLEPDNVQYKLGYARILMFSE I.claudius_F1_535_157_1160147_peptide number 2 1529.6942 0 DATDKLKGGNLLRE I.claudius_F1_535_157_1160147_peptide number 3 643.7329000000001 0 VIRQE I.claudius_F1_535_157_1160147_peptide number 4 612.6327 0 HTNIE I.claudius_F1_535_157_1160147_peptide number 5 1329.542 0 ALSLLAFRYFE I.claudius_F1_535_157_1160147_peptide number 6 248.23319999999998 0 TE I.claudius_F1_535_157_1160147_peptide number 7 2515.9885 0 DYKMAAVTWAMMLRLMPKDDE I.claudius_F1_535_157_1160147_peptide number 8 725.8765000000001 0 RVPLIE I.claudius_F1_535_157_1160147_peptide number 9 1259.4126 0 KSIRTARDALE I.claudius_F1_535_157_1160147_peptide number 10 460.4390000000001 0 AQNE I.claudius_F1_535_157_1160147_peptide number 11 147.1293 0 E I.claudius_F1_535_157_1160147_peptide number 12 889.0052 0 KSKSITPE I.claudius_F1_535_157_1160147_peptide number 13 146.1876 0 K I.claudius_F1_536_103_1161238_peptide number 1 2759.3772 0 MYLMRKIVFVSCVILGLAACSSQPE I.claudius_F1_536_103_1161238_peptide number 2 1524.6944000000003 0 QIGGGVYDMKTVQE I.claudius_F1_536_103_1161238_peptide number 3 7353.2329 0 YNARVISGNTVTQTQKDKITQQIDTSLKLNQSDNKVKTRTRRVLPVLPVTPSVGYHYNYHYFR I.claudius_F1_537_91_1162353_peptide number 1 9426.886500000004 0 MIGLALSGRRSCNTPIICGITSPARRITTVSPIAIFKRSISSPLCKVALLTVTPATNTGSNLATGVIAPVRPTWNSTSFNRVNSSWAGNL I.claudius_F1_538_54_1163581_peptide number 1 2484.8866000000003 0 MTALFYVFSVKIDRYTACLNE I.claudius_F1_538_54_1163581_peptide number 2 1242.3804 0 YKSAVNLRYE I.claudius_F1_538_54_1163581_peptide number 3 532.5464000000001 0 FTHE I.claudius_F1_538_54_1163581_peptide number 4 2145.5062000000003 0 QDRLALHLHQKFLVLQSV I.claudius_F1_539_67_1163951_peptide number 1 6763.0107 0 MIHFIFTQDKTQVFKSLHQFSTIKFFARFWNKIKLNIASCLFWMSCRFCFWFIE I.claudius_F1_539_67_1163951_peptide number 2 303.31500000000005 0 RE I.claudius_F1_539_67_1163951_peptide number 3 1272.6002 0 VVVYLMFFVR I.claudius_F1_540_273_1164814_peptide number 1 732.8458 0 MLNLNE I.claudius_F1_540_273_1164814_peptide number 2 11623.92200000001 0 LKSGFHYFVMGWHFITQKGLRRFVIMPIVLNTVLLCGLFWLFISQISSAIDWVMNFIPDWLSFLSVILLILSILTILLLFYFTFTTISGFIAAPFNGLLAE I.claudius_F1_540_273_1164814_peptide number 3 374.43270000000007 0 KVE I.claudius_F1_540_273_1164814_peptide number 4 677.8105 0 KMLTGE I.claudius_F1_540_273_1164814_peptide number 5 2442.7704 0 NINDDGLVDIMRDVPRMLARE I.claudius_F1_540_273_1164814_peptide number 6 11838.192600000008 0 WQKLRYSLPKIIALFLLSFIPLVGQTIVPVLTFLFTCWMMAIQYCDYPFDNHKVSFDIMKNVLGNQRTQSLTFGGLVTCCTFVPVINLLIMPVAVCGATLMWVE I.claudius_F1_540_273_1164814_peptide number 7 2880.0665999999997 0 NYRNDLGFNMNKSFSSQTGLDVRSE I.claudius_F1_540_273_1164814_peptide number 8 630.7341 0 NTGIVK I.claudius_F1_541_56_1166514_peptide number 1 349.40330000000006 0 MAE I.claudius_F1_541_56_1166514_peptide number 2 147.1293 0 E I.claudius_F1_541_56_1166514_peptide number 3 2151.4628 0 GILAGISSGAAVAAADRLAKLPE I.claudius_F1_541_56_1166514_peptide number 4 1601.8811 0 FADKLIVVILPSASE I.claudius_F1_541_56_1166514_peptide number 5 1099.2365 0 RYLSTALFE I.claudius_F1_541_56_1166514_peptide number 6 317.33820000000003 0 GIE I.claudius_F1_541_56_1166514_peptide number 7 75.0666 0 G I.claudius_F1_542_242_1167903_peptide number 1 2744.2166 0 MFLVGIFPAFVAWFLRSHLHEPE I.claudius_F1_542_242_1167903_peptide number 2 16248.093800000002 0 IFTQKQTALSTQSSFTDKLRSFQLLIKDKATSKISLGIVVLTSVQNFGYYGIMIWLPNFLSKQLGFSLTKSGLWTAVTVCGMMAGIWIFGQLADRIGRKPSFLLFQLGAVISIVVYSQLTDPDIMLLAGAFLGMFVNGMLGGYGALMAE I.claudius_F1_542_242_1167903_peptide number 3 579.5996 0 AYPTE I.claudius_F1_542_242_1167903_peptide number 4 5966.041900000001 0 ARATAQNVLFNIGRAVGGFGPVVVGSVVLAYSFQTAIALLAIIYVIDMLATIFLIPE I.claudius_F1_542_242_1167903_peptide number 5 743.8917 0 LKGKALD I.claudius_F1_543_110_1174032_peptide number 1 11214.117000000015 0 MPPLTIYCQKVGTSSILIPLSSDAMISAPITTPNTLPTPPAKLAPPMTQAAIASSSAFCPADGDPAPKRALKINPAIATNTPFIAKIISFVFSTLIPDNFAASILPPIA I.claudius_F1_544_228_1178544_peptide number 1 735.9129 0 MQMVVE I.claudius_F1_544_228_1178544_peptide number 2 4902.561200000001 0 HKHKIGFKGTLLIEPKPQEPTKHQYDYDVATVYGFLKQFGLE I.claudius_F1_544_228_1178544_peptide number 3 275.3016 0 KE I.claudius_F1_544_228_1178544_peptide number 4 714.8505 0 IKVNIE I.claudius_F1_544_228_1178544_peptide number 5 1533.6033000000002 0 ANHATLAGHTFQHE I.claudius_F1_544_228_1178544_peptide number 6 3637.8936000000003 0 IATACALDIFGSIDANRGDPQLGWDTDQFPNSVE I.claudius_F1_544_228_1178544_peptide number 7 147.1293 0 E I.claudius_F1_544_228_1178544_peptide number 8 868.9939 0 NTLVMYE I.claudius_F1_544_228_1178544_peptide number 9 5808.6693 0 ILKHGGFTTGGFNFDAKIRRQSIDPYDLFYAHIGAIDVLALSLKRAAKMLQE I.claudius_F1_544_228_1178544_peptide number 10 147.1293 0 E I.claudius_F1_544_228_1178544_peptide number 11 944.0836000000002 0 TLQKIVNE I.claudius_F1_544_228_1178544_peptide number 12 982.0073000000001 0 RYAGWNSE I.claudius_F1_544_228_1178544_peptide number 13 1423.6135 0 LGQHILQGKTSLE I.claudius_F1_544_228_1178544_peptide number 14 2278.561 0 TLAQLVQQKDLAPKPVSGQQE I.claudius_F1_544_228_1178544_peptide number 15 423.4602000000001 0 YLE I.claudius_F1_544_228_1178544_peptide number 16 1049.1777000000002 0 NLVNQVIYS I.claudius_F1_545_230_1180076_peptide number 1 6489.559600000001 0 MSLGTSGTLYAYTQKPLLNLPPMIANFCSSNNGWLPLVCVMNITSSNKQLMNLLNIDIE I.claudius_F1_545_230_1180076_peptide number 2 147.1293 0 E I.claudius_F1_545_230_1180076_peptide number 3 2526.8400000000006 0 LNQLAQQAPIGANGITILPFFNGE I.claudius_F1_545_230_1180076_peptide number 4 2512.8154999999997 0 RVPPLPNTKASILGLDSSNFTRE I.claudius_F1_545_230_1180076_peptide number 5 967.1882 0 NLCRAMME I.claudius_F1_545_230_1180076_peptide number 6 5122.8369999999995 0 SATFTLRYGLDLFRQAGLKTSQIRLIGGGAKSSFWRQMIADVMNSE I.claudius_F1_545_230_1180076_peptide number 7 689.8212000000001 0 VVCLQE I.claudius_F1_545_230_1180076_peptide number 8 147.1293 0 E I.claudius_F1_545_230_1180076_peptide number 9 147.1293 0 E I.claudius_F1_545_230_1180076_peptide number 10 1530.7036 0 AAALGGAIQAMWANGE I.claudius_F1_545_230_1180076_peptide number 11 204.1806 0 GE I.claudius_F1_545_230_1180076_peptide number 12 260.2869 0 LE I.claudius_F1_545_230_1180076_peptide number 13 510.6037 0 FLCE I.claudius_F1_545_230_1180076_peptide number 14 873.9490000000001 0 TFIHLDE I.claudius_F1_545_230_1180076_peptide number 15 2231.3768999999998 0 NSKAYPNLSQVKNYQNAYE I.claudius_F1_545_230_1180076_peptide number 16 1293.4701 0 RYLTHLSQLY I.claudius_F1_546_75_1183809_peptide number 1 1029.1269000000002 0 MHYDVVHE I.claudius_F1_546_75_1183809_peptide number 2 924.9512000000001 0 KDVASNYE I.claudius_F1_546_75_1183809_peptide number 3 778.8530000000001 0 NLTRFE I.claudius_F1_546_75_1183809_peptide number 4 4242.889799999999 0 LNSLQMPFLSLLNLSFQVKALSNGWLTWFSLYPVGQE I.claudius_F1_546_75_1183809_peptide number 5 1776.0702999999999 0 RANYAAPLRQWSMLV I.claudius_F1_547_62_1187497_peptide number 1 1749.9171000000001 0 MDNLLANAINSVDCQE I.claudius_F1_547_62_1187497_peptide number 2 1439.6808 0 WLPSVLHCRLSE I.claudius_F1_547_62_1187497_peptide number 3 147.1293 0 E I.claudius_F1_547_62_1187497_peptide number 4 3818.3259 0 SHPLSLWNRDGLDDRKFVPLCRIPWFVQHTSP I.claudius_F1_548_83_1188075_peptide number 1 278.32540000000006 0 ME I.claudius_F1_548_83_1188075_peptide number 2 8392.831600000001 0 ICSARILFNSAFGKLTNSLPSKMAEPSTSPLAANKPIKAKAVCDLPDPLSPTMPSVLPAFSVKFKSFTAVTTPSGVLKRT I.claudius_F1_549_73_1188672_peptide number 1 6317.532300000003 0 MAASTNSLFFRLRVCPRTIRARPSQAMAPIAIKIKKMFWPKRVTNKITKNINGNE I.claudius_F1_549_73_1188672_peptide number 2 1921.3742 0 LRISKKRIISISVLPPT I.claudius_F1_550_318_1192229_peptide number 1 5835.526200000003 0 MTTQLDSLRNMTVVVADTGDIDAIKKYQPQDATTNPSLILSASALPQYAPLIDE I.claudius_F1_550_318_1192229_peptide number 2 2091.2785 0 AVAYAKAQSADKAQQLIDAE I.claudius_F1_550_318_1192229_peptide number 3 1071.2247 0 DKLAVNIGLE I.claudius_F1_550_318_1192229_peptide number 4 1325.5965 0 ILKIVPGRISTE I.claudius_F1_550_318_1192229_peptide number 5 1567.6530000000002 0 VDARLSYDTQATVE I.claudius_F1_550_318_1192229_peptide number 6 3726.3331000000003 0 KARKLIALYNAAGISNDRILIKIASTWQGIRAAE I.claudius_F1_550_318_1192229_peptide number 7 373.44450000000006 0 ILE I.claudius_F1_550_318_1192229_peptide number 8 275.3016 0 KE I.claudius_F1_550_318_1192229_peptide number 9 1323.5142 0 GINCNLTLLFSE I.claudius_F1_550_318_1192229_peptide number 10 818.8987 0 AQARACAE I.claudius_F1_550_318_1192229_peptide number 11 2870.2605000000003 0 AGVYLISPFVGRILDWYKANSDKKE I.claudius_F1_550_318_1192229_peptide number 12 549.5736 0 YAPAE I.claudius_F1_550_318_1192229_peptide number 13 1889.1088999999997 0 DPGVISVTKIYNYYKE I.claudius_F1_550_318_1192229_peptide number 14 1864.0431 0 YGYNTVVMGASFRNVGE I.claudius_F1_550_318_1192229_peptide number 15 361.3908 0 ITE I.claudius_F1_550_318_1192229_peptide number 16 1684.0097 0 LAGCDRLTIAPALLKE I.claudius_F1_550_318_1192229_peptide number 17 388.41610000000003 0 LQE I.claudius_F1_550_318_1192229_peptide number 18 1130.2953 0 NSTALVRKLE I.claudius_F1_550_318_1192229_peptide number 19 495.5262 0 YKGE I.claudius_F1_550_318_1192229_peptide number 20 1110.3039999999999 0 VKAKPQPLTE I.claudius_F1_550_318_1192229_peptide number 21 218.2072 0 AE I.claudius_F1_550_318_1192229_peptide number 22 1597.7052 0 FYWQHNSDAMAVE I.claudius_F1_550_318_1192229_peptide number 23 459.5371 0 KLAE I.claudius_F1_550_318_1192229_peptide number 24 1176.3222 0 GIRKFAIDQE I.claudius_F1_550_318_1192229_peptide number 25 388.4592 0 KLE I.claudius_F1_550_318_1192229_peptide number 26 762.9580000000001 0 TMLSAKL I.claudius_F1_551_367_1194260_peptide number 1 2816.4646000000002 0 MLWFFFCVTVLIIGYFIYGKIIE I.claudius_F1_551_367_1194260_peptide number 2 15796.820800000009 0 KIFVINPKRQTPAYQVNDGVDYMPMSKTKIWLIQLLNIAGTGPIFGPILGALYGPVAMLWIVIGCIFAGAVHDYFCGMLSIRHGGATMPYLAGKFLGRPVKVFINTLALVLLLLVGVVFVASPAQLMGTITMDVFGVSQGALVLGDAE I.claudius_F1_551_367_1194260_peptide number 3 777.8253 0 AVHHSVE I.claudius_F1_551_367_1194260_peptide number 4 7805.3072 0 AGGIKVWGMDKATVVAVWTAIIFAYYILATLLPVDKIIGRIYPLFGALLLFMSVGMVYGLVVSHFSATDPIE I.claudius_F1_551_367_1194260_peptide number 5 1169.2435 0 FFRTINADGE I.claudius_F1_551_367_1194260_peptide number 6 5297.1372 0 GLTWAKFTQNFQVKGDVPIWPLLFLTISCGALSGFHATQTPLMARCTE I.claudius_F1_551_367_1194260_peptide number 7 261.2319 0 NE I.claudius_F1_551_367_1194260_peptide number 8 234.2066 0 SE I.claudius_F1_551_367_1194260_peptide number 9 1404.6318 0 GRFIFYGAMITE I.claudius_F1_551_367_1194260_peptide number 10 1771.1499000000001 0 GVIALVWCMVGLAFYE I.claudius_F1_551_367_1194260_peptide number 11 2826.3818 0 NPQALQDAISAGCSMLKLCMIVRYIS I.claudius_F1_552_322_1196535_peptide number 1 479.50530000000003 0 MNSE I.claudius_F1_552_322_1196535_peptide number 2 756.715 0 NSFSSSE I.claudius_F1_552_322_1196535_peptide number 3 961.1157000000001 0 HITVLLHE I.claudius_F1_552_322_1196535_peptide number 4 914.0576000000001 0 AVNGLALKE I.claudius_F1_552_322_1196535_peptide number 5 4330.776499999999 0 NGIYIDGTFGRGGHSRFILSQLSSNGRLIAVDRDPRAIAE I.claudius_F1_552_322_1196535_peptide number 6 1497.6970000000001 0 AHKIQDLRFQIE I.claudius_F1_552_322_1196535_peptide number 7 1067.1118 0 HNSFSHIPE I.claudius_F1_552_322_1196535_peptide number 8 2868.3025000000002 0 ICDKLNLVGKIDGILLDLGVSSPQLDE I.claudius_F1_552_322_1196535_peptide number 9 218.2072 0 AE I.claudius_F1_552_322_1196535_peptide number 10 2691.0251000000003 0 RGFSFMKDGPLDMRMDTTQGLSAE I.claudius_F1_552_322_1196535_peptide number 11 147.1293 0 E I.claudius_F1_552_322_1196535_peptide number 12 1002.1643 0 WLKQVSIE I.claudius_F1_552_322_1196535_peptide number 13 1308.4782 0 DLTWVLKTFGE I.claudius_F1_552_322_1196535_peptide number 14 147.1293 0 E I.claudius_F1_552_322_1196535_peptide number 15 2536.8834 0 RFAKRIATAIVDFNKSAVKNGTE I.claudius_F1_552_322_1196535_peptide number 16 1151.2697 0 FLSRTSQLAE I.claudius_F1_552_322_1196535_peptide number 17 3479.9852999999994 0 LISQAVPFKDKHKHPATRSFQAIRIFINSE I.claudius_F1_552_322_1196535_peptide number 18 375.37430000000006 0 LDE I.claudius_F1_552_322_1196535_peptide number 19 260.2869 0 LE I.claudius_F1_552_322_1196535_peptide number 20 1373.5714 0 SLLNSALDMLAPE I.claudius_F1_552_322_1196535_peptide number 21 1358.5418 0 GRLSIISFHSLE I.claudius_F1_552_322_1196535_peptide number 22 1849.1859 0 DRMVKHFMKKQSKGE I.claudius_F1_552_322_1196535_peptide number 23 1137.3292 0 DIPKGLPLRE I.claudius_F1_552_322_1196535_peptide number 24 2521.8271 0 DQIQRNQKLRIIGKAIQPSDAE I.claudius_F1_552_322_1196535_peptide number 25 1781.0256000000002 0 IQANPRSRSAILRVAE I.claudius_F1_552_322_1196535_peptide number 26 287.3586 0 RI I.claudius_F1_553_317_1198721_peptide number 1 1935.1227000000001 0 MATAPSYNPNNRVGVKSE I.claudius_F1_553_317_1198721_peptide number 2 3945.5488000000005 0 LMRNRAITDTFEPGSTVKPFVVLTALQRGVVKRDE I.claudius_F1_553_317_1198721_peptide number 3 1438.6217000000001 0 IIDTTSFKLSGKE I.claudius_F1_553_317_1198721_peptide number 4 1554.7005 0 IVDVAPRAQQTLDE I.claudius_F1_553_317_1198721_peptide number 5 2644.1457 0 ILMNSSNRGVSRLALRMPPSALME I.claudius_F1_553_317_1198721_peptide number 6 1877.0566000000003 0 TYQNAGLSKPTDLGLIGE I.claudius_F1_553_317_1198721_peptide number 7 1883.1156999999998 0 QVGILNANRKRWADIE I.claudius_F1_553_317_1198721_peptide number 8 5373.169099999999 0 RATVAYGYGITATPLQIARAYATLGSFGVYRPLSITKVDPPVIGKRVFSE I.claudius_F1_553_317_1198721_peptide number 9 1228.478 0 KITKDIVGILE I.claudius_F1_553_317_1198721_peptide number 10 1386.7062 0 KVAIKNKRAMVE I.claudius_F1_553_317_1198721_peptide number 11 1634.878 0 GYRVGVKTGTARKIE I.claudius_F1_553_317_1198721_peptide number 12 3874.3579000000013 0 NGHYVNKYVAFTAGIAPISDPRYALVVLINDPKAGE I.claudius_F1_553_317_1198721_peptide number 13 3046.368 0 YYGGAVSAPVFSNIMGYALRANAIPQDAE I.claudius_F1_553_317_1198721_peptide number 14 289.28510000000006 0 AAE I.claudius_F1_553_317_1198721_peptide number 15 1680.9000000000003 0 NTTTKSAKRIVYIGE I.claudius_F1_553_317_1198721_peptide number 16 866.9647 0 HKNQKVN I.claudius_F1_554_59_1200971_peptide number 1 278.32540000000006 0 ME I.claudius_F1_554_59_1200971_peptide number 2 1869.1687000000002 0 KVGIIPDRAQAIQFAIE I.claudius_F1_554_59_1200971_peptide number 3 404.41560000000004 0 SAVE I.claudius_F1_554_59_1200971_peptide number 4 1265.4153 0 NDVILIAGKGHE I.claudius_F1_554_59_1200971_peptide number 5 946.0149 0 HYQIIGSE I.claudius_F1_554_59_1200971_peptide number 6 959.9986 0 VVHFSDQE I.claudius_F1_554_59_1200971_peptide number 7 818.9996000000001 0 IALDFLK I.claudius_F1_555_352_1201479_peptide number 1 1225.37 0 MTGSSGKTTVKE I.claudius_F1_555_352_1201479_peptide number 2 1474.5926 0 MTASILQHTAADSE I.claudius_F1_555_352_1201479_peptide number 3 2631.9758 0 AVLFTNGNFNNDIGVPLTLLRLTE I.claudius_F1_555_352_1201479_peptide number 4 999.1671000000001 0 KHRFAVIE I.claudius_F1_555_352_1201479_peptide number 5 881.8898000000002 0 LGANHQNE I.claudius_F1_555_352_1201479_peptide number 6 2618.9803 0 INYTTKLVQPNAALINNIAPAHLE I.claudius_F1_555_352_1201479_peptide number 7 1319.4628000000002 0 GFGSLAGVVQAKGE I.claudius_F1_555_352_1201479_peptide number 8 1731.9895999999999 0 IYRGLTKNGVAIINAE I.claudius_F1_555_352_1201479_peptide number 9 1319.4245 0 HNHLDIWQKE I.claudius_F1_555_352_1201479_peptide number 10 3992.2801 0 ISNHAIQYFNGKDYSAKNIHHTSQGSTFTLISPQGE I.claudius_F1_555_352_1201479_peptide number 11 260.2869 0 IE I.claudius_F1_555_352_1201479_peptide number 12 905.0458000000001 0 ITLPYLGE I.claudius_F1_555_352_1201479_peptide number 13 2794.1878000000006 0 HNVKNALAATALAMNVGATLTDVKAGLE I.claudius_F1_555_352_1201479_peptide number 14 6171.088000000001 0 QRSQVKGRLFPIQVTPNLLLLDDTYNANKDSLCAAIDVLKGYDAFRILCVGDMKE I.claudius_F1_555_352_1201479_peptide number 15 317.33820000000003 0 LGE I.claudius_F1_555_352_1201479_peptide number 16 939.0273 0 NSLAIHRE I.claudius_F1_555_352_1201479_peptide number 17 2113.3468000000003 0 VGQYINLVNLDLVCSYGNE I.claudius_F1_555_352_1201479_peptide number 18 604.6505 0 SAVISE I.claudius_F1_555_352_1201479_peptide number 19 1319.4199 0 AVSGKHFTDKTE I.claudius_F1_555_352_1201479_peptide number 20 1175.4369000000002 0 MVDFLVPLIE I.claudius_F1_555_352_1201479_peptide number 21 2502.9549 0 NQLQQNKKVVVLGKGSRSMKME I.claudius_F1_555_352_1201479_peptide number 22 1424.7044 0 DVIYSLKDKIKC I.claudius_F1_556_438_1203733_peptide number 1 6722.619100000002 0 MNAYQNKNITIIGLGKTGLSCVDYLLSQQANIRVIDTRKNPTGIDKLPQNIPLHTGSLNQE I.claudius_F1_556_438_1203733_peptide number 2 559.6544 0 WLLE I.claudius_F1_556_438_1203733_peptide number 3 1656.9382 0 SDMIVISPGLAVKTPE I.claudius_F1_556_438_1203733_peptide number 4 1029.1880999999998 0 IQTALKAGVE I.claudius_F1_556_438_1203733_peptide number 5 644.7143000000001 0 VIGDIE I.claudius_F1_556_438_1203733_peptide number 6 2927.3750000000005 0 LFCRAATKPIVGITGSNGKSTVTTLVYE I.claudius_F1_556_438_1203733_peptide number 7 2411.8821000000003 0 MAKAAGVKVGMGGNIGIPALSLLNE I.claudius_F1_556_438_1203733_peptide number 8 365.3596 0 DCE I.claudius_F1_556_438_1203733_peptide number 9 635.7489 0 LYVLE I.claudius_F1_556_438_1203733_peptide number 10 822.9022 0 LSSFQLE I.claudius_F1_556_438_1203733_peptide number 11 1752.9594000000002 0 TTYSLKAAAATVLNVTE I.claudius_F1_556_438_1203733_peptide number 12 1324.4396000000002 0 DHMDRYMDLE I.claudius_F1_556_438_1203733_peptide number 13 2501.7977000000005 0 DYRQAKLRIYHNAKVGVLNNE I.claudius_F1_556_438_1203733_peptide number 14 836.8891 0 DRLTFGE I.claudius_F1_556_438_1203733_peptide number 15 261.2319 0 NE I.claudius_F1_556_438_1203733_peptide number 16 1231.3147 0 NQAKHTVSFAE I.claudius_F1_556_438_1203733_peptide number 17 1226.2915 0 NSADYWLKTE I.claudius_F1_556_438_1203733_peptide number 18 1324.5025 0 NGKQYLMVKDE I.claudius_F1_556_438_1203733_peptide number 19 672.8337000000001 0 VILPCE I.claudius_F1_556_438_1203733_peptide number 20 147.1293 0 E I.claudius_F1_556_438_1203733_peptide number 21 8254.365400000002 0 ATLVGRHNYMNILAATALAQAIGINLDSIRTALRHFKGLDHRFQLVHQANGIRWINDSKATNVGSTVAALAGLYIE I.claudius_F1_556_438_1203733_peptide number 22 1814.0040000000001 0 GKLHLLLGGDGKGADFSE I.claudius_F1_556_438_1203733_peptide number 23 331.36480000000006 0 LAE I.claudius_F1_556_438_1203733_peptide number 24 3782.3252 0 LINQPHIICYCFGRDGALLAKFSSQSYLFDTME I.claudius_F1_556_438_1203733_peptide number 25 459.494 0 QAIE I.claudius_F1_556_438_1203733_peptide number 26 3044.4565 0 FLRPTLQSGDMVLLSPACASLDQFASFE I.claudius_F1_556_438_1203733_peptide number 27 488.5386000000001 0 KRGE I.claudius_F1_556_438_1203733_peptide number 28 147.1293 0 E I.claudius_F1_556_438_1203733_peptide number 29 1033.2015 0 FTHLAQCLT I.claudius_F1_557_310_1206390_peptide number 1 278.32540000000006 0 ME I.claudius_F1_557_310_1206390_peptide number 2 5190.268800000002 0 AQLVPKYGIPIRFIQISGLRGKGIKALLNAPFAIFRAVLQAKKIIQE I.claudius_F1_557_310_1206390_peptide number 3 147.1293 0 E I.claudius_F1_557_310_1206390_peptide number 4 3020.5676000000003 0 KPDAVLGMGGYVSGPAGVAAKLCGVPIILHE I.claudius_F1_557_310_1206390_peptide number 5 3238.7563000000005 0 QNAIAGLTNKLLGKIATCVLQAFPTAFPHAE I.claudius_F1_557_310_1206390_peptide number 6 868.9774000000001 0 VVGNPVRE I.claudius_F1_557_310_1206390_peptide number 7 522.5482000000001 0 DLFE I.claudius_F1_557_310_1206390_peptide number 8 1476.6134000000002 0 MPNPDIRFSDRE I.claudius_F1_557_310_1206390_peptide number 9 147.1293 0 E I.claudius_F1_557_310_1206390_peptide number 10 3410.021500000001 0 KLRVLVVGGSQGARVLNHTLPKVVAQLADKLE I.claudius_F1_557_310_1206390_peptide number 11 1227.3724 0 FRHQVGKGAVE I.claudius_F1_557_310_1206390_peptide number 12 147.1293 0 E I.claudius_F1_557_310_1206390_peptide number 13 794.8491 0 VSQLYGE I.claudius_F1_557_310_1206390_peptide number 14 374.3895 0 NLE I.claudius_F1_557_310_1206390_peptide number 15 716.8234 0 QVKITE I.claudius_F1_557_310_1206390_peptide number 16 838.9248 0 FIDNMAE I.claudius_F1_557_310_1206390_peptide number 17 2027.3240000000003 0 AYAWADVVICRSGALTVCE I.claudius_F1_557_310_1206390_peptide number 18 4017.5878000000007 0 IAAVGAAAIFVPFQHKDRQQYLNAKYLSDVGAAKIIE I.claudius_F1_557_310_1206390_peptide number 19 772.8004999999999 0 QADLTPE I.claudius_F1_557_310_1206390_peptide number 20 1475.7312000000002 0 ILVNYLKNLTRE I.claudius_F1_557_310_1206390_peptide number 21 2517.0013000000004 0 NLLQMALKAKTMSMPNAAQRVAE I.claudius_F1_557_310_1206390_peptide number 22 850.9587000000001 0 VIKQYSN I.claudius_F1_558_106_1208567_peptide number 1 4461.0395 0 MIFQPHRYSRTRDLFDDFVQVLSQVDALIMLDVYAAGE I.claudius_F1_558_106_1208567_peptide number 2 6475.298200000004 0 APIVGADSKSLCRSIRNLGKVDPILVSDTSQLGDVLDQIIQDGDLILAQGAGSVSKISRGLAE I.claudius_F1_558_106_1208567_peptide number 3 533.5774 0 SWKN I.claudius_F1_559_216_1209229_peptide number 1 3657.462200000001 0 MASALTMDKMRTKMLWKAFGLPVADMKVVTRE I.claudius_F1_559_216_1209229_peptide number 2 482.48440000000005 0 TFSE I.claudius_F1_559_216_1209229_peptide number 3 2218.6979 0 LDPQAVVAKLGLPLMVKPSLE I.claudius_F1_559_216_1209229_peptide number 4 1274.4638 0 GSSVGLTKVKAVE I.claudius_F1_559_216_1209229_peptide number 5 147.1293 0 E I.claudius_F1_559_216_1209229_peptide number 6 645.7455 0 LKSAVE I.claudius_F1_559_216_1209229_peptide number 7 1439.6510000000003 0 YALKFDNTILIE I.claudius_F1_559_216_1209229_peptide number 8 147.1293 0 E I.claudius_F1_559_216_1209229_peptide number 9 689.7134000000001 0 WLAGDE I.claudius_F1_559_216_1209229_peptide number 10 2086.4739999999997 0 LTVPVLDNQVLPAIRIVPE I.claudius_F1_559_216_1209229_peptide number 11 204.1806 0 GE I.claudius_F1_559_216_1209229_peptide number 12 735.7372000000001 0 FYDYE I.claudius_F1_559_216_1209229_peptide number 13 2118.322 0 AKYISDNTQYFCPAGLTPE I.claudius_F1_559_216_1209229_peptide number 14 303.31500000000005 0 RE I.claudius_F1_559_216_1209229_peptide number 15 4029.6285000000003 0 QALSTLVKRAYDAVGCRGWSRIDVMCDAKGNFRLVE I.claudius_F1_559_216_1209229_peptide number 16 2592.8771 0 VNTNPGMTSHSLFPKSAATVGISFE I.claudius_F1_559_216_1209229_peptide number 17 941.1658000000001 0 QLVVKILE I.claudius_F1_559_216_1209229_peptide number 18 331.4078 0 LSL I.claudius_F1_560_426_1210659_peptide number 1 661.8112000000001 0 MVKGVE I.claudius_F1_560_426_1210659_peptide number 2 860.0070000000001 0 TKTIVGLE I.claudius_F1_560_426_1210659_peptide number 3 1172.3720000000003 0 VGTSKVVVVVGE I.claudius_F1_560_426_1210659_peptide number 4 4041.5416000000005 0 VFPDGVVNVLGVGSCPSKGIDRGSITDLDAVVGSIQRAIE I.claudius_F1_560_426_1210659_peptide number 5 289.28510000000006 0 AAE I.claudius_F1_560_426_1210659_peptide number 6 1770.0544000000002 0 SMADCQIMSVTLAITGE I.claudius_F1_560_426_1210659_peptide number 7 839.8929 0 HIQSLNE I.claudius_F1_560_426_1210659_peptide number 8 818.9136000000001 0 SGFVPIAE I.claudius_F1_560_426_1210659_peptide number 9 234.2066 0 SE I.claudius_F1_560_426_1210659_peptide number 10 475.49350000000004 0 VTQE I.claudius_F1_560_426_1210659_peptide number 11 147.1293 0 E I.claudius_F1_560_426_1210659_peptide number 12 1581.7655 0 IDSALHTASSIKLPE I.claudius_F1_560_426_1210659_peptide number 13 1205.4031000000002 0 GLSLLHVIPQE I.claudius_F1_560_426_1210659_peptide number 14 4841.578899999999 0 YAVDRQMNIKNPLGLQGVRLKAQVHLIACHQDWQNNLKKAVE I.claudius_F1_560_426_1210659_peptide number 15 2464.7943000000005 0 RCGLQVDKVVFSGFAATHSVLTE I.claudius_F1_560_426_1210659_peptide number 16 262.2167 0 DE I.claudius_F1_560_426_1210659_peptide number 17 5532.355200000002 0 KDLGVCLIDFGAGTMNVMVYTNGALRFSKVIPYAGNIVTNDIAHACTISRAE I.claudius_F1_560_426_1210659_peptide number 18 218.2072 0 AE I.claudius_F1_560_426_1210659_peptide number 19 2576.9488000000006 0 RIKVNYASAFYPARLHGDKKIE I.claudius_F1_560_426_1210659_peptide number 20 2850.1881999999996 0 VASIGGRAPRSLTKSDLSLITSARYTE I.claudius_F1_560_426_1210659_peptide number 21 872.0177 0 LLGVVKDE I.claudius_F1_560_426_1210659_peptide number 22 815.9544000000001 0 LDKLKAE I.claudius_F1_560_426_1210659_peptide number 23 260.2869 0 LE I.claudius_F1_560_426_1210659_peptide number 24 872.0226 0 AKHIKFE I.claudius_F1_560_426_1210659_peptide number 25 1397.616 0 LIAGVVITGGGAQIE I.claudius_F1_560_426_1210659_peptide number 26 503.5466 0 DLKE I.claudius_F1_560_426_1210659_peptide number 27 6156.604400000003 0 CASNVFHCQVRIASPLNITGLTDYVNRPQYSTVVGLLQYNYSNSDDDLISGSDDSE I.claudius_F1_560_426_1210659_peptide number 28 599.6323 0 GTFFE I.claudius_F1_560_426_1210659_peptide number 29 1871.1879999999999 0 SIWQGVKKIVNKVRSE I.claudius_F1_560_426_1210659_peptide number 30 165.1892 0 F I.claudius_F1_561_275_1213417_peptide number 1 4170.7003 0 MPNTGVVYYRTDLNPAVAFPADPNSVRDTMLCTALINE I.claudius_F1_561_275_1213417_peptide number 2 988.0965000000001 0 QGVRISTVE I.claudius_F1_561_275_1213417_peptide number 3 1747.0006999999998 0 HLNAALAGLGIDNIIIE I.claudius_F1_561_275_1213417_peptide number 4 529.5409000000001 0 VDAPE I.claudius_F1_561_275_1213417_peptide number 5 2235.5939999999996 0 IPIMDGSASPFIYLLLDAGIE I.claudius_F1_561_275_1213417_peptide number 6 147.1293 0 E I.claudius_F1_561_275_1213417_peptide number 7 2091.459 0 QNAAKKFIRIKQYVRVE I.claudius_F1_561_275_1213417_peptide number 8 819.8155 0 DGDKWAE I.claudius_F1_561_275_1213417_peptide number 9 3375.700300000001 0 FKPYNGFRLDFTIDFDHPAIGKDVRNYE I.claudius_F1_561_275_1213417_peptide number 10 2932.3383 0 MNFSAQAFVHQISRARTFGFMKDIE I.claudius_F1_561_275_1213417_peptide number 11 2979.2968 0 YLQSQGLVLGGSLDNAIVLDDYRILNE I.claudius_F1_561_275_1213417_peptide number 12 979.0449 0 DGLRFKDE I.claudius_F1_561_275_1213417_peptide number 13 5132.917800000001 0 LVRHKMLDAIGDLYMAGYNIIGDFKAYKSGHGLNNKLLRAVLANQE I.claudius_F1_561_275_1213417_peptide number 14 404.4171 0 AWE I.claudius_F1_561_275_1213417_peptide number 15 641.7121000000001 0 FVTFE I.claudius_F1_561_275_1213417_peptide number 16 1825.113 0 DKAQVPQGYVAPVQVLI I.claudius_F1_562_149_1215079_peptide number 1 1883.1737 0 MQLVASLNKPNIAALGNE I.claudius_F1_562_149_1215079_peptide number 2 2020.2435 0 DGGKLYGLSVLKTNIANQE I.claudius_F1_562_149_1215079_peptide number 3 1786.0405 0 NNITRFIVVAKEPRE I.claudius_F1_562_149_1215079_peptide number 4 4398.194 0 VSSQIPTKTLLLMTTSQQAGALVDALLVFKKHQINMTKLE I.claudius_F1_562_149_1215079_peptide number 5 1232.3871000000001 0 SRPIYGKPWE I.claudius_F1_562_149_1215079_peptide number 6 147.1293 0 E I.claudius_F1_562_149_1215079_peptide number 7 701.8302000000001 0 MFYLE I.claudius_F1_562_149_1215079_peptide number 8 260.2869 0 IE I.claudius_F1_562_149_1215079_peptide number 9 1473.5895 0 ANIHHPDTKQALE I.claudius_F1_562_149_1215079_peptide number 10 147.1293 0 E I.claudius_F1_562_149_1215079_peptide number 11 2005.2934000000002 0 LKNYSNYLKILGCYPSE I.claudius_F1_562_149_1215079_peptide number 12 740.931 0 IVKPVSV I.claudius_F1_563_336_1219808_peptide number 1 1008.1027 0 MAFDAPDLE I.claudius_F1_563_336_1219808_peptide number 2 1560.6603 0 LYHAADIDVDKATE I.claudius_F1_563_336_1219808_peptide number 3 643.7295 0 LALQAE I.claudius_F1_563_336_1219808_peptide number 4 844.8664 0 QAALQADE I.claudius_F1_563_336_1219808_peptide number 5 4778.256599999999 0 RIINSNGASFNSHTGVKVYGNSHGMLQSYLSSRYSLSCSVIGGVE I.claudius_F1_563_336_1219808_peptide number 6 446.45220000000006 0 DALE I.claudius_F1_563_336_1219808_peptide number 7 539.4926 0 NDYE I.claudius_F1_563_336_1219808_peptide number 8 767.8271 0 YTISRE I.claudius_F1_563_336_1219808_peptide number 9 1418.5921000000003 0 FDKLQSPIWVGE I.claudius_F1_563_336_1219808_peptide number 10 2171.5239 0 NCAKKVVSRLNPQKLSTRE I.claudius_F1_563_336_1219808_peptide number 11 5418.161199999999 0 VPVIFLNDVATGIISHFAAAISGGSLYRKSSFLLDHLGKQVLPDWFSISE I.claudius_F1_563_336_1219808_peptide number 12 1895.1266 0 RPHLLRRLASTPFDSE I.claudius_F1_563_336_1219808_peptide number 13 960.0036000000001 0 GVRTQDRE I.claudius_F1_563_336_1219808_peptide number 14 359.418 0 IVE I.claudius_F1_563_336_1219808_peptide number 15 8254.350800000002 0 NGILQTYLVTSYSGKKLGMSSTGHAGGIHNWLVKPNLTGGLTALLRQMGTGLLVTDVMGQGVNIVTGDYSRGASGFWVE I.claudius_F1_563_336_1219808_peptide number 16 318.2832 0 NGE I.claudius_F1_563_336_1219808_peptide number 17 818.9136000000001 0 IQYPVAE I.claudius_F1_563_336_1219808_peptide number 18 2402.7826 0 ITIAGQLQDMLKNMLAVADDIE I.claudius_F1_563_336_1219808_peptide number 19 2212.5291999999995 0 HRSNIQTGSILLDKMKISGN I.claudius_F1_564_441_1221871_peptide number 1 2807.481 0 MLLVNLAIFIAFLLLLAQLYRKTE I.claudius_F1_564_441_1221871_peptide number 2 2635.1469 0 KLGQTVFIGLLLGLLFGAVLQSAFE I.claudius_F1_564_441_1221871_peptide number 3 9489.260700000003 0 KPLLDKTLDWINVVSNGYVRLLQMIVMPLVFVSILSAIARINQTRSLGKVSVGVLSTLLITTAISAAIGIAMVHLFDVSAAGLIVGDRE I.claudius_F1_564_441_1221871_peptide number 4 6365.4377 0 LAAQGKVLDKAGQVSNLTVPAMLVSFIPKNPFADLTGANPTSIISVVIFSALLGVAALSLGKE I.claudius_F1_564_441_1221871_peptide number 5 631.6327 0 DQALGE I.claudius_F1_564_441_1221871_peptide number 6 771.8621 0 RIAQGVE I.claudius_F1_564_441_1221871_peptide number 7 10943.095700000007 0 TLNKLVMRLVRFVIRLTPYGVFALMIKMAATSKWADIVNLGNFIVASYAAIALMFVVHGILLFFVKVNPVDYYKKVLPTLSFAFTSRSSAATIPLNIE I.claudius_F1_564_441_1221871_peptide number 8 9083.568800000003 0 TQTAKLGNNNVIANFAATFGATIGQNGCGGIYPAMLAVMVAPMVGIDPFSFSYILTLIFVVAISSFGIAGVGGGATFAAIVVLSTLGLPLE I.claudius_F1_564_441_1221871_peptide number 9 3907.644300000001 0 LIGLLISIEPIIDMGRTALNVNGAMVAGTITDRLLNK I.claudius_F1_565_70_1225596_peptide number 1 1058.2095 0 MAVAAKNQPE I.claudius_F1_565_70_1225596_peptide number 2 5024.9045 0 TVSKPILEPKPRIISTKPKISGNLANLNKRINGSNVRIIGYPVVVE I.claudius_F1_565_70_1225596_peptide number 3 1616.9123000000002 0 RVVQQRNLHVVIR I.claudius_F1_566_77_1226406_peptide number 1 8625.0196 0 MLNPVSKAPLNFRQKFQPHFLKKLFFHFDVQLNNRILKNQQWHLRHQYLLRGRGNKCLDRVRVDKIQVQE I.claudius_F1_566_77_1226406_peptide number 2 756.8937000000001 0 LNKRNL I.claudius_F1_567_84_1227389_peptide number 1 392.428 0 MNE I.claudius_F1_567_84_1227389_peptide number 2 147.1293 0 E I.claudius_F1_567_84_1227389_peptide number 3 4670.633699999999 0 SVAKTMFARINFLIGSCCARSHFCKYFWRSLFIVLVVIIE I.claudius_F1_567_84_1227389_peptide number 4 1456.7778 0 KVPLFKRVKRGE I.claudius_F1_567_84_1227389_peptide number 5 1176.4746 0 LVRRFMLLE I.claudius_F1_567_84_1227389_peptide number 6 2260.6018 0 HLNSVLHPRLPYNQFLRR I.claudius_F2_1_254_18_peptide number 1 1143.3404 0 MQRMLQHAE I.claudius_F2_1_254_18_peptide number 2 422.4755 0 KFE I.claudius_F2_1_254_18_peptide number 3 248.23319999999998 0 TE I.claudius_F2_1_254_18_peptide number 4 5068.7184 0 IVFDHINRVDLSSRPFKLFGDVQNFTCDALIIATGASARYIGLPSE I.claudius_F2_1_254_18_peptide number 5 147.1293 0 E I.claudius_F2_1_254_18_peptide number 6 3508.895800000001 0 NYKGRGVSACATCDGFFYRNKPVGVIGGGNTAVE I.claudius_F2_1_254_18_peptide number 7 147.1293 0 E I.claudius_F2_1_254_18_peptide number 8 2653.9914000000003 0 ALYLANIASTVHLIHRRDSFRAE I.claudius_F2_1_254_18_peptide number 9 1517.8541000000002 0 KILIDRLYKKVE I.claudius_F2_1_254_18_peptide number 10 147.1293 0 E I.claudius_F2_1_254_18_peptide number 11 1496.6644000000001 0 GKIVLHTDRTLDE I.claudius_F2_1_254_18_peptide number 12 2046.3058 0 VLGDNMGVTGLRLANTKTGE I.claudius_F2_1_254_18_peptide number 13 275.3016 0 KE I.claudius_F2_1_254_18_peptide number 14 147.1293 0 E I.claudius_F2_1_254_18_peptide number 15 1811.0432 0 LKLDGLFVAIGHSPNTE I.claudius_F2_1_254_18_peptide number 16 833.9281 0 IFQGQLE I.claudius_F2_1_254_18_peptide number 17 2222.4083 0 LNNGYIVVKSGLDGNATATSVE I.claudius_F2_1_254_18_peptide number 18 3143.443600000001 0 GVFAAGDVMDHNYRQAITSAGTGCMAALDAE I.claudius_F2_1_254_18_peptide number 19 893.9404000000001 0 RYLDAQE I.claudius_F2_1_254_18_peptide number 20 89.0932 0 A I.claudius_F2_2_348_1568_peptide number 1 1635.962 0 MDVLKLAFLSSAVLE I.claudius_F2_2_348_1568_peptide number 2 2605.0101 0 FFTSISIALMAVYFGFSYLGQIE I.claudius_F2_2_348_1568_peptide number 3 2435.8322000000003 0 FGTYNAPLTLFTGFFCLILAPE I.claudius_F2_2_348_1568_peptide number 4 3358.668100000001 0 FYQPLRDLGTYYHDRAAGIGAADAIVDFLE I.claudius_F2_2_348_1568_peptide number 5 1205.231 0 SDYLTVHQNE I.claudius_F2_2_348_1568_peptide number 6 689.798 0 KTISLE I.claudius_F2_2_348_1568_peptide number 7 404.41560000000004 0 SAVE I.claudius_F2_2_348_1568_peptide number 8 418.4421 0 ISAE I.claudius_F2_2_348_1568_peptide number 9 5223.9971 0 NLVVLSTQGSALTKPLNFQIPANHNVALVGQSGAGKTSLMNVILGFLPYE I.claudius_F2_2_348_1568_peptide number 10 945.0285 0 GSLKINGQE I.claudius_F2_2_348_1568_peptide number 11 416.47260000000006 0 LRE I.claudius_F2_2_348_1568_peptide number 12 2988.4012000000007 0 SNLADWRKHIAWVGQNPLLLQGTIKE I.claudius_F2_2_348_1568_peptide number 13 1300.3716 0 NLLLGDVQANDE I.claudius_F2_2_348_1568_peptide number 14 147.1293 0 E I.claudius_F2_2_348_1568_peptide number 15 1388.5927000000001 0 INQALMRSQAKE I.claudius_F2_2_348_1568_peptide number 16 1196.3119000000002 0 FTDKLGLHHE I.claudius_F2_2_348_1568_peptide number 17 4474.0794000000005 0 IKDGGLGISVGQAQRLAIARALLRKGDLLLLDEPTASLDAQSE I.claudius_F2_2_348_1568_peptide number 18 1013.1455000000001 0 NLVLQALNE I.claudius_F2_2_348_1568_peptide number 19 1765.9878 0 ASQHQTTLMITHRIE I.claudius_F2_2_348_1568_peptide number 20 1810.0602000000001 0 DLKQCDQIFVMQRGE I.claudius_F2_2_348_1568_peptide number 21 1049.1778 0 IVQQGKFTE I.claudius_F2_2_348_1568_peptide number 22 525.5554000000001 0 LQHE I.claudius_F2_2_348_1568_peptide number 23 569.6063 0 GFFAE I.claudius_F2_2_348_1568_peptide number 24 1212.3559 0 LLAQRQQDIQ I.claudius_F2_3_129_3955_peptide number 1 1367.6563 0 MLHQVGLSKLLE I.claudius_F2_3_129_3955_peptide number 2 275.2585 0 QE I.claudius_F2_3_129_3955_peptide number 3 1883.0692000000004 0 GKGLNLWLGDGGRPLSGGE I.claudius_F2_3_129_3955_peptide number 4 2719.1441 0 QRRLGLARILLNNASILLLDEPTE I.claudius_F2_3_129_3955_peptide number 5 588.6113 0 GLDRE I.claudius_F2_3_129_3955_peptide number 6 248.23319999999998 0 TE I.claudius_F2_3_129_3955_peptide number 7 1489.7643 0 RQILRLILQHAE I.claudius_F2_3_129_3955_peptide number 8 1724.0106999999998 0 NKTLIIVTHRLSSIE I.claudius_F2_3_129_3955_peptide number 9 1763.0235 0 QFDKICVIDNGRLIE I.claudius_F2_3_129_3955_peptide number 10 147.1293 0 E I.claudius_F2_3_129_3955_peptide number 11 1139.2126 0 GDYNSLITKE I.claudius_F2_3_129_3955_peptide number 12 1123.3042 0 NGFFKRLIE I.claudius_F2_3_129_3955_peptide number 13 273.3321 0 RV I.claudius_F2_4_64_5196_peptide number 1 2038.4544 0 MAPFTLSAVRPISMIGSME I.claudius_F2_4_64_5196_peptide number 2 3334.731500000002 0 MSKPINSSGKPNVDSTTIAANVAPPPTPAMPNE I.claudius_F2_4_64_5196_peptide number 3 147.1293 0 E I.claudius_F2_4_64_5196_peptide number 4 1178.5122000000001 0 MATTKIKVRM I.claudius_F2_5_205_9565_peptide number 1 3038.5857000000005 0 MNIRWNVILGVIALCALAWFYSLNQE I.claudius_F2_5_205_9565_peptide number 2 634.6334 0 TADLSE I.claudius_F2_5_205_9565_peptide number 3 1869.1425 0 LVKKPDSPDYVGYKME I.claudius_F2_5_205_9565_peptide number 4 2240.5080999999996 0 TTVFSPDGKKQYLALSDKIE I.claudius_F2_5_205_9565_peptide number 5 761.7795000000001 0 HYTVNE I.claudius_F2_5_205_9565_peptide number 6 2058.2866999999997 0 QTLFTAPLVYLYPTTSNE I.claudius_F2_5_205_9565_peptide number 7 275.3016 0 KE I.claudius_F2_5_205_9565_peptide number 8 275.3016 0 KE I.claudius_F2_5_205_9565_peptide number 9 3872.2573999999995 0 KNANQNVDFFSTQSWKLSANQARLTKDQILYLE I.claudius_F2_5_205_9565_peptide number 10 2000.1744 0 GNVVAQNLTSDSRLQRIE I.claudius_F2_5_205_9565_peptide number 11 248.23319999999998 0 TE I.claudius_F2_5_205_9565_peptide number 12 1504.6385 0 SAVVNLKTQDITSE I.claudius_F2_5_205_9565_peptide number 13 3286.8226000000004 0 TQVKIKGKNFSSTGLKLVGNLRQQVATLKE I.claudius_F2_5_205_9565_peptide number 14 930.0124000000001 0 QVKTYYE I.claudius_F2_5_205_9565_peptide number 15 460.52520000000004 0 VSKQ I.claudius_F2_6_195_10823_peptide number 1 1956.2677000000003 0 MVVGLVRQDQGKIVIDGE I.claudius_F2_6_195_10823_peptide number 2 2408.734 0 DISLLPMHNRAQRGIGYLPQE I.claudius_F2_6_195_10823_peptide number 3 1354.5532999999998 0 ASIFRRLTVYE I.claudius_F2_6_195_10823_peptide number 4 788.9522000000001 0 NLMAVLE I.claudius_F2_6_195_10823_peptide number 5 1539.7388 0 IRKDLTPQQRRE I.claudius_F2_6_195_10823_peptide number 6 461.4669 0 KADE I.claudius_F2_6_195_10823_peptide number 7 373.44450000000006 0 LIE I.claudius_F2_6_195_10823_peptide number 8 147.1293 0 E I.claudius_F2_6_195_10823_peptide number 9 1928.0668000000003 0 FNISHIRDNLGQALSGGE I.claudius_F2_6_195_10823_peptide number 10 714.8175000000001 0 RRRVE I.claudius_F2_6_195_10823_peptide number 11 5696.5595 0 IARALAANPKFILLDEPFAGVDPISVSDIKKIITDLRNRGLGVLITDHNVRE I.claudius_F2_6_195_10823_peptide number 12 678.7522000000001 0 TLDVCE I.claudius_F2_6_195_10823_peptide number 13 1716.9751 0 RAYIVGAGKIIATGTPE I.claudius_F2_6_195_10823_peptide number 14 734.7757000000001 0 QVMNDE I.claudius_F2_6_195_10823_peptide number 15 1091.2609 0 QVKRVYLGE I.claudius_F2_6_195_10823_peptide number 16 534.6483000000001 0 QFKL I.claudius_F2_7_83_17015_peptide number 1 9768.242300000007 0 MRHSYKPSRSLCQHQNQLNTRRDLFHPQLAQNVLLQNQRKPLYPLAIHNVQRLFLSYFANLDDKRSNVLVLLNARLVIPMDF I.claudius_F2_8_75_17539_peptide number 1 1089.3079 0 MLPRSIPFE I.claudius_F2_8_75_17539_peptide number 2 6842.7007 0 GQLPTPSTFTTPSGNTSPTTTTTFDVPTSKPTIVFVSTPLTIFAPSYFYLSTIPTAAPAVYLKSI I.claudius_F2_9_87_18402_peptide number 1 4771.608399999999 0 MKIIFRLLFSKTNILWRFSFQNVHYRLSSKIFTTSCSKE I.claudius_F2_9_87_18402_peptide number 2 5150.033000000001 0 IPTVAADFGNKLWLVIPGLVLTSTKRKLPFASHITSIRLQPRHPTAS I.claudius_F2_10_50_25133_peptide number 1 5043.985900000002 0 MCKYSAKFTLPVAQAIKANAPATSAVGIIANPSKPSVKFTALPVPTITK I.claudius_F2_11_71_31557_peptide number 1 8158.7307000000055 0 MRKAVMFNLKTQVLDFVCFCNSTRIAIYSYQTTIRRKLRKDKPRMPPTPKSTININAILLQCQAIHGFVK I.claudius_F2_12_97_33143_peptide number 1 3229.6901000000007 0 MKRPSLSFSVQRAINGVCVAWKPDNAPQE I.claudius_F2_12_97_33143_peptide number 2 5079.938300000002 0 IVKNKSGQIGTSPFTWKFCVNFAQVKPSPSALIVRKNSIGSVALKCE I.claudius_F2_12_97_33143_peptide number 3 2119.2885999999994 0 TTNPYTIPTDIKSNNAPKSG I.claudius_F2_13_77_34286_peptide number 1 936.108 0 MSLTRCPE I.claudius_F2_13_77_34286_peptide number 2 863.0374 0 CRKKISE I.claudius_F2_13_77_34286_peptide number 3 332.3098 0 NAE I.claudius_F2_13_77_34286_peptide number 4 1729.9307 0 NCPNCGFSFKQKDLE I.claudius_F2_13_77_34286_peptide number 5 967.1435000000001 0 MYKQRLE I.claudius_F2_13_77_34286_peptide number 6 894.9781 0 ARRLHNE I.claudius_F2_13_77_34286_peptide number 7 147.1293 0 E I.claudius_F2_13_77_34286_peptide number 8 3339.0277000000006 0 VNRKSTKLHIIWFCIFAIFIAVTSWMVN I.claudius_F2_14_279_37205_peptide number 1 994.1192 0 MTSYGLPPE I.claudius_F2_14_279_37205_peptide number 2 991.1417000000001 0 QFAKLQKE I.claudius_F2_14_279_37205_peptide number 3 414.4534000000001 0 LPGE I.claudius_F2_14_279_37205_peptide number 4 1551.6949999999997 0 VYVTRTLGTYSYE I.claudius_F2_14_279_37205_peptide number 5 5321.0065 0 LNNKKAPFDNVNIRKALNLSLDRNVITDKVLGQGQTPTYVFTPTYIE I.claudius_F2_14_279_37205_peptide number 6 147.1293 0 E I.claudius_F2_14_279_37205_peptide number 7 2197.4302000000002 0 GHLIQQPAYSKEPMAQRNE I.claudius_F2_14_279_37205_peptide number 8 147.1293 0 E I.claudius_F2_14_279_37205_peptide number 9 685.8523 0 AIKLLE I.claudius_F2_14_279_37205_peptide number 10 147.1293 0 E I.claudius_F2_14_279_37205_peptide number 11 2130.3558 0 AGYSKANPLKFSILYNTNE I.claudius_F2_14_279_37205_peptide number 12 2837.3433 0 NHKKVAIAAASMWKANTKGLIDVKLE I.claudius_F2_14_279_37205_peptide number 13 389.3611 0 NQE I.claudius_F2_14_279_37205_peptide number 14 5626.945900000002 0 WKTYIDSRRAGRYDVARAGWNADYNQATTFGNYFLSNSSNNTAKYANPE I.claudius_F2_14_279_37205_peptide number 15 826.9142000000002 0 YDKAMAE I.claudius_F2_14_279_37205_peptide number 16 826.8049000000001 0 SYAATDAE I.claudius_F2_14_279_37205_peptide number 17 1064.1958 0 GRAKAYAKAE I.claudius_F2_14_279_37205_peptide number 18 147.1293 0 E I.claudius_F2_14_279_37205_peptide number 19 5419.283400000002 0 ILGKDYGIVPIFNYVNPRLVKPYVKGYSGKDPQDHIYLRNLYIIKH I.claudius_F2_15_270_40159_peptide number 1 875.0015999999999 0 MGLLAANGE I.claudius_F2_15_270_40159_peptide number 2 246.2604 0 VE I.claudius_F2_15_270_40159_peptide number 3 622.6673000000001 0 GSAIFE I.claudius_F2_15_270_40159_peptide number 4 332.35290000000003 0 GKE I.claudius_F2_15_270_40159_peptide number 5 868.9739 0 LVNLPNAE I.claudius_F2_15_270_40159_peptide number 6 842.9830000000001 0 LNKIRAE I.claudius_F2_15_270_40159_peptide number 7 2443.8561000000004 0 QISMIFQDPMTSLNPYMKIGE I.claudius_F2_15_270_40159_peptide number 8 519.6122 0 QLME I.claudius_F2_15_270_40159_peptide number 9 1848.0635 0 VLQLHKGYDKQTAFAE I.claudius_F2_15_270_40159_peptide number 10 1347.6436999999999 0 SVKMLDAVKMPE I.claudius_F2_15_270_40159_peptide number 11 1347.6088000000002 0 AKKRMGMYPHE I.claudius_F2_15_270_40159_peptide number 12 4960.923600000001 0 FSGGMRQRVMIAMALLCRPKLLIADEPTTALDVTVQAQIMTLLNE I.claudius_F2_15_270_40159_peptide number 13 544.6449 0 LKRE I.claudius_F2_15_270_40159_peptide number 14 3501.1471000000006 0 FNTAIIMITHDLGVVAGICDQVMVMYAGRTME I.claudius_F2_15_270_40159_peptide number 15 539.5357 0 YGTAE I.claudius_F2_15_270_40159_peptide number 16 2885.2121 0 QIFYHPTHPYSIGLMDAIPRLDGNE I.claudius_F2_15_270_40159_peptide number 17 147.1293 0 E I.claudius_F2_15_270_40159_peptide number 18 3284.8098000000005 0 HLVTIPGNPPNLLHLPKGCPFSPRCQFATE I.claudius_F2_15_270_40159_peptide number 19 2759.1267999999995 0 QCQIAPKLTTFNHGQLRNCWLSAE I.claudius_F2_15_270_40159_peptide number 20 520.6217 0 KFNL I.claudius_F2_16_499_43739_peptide number 1 1157.3802999999998 0 MGVQAPLVTIE I.claudius_F2_16_499_43739_peptide number 2 1765.0179 0 VHLSNGKPGFTLVGLPE I.claudius_F2_16_499_43739_peptide number 3 603.7089000000001 0 KTVKE I.claudius_F2_16_499_43739_peptide number 4 3713.271800000001 0 AQDRVRSALMNAQFKYPAKRITVNLAPADLPKE I.claudius_F2_16_499_43739_peptide number 5 2983.3335 0 GGRFDLPIAIGILAASDQLDASHLKQFE I.claudius_F2_16_499_43739_peptide number 6 464.5122 0 FVAE I.claudius_F2_16_499_43739_peptide number 7 2727.2127000000005 0 LALTGQLRGVHGVIPAILAAQKSKRE I.claudius_F2_16_499_43739_peptide number 8 1113.2646 0 LIIAKQNANE I.claudius_F2_16_499_43739_peptide number 9 2901.1404000000007 0 ASLVSDQNTYFAQTLLDVVQFLNGQE I.claudius_F2_16_499_43739_peptide number 10 770.9138 0 KLPLATE I.claudius_F2_16_499_43739_peptide number 11 487.59030000000007 0 IVKE I.claudius_F2_16_499_43739_peptide number 12 6126.995500000002 0 SAVNFSGKNTLDLTDIIGQQHAKRALTIAAAGQHNLLFLGPPGTGKTMLASRLTGLLPE I.claudius_F2_16_499_43739_peptide number 13 607.6743 0 MTDLE I.claudius_F2_16_499_43739_peptide number 14 331.36480000000006 0 AIE I.claudius_F2_16_499_43739_peptide number 15 1148.2212000000002 0 TASVTSLVQNE I.claudius_F2_16_499_43739_peptide number 16 3736.2287000000015 0 LNFHNWKQRPFRAPHHSASMPALVGGGTIPKPGE I.claudius_F2_16_499_43739_peptide number 17 1391.5650999999998 0 ISLATNGVLFLDE I.claudius_F2_16_499_43739_peptide number 18 357.4021 0 LPE I.claudius_F2_16_499_43739_peptide number 19 294.30320000000006 0 FE I.claudius_F2_16_499_43739_peptide number 20 1437.6866 0 RKVLDALRQPLE I.claudius_F2_16_499_43739_peptide number 21 291.25790000000006 0 SGE I.claudius_F2_16_499_43739_peptide number 22 7059.017000000003 0 IIISRANAKIQFPARFQLVAAMNPSPTGHYTGTHNRTSPQQIMRYLNRLSGPFLDRFDLSIE I.claudius_F2_16_499_43739_peptide number 23 1780.9328 0 VPLLPQGSLQNTGDRGE I.claudius_F2_16_499_43739_peptide number 24 789.8344 0 TSAQVRE I.claudius_F2_16_499_43739_peptide number 25 871.0794000000001 0 KVLKVRE I.claudius_F2_16_499_43739_peptide number 26 519.6122 0 IQME I.claudius_F2_16_499_43739_peptide number 27 1463.6377 0 RAGKINAYLNSKE I.claudius_F2_16_499_43739_peptide number 28 260.2869 0 IE I.claudius_F2_16_499_43739_peptide number 29 1713.9082 0 RDCKLNDKDAFFLE I.claudius_F2_16_499_43739_peptide number 30 3250.7952999999998 0 KALNKLGLSVRAYHRILKVSRTIADLQGE I.claudius_F2_16_499_43739_peptide number 31 1210.3383999999999 0 QQIFQPHLAE I.claudius_F2_16_499_43739_peptide number 32 1964.4022 0 ALGYRAMVRLLQKLSNM I.claudius_F2_17_73_46797_peptide number 1 6510.849000000004 0 MNLAILMRYSTRGLVLRLRNGMANTLCTTTTNILKSCCIIALTAKFLFSMPQAQQLME I.claudius_F2_17_73_46797_peptide number 2 1610.8978 0 IPKYSVKNVNLKAH I.claudius_F2_18_55_48347_peptide number 1 2568.0596 0 MTFSLKPNKVAISGLITPIFCSAE I.claudius_F2_18_55_48347_peptide number 2 3313.6292000000003 0 SNFGNTSSIFNSGARYLKTSLFHSLFTTSK I.claudius_F2_19_333_50675_peptide number 1 4071.7794000000004 0 MKIKSALLTLVGALTVFSSSAHSKDLKIGLSIDDLRLE I.claudius_F2_19_333_50675_peptide number 2 1805.0023 0 RWQKDRDIFVNKAE I.claudius_F2_19_333_50675_peptide number 3 2382.5595 0 SMGAKVFVQSANGDDSAQISQIE I.claudius_F2_19_333_50675_peptide number 4 2033.3515 0 NMINKNIDVLVIIPHNGE I.claudius_F2_19_333_50675_peptide number 5 859.9639000000001 0 VLSNVISE I.claudius_F2_19_333_50675_peptide number 6 474.55180000000007 0 AKKE I.claudius_F2_19_333_50675_peptide number 7 2905.1737000000003 0 GIKVLAYDRLINNADLDFYVSFDNE I.claudius_F2_19_333_50675_peptide number 8 431.48400000000004 0 KVGE I.claudius_F2_19_333_50675_peptide number 9 1282.5288 0 LQAKSIVAVKPE I.claudius_F2_19_333_50675_peptide number 10 5394.1879 0 GNYFLMGGSPVDNNAKLFRKGQMKVLDPLIASGKIKVVGDQWVDSWLAE I.claudius_F2_19_333_50675_peptide number 11 832.0200000000001 0 KALQIME I.claudius_F2_19_333_50675_peptide number 12 7383.225600000004 0 NALTANKNNVDAVVASNDATAGGAIQALSAQGLSGKVAISGQDADLAAIKRIVNGSQTMTVYKPITKLADKAAE I.claudius_F2_19_333_50675_peptide number 13 430.4959 0 IAVE I.claudius_F2_19_333_50675_peptide number 14 559.6131 0 LGKNE I.claudius_F2_19_333_50675_peptide number 15 388.4592 0 KIE I.claudius_F2_19_333_50675_peptide number 16 403.3877 0 ANAE I.claudius_F2_19_333_50675_peptide number 17 2794.166 0 LNNGLKNVPAYLLDPIAVDKRNINE I.claudius_F2_19_333_50675_peptide number 18 1274.4223 0 TVIKDGFHTKE I.claudius_F2_19_333_50675_peptide number 19 518.5627999999999 0 SIYH I.claudius_F2_20_165_52741_peptide number 1 474.5717000000001 0 MVPE I.claudius_F2_20_165_52741_peptide number 2 3740.4214000000006 0 DRKKHGIVSIMGVGKNITLSSLKSYCFGKMVVNE I.claudius_F2_20_165_52741_peptide number 3 346.3795 0 AKE I.claudius_F2_20_165_52741_peptide number 4 147.1293 0 E I.claudius_F2_20_165_52741_peptide number 5 6587.732600000004 0 QIIGSAIKRLKVKTFSPDLPIGRLSGGNQQKAILAKCLSLNPKILILDEPTRGIDVGAKYE I.claudius_F2_20_165_52741_peptide number 6 1332.5442 0 IYKLINQLAQE I.claudius_F2_20_165_52741_peptide number 7 1001.1746 0 GIAIIVISSE I.claudius_F2_20_165_52741_peptide number 8 357.4021 0 LPE I.claudius_F2_20_165_52741_peptide number 9 3035.5607000000005 0 VLGISDRVLVMHQGKLKASLINTALTQE I.claudius_F2_20_165_52741_peptide number 10 505.5857000000001 0 QVME I.claudius_F2_20_165_52741_peptide number 11 560.6410000000001 0 TALKE I.claudius_F2_21_256_54641_peptide number 1 5348.0251 0 MNNFYNFDVIIDRLNTFSAKWNVDNDIIPMSVADMDIPAPQIMIDE I.claudius_F2_21_256_54641_peptide number 2 260.2869 0 LE I.claudius_F2_21_256_54641_peptide number 3 1460.6321 0 KFNRLGIYGYTE I.claudius_F2_21_256_54641_peptide number 4 1850.0710000000001 0 LPADYYKIISDYIFE I.claudius_F2_21_256_54641_peptide number 5 1125.1877 0 QYHYSVLSE I.claudius_F2_21_256_54641_peptide number 6 2596.1409 0 KIVFCPRIIQAVSIYIRAFTKE I.claudius_F2_21_256_54641_peptide number 7 3771.3606 0 TDGICILSPSYSPILNTIKLNDRKLYQCPLVYE I.claudius_F2_21_256_54641_peptide number 8 1584.7759000000003 0 NRKYHIDFHLLE I.claudius_F2_21_256_54641_peptide number 9 147.1293 0 E I.claudius_F2_21_256_54641_peptide number 10 2783.2097000000003 0 CFKHSKVFVLISPHNPTGTIWNKE I.claudius_F2_21_256_54641_peptide number 11 4567.1562 0 VLIKIINLAKKHNIFIISDDVHADFTLTNDSHYLISSLDE I.claudius_F2_21_256_54641_peptide number 12 2428.8264 0 WVANHSMICLSPAKTFNIPGLE I.claudius_F2_21_256_54641_peptide number 13 784.9402 0 IANLIIE I.claudius_F2_21_256_54641_peptide number 14 389.40420000000006 0 NKE I.claudius_F2_21_256_54641_peptide number 15 416.47260000000006 0 IRE I.claudius_F2_21_256_54641_peptide number 16 534.6483000000001 0 QFIK I.claudius_F2_22_328_56238_peptide number 1 4614.102000000002 0 MGVAIGLDANLAATAGAVVAGAYFGDKLSPLSDTTNIASAAAGVDLYE I.claudius_F2_22_328_56238_peptide number 2 4030.5319999999997 0 HIAHLLYTTLPSFILSATVYVVYGLNYDFSNVATPE I.claudius_F2_22_328_56238_peptide number 3 971.1322 0 KVNTMIHE I.claudius_F2_22_328_56238_peptide number 4 260.2869 0 LE I.claudius_F2_22_328_56238_peptide number 5 16405.562100000014 0 QVYHFNFLLLIPVAIVLWGSITKKPTIPVMLLSAFIAIINAILIQKFSLSDVINSAVNGFDTSMIHHTSVSSDLSRLLNRGGMNSMMGTLLICFCALSFAGVLQLSGALTVIIQKLLTFVHSTLSLIITTILCGLTMIGVTCNGQISILIPGE I.claudius_F2_22_328_56238_peptide number 6 967.1402 0 MLKNAYVE I.claudius_F2_22_328_56238_peptide number 7 1450.6423000000002 0 KGLHPKNLSRTAE I.claudius_F2_22_328_56238_peptide number 8 6140.257300000002 0 DSATIIEPILPWTAAGAYMAGTLGVATLSYLPWAILCWSGIIFAIIYGASGIGIAKLKK I.claudius_F2_23_347_58572_peptide number 1 5792.9050000000025 0 MNILIIGPSWVGDMMMSHSLYQQLKIQYPNCNIDVMAPNWCKPLLARMPE I.claudius_F2_23_347_58572_peptide number 2 714.8539000000001 0 VRKAIE I.claudius_F2_23_347_58572_peptide number 3 958.0919 0 MPLGHGAFE I.claudius_F2_23_347_58572_peptide number 4 1548.7885999999999 0 LGTRYRLGKSLRE I.claudius_F2_23_347_58572_peptide number 5 3720.3486 0 QYDMAIVLPNSLKSAFIPFFAKIVHRRGWKGE I.claudius_F2_23_347_58572_peptide number 6 3519.1025999999997 0 SRYILLNDLRANKKDYPMMVQRYVALAFE I.claudius_F2_23_347_58572_peptide number 7 2878.2762 0 KDVIPKADDIPVLKPYLTVEPAQQAE I.claudius_F2_23_347_58572_peptide number 8 764.9093 0 TLKKFE I.claudius_F2_23_347_58572_peptide number 9 858.9791000000001 0 KQTALLGE I.claudius_F2_23_347_58572_peptide number 10 1159.3579 0 RPIIGFCPGAE I.claudius_F2_23_347_58572_peptide number 11 2071.3415999999997 0 FGPAKRWPHYHYAKLAE I.claudius_F2_23_347_58572_peptide number 12 2296.5945 0 MLITQGYAVALFGSAKDEPVGE I.claudius_F2_23_347_58572_peptide number 13 147.1293 0 E I.claudius_F2_23_347_58572_peptide number 14 825.9525 0 IRQALPE I.claudius_F2_23_347_58572_peptide number 15 147.1293 0 E I.claudius_F2_23_347_58572_peptide number 16 416.47260000000006 0 LRE I.claudius_F2_23_347_58572_peptide number 17 1422.6056 0 FCVNLAGKTNLNE I.claudius_F2_23_347_58572_peptide number 18 5790.665900000003 0 AVDLIANCTAVVTNDSGLMHIAAAVNRPLIALYGPTSPQYTPPLSDKATIIRLIE I.claudius_F2_23_347_58572_peptide number 19 204.1806 0 GE I.claudius_F2_23_347_58572_peptide number 20 1185.4169 0 LIKVRKGDKE I.claudius_F2_23_347_58572_peptide number 21 1429.5303000000001 0 GGYHQSLIDITPE I.claudius_F2_23_347_58572_peptide number 22 462.56090000000006 0 MALE I.claudius_F2_23_347_58572_peptide number 23 502.56180000000006 0 KLNE I.claudius_F2_23_347_58572_peptide number 24 443.58070000000004 0 LLAK I.claudius_F2_24_58_61990_peptide number 1 1157.1634999999999 0 MTGDSTGSTATE I.claudius_F2_24_58_61990_peptide number 2 1455.7647000000002 0 VICLPKSNLIARE I.claudius_F2_24_58_61990_peptide number 3 3293.7841 0 MPVIEPPVPTPATTTSTLPSVSFQISGPVVSR I.claudius_F2_25_61_63318_peptide number 1 6831.277200000001 0 MTLRKLSQSGIKFITQSIALLIWLIKSQNKPQSKTVLSTIGIITNRRKPFCVMKCQPITK I.claudius_F2_26_329_63688_peptide number 1 3229.8786 0 MDLNTILIIVGIVALVALIVHGLWSNRRE I.claudius_F2_26_329_63688_peptide number 2 2875.1132999999995 0 KSKYFDKANKFDRTSLTSRSHTQE I.claudius_F2_26_329_63688_peptide number 3 147.1293 0 E I.claudius_F2_26_329_63688_peptide number 4 1605.7671000000003 0 MVQPNNISPNTYVE I.claudius_F2_26_329_63688_peptide number 5 1291.3666 0 NGHTPIPQPTTE I.claudius_F2_26_329_63688_peptide number 6 572.6517 0 KLPSE I.claudius_F2_26_329_63688_peptide number 7 218.2072 0 AE I.claudius_F2_26_329_63688_peptide number 8 6378.011000000003 0 LIDYRQSDKSVDDIKISIPNTQPIYDMGNHRSEPIQPTQPQYDMPTANNVASMTLE I.claudius_F2_26_329_63688_peptide number 9 388.41610000000003 0 QLE I.claudius_F2_26_329_63688_peptide number 10 1735.763 0 AQSQNVGFNGINSSSPE I.claudius_F2_26_329_63688_peptide number 11 827.9684000000001 0 LRVQLAE I.claudius_F2_26_329_63688_peptide number 12 484.50350000000003 0 LSHE I.claudius_F2_26_329_63688_peptide number 13 147.1293 0 E I.claudius_F2_26_329_63688_peptide number 14 1790.8829999999998 0 HQVDYNLSFNEPKAE I.claudius_F2_26_329_63688_peptide number 15 2476.7783999999997 0 TTAHPKQTTGYIQLYLIPKSSE I.claudius_F2_26_329_63688_peptide number 16 147.1293 0 E I.claudius_F2_26_329_63688_peptide number 17 1189.3607000000002 0 FNGAKLVQALE I.claudius_F2_26_329_63688_peptide number 18 1105.2409 0 NLGFILGKDE I.claudius_F2_26_329_63688_peptide number 19 2498.8535 0 MYHRHLDLSVASPVLFSVANLE I.claudius_F2_26_329_63688_peptide number 20 1324.3947 0 QPGTFNAYNLAE I.claudius_F2_26_329_63688_peptide number 21 3773.4758000000006 0 FNTIGIVLFMQLPSPGNNLANLRMMMRAAHTLAE I.claudius_F2_26_329_63688_peptide number 22 987.1049999999999 0 DLQGVILTE I.claudius_F2_26_329_63688_peptide number 23 147.1293 0 E I.claudius_F2_26_329_63688_peptide number 24 275.2585 0 QE I.claudius_F2_26_329_63688_peptide number 25 778.8066000000001 0 IFDANAE I.claudius_F2_26_329_63688_peptide number 26 819.9480000000001 0 QAYLARV I.claudius_F2_27_183_66250_peptide number 1 692.7821 0 MGAKSAE I.claudius_F2_27_183_66250_peptide number 2 759.8049000000001 0 NALNSLE I.claudius_F2_27_183_66250_peptide number 3 2008.3239 0 NAKSTTLARFIFALGIRE I.claudius_F2_27_183_66250_peptide number 4 303.31170000000003 0 VGE I.claudius_F2_27_183_66250_peptide number 5 2383.6549999999997 0 ATALNLANHFKTLDALKDANLE I.claudius_F2_27_183_66250_peptide number 6 147.1293 0 E I.claudius_F2_27_183_66250_peptide number 7 984.0613999999999 0 LQQVPDVGE I.claudius_F2_27_183_66250_peptide number 8 1549.8163000000002 0 VVANRIFIFWRE I.claudius_F2_27_183_66250_peptide number 9 837.9203 0 AHNVAVVE I.claudius_F2_27_183_66250_peptide number 10 1167.2706 0 DLIAQGVHWE I.claudius_F2_27_183_66250_peptide number 11 347.36430000000007 0 TVE I.claudius_F2_27_183_66250_peptide number 12 374.43270000000007 0 VKE I.claudius_F2_27_183_66250_peptide number 13 305.2845 0 ASE I.claudius_F2_27_183_66250_peptide number 14 2365.7046000000005 0 NLFKDKTVVLTGTLTQMGRNE I.claudius_F2_27_183_66250_peptide number 15 3746.2272000000003 0 AKALLQQLGAKVSGSVSSKTDFVIAGDAAGSKLAKAQE I.claudius_F2_27_183_66250_peptide number 16 902.0436000000001 0 LNITVLTE I.claudius_F2_27_183_66250_peptide number 17 147.1293 0 E I.claudius_F2_27_183_66250_peptide number 18 147.1293 0 E I.claudius_F2_27_183_66250_peptide number 19 848.0011 0 FLAQITR I.claudius_F2_28_216_74856_peptide number 1 839.9527 0 MSYTLPE I.claudius_F2_28_216_74856_peptide number 2 2070.2377000000006 0 LGYAYNALEPHFDAQTME I.claudius_F2_28_216_74856_peptide number 3 2154.3043 0 IHHSKHHQAYVNNANAALE I.claudius_F2_28_216_74856_peptide number 4 485.5313 0 GLPAE I.claudius_F2_28_216_74856_peptide number 5 359.418 0 LVE I.claudius_F2_28_216_74856_peptide number 6 1798.0676 0 MYPGHLISNLDKIPAE I.claudius_F2_28_216_74856_peptide number 7 4019.5290000000014 0 KRGALRNNAGGHTNHSLFWKSLKKGTTLQGALKDAIE I.claudius_F2_28_216_74856_peptide number 8 1341.4254 0 RDFGSVDAFKAE I.claudius_F2_28_216_74856_peptide number 9 294.30320000000006 0 FE I.claudius_F2_28_216_74856_peptide number 10 2035.3045000000002 0 KAAATRFGSGWAWLVLTAE I.claudius_F2_28_216_74856_peptide number 11 1972.2240000000004 0 GKLAVVSTANQDNPLMGKE I.claudius_F2_28_216_74856_peptide number 12 477.5325 0 VAGCE I.claudius_F2_28_216_74856_peptide number 13 1245.4222000000002 0 GFPLLGLDVWE I.claudius_F2_28_216_74856_peptide number 14 2241.5059 0 HAYYLKFQNRRPDYIKE I.claudius_F2_28_216_74856_peptide number 15 1525.6607000000004 0 FWNVVNWDFVAE I.claudius_F2_28_216_74856_peptide number 16 450.48890000000006 0 RFE I.claudius_F2_28_216_74856_peptide number 17 1087.2109 0 QKTAHSNCAK I.claudius_F2_29_182_76182_peptide number 1 2908.3069000000005 0 MGMLFQSGALFTDISTFDNVAFPIRE I.claudius_F2_29_182_76182_peptide number 2 732.7846000000001 0 HTHLPE I.claudius_F2_29_182_76182_peptide number 3 1469.8343000000002 0 NLIRQIVLMKLE I.claudius_F2_29_182_76182_peptide number 4 1342.5641 0 AVGLRGAAALMPSE I.claudius_F2_29_182_76182_peptide number 5 5185.052200000001 0 LSGGMARRAALARAIALDPDLIMFDEPFTGQDPISMGVILSLIKRLNE I.claudius_F2_29_182_76182_peptide number 6 1496.6611000000003 0 ALNLTSIVVSHDVE I.claudius_F2_29_182_76182_peptide number 7 147.1293 0 E I.claudius_F2_29_182_76182_peptide number 8 2095.3913000000002 0 VLSIADYAYIIADQKVIAE I.claudius_F2_29_182_76182_peptide number 9 392.3618 0 GTSE I.claudius_F2_29_182_76182_peptide number 10 2001.2866000000001 0 QLLQSQDLRVVQFLKGE I.claudius_F2_29_182_76182_peptide number 11 1999.1832000000002 0 SDGPVRFKYPAQDYVKE I.claudius_F2_29_182_76182_peptide number 12 407.46080000000006 0 LFE I.claudius_F2_30_74_77288_peptide number 1 4637.2693 0 MQNSVSWSYDILNGFIKAVFFAVAVTWIALFNGYDCMPTSE I.claudius_F2_30_74_77288_peptide number 2 3259.8154000000013 0 GISQATTRTVVHASLVVLGLDFILTAIMFGAG I.claudius_F2_31_52_77868_peptide number 1 2876.1543000000006 0 MGFDDGDTAMLKNGSQIQDTTSAMVLE I.claudius_F2_31_52_77868_peptide number 2 1871.0089999999998 0 DLIGQFLYGSKKSDGNE I.claudius_F2_31_52_77868_peptide number 3 362.37890000000004 0 KSE I.claudius_F2_31_52_77868_peptide number 4 335.31050000000005 0 STE I.claudius_F2_31_52_77868_peptide number 5 146.1445 0 Q I.claudius_F2_32_86_79046_peptide number 1 278.32540000000006 0 ME I.claudius_F2_32_86_79046_peptide number 2 629.7460000000001 0 LQKIE I.claudius_F2_32_86_79046_peptide number 3 1257.433 0 QILKDTLNIAE I.claudius_F2_32_86_79046_peptide number 4 665.6921 0 VYAQGE I.claudius_F2_32_86_79046_peptide number 5 1286.3899000000001 0 NAHFGVIVVSDE I.claudius_F2_32_86_79046_peptide number 6 2813.2308 0 IAALSRVKQQQTIYAPLMPYFSTGE I.claudius_F2_32_86_79046_peptide number 7 1388.6077000000002 0 IHALTIKTYTVE I.claudius_F2_32_86_79046_peptide number 8 1575.7723999999998 0 KWKRDRALNQFN I.claudius_F2_33_254_79827_peptide number 1 1436.7368000000001 0 MMAATLAKGTTVIE I.claudius_F2_33_254_79827_peptide number 2 785.8026 0 NAAREPE I.claudius_F2_33_254_79827_peptide number 3 2674.0342 0 IVDTADFLNKMGAKITGAGSAHITIE I.claudius_F2_33_254_79827_peptide number 4 303.31170000000003 0 GVE I.claudius_F2_33_254_79827_peptide number 5 677.7707 0 RLTGCE I.claudius_F2_33_254_79827_peptide number 6 1051.154 0 HSVVPDRIE I.claudius_F2_33_254_79827_peptide number 7 3494.9885 0 TGTFLIAAAISGGCVVCQNTKADTLDAVIDKLRE I.claudius_F2_33_254_79827_peptide number 8 888.9191 0 AGAQVDVTE I.claudius_F2_33_254_79827_peptide number 9 4511.1677 0 NSITLDMLGNRPKAVNIRTAPHPGFPTDMQAQFTLLNMVAE I.claudius_F2_33_254_79827_peptide number 10 719.7809 0 GTSIITE I.claudius_F2_33_254_79827_peptide number 11 508.5647 0 TIFE I.claudius_F2_33_254_79827_peptide number 12 1043.1997000000001 0 NRFMHIPE I.claudius_F2_33_254_79827_peptide number 13 974.1791000000001 0 LIRMGGKAE I.claudius_F2_33_254_79827_peptide number 14 260.2869 0 IE I.claudius_F2_33_254_79827_peptide number 15 986.0607 0 GNTAVCHGVE I.claudius_F2_33_254_79827_peptide number 16 633.6486 0 QLSGTE I.claudius_F2_33_254_79827_peptide number 17 2173.5297 0 VIATDLRASISLVLAGCIATGE I.claudius_F2_33_254_79827_peptide number 18 1749.9205000000002 0 TIVDRIYHIDRGYE I.claudius_F2_33_254_79827_peptide number 19 397.4262 0 HIE I.claudius_F2_33_254_79827_peptide number 20 1199.4003 0 DKLRGLGAKIE I.claudius_F2_33_254_79827_peptide number 21 796.7822000000001 0 RFSGSDE I.claudius_F2_33_254_79827_peptide number 22 89.0932 0 A I.claudius_F2_34_226_81685_peptide number 1 436.4806 0 MSAE I.claudius_F2_34_226_81685_peptide number 2 374.39290000000005 0 RAE I.claudius_F2_34_226_81685_peptide number 3 1371.5985999999998 0 YVISSFWPMLE I.claudius_F2_34_226_81685_peptide number 4 7585.342200000004 0 AAILYTLPLAVISFFCGLLIAVIVAVIRTLPSPNLPLKLLQALCRVYISIIRGTPMLVQIFIIFYGLPE I.claudius_F2_34_226_81685_peptide number 5 2578.9513 0 VGITLEPFPTAIIAFSINIGAYAAE I.claudius_F2_34_226_81685_peptide number 6 1668.9338000000002 0 TVRASIIAIPKGQWE I.claudius_F2_34_226_81685_peptide number 7 5476.3285 0 ASYAIGMNYRQAFIRTIMPQALRISVPSLSNTFISTVKDTSLASLVLVTE I.claudius_F2_34_226_81685_peptide number 8 1609.7805 0 LFRVAQNITAANYE I.claudius_F2_34_226_81685_peptide number 9 884.0266000000001 0 FILIYSE I.claudius_F2_34_226_81685_peptide number 10 2447.8892 0 AALIYWIFCFVLSFLQDRLE I.claudius_F2_34_226_81685_peptide number 11 894.0761 0 IRLSRHL I.claudius_F2_35_91_83577_peptide number 1 3504.9616 0 MNTVLYVYLPSQFIGYFMWKANMQNSDGGE I.claudius_F2_35_91_83577_peptide number 2 6069.262800000004 0 SVIAKALTVKGWMTLIVVTTVGTLLFVQALQAAGGSSTGLDGLTTIITVAAQILMILPLS I.claudius_F2_36_60_85808_peptide number 1 4268.834699999999 0 MIIANHPTDKINQKCGQKSKIISYQRRDGSLPDLRNE I.claudius_F2_36_60_85808_peptide number 2 2464.8783 0 LNASFGLILFILGKDPQSHYKC I.claudius_F2_37_487_86536_peptide number 1 278.32540000000006 0 ME I.claudius_F2_37_487_86536_peptide number 2 981.1006 0 TIYVATGKE I.claudius_F2_37_487_86536_peptide number 3 3180.7783000000004 0 VYKDMTKFWGKLFGINFALGVTTGIIME I.claudius_F2_37_487_86536_peptide number 4 2883.1266000000005 0 FQFGTNWSYYSHYVGDIFGAPLAIE I.claudius_F2_37_487_86536_peptide number 5 923.1057000000001 0 ALLAFFLE I.claudius_F2_37_487_86536_peptide number 6 5614.4355000000005 0 STFVGLFFFGWDRLSKGKHLLATYCVAFGSNLSAMWILVANGWMQAPTGSE I.claudius_F2_37_487_86536_peptide number 7 555.5797 0 FNFE I.claudius_F2_37_487_86536_peptide number 8 634.7461000000001 0 TVRME I.claudius_F2_37_487_86536_peptide number 9 5330.117399999999 0 MTNFLDLWLNPVAQSKFLHTLSAGYVTGAFFVLAISSYFLLKGRDFE I.claudius_F2_37_487_86536_peptide number 10 2747.1478 0 FAKRSFSVAATFGFIASISVLILGDE I.claudius_F2_37_487_86536_peptide number 11 1778.0349999999999 0 SGYDIGKAQPVKLAAME I.claudius_F2_37_487_86536_peptide number 12 218.2072 0 AE I.claudius_F2_37_487_86536_peptide number 13 294.30320000000006 0 FE I.claudius_F2_37_487_86536_peptide number 14 1843.0868 0 THPAPAPFLPVAIPNTAE I.claudius_F2_37_487_86536_peptide number 15 967.0971000000001 0 MKNDFAIE I.claudius_F2_37_487_86536_peptide number 16 1731.9863999999995 0 IPYLGGVIATRSIDKE I.claudius_F2_37_487_86536_peptide number 17 1326.538 0 IIGLKDLQALNE I.claudius_F2_37_487_86536_peptide number 18 1307.4588 0 TRVRSGIRAYE I.claudius_F2_37_487_86536_peptide number 19 977.1151000000001 0 LFTQLRAE I.claudius_F2_37_487_86536_peptide number 20 987.0686000000001 0 KKANGQVNE I.claudius_F2_37_487_86536_peptide number 21 147.1293 0 E I.claudius_F2_37_487_86536_peptide number 22 836.8891000000001 0 TKAQFNE I.claudius_F2_37_487_86536_peptide number 23 2593.9711 0 VKKDLGFGLLLKRYTNNVVDATE I.claudius_F2_37_487_86536_peptide number 24 147.1293 0 E I.claudius_F2_37_487_86536_peptide number 25 7509.945800000004 0 QIKQAARDTIPNVGPNFWAFRAMIAAGGLIALLTFGAFVQNLRNKVTQIPLLLKVLLWGLPLPWIAIE I.claudius_F2_37_487_86536_peptide number 26 824.9428 0 CGWFLAE I.claudius_F2_37_487_86536_peptide number 27 1270.349 0 YGRQPWATYE I.claudius_F2_37_487_86536_peptide number 28 3596.236 0 ILPVGVSASNLSTGDLWFSIGLICALYLAFIIVE I.claudius_F2_37_487_86536_peptide number 29 2778.2927000000004 0 MYLMFKYARLGPSALKTGKYYFE I.claudius_F2_37_487_86536_peptide number 30 432.47200000000004 0 QSAK I.claudius_F2_38_115_89520_peptide number 1 1643.9011 0 MQQTFLSSHIPLLE I.claudius_F2_38_115_89520_peptide number 2 6235.572199999998 0 KYGVKIGIIILTIGVLSPLVSGKIQLPDLSGFLSWKMALSISVGVLVAWLAGKGVPLMGE I.claudius_F2_38_115_89520_peptide number 3 3876.838600000002 0 QPILVTGLLIGTIIGVAFLGGIPVGPLIAAGILALLLGKI I.claudius_F2_39_1305_90236_peptide number 1 5248.0518 0 MKNSSVKHTLTPLQQSLFSQLNDIMLVDQRRLSARIHGIGKIKSQE I.claudius_F2_39_1305_90236_peptide number 2 786.8304 0 AQQAVAAE I.claudius_F2_39_1305_90236_peptide number 3 757.8321000000001 0 IQQQIE I.claudius_F2_39_1305_90236_peptide number 4 870.9965 0 QARLRVE I.claudius_F2_39_1305_90236_peptide number 5 1612.8276 0 QRKSAVQNPIVFPE I.claudius_F2_39_1305_90236_peptide number 6 1142.3061 0 SLPVSQRKVE I.claudius_F2_39_1305_90236_peptide number 7 829.9809000000001 0 IQKLISE I.claudius_F2_39_1305_90236_peptide number 8 951.0779000000001 0 HQVIVVAGE I.claudius_F2_39_1305_90236_peptide number 9 1593.8641 0 TGSGKTTQLPKMCLE I.claudius_F2_39_1305_90236_peptide number 10 2963.4234 0 LGFGNLGMIGHTQPRRIAARSVAARIAE I.claudius_F2_39_1305_90236_peptide number 11 147.1293 0 E I.claudius_F2_39_1305_90236_peptide number 12 260.2869 0 LE I.claudius_F2_39_1305_90236_peptide number 13 248.23319999999998 0 TE I.claudius_F2_39_1305_90236_peptide number 14 3523.0199 0 LGGLVGYKVRFNDQISDNTQIKLMTDGILLAE I.claudius_F2_39_1305_90236_peptide number 15 2084.3088000000002 0 IQNDRFLNQYSCLIIDE I.claudius_F2_39_1305_90236_peptide number 16 355.3465 0 AHE I.claudius_F2_39_1305_90236_peptide number 17 4141.8177 0 RSLNNDFILGYLKQLLPRRRRDLKLIITSATIDVE I.claudius_F2_39_1305_90236_peptide number 18 1572.7651999999998 0 RFSKHFNNAPIIE I.claudius_F2_39_1305_90236_peptide number 19 1007.0981999999999 0 VSGRTYPVE I.claudius_F2_39_1305_90236_peptide number 20 1017.1825000000001 0 VRYRPVVE I.claudius_F2_39_1305_90236_peptide number 21 147.1293 0 E I.claudius_F2_39_1305_90236_peptide number 22 1672.7021999999997 0 DDQDQLQGILNAVDE I.claudius_F2_39_1305_90236_peptide number 23 459.494 0 LQAE I.claudius_F2_39_1305_90236_peptide number 24 1321.5017000000003 0 GRGDILIFMNGE I.claudius_F2_39_1305_90236_peptide number 25 303.31500000000005 0 RE I.claudius_F2_39_1305_90236_peptide number 26 703.7418 0 IRDTAE I.claudius_F2_39_1305_90236_peptide number 27 1309.4712000000002 0 ALQKQNLKHTE I.claudius_F2_39_1305_90236_peptide number 28 1357.5968 0 ILPLFARLSAQE I.claudius_F2_39_1305_90236_peptide number 29 2321.6335999999997 0 QNKIFHPSGLNRIVLATNVAE I.claudius_F2_39_1305_90236_peptide number 30 5935.733200000001 0 TSLTVPSIKYVIDPGTARISRYSYRTKVQRLPIEPISQASANQRKGRCGRVSE I.claudius_F2_39_1305_90236_peptide number 31 1053.2326 0 GICIRLYSE I.claudius_F2_39_1305_90236_peptide number 32 147.1293 0 E I.claudius_F2_39_1305_90236_peptide number 33 863.8714 0 DFNSRPE I.claudius_F2_39_1305_90236_peptide number 34 607.6097000000001 0 FTDPE I.claudius_F2_39_1305_90236_peptide number 35 2399.8018 0 ILRTNLASVILQMTALGLDDIE I.claudius_F2_39_1305_90236_peptide number 36 1107.1692 0 AFPFVDAPDE I.claudius_F2_39_1305_90236_peptide number 37 1307.4984 0 RHIQDGVKLLE I.claudius_F2_39_1305_90236_peptide number 38 147.1293 0 E I.claudius_F2_39_1305_90236_peptide number 39 535.59 0 LGAFE I.claudius_F2_39_1305_90236_peptide number 40 848.8983000000001 0 TVQTKSGE I.claudius_F2_39_1305_90236_peptide number 41 3956.726800000001 0 KRLLTRVGRQLAQLPVDPRLAKMILSAVNFGCVYE I.claudius_F2_39_1305_90236_peptide number 42 1703.0330000000001 0 MMIIVSALSIQDPRE I.claudius_F2_39_1305_90236_peptide number 43 528.5594000000001 0 RPQE I.claudius_F2_39_1305_90236_peptide number 44 804.8026000000001 0 KQQASDE I.claudius_F2_39_1305_90236_peptide number 45 3082.5175999999997 0 KHRRFADKKSDFLAFLNLWRYLQE I.claudius_F2_39_1305_90236_peptide number 46 531.5600000000001 0 QQKE I.claudius_F2_39_1305_90236_peptide number 47 2830.1883000000003 0 SSKNQFRRQCQKDFLNYLRIRE I.claudius_F2_39_1305_90236_peptide number 48 1857.0768000000003 0 WQDIYHQIRLTVRE I.claudius_F2_39_1305_90236_peptide number 49 890.013 0 MSLPINSE I.claudius_F2_39_1305_90236_peptide number 50 346.3795 0 KAE I.claudius_F2_39_1305_90236_peptide number 51 2221.5541 0 YQQIHTALLSGLLSHIGLKE I.claudius_F2_39_1305_90236_peptide number 52 218.2072 0 AE I.claudius_F2_39_1305_90236_peptide number 53 3719.320800000001 0 KQQYLGARNAHFAIFPNSVLFKKQPKWVMAAE I.claudius_F2_39_1305_90236_peptide number 54 359.418 0 LVE I.claudius_F2_39_1305_90236_peptide number 55 1277.4924 0 TSKLWGRMVAE I.claudius_F2_39_1305_90236_peptide number 56 486.51610000000005 0 IEPE I.claudius_F2_39_1305_90236_peptide number 57 856.9615 0 WIEPLAE I.claudius_F2_39_1305_90236_peptide number 58 2584.9659 0 HLIKKSYSVPLWSKSRGAVIADE I.claudius_F2_39_1305_90236_peptide number 59 2914.3581 0 KVTLYGVPIVAVRPVNYGAIDPTVSRE I.claudius_F2_39_1305_90236_peptide number 60 1019.1915000000001 0 IFIQSALVE I.claudius_F2_39_1305_90236_peptide number 61 1478.6523 0 GGWNTKHKFFKE I.claudius_F2_39_1305_90236_peptide number 62 914.0212000000001 0 NQRLVRE I.claudius_F2_39_1305_90236_peptide number 63 246.2604 0 VE I.claudius_F2_39_1305_90236_peptide number 64 147.1293 0 E I.claudius_F2_39_1305_90236_peptide number 65 260.2869 0 LE I.claudius_F2_39_1305_90236_peptide number 66 2156.4048999999995 0 HKSRRRDILVDDRTLFE I.claudius_F2_39_1305_90236_peptide number 67 1128.1915999999999 0 FYDQRIGTE I.claudius_F2_39_1305_90236_peptide number 68 2485.7504000000004 0 VVSQKHFDTWWKKAQQKDPE I.claudius_F2_39_1305_90236_peptide number 69 634.721 0 LLNFE I.claudius_F2_39_1305_90236_peptide number 70 1160.1903 0 HSFLINDDAE I.claudius_F2_39_1305_90236_peptide number 71 5248.897300000003 0 QVSKLDFPNFWHQGNLKLKLTYQFEPGTDADGVTVHIPLPLLNQVE I.claudius_F2_39_1305_90236_peptide number 72 1549.7484000000002 0 MTGFDWQIPGLRE I.claudius_F2_39_1305_90236_peptide number 73 147.1293 0 E I.claudius_F2_39_1305_90236_peptide number 74 3943.6384999999996 0 LVIALIKSLPKSYRRNFVPAPNYAQAFLSRAVPLE I.claudius_F2_39_1305_90236_peptide number 75 1204.4118 0 KPLLDTLIYE I.claudius_F2_39_1305_90236_peptide number 76 1161.3756999999998 0 LRRMTGVTVE I.claudius_F2_39_1305_90236_peptide number 77 218.2072 0 AE I.claudius_F2_39_1305_90236_peptide number 78 770.791 0 HWNWE I.claudius_F2_39_1305_90236_peptide number 79 1800.087 0 QIPSHLKMTFRVVDE I.claudius_F2_39_1305_90236_peptide number 80 758.8633 0 NGKKIAE I.claudius_F2_39_1305_90236_peptide number 81 707.7503 0 SMNLDE I.claudius_F2_39_1305_90236_peptide number 82 1389.5990000000002 0 LKFNLKDRVQE I.claudius_F2_39_1305_90236_peptide number 83 1076.1120999999998 0 SISAVADDGIE I.claudius_F2_39_1305_90236_peptide number 84 1994.1862000000003 0 QSGLHIWSFADLPQCYE I.claudius_F2_39_1305_90236_peptide number 85 1920.1725999999999 0 QKQRGFSVKAFPAIVDE I.claudius_F2_39_1305_90236_peptide number 86 1119.3107 0 KDAVGIKLFE I.claudius_F2_39_1305_90236_peptide number 87 248.23319999999998 0 TE I.claudius_F2_39_1305_90236_peptide number 88 294.30320000000006 0 FE I.claudius_F2_39_1305_90236_peptide number 89 3004.5515 0 QSVAMQQGLRRLLLLNVPSPIKYLHE I.claudius_F2_39_1305_90236_peptide number 90 4888.6586 0 KLPNKAKLGLYFTPFGRVLDLIDDCIACAVDKLIADFGGFVWDE I.claudius_F2_39_1305_90236_peptide number 91 422.43240000000003 0 AGFE I.claudius_F2_39_1305_90236_peptide number 92 1062.2230000000002 0 KLRDFVRE I.claudius_F2_39_1305_90236_peptide number 93 488.49210000000005 0 NLNE I.claudius_F2_39_1305_90236_peptide number 94 1101.2509000000002 0 VTVDIAQKVE I.claudius_F2_39_1305_90236_peptide number 95 9379.762200000005 0 QILTLTYQLNQRLKGKMDFTMAFALSDIKSQLAGLVYQGFVQKSGYDRLPDLQRYLQAVDKRIDKLAQDVNRDRAAMLRVE I.claudius_F2_39_1305_90236_peptide number 96 2512.8551999999995 0 QVQQAYQQLLAKLPKSKPISDE I.claudius_F2_39_1305_90236_peptide number 97 317.3383 0 VAE I.claudius_F2_39_1305_90236_peptide number 98 823.9996000000001 0 IRYMIE I.claudius_F2_39_1305_90236_peptide number 99 147.1293 0 E I.claudius_F2_39_1305_90236_peptide number 100 3240.7092000000002 0 LRVSLFAQQLGTKYQISDKRIGNIISQY I.claudius_F2_40_431_99462_peptide number 1 7328.598700000003 0 MFTEPSVALILLATITILLLSSSKKSFYFILLPLTLLHAFYTPTGLNFGPPSYQYIASLFATDILE I.claudius_F2_40_431_99462_peptide number 2 376.4055000000001 0 TKE I.claudius_F2_40_431_99462_peptide number 3 6900.299200000004 0 FLLQIPVSSYLIAFAIPILIFLQYKSAVKFGIKFYRNKTFIALATLLFAYNMPLAEPLKE I.claudius_F2_40_431_99462_peptide number 4 1191.3288000000002 0 TVSSTLKIVDE I.claudius_F2_40_431_99462_peptide number 5 2189.4247 0 VQKLKQISQSDNWGKSTLE I.claudius_F2_40_431_99462_peptide number 6 1542.6450000000002 0 NSRYDDYVIVLGE I.claudius_F2_40_431_99462_peptide number 7 1806.9304 0 SARKDYHHAYGYPIE I.claudius_F2_40_431_99462_peptide number 8 4002.5303000000013 0 NTPFMSNAKGTLIDGFRSAGTNTVASLRLMLTFPDKE I.claudius_F2_40_431_99462_peptide number 9 5114.7372000000005 0 KWEPNYSLSLVDLIKSAGIKTYWLSNHGMIGKFDTPVSSLASKSDE I.claudius_F2_40_431_99462_peptide number 10 3298.6957 0 TFFLKKGGSFNSTNFSDFDLLPKFAQVLE I.claudius_F2_40_431_99462_peptide number 11 2871.2998999999995 0 NSVQGKRFIVLHIYGSHPMACDRIE I.claudius_F2_40_431_99462_peptide number 12 3600.9581000000003 0 DYPKIFDDKDLNPRYGYLNCYVSSIKKTDE I.claudius_F2_40_431_99462_peptide number 13 1310.4974000000002 0 FLKRVYDQLE I.claudius_F2_40_431_99462_peptide number 14 147.1293 0 E I.claudius_F2_40_431_99462_peptide number 15 3035.332099999999 0 NVKKNHRTFSMIYFSDHGLCHQQDE I.claudius_F2_40_431_99462_peptide number 16 1589.8506000000002 0 KTIYFCSIKTVSAE I.claudius_F2_40_431_99462_peptide number 17 3211.7623000000003 0 STIIFRYSKFHQMIWNAKNIRCLNQV I.claudius_F2_41_52_102106_peptide number 1 2352.8199999999997 0 MHVIRNIYKMLYRSGKTLE I.claudius_F2_41_52_102106_peptide number 2 147.1293 0 E I.claudius_F2_41_52_102106_peptide number 3 456.5332000000001 0 VLPE I.claudius_F2_41_52_102106_peptide number 4 260.2869 0 IE I.claudius_F2_41_52_102106_peptide number 5 459.494 0 QIAE I.claudius_F2_41_52_102106_peptide number 6 1115.1896000000002 0 TDSAISFFVE I.claudius_F2_41_52_102106_peptide number 7 1380.6401999999998 0 FFKRSTRGIIR I.claudius_F2_42_110_103171_peptide number 1 4518.4767 0 MLCKSPMVVGYRMKPLTYFLAKRLVKTDYISLPNLLANE I.claudius_F2_42_110_103171_peptide number 2 587.7293000000001 0 MLVPE I.claudius_F2_42_110_103171_peptide number 3 519.6122 0 MIQE I.claudius_F2_42_110_103171_peptide number 4 147.1293 0 E I.claudius_F2_42_110_103171_peptide number 5 448.4913 0 CTPE I.claudius_F2_42_110_103171_peptide number 6 444.52240000000006 0 LLAE I.claudius_F2_42_110_103171_peptide number 7 1168.2506 0 KLSVYLSDDE I.claudius_F2_42_110_103171_peptide number 8 4196.747200000001 0 SAVKNRHVLIQHFTDLHQKIQCNADKQAAQAVIDLLE I.claudius_F2_42_110_103171_peptide number 9 332.35290000000003 0 GKE I.claudius_F2_42_110_103171_peptide number 10 231.249 0 NV I.claudius_F2_43_52_103931_peptide number 1 278.32540000000006 0 ME I.claudius_F2_43_52_103931_peptide number 2 147.1293 0 E I.claudius_F2_43_52_103931_peptide number 3 891.9643000000001 0 LDKQYPE I.claudius_F2_43_52_103931_peptide number 4 1903.1436 0 YAFAQHKGYPTKLHLE I.claudius_F2_43_52_103931_peptide number 5 459.5371 0 KLAE I.claudius_F2_43_52_103931_peptide number 6 2118.4842999999996 0 LGALPQHRRSFAPVKKALE I.claudius_F2_43_52_103931_peptide number 7 293.3184 0 QF I.claudius_F2_44_630_104660_peptide number 1 7688.5999999999985 0 MAGKAPKKAKKFILNAIIVSQSVSQSVSQSVSQSVSQSVSQSVSQSVSQSVSQSVSQSVSQLYTKLTRKRQE I.claudius_F2_44_630_104660_peptide number 2 1344.4672 0 IFFNQTLAFDE I.claudius_F2_44_630_104660_peptide number 3 2921.223 0 IDRLFDAKAFSKFSRYTADGKQAVGE I.claudius_F2_44_630_104660_peptide number 4 1210.2972 0 IKRHSDGTPAE I.claudius_F2_44_630_104660_peptide number 5 6883.885700000002 0 NLIIKGNNLIALHSLAKQFKGKVKLIYIDPPYNTGNDGFKYNDKFNHSTWLTFMKNRLE I.claudius_F2_44_630_104660_peptide number 6 2178.4584 0 IAKTLLADDGVIFVQCDDIE I.claudius_F2_44_630_104660_peptide number 7 3888.401100000001 0 QAYLKILMDDIFDRDNFLNIVTVKTKIGGVSGSSE I.claudius_F2_44_630_104660_peptide number 8 964.0287000000001 0 GKSLKDSTE I.claudius_F2_44_630_104660_peptide number 9 1253.4063 0 FINVFSKNRE I.claudius_F2_44_630_104660_peptide number 10 1507.7317 0 RLFLNPVYQKTE I.claudius_F2_44_630_104660_peptide number 11 360.36300000000006 0 VNE I.claudius_F2_44_630_104660_peptide number 12 812.9090000000001 0 FIKNYE I.claudius_F2_44_630_104660_peptide number 13 1939.1261000000004 0 DSGKSWKYTQVLIDLGE I.claudius_F2_44_630_104660_peptide number 14 614.7744 0 KILLE I.claudius_F2_44_630_104660_peptide number 15 147.1293 0 E I.claudius_F2_44_630_104660_peptide number 16 3467.8157000000006 0 KDGFKYYHYPNAQMTSIVKFSQDQNLSKE I.claudius_F2_44_630_104660_peptide number 17 637.7217 0 IIYTE I.claudius_F2_44_630_104660_peptide number 18 2481.7618 0 YSHKVYRTTNAQSSIRSKIIE I.claudius_F2_44_630_104660_peptide number 19 1450.6322999999998 0 DLYSIKNGIVSIE I.claudius_F2_44_630_104660_peptide number 20 1544.7501000000002 0 YIPQKGKNAGNLIE I.claudius_F2_44_630_104660_peptide number 21 2543.9736000000003 0 VFYNASNKDMFMFLSDMLIKE I.claudius_F2_44_630_104660_peptide number 22 3192.5338000000006 0 KNKYFYLQKVNTLWDDIQYNNLNKE I.claudius_F2_44_630_104660_peptide number 23 1452.6100999999999 0 GGYIDFKNGKKPE I.claudius_F2_44_630_104660_peptide number 24 1559.8726000000001 0 ALLRRIIDMTTKE I.claudius_F2_44_630_104660_peptide number 25 3130.4894000000004 0 GDIVLDYHLGSGTTAAVAHKMNRQYIGIE I.claudius_F2_44_630_104660_peptide number 26 797.8729000000001 0 QMDYIE I.claudius_F2_44_630_104660_peptide number 27 531.5998000000001 0 TLAVE I.claudius_F2_44_630_104660_peptide number 28 1057.2446 0 RLKKVIDGE I.claudius_F2_44_630_104660_peptide number 29 1487.5729000000003 0 QGGISKAVNWQGGGE I.claudius_F2_44_630_104660_peptide number 30 627.6855 0 FVYAE I.claudius_F2_44_630_104660_peptide number 31 689.7565000000001 0 LAPFNE I.claudius_F2_44_630_104660_peptide number 32 1104.2778 0 TAKQQILACE I.claudius_F2_44_630_104660_peptide number 33 1182.2341000000001 0 DSDDIKTLFE I.claudius_F2_44_630_104660_peptide number 34 478.5172 0 DLCE I.claudius_F2_44_630_104660_peptide number 35 1545.7798000000003 0 RYFLKYNVSVKE I.claudius_F2_44_630_104660_peptide number 36 735.8249000000001 0 FSQIIE I.claudius_F2_44_630_104660_peptide number 37 373.35850000000005 0 EPE I.claudius_F2_44_630_104660_peptide number 38 948.0275 0 FQSLPLDE I.claudius_F2_44_630_104660_peptide number 39 875.0448000000001 0 QKQMVLE I.claudius_F2_44_630_104660_peptide number 40 1542.7724999999998 0 MLDLNQMYVSLSE I.claudius_F2_44_630_104660_peptide number 41 508.50020000000006 0 MDDE I.claudius_F2_44_630_104660_peptide number 42 2362.5299 0 QFAGCLNDDDKALSRAFYQAE I.claudius_F2_44_630_104660_peptide number 43 575.6126 0 KKDGE I.claudius_F2_45_281_108484_peptide number 1 365.4027 0 MSE I.claudius_F2_45_281_108484_peptide number 2 260.2869 0 IE I.claudius_F2_45_281_108484_peptide number 3 4232.767499999999 0 RHIFNKALHIKGKNSQSLFHFDRLQSKLNIQNRNE I.claudius_F2_45_281_108484_peptide number 4 1513.6929 0 LQNNLLKDWQIE I.claudius_F2_45_281_108484_peptide number 5 2602.0111 0 FLGLGQDKQISPDDKLAGCLKILE I.claudius_F2_45_281_108484_peptide number 6 377.4565 0 MVE I.claudius_F2_45_281_108484_peptide number 7 639.7011 0 KHLNE I.claudius_F2_45_281_108484_peptide number 8 1106.2258 0 SDIPFIGTKE I.claudius_F2_45_281_108484_peptide number 9 1048.2344 0 FTPKKLWE I.claudius_F2_45_281_108484_peptide number 10 4246.751499999999 0 IFGTPKQKWVKKDDVKTAIATQNDWYVMDNFAGTSLE I.claudius_F2_45_281_108484_peptide number 11 147.1293 0 E I.claudius_F2_45_281_108484_peptide number 12 920.0604000000001 0 ALIQFISE I.claudius_F2_45_281_108484_peptide number 13 2056.3254 0 RLGDLKSKYDVHLIRNE I.claudius_F2_45_281_108484_peptide number 14 147.1293 0 E I.claudius_F2_45_281_108484_peptide number 15 1253.3599 0 VFKLNNFADGE I.claudius_F2_45_281_108484_peptide number 16 4156.713099999999 0 GFMPDFILLLKDKQKSSSNGVNDFLHYQIFIEPKGE I.claudius_F2_45_281_108484_peptide number 17 496.55730000000005 0 HLVE I.claudius_F2_45_281_108484_peptide number 18 937.0712000000001 0 TDMWKKE I.claudius_F2_45_281_108484_peptide number 19 407.46080000000006 0 FLE I.claudius_F2_45_281_108484_peptide number 20 503.5466 0 AITAE I.claudius_F2_45_281_108484_peptide number 21 3109.4884 0 YGKDKILQKDTPHYRLIGLPFFTDNE I.claudius_F2_45_281_108484_peptide number 22 614.6917000000001 0 KNPKE I.claudius_F2_45_281_108484_peptide number 23 310.30260000000004 0 YE I.claudius_F2_45_281_108484_peptide number 24 1153.2839 0 QFTKSFPLGE I.claudius_F2_45_281_108484_peptide number 25 418.4421 0 ASLE I.claudius_F2_45_281_108484_peptide number 26 146.1876 0 K I.claudius_F2_46_190_110206_peptide number 1 2329.6259000000005 0 MFCGNFYYQQDALLTASMPE I.claudius_F2_46_190_110206_peptide number 2 2506.915 0 YLHINLCDTPIHPLVQLFLQE I.claudius_F2_46_190_110206_peptide number 3 3749.2754999999997 0 AQKNDAGTKSVVDALSNVLLIYILRHAIQQNLIE I.claudius_F2_46_190_110206_peptide number 4 3487.958899999999 0 QGILFALQDKRLNTALIAILQQPQNDWHIE I.claudius_F2_46_190_110206_peptide number 5 459.494 0 QLAE I.claudius_F2_46_190_110206_peptide number 6 5617.596900000003 0 LATMSRANFIRIFQQHIGMSPGRFLTKVRLQSAAFLLKQSQQSVLAIALE I.claudius_F2_46_190_110206_peptide number 7 681.6915000000001 0 VGYQSE I.claudius_F2_46_190_110206_peptide number 8 2894.3085 0 AHFCKVFKNYYQLSPSQYRKSVSL I.claudius_F2_47_451_111345_peptide number 1 9295.953600000008 0 MFVYVLVYFITSGVVLVALDSWFLLPFITWIILFGLILRTLIPKLSKTAQRQADARSLMTGRITDAYSNIATVKLFSHGSRE I.claudius_F2_47_451_111345_peptide number 2 8542.9956 0 ATYAKRSMQDFMVTVHAQMRLATSLDTLTYATNILLTLSTAILGIILWKNGQVGVGAIATATAMALRVNGLSRWIMWE I.claudius_F2_47_451_111345_peptide number 3 721.8017 0 SARLFE I.claudius_F2_47_451_111345_peptide number 4 3531.945800000001 0 NIGTVNDGMNTLTKPHTIVDKPQASPLQVKQGE I.claudius_F2_47_451_111345_peptide number 5 3247.6952000000006 0 IKFNDITFAYDPTKPLLNHFNLTIKPGE I.claudius_F2_47_451_111345_peptide number 6 2592.0445 0 KVGLIGRSGAGKSTIVNLLLRFYE I.claudius_F2_47_451_111345_peptide number 7 531.5169000000001 0 AQQGE I.claudius_F2_47_451_111345_peptide number 8 1570.6997000000003 0 ITIDGQNVLNVQQE I.claudius_F2_47_451_111345_peptide number 9 3895.3009 0 SLRRQIGLVTQDTSLLHRSVRDNIIYGRPNATDE I.claudius_F2_47_451_111345_peptide number 10 147.1293 0 E I.claudius_F2_47_451_111345_peptide number 11 632.7699 0 MVLAAE I.claudius_F2_47_451_111345_peptide number 12 374.39290000000005 0 RAE I.claudius_F2_47_451_111345_peptide number 13 2480.6428 0 AADFIPFLSDSQGRKGYDAHVGE I.claudius_F2_47_451_111345_peptide number 14 3317.9491000000007 0 RGVKLSGGQRQRIAIARVMLKDAPILLLDE I.claudius_F2_47_451_111345_peptide number 15 792.7886000000001 0 ATSALDSE I.claudius_F2_47_451_111345_peptide number 16 246.2604 0 VE I.claudius_F2_47_451_111345_peptide number 17 558.6251000000001 0 VAIQE I.claudius_F2_47_451_111345_peptide number 18 853.0161 0 SLDKMME I.claudius_F2_47_451_111345_peptide number 19 3289.8894 0 NKTVIAIAHRLSTIAAMDRLIVLDKGQIVE I.claudius_F2_47_451_111345_peptide number 20 641.6309 0 QGTHAE I.claudius_F2_47_451_111345_peptide number 21 373.44450000000006 0 LLE I.claudius_F2_47_451_111345_peptide number 22 2134.3492 0 LNGLYAKLWNHQSGGFLSE I.claudius_F2_47_451_111345_peptide number 23 305.2845 0 SAE I.claudius_F2_48_807_114807_peptide number 1 3986.5342000000005 0 MSNFNQISRRDFVKASSAGAALAVSNLTLPFNVMAKE I.claudius_F2_48_807_114807_peptide number 2 759.8083 0 TQRLNE I.claudius_F2_48_807_114807_peptide number 3 503.4637 0 NNQE I.claudius_F2_48_807_114807_peptide number 4 3508.0883000000003 0 RIVWSACTVNCGSRCPLRMHVKDNRITYVE I.claudius_F2_48_807_114807_peptide number 5 736.6823 0 TDNTGTE I.claudius_F2_48_807_114807_peptide number 6 4791.557000000002 0 TYNLDHQVRACLRGRSMRRRVYNPDRLKYPMKRIGKRGE I.claudius_F2_48_807_114807_peptide number 7 1265.417 0 GKFKRISWDE I.claudius_F2_48_807_114807_peptide number 8 432.4687 0 ALTE I.claudius_F2_48_807_114807_peptide number 9 1732.9777 0 IADALKRNIKKYGNE I.claudius_F2_48_807_114807_peptide number 10 7407.244800000003 0 SIYLNYGTGTLGGTMAKSWPPASTMIARFMNCIGGYLNHYGDYSTAQIAVGLDYTYGGGWALGNGMADIE I.claudius_F2_48_807_114807_peptide number 11 1529.7355 0 NTKLIVLFGNNPAE I.claudius_F2_48_807_114807_peptide number 12 1387.5815 0 TRMSGGGLTYCIE I.claudius_F2_48_807_114807_peptide number 13 2776.0930000000003 0 QAKARSNAKMIIIDPRYNDTGAGRE I.claudius_F2_48_807_114807_peptide number 14 262.2167 0 DE I.claudius_F2_48_807_114807_peptide number 15 2498.9361999999996 0 WIPIRPGTDAALVAALAYVMIQE I.claudius_F2_48_807_114807_peptide number 16 2018.2028999999998 0 NLVDQPFLDKYCVGYDE I.claudius_F2_48_807_114807_peptide number 17 3233.584300000001 0 KTLPTDAPKNGHYKAYILGYGNDGIAKTPE I.claudius_F2_48_807_114807_peptide number 18 1156.3308 0 WAAKITGIPAE I.claudius_F2_48_807_114807_peptide number 19 998.2237 0 RIIKLARE I.claudius_F2_48_807_114807_peptide number 20 2373.5823000000005 0 IGSTKPAFISQGWGPQRRSNGE I.claudius_F2_48_807_114807_peptide number 21 2732.166100000001 0 LISRAIAMLPILTGNVGIHGGNTGARE I.claudius_F2_48_807_114807_peptide number 22 3951.6557000000007 0 SAYSIPFVRMPTLKNPVKASIPMFLWTDAIIRGTE I.claudius_F2_48_807_114807_peptide number 23 5641.2904 0 MTALTDGIRGVDKLSSPIKVIWNYASNCLINQHAQINRTHDILQDDTQCE I.claudius_F2_48_807_114807_peptide number 24 3014.4042 0 MIITIDNHMTSTAKYSDILLPDCTTSE I.claudius_F2_48_807_114807_peptide number 25 3197.6334 0 QMDFALDAFVSNMAYVIFADQVIKPSFE I.claudius_F2_48_807_114807_peptide number 26 1525.7453000000003 0 CRPIYDMLSDLAE I.claudius_F2_48_807_114807_peptide number 27 690.8524000000001 0 KMGVKE I.claudius_F2_48_807_114807_peptide number 28 523.5794000000001 0 KFTE I.claudius_F2_48_807_114807_peptide number 29 589.5994000000001 0 GRTQE I.claudius_F2_48_807_114807_peptide number 30 147.1293 0 E I.claudius_F2_48_807_114807_peptide number 31 1016.1527000000001 0 WLRHIYE I.claudius_F2_48_807_114807_peptide number 32 518.5215000000001 0 QSRE I.claudius_F2_48_807_114807_peptide number 33 485.5744000000001 0 KLPE I.claudius_F2_48_807_114807_peptide number 34 605.6799000000001 0 LPTFE I.claudius_F2_48_807_114807_peptide number 35 147.1293 0 E I.claudius_F2_48_807_114807_peptide number 36 3244.6153000000004 0 FRQQGIFKKVDPNGFKVAYKDFRDNPE I.claudius_F2_48_807_114807_peptide number 37 1277.4692 0 AHPLKTPSGKIE I.claudius_F2_48_807_114807_peptide number 38 938.0360000000001 0 IYSSRLAE I.claudius_F2_48_807_114807_peptide number 39 1059.2587 0 IAKTWKLAE I.claudius_F2_48_807_114807_peptide number 40 1717.8753 0 DDVIHPLPIHAQSFE I.claudius_F2_48_807_114807_peptide number 41 961.0495 0 HYGDPLME I.claudius_F2_48_807_114807_peptide number 42 3634.019400000001 0 KYPLQLSGFHYKARTHSTYGNVDVLKAANPQE I.claudius_F2_48_807_114807_peptide number 43 3201.5937000000004 0 VWMNPIDAEPRNIKNGDMIRIFNDRGE I.claudius_F2_48_807_114807_peptide number 44 2155.5824000000002 0 VHINVKITPRIIPGVVALSE I.claudius_F2_48_807_114807_peptide number 45 4614.076999999999 0 GAWYAPDKDRIDHSGCINVLTTQRPSPLAKGNPQHSNLVQVE I.claudius_F2_48_807_114807_peptide number 46 287.3586 0 RL I.claudius_F2_49_140_120026_peptide number 1 1473.737 0 MVNKTAQLKQALE I.claudius_F2_49_140_120026_peptide number 2 2408.8782000000006 0 NRILILDGAMGTMIQKYKLTE I.claudius_F2_49_140_120026_peptide number 3 737.715 0 DDFRGE I.claudius_F2_49_140_120026_peptide number 4 1308.4801000000002 0 KFKKSAVDSVAE I.claudius_F2_49_140_120026_peptide number 5 977.0935000000001 0 WCTWPVGE I.claudius_F2_49_140_120026_peptide number 6 2590.0867000000003 0 LLKHALVKGITTCQTLPSPLDVIE I.claudius_F2_49_140_120026_peptide number 7 6083.240000000002 0 GPLMAGMDVVGDLFGDGKMFLPQVVKSARVMKQSVAYLEPFIMQPNKKVQATVKW I.claudius_F2_50_125_121504_peptide number 1 349.40330000000006 0 MAE I.claudius_F2_50_125_121504_peptide number 2 707.7734 0 YLHFE I.claudius_F2_50_125_121504_peptide number 3 1422.5874000000003 0 LRTRIWGYTQE I.claudius_F2_50_125_121504_peptide number 4 147.1293 0 E I.claudius_F2_50_125_121504_peptide number 5 1049.0915 0 FDNQGLINE I.claudius_F2_50_125_121504_peptide number 6 1802.9814 0 NYVGIRPAPGYPSWPE I.claudius_F2_50_125_121504_peptide number 7 385.37250000000006 0 HTE I.claudius_F2_50_125_121504_peptide number 8 1100.3072 0 KALIWDLLE I.claudius_F2_50_125_121504_peptide number 9 246.2604 0 VE I.claudius_F2_50_125_121504_peptide number 10 1075.283 0 QRIGMKLTE I.claudius_F2_50_125_121504_peptide number 11 3441.8014000000003 0 SYAMWPAASVCGWYFTHPASNYFTLGRIDE I.claudius_F2_50_125_121504_peptide number 12 1709.7705 0 DQAQDYAKRKGWDE I.claudius_F2_50_125_121504_peptide number 13 303.31500000000005 0 RE I.claudius_F2_50_125_121504_peptide number 14 1194.5759999999998 0 MMKWLGVAMK I.claudius_F2_51_91_125565_peptide number 1 554.6563000000001 0 MYLE I.claudius_F2_51_91_125565_peptide number 2 7299.7844 0 LHFQFLFRFFSLIPIPCTIPNFRYHTR-LISRN-VFMNKLKMALLVVFLVSLFACTTIHQPKE I.claudius_F2_51_91_125565_peptide number 3 2737.2042 0 TVKSRFLKNNRLNKISIINIYTT I.claudius_F2_52_128_126374_peptide number 1 278.32540000000006 0 ME I.claudius_F2_52_128_126374_peptide number 2 407.46080000000006 0 IFE I.claudius_F2_52_128_126374_peptide number 3 2473.7809 0 AIQKVTKGLAQHGTFNFILSNGE I.claudius_F2_52_128_126374_peptide number 4 6301.152000000003 0 WMIAHCSTNLHYVMRKAPFGKAHRIDDDGVIDFSYYAKAGDKVNIITTFPLTKNE I.claudius_F2_52_128_126374_peptide number 5 780.8888000000001 0 SWTKME I.claudius_F2_52_128_126374_peptide number 6 1215.3135 0 NGGFVFFKNGE I.claudius_F2_52_128_126374_peptide number 7 459.5371 0 KIAE I.claudius_F2_52_128_126374_peptide number 8 742.8607000000002 0 VIGTPKE I.claudius_F2_52_128_126374_peptide number 9 1630.7549 0 AIDDGTLGNRTINSAI I.claudius_F2_53_54_128205_peptide number 1 365.4027 0 MSE I.claudius_F2_53_54_128205_peptide number 2 2515.917 0 GVNHLRLQRNGRKPRYLPVLE I.claudius_F2_53_54_128205_peptide number 3 3258.8354 0 KMLGSGLSLLVAFHVLRLSAQVNQAKWQY I.claudius_F2_54_241_131586_peptide number 1 865.0301000000001 0 MMDRAIE I.claudius_F2_54_241_131586_peptide number 2 3237.5677 0 LASQHGVGVIALRNANHWMRGGSYGWQAAE I.claudius_F2_54_241_131586_peptide number 3 2405.8344 0 KGYIGICWTNALAVMPPWGAKE I.claudius_F2_54_241_131586_peptide number 4 3609.3032 0 CRIGTNPLIIAVPTTPITMVDMSCSMYSYGMLE I.claudius_F2_54_241_131586_peptide number 5 2033.1612999999998 0 VHRLAGRQTFVDAGFDDE I.claudius_F2_54_241_131586_peptide number 6 1200.2990000000002 0 GNLTRDPSIVE I.claudius_F2_54_241_131586_peptide number 7 3418.0399 0 KNRRLLPMGFWKGSGLSIVLDMIATLLSNGE I.claudius_F2_54_241_131586_peptide number 8 705.7545 0 STVAVTE I.claudius_F2_54_241_131586_peptide number 9 619.5790000000001 0 DKNDE I.claudius_F2_54_241_131586_peptide number 10 1271.4812 0 YCVSQVFIAIE I.claudius_F2_54_241_131586_peptide number 11 1374.4967000000001 0 VDRLIDGKSKDE I.claudius_F2_54_241_131586_peptide number 12 1580.8471000000002 0 KLNRIMDYVKTAE I.claudius_F2_54_241_131586_peptide number 13 1562.6861000000001 0 RSDPTQAVRLPGHE I.claudius_F2_54_241_131586_peptide number 14 1863.9718000000003 0 FTTILSDNQTNGIPVDE I.claudius_F2_54_241_131586_peptide number 15 1114.3836000000001 0 RVWAKLKTL I.claudius_F2_55_370_133030_peptide number 1 1208.4683000000002 0 MAIPFFILAGE I.claudius_F2_55_370_133030_peptide number 2 505.5856 0 IMNE I.claudius_F2_55_370_133030_peptide number 3 17693.302900000013 0 GGLSKRIIDLPMKLVGHKRGGLGFVAILSAMIMASLSGSAVADTAAVAAMLLPMMKTTGYPIHRSAGLIGTAGIIAPIIPPSIPFIVFGVASGVSITKLFLAGIFPGVIMGCCLAILWRWQAKRLNLMTFSKATKQDLCFSFKNSVWALMLPVIIIGGFRSGIFTPTE I.claudius_F2_55_370_133030_peptide number 4 2113.4529 0 AGVVATFYALIVSLFIYHE I.claudius_F2_55_370_133030_peptide number 5 3964.7987000000007 0 LPLKHLPKVLLAAAKTTAVVMFLVASANVTGYLITVAE I.claudius_F2_55_370_133030_peptide number 6 1595.9808 0 LPTMLTILLEPLIE I.claudius_F2_55_370_133030_peptide number 7 4134.249700000001 0 NPTILLLVIMLAVFVIGMVMDLTPTVLILTPVLMPLVE I.claudius_F2_55_370_133030_peptide number 8 147.1293 0 E I.claudius_F2_55_370_133030_peptide number 9 7096.563800000004 0 AGIDPVYFGVLFILNTSIGLITPPVGNVLNVITGVSKLPFDQAAKGIMPYLGMMIMLLLTFIFIPE I.claudius_F2_55_370_133030_peptide number 10 1254.5829 0 LILMPLQWIQ I.claudius_F2_56_302_135767_peptide number 1 434.51110000000006 0 MRE I.claudius_F2_56_302_135767_peptide number 2 1695.9525000000003 0 GKYDIQLAKLFGITE I.claudius_F2_56_302_135767_peptide number 3 2588.0310999999997 0 CIDKLPPIIKSNKIAGYVTSRAAE I.claudius_F2_56_302_135767_peptide number 4 631.6758 0 QSGLVE I.claudius_F2_56_302_135767_peptide number 5 6263.989500000002 0 GIPVVGGLFDVVSTALCADLKDDQHLNVVLGTWSVVSGVTHYIDDNQTIPFVYGKYPE I.claudius_F2_56_302_135767_peptide number 6 1028.2049000000002 0 KNKFIIHE I.claudius_F2_56_302_135767_peptide number 7 945.9703 0 ASPTSAGNLE I.claudius_F2_56_302_135767_peptide number 8 2165.2754999999997 0 WFVNQFNLPNYDDINHE I.claudius_F2_56_302_135767_peptide number 9 5248.0217 0 IAKLKPASSSVLFAPFLYGSNAKLGMQAGFYGIQSHHTQIHLLQAIYE I.claudius_F2_56_302_135767_peptide number 10 1232.4484000000002 0 GVIFSLMSHLE I.claudius_F2_56_302_135767_peptide number 11 2388.7050000000004 0 RMQVRFPNASTVRVTGGPAKSE I.claudius_F2_56_302_135767_peptide number 12 1780.1402000000003 0 VWMQMLADISGMRLE I.claudius_F2_56_302_135767_peptide number 13 584.6623000000001 0 IPNIE I.claudius_F2_56_302_135767_peptide number 14 147.1293 0 E I.claudius_F2_56_302_135767_peptide number 15 1366.6269 0 TGCLGAALMAMQAE I.claudius_F2_56_302_135767_peptide number 16 404.41560000000004 0 SAVE I.claudius_F2_56_302_135767_peptide number 17 4340.979999999999 0 ISQILNIDRKIFLPDKNQYSKYQHKYHRYLKFIE I.claudius_F2_56_302_135767_peptide number 18 672.7707 0 ALKNLD I.claudius_F2_57_182_137690_peptide number 1 379.4293 0 MTE I.claudius_F2_57_182_137690_peptide number 2 1664.8741000000002 0 NDMVVVDLFTGNIVE I.claudius_F2_57_182_137690_peptide number 3 1510.6049 0 GNKKPSSDTPTHLE I.claudius_F2_57_182_137690_peptide number 4 3537.9829999999997 0 LYRQFPHIGGIVHTHSRHATIWAQAGLDIIE I.claudius_F2_57_182_137690_peptide number 5 2606.8839000000007 0 VGTTHGDYFYGTIPCTRQMTTKE I.claudius_F2_57_182_137690_peptide number 6 722.7864000000001 0 IKGNYE I.claudius_F2_57_182_137690_peptide number 7 260.2869 0 LE I.claudius_F2_57_182_137690_peptide number 8 744.8766 0 TGKVIVE I.claudius_F2_57_182_137690_peptide number 9 4293.753100000001 0 TFLSRGIEPDNIPAVLVHSHGPFAWGKDANNAVHNAVVLE I.claudius_F2_57_182_137690_peptide number 10 147.1293 0 E I.claudius_F2_57_182_137690_peptide number 11 4674.277800000001 0 VAYMNLFSQQLNPYLSPMQKDLLDKHYLRKHGQNAYYGQ I.claudius_F2_58_666_139091_peptide number 1 3994.649100000001 0 MATRRQLANAIRVLAMDSVQKAKSGHPGAPMGMADIAE I.claudius_F2_58_666_139091_peptide number 2 5527.2339999999995 0 VLWRDFLKHNPTNPKWADRDRFVLSNGHGSMLIYSLLHLTGYDLSIE I.claudius_F2_58_666_139091_peptide number 3 2018.236 0 DLKQFRQLHSKTPGHPE I.claudius_F2_58_666_139091_peptide number 4 854.9027000000001 0 YGYAPGVE I.claudius_F2_58_666_139091_peptide number 5 1902.1308 0 TTTGPLGQGITNAVGMAIAE I.claudius_F2_58_666_139091_peptide number 6 1163.2837 0 KTLAGQFNRE I.claudius_F2_58_666_139091_peptide number 7 341.3199 0 GHE I.claudius_F2_58_666_139091_peptide number 8 1949.2104000000004 0 IVDHHTYVFLGDGCLME I.claudius_F2_58_666_139091_peptide number 9 541.5548 0 GISHE I.claudius_F2_58_666_139091_peptide number 10 4002.286499999999 0 ACSLAGTLGLGKLIAFYDDNNISIDGHVDGWFSDDTAE I.claudius_F2_58_666_139091_peptide number 11 450.48890000000006 0 RFE I.claudius_F2_58_666_139091_peptide number 12 1829.9223000000004 0 AYGWQVIRNVDGHDAE I.claudius_F2_58_666_139091_peptide number 13 1284.4617 0 QIRAATILAQAE I.claudius_F2_58_666_139091_peptide number 14 3462.8852 0 KGKPTLIICKTIIGFGSPNKSGSHDSHGAPLGDE I.claudius_F2_58_666_139091_peptide number 15 147.1293 0 E I.claudius_F2_58_666_139091_peptide number 16 1301.4904999999999 0 IDLTRKALGWE I.claudius_F2_58_666_139091_peptide number 17 625.6696000000001 0 YAPFE I.claudius_F2_58_666_139091_peptide number 18 428.48 0 IPAE I.claudius_F2_58_666_139091_peptide number 19 544.5538 0 YYAE I.claudius_F2_58_666_139091_peptide number 20 619.6667 0 WSAKE I.claudius_F2_58_666_139091_peptide number 21 545.5866000000001 0 KGAAAE I.claudius_F2_58_666_139091_peptide number 22 548.5888 0 KSWE I.claudius_F2_58_666_139091_peptide number 23 147.1293 0 E I.claudius_F2_58_666_139091_peptide number 24 1258.4212000000002 0 KFAAYAKAYPE I.claudius_F2_58_666_139091_peptide number 25 402.44270000000006 0 LAAE I.claudius_F2_58_666_139091_peptide number 26 978.1066000000001 0 FKRRVSGE I.claudius_F2_58_666_139091_peptide number 27 900.9743000000001 0 LPTNWAAE I.claudius_F2_58_666_139091_peptide number 28 693.7883 0 SKAFIE I.claudius_F2_58_666_139091_peptide number 29 2097.3325999999997 0 KLQANPASIASRKASQNAIE I.claudius_F2_58_666_139091_peptide number 30 899.0016 0 AYAHVLPE I.claudius_F2_58_666_139091_peptide number 31 2714.9815999999996 0 FLGGSADLASSNLTLWSGSKPIRAHE I.claudius_F2_58_666_139091_peptide number 32 1454.5431 0 NVGGNYINYGVRE I.claudius_F2_58_666_139091_peptide number 33 3056.5763000000006 0 FGMSAIMNGIALHGGFIPYGATFLMFYE I.claudius_F2_58_666_139091_peptide number 34 3293.7754000000004 0 YAHNAVRMAALMKQRTLFVYTHDSIGLGE I.claudius_F2_58_666_139091_peptide number 35 979.0019 0 DGPTHQPVE I.claudius_F2_58_666_139091_peptide number 36 1354.5515 0 QTASLRLIPNLE I.claudius_F2_58_666_139091_peptide number 37 1133.2346 0 TWRPCDQVE I.claudius_F2_58_666_139091_peptide number 38 1102.1973 0 SAIAWQQAVE I.claudius_F2_58_666_139091_peptide number 39 4737.2496 0 RQDGPSALIFTRQNLAQMDRTSAQLDAVKRGAYVLKDCDGTPE I.claudius_F2_58_666_139091_peptide number 40 950.0864 0 LIFIATGSE I.claudius_F2_58_666_139091_peptide number 41 246.2604 0 VE I.claudius_F2_58_666_139091_peptide number 42 700.7809000000001 0 LAVQAAE I.claudius_F2_58_666_139091_peptide number 43 489.52 0 ALSAE I.claudius_F2_58_666_139091_peptide number 44 2783.1273 0 GKKVRVVSMPSTNRFDKQDAAYRE I.claudius_F2_58_666_139091_peptide number 45 1453.7259000000001 0 SVLPAAVTKRVAIE I.claudius_F2_58_666_139091_peptide number 46 2799.121200000001 0 AGIADFWYKYVGFNGRVIGMNSFGE I.claudius_F2_58_666_139091_peptide number 47 1769.9897000000003 0 SAPADQLFKLFGFTVE I.claudius_F2_58_666_139091_peptide number 48 857.9945 0 NVVAKAKE I.claudius_F2_58_666_139091_peptide number 49 244.3305 0 IL I.claudius_F2_59_66_150823_peptide number 1 6766.7182 0 MICTFGQPNASAYSRAKSISLWLSASRPGIADPPHSPLFTSPAGVLNNTTFRPCLSKIALSSCAG I.claudius_F2_60_53_152879_peptide number 1 5458.498700000002 0 MASTLLFNDCVGTPFICTVLKPFSTKKLAISLAPVKSSAITPNIATLLFSVS I.claudius_F2_61_257_154076_peptide number 1 278.32540000000006 0 ME I.claudius_F2_61_257_154076_peptide number 2 816.0207 0 KKMIPAE I.claudius_F2_61_257_154076_peptide number 3 4473.2504 0 RQKTLLNLISKQSVISINNLVNILGVSHMTVRRDIQKLE I.claudius_F2_61_257_154076_peptide number 4 147.1293 0 E I.claudius_F2_61_257_154076_peptide number 5 1500.6928 0 DGKVISVSGGVQLLE I.claudius_F2_61_257_154076_peptide number 6 2000.1249 0 RLSSEPTHDDKSLLATTE I.claudius_F2_61_257_154076_peptide number 7 1074.2719000000002 0 KTAISKKAVE I.claudius_F2_61_257_154076_peptide number 8 501.57370000000003 0 LIQE I.claudius_F2_61_257_154076_peptide number 9 1521.6242000000002 0 HSTIYLDAGTTTLE I.claudius_F2_61_257_154076_peptide number 10 5414.1626 0 IAKQIANRNDLLVITNDFVIAHYLMVNSQCNIMHTGGLINKSNRSSVGE I.claudius_F2_61_257_154076_peptide number 11 3437.8061000000002 0 FAAQFLHQISVDIAFISTSSWNLKGLTTPDE I.claudius_F2_61_257_154076_peptide number 12 5553.511800000003 0 QKIPVKKAIIQFSQKNILVTDSSKYGKVATFLLYPLSSLDTIICDKGLPE I.claudius_F2_61_257_154076_peptide number 13 871.9381000000001 0 NAQARIAE I.claudius_F2_61_257_154076_peptide number 14 491.55910000000006 0 MNVE I.claudius_F2_61_257_154076_peptide number 15 490.63550000000004 0 LFLV I.claudius_F2_62_65_155983_peptide number 1 4348.0274 0 MPFMPNQNRFCTLSTCARNLHMHFSHQRTGCIKYFE I.claudius_F2_62_65_155983_peptide number 2 3432.0416999999998 0 ITIFCFLPNRLRHTVCRKNHDRTIRHLA I.claudius_F2_63_55_161204_peptide number 1 6435.259300000001 0 MQWHTVNMNMLTQYITGCTCNIRDDSRFATSKRIKQARFTRIRTTSNHDFHSLT I.claudius_F2_64_51_161572_peptide number 1 2455.9776000000006 0 MLSVPLVLMLHQLNPQWPPLE I.claudius_F2_64_51_161572_peptide number 2 3457.978200000001 0 QDPIYHSKKLVQKTRLVSPNGFHQFVKYV I.claudius_F2_65_51_164644_peptide number 1 6432.372600000003 0 MHFAKVRDTSKVRLQLFSLKIFFQFRDKFYFYHNDKKHDYWWIFDNPTII I.claudius_F2_66_562_166434_peptide number 1 2068.4006999999997 0 MKLVAQNLRGREPSLLNE I.claudius_F2_66_562_166434_peptide number 2 1471.6498000000001 0 DGYIIFSSLSKIE I.claudius_F2_66_562_166434_peptide number 3 780.8226000000001 0 DDFKKE I.claudius_F2_66_562_166434_peptide number 4 1730.7384 0 NQSQEPTIGSIDEPSE I.claudius_F2_66_562_166434_peptide number 5 6417.844200000002 0 TNSPQNHHGQQYVYSGLYYIQSWRNFSNGKFYSGYYGYAYYFGKQTATTLPVNGE I.claudius_F2_66_562_166434_peptide number 6 1575.7163000000003 0 ATYKGTWSFITATE I.claudius_F2_66_562_166434_peptide number 7 2651.8017 0 RGKNYSLFSNSSGQGYSRRSAISE I.claudius_F2_66_562_166434_peptide number 8 603.6193000000001 0 DIDLE I.claudius_F2_66_562_166434_peptide number 9 789.705 0 NDQNNGE I.claudius_F2_66_562_166434_peptide number 10 2027.2776000000001 0 TGLISQFSADFGTKKLKGE I.claudius_F2_66_562_166434_peptide number 11 1818.9824999999998 0 LFYTKRKTNNQNYE I.claudius_F2_66_562_166434_peptide number 12 2884.292200000001 0 KKKLYDIDANIYSNRFRGKVKPTE I.claudius_F2_66_562_166434_peptide number 13 477.46630000000005 0 KDSE I.claudius_F2_66_562_166434_peptide number 14 147.1293 0 E I.claudius_F2_66_562_166434_peptide number 15 785.8473000000001 0 HPFTRE I.claudius_F2_66_562_166434_peptide number 16 418.4421 0 GTLE I.claudius_F2_66_562_166434_peptide number 17 896.8994999999999 0 GGFYGPNGE I.claudius_F2_66_562_166434_peptide number 18 147.1293 0 E I.claudius_F2_66_562_166434_peptide number 19 2098.4433 0 LGGKFLAGDKKVFGVFSAKE I.claudius_F2_66_562_166434_peptide number 20 248.23319999999998 0 TE I.claudius_F2_66_562_166434_peptide number 21 147.1293 0 E I.claudius_F2_66_562_166434_peptide number 22 1072.256 0 TKQKTLPKE I.claudius_F2_66_562_166434_peptide number 23 3515.7861000000007 0 TLIDGKLTTFSTKKPDATTSTTANAKTDATTNAE I.claudius_F2_66_562_166434_peptide number 24 1345.4107000000004 0 NFTTKDISSFGE I.claudius_F2_66_562_166434_peptide number 25 1845.0959 0 ADYLLIDNYPVPLLPE I.claudius_F2_66_562_166434_peptide number 26 248.23319999999998 0 TE I.claudius_F2_66_562_166434_peptide number 27 1355.3658 0 NSGDFATSKHYE I.claudius_F2_66_562_166434_peptide number 28 1137.2864000000002 0 VRDKTYKVE I.claudius_F2_66_562_166434_peptide number 29 1919.2474000000002 0 ACCKNLSYVKFGMYYE I.claudius_F2_66_562_166434_peptide number 30 1103.144 0 DNKKNNKNE I.claudius_F2_66_562_166434_peptide number 31 248.23319999999998 0 TE I.claudius_F2_66_562_166434_peptide number 32 4078.5002000000004 0 QYHQFLLGLRTASSKIPTTGNVKYRGSWFGYISDGE I.claudius_F2_66_562_166434_peptide number 33 1971.0439999999999 0 TSYSTTGDKRQDKNAVAE I.claudius_F2_66_562_166434_peptide number 34 840.8761000000001 0 FDVNFAE I.claudius_F2_66_562_166434_peptide number 35 2218.5091 0 KTLKGSLKRADSQNPVFSIE I.claudius_F2_66_562_166434_peptide number 36 5159.5907000000025 0 ANFKNGGNAFTGTATAKDLVIDGKNSQTKNTPINITTKVNGAFYGPNASE I.claudius_F2_66_562_166434_peptide number 37 2833.9253999999996 0 LGGYFTYNGKNPTDKNSPTASSPSNSE I.claudius_F2_66_562_166434_peptide number 38 1601.8912000000003 0 KARAAVVFGAKKQVE I.claudius_F2_66_562_166434_peptide number 39 475.49670000000003 0 TNNK I.claudius_F2_67_326_169908_peptide number 1 2670.0489000000002 0 MALGKYVDLGLGIRYDVSRTKANE I.claudius_F2_67_326_169908_peptide number 2 2553.9055000000003 0 STISVGKFKNFSWNTGIVIKPTE I.claudius_F2_67_326_169908_peptide number 3 2259.4747 0 WLDLSYRLSTGFRNPSFAE I.claudius_F2_67_326_169908_peptide number 4 1475.5837999999999 0 MYGWRYGGKNDE I.claudius_F2_67_326_169908_peptide number 5 1066.2498 0 VYVGKFKPE I.claudius_F2_67_326_169908_peptide number 6 733.7280000000001 0 TSRNQE I.claudius_F2_67_326_169908_peptide number 7 1380.544 0 FGLALKGDFGNIE I.claudius_F2_67_326_169908_peptide number 8 1853.0417000000002 0 ISHFSNAYRNLIAFAE I.claudius_F2_67_326_169908_peptide number 9 147.1293 0 E I.claudius_F2_67_326_169908_peptide number 10 11995.289300000008 0 LSKNGTGKGNYGYHNAQNAKLVGVNITAQLDFNGLWKRIPYGWYATFAYNRVKVKDQKINAGLASVSSYLFDAIQPSRYIIGLGYDHISNTWGVNATFTQSKAKSQNE I.claudius_F2_67_326_169908_peptide number 11 6794.824200000001 0 LLGKRALGNNSRDVKSTRKLTRAWHILDVSGYYMANKNIMLRLGIYNLFNYRYVTWE I.claudius_F2_67_326_169908_peptide number 12 3753.0176 0 AVRQTAQGAVNQHQNVGNYTRYAASGRNYTLTLE I.claudius_F2_67_326_169908_peptide number 13 424.55760000000004 0 MKF I.claudius_F2_68_153_171983_peptide number 1 602.7008000000001 0 MNLPE I.claudius_F2_68_153_171983_peptide number 2 147.1293 0 E I.claudius_F2_68_153_171983_peptide number 3 1820.1031 0 VAFFIAQRLRTNVRE I.claudius_F2_68_153_171983_peptide number 4 260.2869 0 LE I.claudius_F2_68_153_171983_peptide number 5 3806.3038 0 GALNRVKAMQDFKGGDIDIDFVRDTLKDILALQE I.claudius_F2_68_153_171983_peptide number 6 729.8652000000001 0 RLVTIE I.claudius_F2_68_153_171983_peptide number 7 900.0311000000002 0 NIQKVVAE I.claudius_F2_68_153_171983_peptide number 8 3623.2388000000005 0 YYRIKVSDLKSKSRARSVTRPRQIAMALAKE I.claudius_F2_68_153_171983_peptide number 9 929.0292000000001 0 LTNRSLPE I.claudius_F2_68_153_171983_peptide number 10 2074.2811 0 IGRAFDRDHTTVLNACRE I.claudius_F2_68_153_171983_peptide number 11 774.9075 0 VPKFRE I.claudius_F2_68_153_171983_peptide number 12 832.8126000000001 0 QDNSIQE I.claudius_F2_68_153_171983_peptide number 13 1259.4107 0 DWANLIRTLSA I.claudius_F2_69_83_174387_peptide number 1 1091.3055 0 MCALRLAQGE I.claudius_F2_69_83_174387_peptide number 2 656.7946000000001 0 HLMKE I.claudius_F2_69_83_174387_peptide number 3 1822.0493000000001 0 KQRHCIFLIDDFASE I.claudius_F2_69_83_174387_peptide number 4 1319.5058000000001 0 LDQYKRALLAE I.claudius_F2_69_83_174387_peptide number 5 2417.7195000000006 0 RLQQSGSQVFVTAITQRQLKE I.claudius_F2_69_83_174387_peptide number 6 505.5857 0 MQVE I.claudius_F2_69_83_174387_peptide number 7 1800.09 0 NKKMFSVHNGIINALN I.claudius_F2_70_278_179128_peptide number 1 2469.857 0 MAKAQFVALNVGKAVSQHISQLE I.claudius_F2_70_278_179128_peptide number 2 506.53060000000005 0 MNNE I.claudius_F2_70_278_179128_peptide number 3 1628.7176000000002 0 GQYNVWVSNTSMNE I.claudius_F2_70_278_179128_peptide number 4 18012.794800000007 0 NYSSSQYRRFSSKSTQTQLGWDQTISNNVQLGGVFTYVRNSNNFDKASSKNTLAQVNFYSKYYADNHWYLGIDLGYGKFQSNLKTNHNAKFARHTAQFGLTAGKAFNLGNFGITPIVGVRYSYLSNANFALAKDRIKVNPISVKTAFAQVDLSYTYHLGE I.claudius_F2_70_278_179128_peptide number 5 3611.878 0 FSVTPILSARYDTNQGSGKINVNQYDFAYNVE I.claudius_F2_70_278_179128_peptide number 6 3456.9468 0 NQQQYNAGLKLKYHNVKLSLIGGLTKAKQAE I.claudius_F2_70_278_179128_peptide number 7 703.7849000000001 0 KQKTAE I.claudius_F2_70_278_179128_peptide number 8 841.0052000000001 0 LKLSFSF I.claudius_F2_71_66_181585_peptide number 1 2688.1518 0 MRLYHALQFSYFLREPVLKFE I.claudius_F2_71_66_181585_peptide number 2 5524.5796 0 WLIRALLQKYRYQKPRHQMHRALRCVNRHKQLSYRVRLNLVLAP I.claudius_F2_72_109_183864_peptide number 1 7789.8466 0 MLPNHNQKLDLFYPPILRTRHTIYPNRNLVRYSPYLPYDLSQLHDQNVRLNSIFLFSNRWFLE I.claudius_F2_72_109_183864_peptide number 2 248.23319999999998 0 TE I.claudius_F2_72_109_183864_peptide number 3 3883.3297 0 FRKYFCFSTYHLDGCQKNGQKHLSPQWLYSAE I.claudius_F2_72_109_183864_peptide number 4 1141.3393999999998 0 SAYCKVGLPFG I.claudius_F2_73_374_185552_peptide number 1 3674.3332000000005 0 MNDITYTLLRLMQVPKLGGVGIDKILSNITLNE I.claudius_F2_73_374_185552_peptide number 2 3210.6666 0 LLNYDDVAFRQMGWGAIQIRRWFKPE I.claudius_F2_73_374_185552_peptide number 3 1645.8955 0 AKFIEPALVWSQKE I.claudius_F2_73_374_185552_peptide number 4 6005.898800000001 0 GNHLVNYFSPFYPFLLKQTASFPPLLFVKGNLTALSQRQMAMVGSRYCTTYGE I.claudius_F2_73_374_185552_peptide number 5 1152.2576999999999 0 YWAKHFATE I.claudius_F2_73_374_185552_peptide number 6 3962.4859000000006 0 LSLAGFTITSGLALGIDGHCHQAVVNIQGQTIAVLGSGLE I.claudius_F2_73_374_185552_peptide number 7 1911.1656000000003 0 QIYPSKHQRLSAQIIE I.claudius_F2_73_374_185552_peptide number 8 802.8297000000001 0 NNGALVSE I.claudius_F2_73_374_185552_peptide number 9 3250.7505 0 FLPNQAPIAANFPRRNRIISGLSVGTLVVE I.claudius_F2_73_374_185552_peptide number 10 319.3111 0 ATE I.claudius_F2_73_374_185552_peptide number 11 1408.599 0 KSGSLITARYALE I.claudius_F2_73_374_185552_peptide number 12 545.5468000000001 0 QNRE I.claudius_F2_73_374_185552_peptide number 13 3025.5078 0 VFAVPGNIQNKSSQGCHRLIKQGAMLVE I.claudius_F2_73_374_185552_peptide number 14 801.8847000000001 0 NAKDILE I.claudius_F2_73_374_185552_peptide number 15 1443.5172 0 TLYQHSIHSQTE I.claudius_F2_73_374_185552_peptide number 16 2552.8347 0 IDFDQIAVPNYTPPPDPRRLVE I.claudius_F2_73_374_185552_peptide number 17 2529.7980000000002 0 APSHPKLYSRIGYTPVSIDDLAE I.claudius_F2_73_374_185552_peptide number 18 147.1293 0 E I.claudius_F2_73_374_185552_peptide number 19 1830.1260000000002 0 FNLSVDVLLVQLLDLE I.claudius_F2_73_374_185552_peptide number 20 930.0536000000001 0 LQDLIISE I.claudius_F2_73_374_185552_peptide number 21 848.9892000000002 0 NGLYKRV I.claudius_F2_74_215_188494_peptide number 1 862.0459999999999 0 MGAKLLTE I.claudius_F2_74_215_188494_peptide number 2 147.1293 0 E I.claudius_F2_74_215_188494_peptide number 3 5706.185299999999 0 HSFPCVGLPGTIDNDVAGTDYTIGYQTALQTAVDAIDRLRDTSSSHQRISIVE I.claudius_F2_74_215_188494_peptide number 4 1991.2735000000005 0 IMGRHCSDLTISAGIAGGCE I.claudius_F2_74_215_188494_peptide number 5 680.7465000000001 0 YIVASE I.claudius_F2_74_215_188494_peptide number 6 260.2869 0 IE I.claudius_F2_74_215_188494_peptide number 7 564.5915 0 FNRE I.claudius_F2_74_215_188494_peptide number 8 147.1293 0 E I.claudius_F2_74_215_188494_peptide number 9 742.8605 0 LIQQIE I.claudius_F2_74_215_188494_peptide number 10 1834.1743000000001 0 RSIIRGKRHAIIAITE I.claudius_F2_74_215_188494_peptide number 11 1225.3913000000002 0 LLTDVHSLAKE I.claudius_F2_74_215_188494_peptide number 12 260.2869 0 IE I.claudius_F2_74_215_188494_peptide number 13 667.7146 0 ARVGHE I.claudius_F2_74_215_188494_peptide number 14 5064.7827 0 TRATVLGHIQRGGSPCAFDRILASRMGAYAVDLLLQGKGGYCVGIQNE I.claudius_F2_74_215_188494_peptide number 15 3602.1745 0 QLVHHDIIDAINNMQRVFKADWLKVAKRLE I.claudius_F2_75_62_190175_peptide number 1 6671.144200000002 0 MVCWSLVIAHLILIPLRHRQNYVVVLTFFLSKIKLKKSSNTISCSLGSLIALKVCLKTE I.claudius_F2_75_62_190175_peptide number 2 162.1439 0 SG I.claudius_F2_76_160_191685_peptide number 1 16813.53000000002 0 MACGSMSIPTALFAPSFNAAMAKIPDPQPKSMTLLSFKSRPSSHSKHSAVVGCVPVPNAKPGSSITLTAFSSGTSRQLGQIHKRLPNCIGWKLSIHSRSQFFNLLFVPILYAVLLSKCFASFNKRTISAISVSASNSAITSVLPHKRVSPGKGSKIGVS I.claudius_F2_77_51_194499_peptide number 1 4159.9442 0 MVPISIPRCKALLSLNAIHRTAVCGRPTTPKQTSIQKE I.claudius_F2_77_51_194499_peptide number 2 1343.5287 0 AINWKSNIPFGP I.claudius_F2_78_81_195052_peptide number 1 1425.7619000000002 0 MHLMQAIRLALE I.claudius_F2_78_81_195052_peptide number 2 8259.694600000003 0 SSQVIPNLIRIYKQLQALRQKNLHWHKLMQLSLRAQNQSSIDFPHNILLKNRLLYVLHRQKLLHQKQK I.claudius_F2_79_91_202305_peptide number 1 5670.477099999999 0 MNRLLAQFARKWHFQQQSLSRKAYVIHGHHQLHNQPPLLQLVLDKNE I.claudius_F2_79_91_202305_peptide number 2 5311.117100000001 0 YRVGNLIHLSDVRHCHLCNHRNRHALFGHHQNRMLFRLRQLIQ I.claudius_F2_80_181_202958_peptide number 1 2157.4442 0 MAALLSGCSMFDSQQSAIPAE I.claudius_F2_80_181_202958_peptide number 2 2691.9036 0 FAGADYQLSDQHAKQWAIASKQVE I.claudius_F2_80_181_202958_peptide number 3 2204.5072000000005 0 QCVYPNLTRILQQHFSKE I.claudius_F2_80_181_202958_peptide number 4 1908.069 0 DSYIHSQYVFFYPLE I.claudius_F2_80_181_202958_peptide number 5 558.6681000000001 0 KIIGE I.claudius_F2_80_181_202958_peptide number 6 1206.3449 0 QYVKIIQADE I.claudius_F2_80_181_202958_peptide number 7 4095.7066000000004 0 KSMNYASYQFKKFRTRVSNVEPLTKQSCLKLRNE I.claudius_F2_80_181_202958_peptide number 8 1965.1916999999999 0 ARDDLAAVKGQYKNGMVE I.claudius_F2_80_181_202958_peptide number 9 616.6645 0 VQKNE I.claudius_F2_80_181_202958_peptide number 10 3371.8141 0 DGTPKNSDGIATNQNKFFFDIIKWGSMLLL I.claudius_F2_81_511_204145_peptide number 1 4937.853500000002 0 MTLLSRVLGLVRDVVIAHLIGAGAAADVFLFANRIPNFLRRLFAE I.claudius_F2_81_511_204145_peptide number 2 1335.5036 0 GAFSQAFVPVLAE I.claudius_F2_81_511_204145_peptide number 3 1456.5376 0 YQQSGDMNKTRE I.claudius_F2_81_511_204145_peptide number 4 5279.0757 0 FIGKVSGTLGGLVSIVTILAMVGSPHVAALFGMGWFTDWMNDGPDAHKFE I.claudius_F2_81_511_204145_peptide number 5 10965.093800000006 0 QASLLLKITFPYLWFVTFVAFSGAVLNTIGKFGVMSFSPVLLNIAMIATALFLAPQMDNPDLALAIGIFLGGLLQFLFQIPFMKQAGLLVKPKWAWRDE I.claudius_F2_81_511_204145_peptide number 6 5474.4796 0 GVTKIRKLMIPALFGVSVSQINLLLDTVIASFLMTGSISWLYYSDRLLE I.claudius_F2_81_511_204145_peptide number 7 2872.369 0 FPLGLFGIAISTVILPTLARHHVNRE I.claudius_F2_81_511_204145_peptide number 8 18630.94820000001 0 GDSAKSAVDFRNTMDWGVRMIFLLGVPAAIGIAVLAQPMLLTLFMRGNFMLNDVYAASYSLRAFNAGLLSFMLIKILANGYYARQDTKTPVKIGIIAMVSNMGFNLLAIPFSYVGLAIASAMSATLNAYLLYRGLAKADVYHFSRKSAVFFVKVLLAAIAMGAAVWYYVPE I.claudius_F2_81_511_204145_peptide number 9 5356.4890000000005 0 INQWAKMDFFMRVYWLVWLIVLAAIVYGATLILLGVRKHHLLTKN I.claudius_F2_82_55_207286_peptide number 1 3767.645500000001 0 MKTKFLRQFTFVSLRKVRMKLKLNFLHKVE I.claudius_F2_82_55_207286_peptide number 2 2807.2394000000004 0 DKVNYQPSFGLPHLGRCHLTVRLR I.claudius_F2_83_468_208101_peptide number 1 1004.2035000000001 0 MTLFVHKE I.claudius_F2_83_468_208101_peptide number 2 248.23319999999998 0 TE I.claudius_F2_83_468_208101_peptide number 3 147.1293 0 E I.claudius_F2_83_468_208101_peptide number 4 1206.3912 0 LHPRTLDLLE I.claudius_F2_83_468_208101_peptide number 5 147.1293 0 E I.claudius_F2_83_468_208101_peptide number 6 700.8274000000001 0 VAKRVE I.claudius_F2_83_468_208101_peptide number 7 1459.5611 0 RAGIQAWWDLDE I.claudius_F2_83_468_208101_peptide number 8 275.3016 0 KE I.claudius_F2_83_468_208101_peptide number 9 687.739 0 LLGADAE I.claudius_F2_83_468_208101_peptide number 10 3206.4731 0 TYRKVPDTLDVWFDSGSTYSSVVANRLE I.claudius_F2_83_468_208101_peptide number 11 1344.4457 0 FNGQDIDMYLE I.claudius_F2_83_468_208101_peptide number 12 5912.6053 0 GSDQHRGWFMSSLMLSTATDSKAPYKQVLTHGFTVDGQGRKMSKSIGNIVTPQE I.claudius_F2_83_468_208101_peptide number 13 2473.7546 0 VMDKFGGDILRLWVASTDYTGE I.claudius_F2_83_468_208101_peptide number 14 680.7251000000001 0 MTVSDE I.claudius_F2_83_468_208101_peptide number 15 4228.860300000001 0 ILKRAADSYRRIRNTARFLLANLNGFDPKRDLVKPE I.claudius_F2_83_468_208101_peptide number 16 2134.4356 0 KMISLDRWAVACALDAQNE I.claudius_F2_83_468_208101_peptide number 17 2963.3491000000004 0 IKDAYDNYQFHTVVQRLMRFCSVE I.claudius_F2_83_468_208101_peptide number 18 4089.6123999999995 0 MGSFYLDIIKDRQYTTKADSLARRSCQTALWHIAE I.claudius_F2_83_468_208101_peptide number 19 1820.1163000000001 0 ALVRWMAPILSFTADE I.claudius_F2_83_468_208101_peptide number 20 1151.2712 0 IWQHLPQTE I.claudius_F2_83_468_208101_peptide number 21 532.5481 0 SARAE I.claudius_F2_83_468_208101_peptide number 22 641.7121000000001 0 FVFTE I.claudius_F2_83_468_208101_peptide number 23 147.1293 0 E I.claudius_F2_83_468_208101_peptide number 24 1130.2486999999999 0 FYQGLFGLGE I.claudius_F2_83_468_208101_peptide number 25 262.2167 0 DE I.claudius_F2_83_468_208101_peptide number 26 1992.2350999999999 0 KLDDAYWQQLIKVRSE I.claudius_F2_83_468_208101_peptide number 27 728.8374000000001 0 VNRVLE I.claudius_F2_83_468_208101_peptide number 28 859.9274 0 ISRNNKE I.claudius_F2_83_468_208101_peptide number 29 544.5984000000001 0 IGGGLE I.claudius_F2_83_468_208101_peptide number 30 218.2072 0 AE I.claudius_F2_83_468_208101_peptide number 31 909.9366000000001 0 VTVYANDE I.claudius_F2_83_468_208101_peptide number 32 1247.4 0 YRALLAQLGNE I.claudius_F2_83_468_208101_peptide number 33 1934.2803999999999 0 LRFVLITSKVDVKSLSE I.claudius_F2_83_468_208101_peptide number 34 944.9823000000001 0 KPADLADSE I.claudius_F2_83_468_208101_peptide number 35 260.2869 0 LE I.claudius_F2_83_468_208101_peptide number 36 1203.303 0 GIAVSVTRSNAE I.claudius_F2_83_468_208101_peptide number 37 1423.5755 0 KCPRCWHYSDE I.claudius_F2_83_468_208101_peptide number 38 600.6618000000001 0 IGVSPE I.claudius_F2_83_468_208101_peptide number 39 1128.3258 0 HPTLCARCVE I.claudius_F2_83_468_208101_peptide number 40 687.6993000000001 0 NVVGNGE I.claudius_F2_83_468_208101_peptide number 41 654.7572 0 VRYFA I.claudius_F2_84_95_211096_peptide number 1 695.7843 0 MGNFVE I.claudius_F2_84_95_211096_peptide number 2 1961.3103999999998 0 RSKKALNAGCDLLLLCNE I.claudius_F2_84_95_211096_peptide number 3 303.31500000000005 0 RE I.claudius_F2_84_95_211096_peptide number 4 1441.6686000000002 0 GVIQVLDNLKLTE I.claudius_F2_84_95_211096_peptide number 5 6767.616400000004 0 NQPHFMARQARLQSLFKRRVINWNDLISDQRWRLNYQKLADIQSRWLDIQAAKND I.claudius_F2_85_251_211799_peptide number 1 1164.4208999999998 0 MLRFVLRTE I.claudius_F2_85_251_211799_peptide number 2 1138.3636000000001 0 NKLPLIRRE I.claudius_F2_85_251_211799_peptide number 3 711.8896000000001 0 LPKLLE I.claudius_F2_85_251_211799_peptide number 4 735.8713 0 KLPHLE I.claudius_F2_85_251_211799_peptide number 5 1645.897 0 VISINLQPQHAAILE I.claudius_F2_85_251_211799_peptide number 6 204.1806 0 GE I.claudius_F2_85_251_211799_peptide number 7 275.2585 0 QE I.claudius_F2_85_251_211799_peptide number 8 621.7223 0 IFLTE I.claudius_F2_85_251_211799_peptide number 9 760.8344 0 QQFLPE I.claudius_F2_85_251_211799_peptide number 10 3923.4366000000005 0 NFNGIPLFIRPRGFFQTNPKVAAGLYATAQQWVAE I.claudius_F2_85_251_211799_peptide number 11 2899.346100000001 0 FPIYNLWDLFCGVGGFGLHCAKALQE I.claudius_F2_85_251_211799_peptide number 12 1369.6506000000002 0 KWGKPIKLTGIE I.claudius_F2_85_251_211799_peptide number 13 1868.1359 0 ISSSAILAASHSAKILGLE I.claudius_F2_85_251_211799_peptide number 14 1529.6495 0 HVNFQSLDAASVIE I.claudius_F2_85_251_211799_peptide number 15 503.5068 0 NKNE I.claudius_F2_85_251_211799_peptide number 16 2002.3211000000001 0 NKPDLVIVNPPRRGIGKE I.claudius_F2_85_251_211799_peptide number 17 347.3642 0 LSE I.claudius_F2_85_251_211799_peptide number 18 5722.616500000001 0 FLNQIQPHFILYSSCNAMTMGKDLQHLTCYKPLKIQLFDMFPQTSHYE I.claudius_F2_85_251_211799_peptide number 19 684.8643000000001 0 VLVLLE I.claudius_F2_85_251_211799_peptide number 20 657.8058000000001 0 RKKIN I.claudius_F2_86_117_214643_peptide number 1 4401.012199999999 0 MVHFHGSTLIPLMALDNRSQLIPQGFLTQCRVYGQDPSE I.claudius_F2_86_117_214643_peptide number 2 2260.5472 0 AKSRQLNWDPQYKLIALSE I.claudius_F2_86_117_214643_peptide number 3 1075.3027000000002 0 LIWFRLVE I.claudius_F2_86_117_214643_peptide number 4 2946.3249 0 FQSFHRSTHVNQGLLNLQLHKLAKE I.claudius_F2_86_117_214643_peptide number 5 791.8716 0 IHYQCE I.claudius_F2_86_117_214643_peptide number 6 2035.3028 0 NLKFLRQFFSFNTPFE I.claudius_F2_86_117_214643_peptide number 7 415.4861 0 IHF I.claudius_F2_87_50_215910_peptide number 1 4686.4793 0 MPIVRRAIKSALAGAIIMASAHLASSICPIASSACGSSKDCDTALPE I.claudius_F2_87_50_215910_peptide number 2 220.2893 0 MA I.claudius_F2_88_215_216399_peptide number 1 531.6263 0 MPRE I.claudius_F2_88_215_216399_peptide number 2 1525.7435999999998 0 KLLAFGAKALSDYE I.claudius_F2_88_215_216399_peptide number 3 6340.568699999999 0 LLAIFLRTGIKGCPVMSLSKNVLTHFGPLHALLSADKKAFCSVKGLGITQFIQLQAITE I.claudius_F2_88_215_216399_peptide number 4 2393.7776000000003 0 MTKRYLKQDMLSTPIINDPE I.claudius_F2_88_215_216399_peptide number 5 1063.2872 0 TVKLFLLTE I.claudius_F2_88_215_216399_peptide number 6 525.5554000000001 0 LQHE I.claudius_F2_88_215_216399_peptide number 7 147.1293 0 E I.claudius_F2_88_215_216399_peptide number 8 303.31500000000005 0 RE I.claudius_F2_88_215_216399_peptide number 9 2130.5546 0 VFMVLFLDNQHRLIKKE I.claudius_F2_88_215_216399_peptide number 10 1884.1817999999998 0 RLFLGTIYVSAVYPRE I.claudius_F2_88_215_216399_peptide number 11 501.6168 0 IIKE I.claudius_F2_88_215_216399_peptide number 12 4068.5219 0 ALYCNAAALILAHNHPSGITEPSYSDQLITKKIQDAAE I.claudius_F2_88_215_216399_peptide number 13 391.48300000000006 0 LME I.claudius_F2_88_215_216399_peptide number 14 2165.4678999999996 0 IRVLDHLIVGKSDCYSFAE I.claudius_F2_88_215_216399_peptide number 15 461.576 0 NCLL I.claudius_F2_89_455_218023_peptide number 1 2889.3302 0 MTMITPVQAILASNQHFLDRQDVME I.claudius_F2_89_455_218023_peptide number 2 2986.3625999999995 0 SNVRSYPRKLPFAYAKAQGCWVTDVE I.claudius_F2_89_455_218023_peptide number 3 318.2832 0 GNE I.claudius_F2_89_455_218023_peptide number 4 5244.968199999999 0 YLDFLAGAGTLALGHNHPILMQAIKDVLDSGLPLHTLDLTTPLKDAFSE I.claudius_F2_89_455_218023_peptide number 5 147.1293 0 E I.claudius_F2_89_455_218023_peptide number 6 2658.9532000000004 0 LLSFFPKDKYILQFTGPSGADANE I.claudius_F2_89_455_218023_peptide number 7 4291.8862 0 AAIKLAKTYTGRGNIIAFSGGFHGMTQGALALTGNLGAKNAVE I.claudius_F2_89_455_218023_peptide number 8 1659.9253999999999 0 NLMPGVQFMPYPHE I.claudius_F2_89_455_218023_peptide number 9 1098.2318 0 YRCPFGIGGE I.claudius_F2_89_455_218023_peptide number 10 644.7177 0 AGAKAVE I.claudius_F2_89_455_218023_peptide number 11 585.6057000000001 0 QYFE I.claudius_F2_89_455_218023_peptide number 12 521.5634 0 NFIE I.claudius_F2_89_455_218023_peptide number 13 361.3478 0 DVE I.claudius_F2_89_455_218023_peptide number 14 1182.4097000000002 0 SGVVKPAAVILE I.claudius_F2_89_455_218023_peptide number 15 516.5453 0 AIQGE I.claudius_F2_89_455_218023_peptide number 16 1686.9492 0 GGVVSAPISFLQKVRE I.claudius_F2_89_455_218023_peptide number 17 1482.7438000000002 0 VTQKHGILMIVDE I.claudius_F2_89_455_218023_peptide number 18 1705.9574 0 VQAGFCRSGRMFAFE I.claudius_F2_89_455_218023_peptide number 19 2985.5434000000005 0 HAGIEPDIIVMSKAVGGSLPLAVLAIRKE I.claudius_F2_89_455_218023_peptide number 20 3642.0430000000006 0 FDAWQPAGHTGTFRGNQLAMATGYASLKIMRDE I.claudius_F2_89_455_218023_peptide number 21 886.9063 0 NLAQNAQE I.claudius_F2_89_455_218023_peptide number 22 360.3663 0 RGE I.claudius_F2_89_455_218023_peptide number 23 979.0879000000001 0 YLTNALRE I.claudius_F2_89_455_218023_peptide number 24 475.53650000000005 0 LSKE I.claudius_F2_89_455_218023_peptide number 25 2308.6995 0 YPCIGNVRGRGLMMGIDIVDE I.claudius_F2_89_455_218023_peptide number 26 1696.7967 0 RQSKDATGAYPRDCE I.claudius_F2_89_455_218023_peptide number 27 1874.2944 0 LAAAIQKACFKNKLLLE I.claudius_F2_89_455_218023_peptide number 28 2198.4663000000005 0 RGGRGGNVVRVLCAVNINQSE I.claudius_F2_89_455_218023_peptide number 29 250.2722 0 CE I.claudius_F2_89_455_218023_peptide number 30 147.1293 0 E I.claudius_F2_89_455_218023_peptide number 31 2120.5401 0 FIKRFKQSVVDALKVVRS I.claudius_F2_90_319_220764_peptide number 1 1164.4392 0 MQKVKVICSE I.claudius_F2_90_319_220764_peptide number 2 8036.246800000005 0 NAHFSVQKNMAMMGMGFQSVVTVPSNANAQMDLIALKQTLAQLKADGKITACIVATAGTTDAGAIDDLKAIRKLADE I.claudius_F2_90_319_220764_peptide number 3 3371.7511000000004 0 YQAWLHVDAAWGGALLLSKDYRYFLDGIE I.claudius_F2_90_319_220764_peptide number 4 3224.6387000000004 0 LTDSITLDFHKHFFQTISCGAFLLKDPE I.claudius_F2_90_319_220764_peptide number 5 1911.0314999999998 0 NYRFIDYKADYLNSE I.claudius_F2_90_319_220764_peptide number 6 425.3900000000001 0 YDE I.claudius_F2_90_319_220764_peptide number 7 3212.7009 0 AHGVPNLVAKSLQTTRRFDALKLWFTLE I.claudius_F2_90_319_220764_peptide number 8 388.41610000000003 0 ALGE I.claudius_F2_90_319_220764_peptide number 9 1820.0717000000002 0 DLYASMIDHGVKLTKE I.claudius_F2_90_319_220764_peptide number 10 246.2604 0 VE I.claudius_F2_90_319_220764_peptide number 11 1207.2435 0 QYINDTPDLE I.claudius_F2_90_319_220764_peptide number 12 2493.9167 0 MLVPSQFASVLFRVVPKDYPAE I.claudius_F2_90_319_220764_peptide number 13 1348.4145000000003 0 FIDALNQNVADE I.claudius_F2_90_319_220764_peptide number 14 691.7757 0 LFARGE I.claudius_F2_90_319_220764_peptide number 15 2716.1555000000008 0 ANIGVTKVGDKQSLKMTTLSPIATLE I.claudius_F2_90_319_220764_peptide number 16 1328.5541 0 NVKALLTQVLTE I.claudius_F2_90_319_220764_peptide number 17 2031.2265000000002 0 ANRIKDDIKNGTYTPPID I.claudius_F2_91_76_230415_peptide number 1 8094.7661000000035 0 MFVVIQLVILNVITCVDFAFVFAHKNAKCLAIIKTTKTVKSSVLIGFALLIILSSLITSTIKLISFHTNTANIE I.claudius_F2_91_76_230415_peptide number 2 146.1876 0 K I.claudius_F2_92_104_231785_peptide number 1 1466.7874000000002 0 MPAQFAMMNALIE I.claudius_F2_92_104_231785_peptide number 2 3097.3304000000003 0 DAADFRRTGSAALDLCYVASNRIDGYFE I.claudius_F2_92_104_231785_peptide number 3 1848.1512000000002 0 MGLKAWDCAAGDLIVRE I.claudius_F2_92_104_231785_peptide number 4 3094.4572000000003 0 AGGLVCDFDAGNSYLRSGNIIAAPSRVIKE I.claudius_F2_92_104_231785_peptide number 5 1344.6461000000002 0 MLNKIRPCLGAE I.claudius_F2_92_104_231785_peptide number 6 416.4311 0 FNH I.claudius_F2_93_474_232691_peptide number 1 7985.351500000001 0 MLQDVGLIFHPPLLYVGYVGFAVNFAMSLSALIYNQSARQIARSMRGWVLVSWLFLTIGIVLGAWWAYYE I.claudius_F2_93_474_232691_peptide number 2 1634.7880000000002 0 LGWGGWWFWDPVE I.claudius_F2_93_474_232691_peptide number 3 2281.7352 0 NASLMPWLLGLALLHSLMATE I.claudius_F2_93_474_232691_peptide number 4 7800.014000000002 0 KQGVFSYWTTLFSLLAFAFSVLGTFIVRSGALTSVHAFALDNTRGYVLLLIFFVLTALAFGLFALRAGSSSE I.claudius_F2_93_474_232691_peptide number 5 19047.7207 0 SAVKFQFISKSGGILLLNILLTIATVSTFLGTFYPMLFQAMNWGSISVGSPYFNSIFFPIITAILILMVIVLSIRKGQFDRTLLIRCGWLLIPSLILAGLMIWQQLRNNSALHFHAFAFVLLTLAIWLLFVTLWQNWRQIRLSQFGMILAHCGVAIVTIGAVMSGYFGSE I.claudius_F2_93_474_232691_peptide number 6 1888.0859000000003 0 IGVRLAPQQSQTLGQYE I.claudius_F2_93_474_232691_peptide number 7 1227.2845 0 FHYRQFSNE I.claudius_F2_93_474_232691_peptide number 8 847.9117 0 IGPNFTAE I.claudius_F2_93_474_232691_peptide number 9 1685.8734 0 VAFFDVTKNGKPYAE I.claudius_F2_93_474_232691_peptide number 10 470.5597 0 IIPE I.claudius_F2_93_474_232691_peptide number 11 1707.9288000000001 0 RRYYDVRTMTMSE I.claudius_F2_93_474_232691_peptide number 12 2385.646 0 VGLDGGFWGDLYIVMGDSLGKGE I.claudius_F2_93_474_232691_peptide number 13 4427.271100000001 0 FTFRLHYKPLIRWLWAGGILMAFGALFSVFGLRRKQE I.claudius_F2_93_474_232691_peptide number 14 146.1876 0 K I.claudius_F2_94_79_235557_peptide number 1 734.8619000000001 0 MTQKVE I.claudius_F2_94_79_235557_peptide number 2 615.6763 0 QLLNE I.claudius_F2_94_79_235557_peptide number 3 887.9773 0 ALAKDKNE I.claudius_F2_94_79_235557_peptide number 4 1316.54 0 VSSLSLLATIALE I.claudius_F2_94_79_235557_peptide number 5 4829.4607000000005 0 NRQYQQAGMYLQQLLDSGNAAVDRRSVIQRMKMLDFLQRGE I.claudius_F2_94_79_235557_peptide number 6 542.5859 0 KGQNP I.claudius_F2_95_234_236294_peptide number 1 1551.761 0 MPGLGATPFGYQIAE I.claudius_F2_95_234_236294_peptide number 2 2287.6572 0 QFGIPVIPPRASLVPFTYRE I.claudius_F2_95_234_236294_peptide number 3 5699.4904 0 TDKFLTALSGISLPVTITALCGKSFYNQLLFTHRGISGPAVLQISNYWQPTE I.claudius_F2_95_234_236294_peptide number 4 333.33770000000004 0 SVE I.claudius_F2_95_234_236294_peptide number 5 1163.2803000000001 0 IDLLPNHNVE I.claudius_F2_95_234_236294_peptide number 6 147.1293 0 E I.claudius_F2_95_234_236294_peptide number 7 147.1293 0 E I.claudius_F2_95_234_236294_peptide number 8 3104.7950000000005 0 INQAKQSSPKQMLKTILVRLLPKKLVE I.claudius_F2_95_234_236294_peptide number 9 559.6544 0 LWIE I.claudius_F2_95_234_236294_peptide number 10 787.8151 0 QGIVQDE I.claudius_F2_95_234_236294_peptide number 11 2517.9246 0 VIANISKVRVKNLVDFIHHWE I.claudius_F2_95_234_236294_peptide number 12 764.7801000000001 0 FTPNGTE I.claudius_F2_95_234_236294_peptide number 13 695.7214000000001 0 GYRTAE I.claudius_F2_95_234_236294_peptide number 14 1783.0733 0 VTMGGVDTKVISSKTME I.claudius_F2_95_234_236294_peptide number 15 1313.4118 0 SNQVSGLYFIGE I.claudius_F2_95_234_236294_peptide number 16 3350.7137 0 VLDVTGWLGGYNFQWAWSSAYACALSISRQ I.claudius_F2_96_236_237719_peptide number 1 808.8543000000001 0 MSTAVGDE I.claudius_F2_96_236_237719_peptide number 2 1862.0684 0 GGFAPNLASNADALACIKE I.claudius_F2_96_236_237719_peptide number 3 317.3383 0 AVE I.claudius_F2_96_236_237719_peptide number 4 2058.3332 0 KAGYVLGKDVTLAMDCASSE I.claudius_F2_96_236_237719_peptide number 5 699.7514000000001 0 FYNKE I.claudius_F2_96_236_237719_peptide number 6 612.6526000000001 0 NGMYE I.claudius_F2_96_236_237719_peptide number 7 463.5490000000001 0 MKGE I.claudius_F2_96_236_237719_peptide number 8 882.9145000000001 0 GKSFTSQE I.claudius_F2_96_236_237719_peptide number 9 808.8773000000001 0 FTHYLE I.claudius_F2_96_236_237719_peptide number 10 147.1293 0 E I.claudius_F2_96_236_237719_peptide number 11 491.60210000000006 0 LCKE I.claudius_F2_96_236_237719_peptide number 12 819.9414 0 YPIVSIE I.claudius_F2_96_236_237719_peptide number 13 562.4846 0 DGQDE I.claudius_F2_96_236_237719_peptide number 14 535.5039 0 SDWE I.claudius_F2_96_236_237719_peptide number 15 3368.8321000000014 0 GFAYQTKVLGDRVQLVGDDLFVTNTKILKE I.claudius_F2_96_236_237719_peptide number 16 317.33820000000003 0 GIE I.claudius_F2_96_236_237719_peptide number 17 2046.3668000000002 0 KGIANSILIKFNQIGSLTE I.claudius_F2_96_236_237719_peptide number 18 2390.7141000000006 0 TLAAIKMAKDAGYTAVISHRSGE I.claudius_F2_96_236_237719_peptide number 19 248.23319999999998 0 TE I.claudius_F2_96_236_237719_peptide number 20 3935.4228000000003 0 DATIADLAVGTAAGQIKTGSMSRSDRIAKYNQLIRIE I.claudius_F2_96_236_237719_peptide number 21 147.1293 0 E I.claudius_F2_96_236_237719_peptide number 22 331.36480000000006 0 ALE I.claudius_F2_96_236_237719_peptide number 23 1740.0151 0 RAGTPAAFPGLKAVKGQA I.claudius_F2_97_73_239304_peptide number 1 7395.2597000000005 0 MAARAISSFLGPSYHPGNRAVTTPTGQVVQPQTNRSVGKPMLVKGNAGSMNSKPVSRGGFSSPNKTHRSSGG I.claudius_F2_98_218_240051_peptide number 1 805.8569 0 MQDAGRE I.claudius_F2_98_218_240051_peptide number 2 2834.0145 0 DWGNVDYLADVAYNAGWNIHQLAVE I.claudius_F2_98_218_240051_peptide number 3 796.7788000000002 0 DIGYNSE I.claudius_F2_98_218_240051_peptide number 4 1546.7198000000003 0 TKKFVDLNDQPIE I.claudius_F2_98_218_240051_peptide number 5 1153.4329 0 MLFKLYPLE I.claudius_F2_98_218_240051_peptide number 6 741.7913000000001 0 WLSHAE I.claudius_F2_98_218_240051_peptide number 7 1045.1494 0 FARHITTAE I.claudius_F2_98_218_240051_peptide number 8 4782.611 0 TRFIEPAWKMLLSNKALLAKLWARYPNHPHLLPAYFTPFE I.claudius_F2_98_218_240051_peptide number 9 2010.4458000000002 0 LPKDLSMWVKKPLLGRE I.claudius_F2_98_218_240051_peptide number 10 962.0127000000001 0 GANVFYYE I.claudius_F2_98_218_240051_peptide number 11 659.6892 0 KNNGVE I.claudius_F2_98_218_240051_peptide number 12 708.7599000000001 0 FAAKGSE I.claudius_F2_98_218_240051_peptide number 13 2055.1618 0 HSTFYGNSGYVYQQKFE I.claudius_F2_98_218_240051_peptide number 14 2870.325100000001 0 LPSFDGMYPIIGSWVVGDVACGMGLRE I.claudius_F2_98_218_240051_peptide number 15 2164.3308 0 DFTAVTGNDSHFIPHYFVP I.claudius_F2_99_76_242227_peptide number 1 7556.837700000002 0 MSCVTVKVPNAPEPLACIRRSGITSRTKSANFSLSHKSCASNGPRGPAVKLFWLSATGAPLPIVKFVAAKCE I.claudius_F2_99_76_242227_peptide number 2 340.3782 0 KGH I.claudius_F2_100_303_242728_peptide number 1 2186.5931000000005 0 MSTKFNVKTFQGMILALQE I.claudius_F2_100_303_242728_peptide number 2 1902.1108000000004 0 YWANQGCTIVQPFDME I.claudius_F2_100_303_242728_peptide number 3 4045.5204000000003 0 VGAGTSHPMTALRALGPEPMAFAYVQPSRRPTDGRYGE I.claudius_F2_100_303_242728_peptide number 4 2928.2170000000006 0 NPNRLQHYYQFQVVIKPSPDNIQE I.claudius_F2_100_303_242728_peptide number 5 793.9040000000001 0 LYLGSLE I.claudius_F2_100_303_242728_peptide number 6 1782.0253 0 MLGFDPTKNDIRFVE I.claudius_F2_100_303_242728_peptide number 7 562.5292000000001 0 DNWE I.claudius_F2_100_303_242728_peptide number 8 1300.4178000000002 0 NPTLGAWGLGWE I.claudius_F2_100_303_242728_peptide number 9 847.9779000000001 0 VWLNGME I.claudius_F2_100_303_242728_peptide number 10 1616.7682000000002 0 VTQFTYFQQVGGLE I.claudius_F2_100_303_242728_peptide number 11 732.846 0 CKPVTGE I.claudius_F2_100_303_242728_peptide number 12 680.7465000000001 0 VTYGLE I.claudius_F2_100_303_242728_peptide number 13 3975.352500000001 0 RLAMYIQGVDSVYDLVWSDGPLGKTTYGDVFHQNE I.claudius_F2_100_303_242728_peptide number 14 246.2604 0 VE I.claudius_F2_100_303_242728_peptide number 15 887.8895 0 QSTYNFE I.claudius_F2_100_303_242728_peptide number 16 1913.0258000000001 0 HANTDFLFYCFDQYE I.claudius_F2_100_303_242728_peptide number 17 275.3016 0 KE I.claudius_F2_100_303_242728_peptide number 18 346.3364 0 AQE I.claudius_F2_100_303_242728_peptide number 19 557.6800000000001 0 LLALE I.claudius_F2_100_303_242728_peptide number 20 1027.2136 0 KPLPLPAYE I.claudius_F2_100_303_242728_peptide number 21 2453.8377000000005 0 RILKAAHSFNLLDARKAISVTE I.claudius_F2_100_303_242728_peptide number 22 2043.4194000000002 0 RQRYILRIRALTKGVAE I.claudius_F2_100_303_242728_peptide number 23 858.8947000000001 0 AYYASRE I.claudius_F2_100_303_242728_peptide number 24 920.1299999999999 0 ALGFPGCKK I.claudius_F2_101_689_244687_peptide number 1 1082.2276000000002 0 MTTQNFLVE I.claudius_F2_101_689_244687_peptide number 2 418.4421 0 IGTE I.claudius_F2_101_689_244687_peptide number 3 147.1293 0 E I.claudius_F2_101_689_244687_peptide number 4 1915.1908999999998 0 LPPKALKTLATSFADNVE I.claudius_F2_101_689_244687_peptide number 5 218.2072 0 AE I.claudius_F2_101_689_244687_peptide number 6 1334.4740000000002 0 LNQAGLSFDKIE I.claudius_F2_101_689_244687_peptide number 7 2624.0483000000004 0 WFAAPRRLAVKVLNLATQQPSKE I.claudius_F2_101_689_244687_peptide number 8 260.2869 0 IE I.claudius_F2_101_689_244687_peptide number 9 1318.4351000000001 0 KRGPAVSAAFDAE I.claudius_F2_101_689_244687_peptide number 10 800.9001000000001 0 GKPTKAAE I.claudius_F2_101_689_244687_peptide number 11 1148.2922 0 GWARGCGITVE I.claudius_F2_101_689_244687_peptide number 12 346.3364 0 QAE I.claudius_F2_101_689_244687_peptide number 13 888.9653999999999 0 RIATDKGE I.claudius_F2_101_689_244687_peptide number 14 1165.3872000000001 0 WLIHRAKIE I.claudius_F2_101_689_244687_peptide number 15 5352.2822 0 GQPTKNLLNDIVANALAKLPIPKPMRWADKTVQFIRPVHTVTMLLGDE I.claudius_F2_101_689_244687_peptide number 16 373.44450000000006 0 LIE I.claudius_F2_101_689_244687_peptide number 17 204.1806 0 GE I.claudius_F2_101_689_244687_peptide number 18 1953.2520000000002 0 ILGVASARTIRGHRFLGE I.claudius_F2_101_689_244687_peptide number 19 275.3016 0 KE I.claudius_F2_101_689_244687_peptide number 20 1921.1157 0 FYIQHADQYPQLLRE I.claudius_F2_101_689_244687_peptide number 21 1065.1342000000002 0 KGSVVADFNE I.claudius_F2_101_689_244687_peptide number 22 502.5652 0 RKAE I.claudius_F2_101_689_244687_peptide number 23 1856.1253000000002 0 ILAKSQAKATALGGVADIE I.claudius_F2_101_689_244687_peptide number 24 147.1293 0 E I.claudius_F2_101_689_244687_peptide number 25 460.5218 0 SLLE I.claudius_F2_101_689_244687_peptide number 26 147.1293 0 E I.claudius_F2_101_689_244687_peptide number 27 646.7303 0 VTSLVE I.claudius_F2_101_689_244687_peptide number 28 1151.3111000000001 0 YPNVLAAKFE I.claudius_F2_101_689_244687_peptide number 29 147.1293 0 E I.claudius_F2_101_689_244687_peptide number 30 883.0022 0 HFLAVPAE I.claudius_F2_101_689_244687_peptide number 31 4102.707200000001 0 ALVYTMKGDQKYFPIYDKDGKLLPHFIFVSNINPE I.claudius_F2_101_689_244687_peptide number 32 757.8289000000001 0 DPTAIIE I.claudius_F2_101_689_244687_peptide number 33 318.2832 0 GNE I.claudius_F2_101_689_244687_peptide number 34 1283.4772 0 KVVRPRLTDAE I.claudius_F2_101_689_244687_peptide number 35 2393.8239000000003 0 FFFKTDLKQKLVDRLPRLE I.claudius_F2_101_689_244687_peptide number 36 2233.5204 0 TVLFQQQLGTLKDKTDRIE I.claudius_F2_101_689_244687_peptide number 37 516.5453 0 QLAGE I.claudius_F2_101_689_244687_peptide number 38 944.0405000000001 0 IAKQIGADE I.claudius_F2_101_689_244687_peptide number 39 2326.801 0 AKAKRAGLLSKCDLMTNMVFE I.claudius_F2_101_689_244687_peptide number 40 2052.2077000000004 0 FTDTQGVMGMHYARHDGE I.claudius_F2_101_689_244687_peptide number 41 262.2167 0 DE I.claudius_F2_101_689_244687_peptide number 42 147.1293 0 E I.claudius_F2_101_689_244687_peptide number 43 714.8075000000001 0 VAVALNE I.claudius_F2_101_689_244687_peptide number 44 1213.3193 0 QYMPRFAGDE I.claudius_F2_101_689_244687_peptide number 45 5208.064100000001 0 LPKSLVASAVALADKFDTLTGIFGIGQAPKGSADPFALRRAALGALRIIVE I.claudius_F2_101_689_244687_peptide number 46 941.0796000000001 0 KNLPLDLE I.claudius_F2_101_689_244687_peptide number 47 4360.9005 0 DLVKKSAALFGDKLTNQNVVADVVDFMLGRFRAWYQDE I.claudius_F2_101_689_244687_peptide number 48 4177.684699999999 0 GIAVDVIQAVLARRPTRPADFDARVRAVSHFRTLDSAE I.claudius_F2_101_689_244687_peptide number 49 2109.4294 0 ALAAANKRVSNILAKAGAAIGE I.claudius_F2_101_689_244687_peptide number 50 1159.3100000000002 0 INLTACVEPAE I.claudius_F2_101_689_244687_peptide number 51 530.615 0 KALAE I.claudius_F2_101_689_244687_peptide number 52 872.0210000000001 0 AVLALRTE I.claudius_F2_101_689_244687_peptide number 53 3965.4422 0 VQPLIAQGDYTTVLDKLANLRAPVDSFFDNVMVNAE I.claudius_F2_101_689_244687_peptide number 54 3220.7193999999995 0 DPALRQNRLAILNTLQGLFLQVADISVLQ I.claudius_F2_102_50_250010_peptide number 1 1732.9943999999998 0 MPLKAPSKFLPSNSSE I.claudius_F2_102_50_250010_peptide number 2 3425.0459 0 FTNLPCSTKACLVKSISSSASGAITCLIGKLYF I.claudius_F2_103_240_251454_peptide number 1 391.48300000000006 0 MIE I.claudius_F2_103_240_251454_peptide number 2 5803.686200000001 0 LDQTNIPKHVAIIMDGNGRWAKQKNKMRIFGHTNGVTAVRKAVAYARQIGVE I.claudius_F2_103_240_251454_peptide number 3 1129.2592000000002 0 VLTLYAFSSE I.claudius_F2_103_240_251454_peptide number 4 787.8199999999999 0 NWSRPE I.claudius_F2_103_240_251454_peptide number 5 275.2585 0 QE I.claudius_F2_103_240_251454_peptide number 6 1725.0385 0 ISALMSLFMQALDRE I.claudius_F2_103_240_251454_peptide number 7 2542.0089999999996 0 VKKLHKNNICLKIIGDVSRFSE I.claudius_F2_103_240_251454_peptide number 8 489.5200000000001 0 TLQE I.claudius_F2_103_240_251454_peptide number 9 715.8817000000001 0 KIKKAE I.claudius_F2_103_240_251454_peptide number 10 475.49340000000007 0 NLTE I.claudius_F2_103_240_251454_peptide number 11 2991.377000000001 0 KNTALTLNIAANYGGCWDIIQAAKQIAE I.claudius_F2_103_240_251454_peptide number 12 630.7773000000001 0 KVKKE I.claudius_F2_103_240_251454_peptide number 13 147.1293 0 E I.claudius_F2_103_240_251454_peptide number 14 3493.8132000000005 0 MSVSDINNSTFQHHLATQNAPPVDLLIRTSGE I.claudius_F2_103_240_251454_peptide number 15 1852.0966 0 QRISNFLLWQIAYAE I.claudius_F2_103_240_251454_peptide number 16 1886.0633 0 LYFSDVLWPDFNQLE I.claudius_F2_103_240_251454_peptide number 17 2294.4907000000003 0 FNRAIASYQQRHRRFGGTE I.claudius_F2_104_69_254192_peptide number 1 3255.9524 0 MALISVNLGIMNLFPLPVLDGGHLVFLTME I.claudius_F2_104_69_254192_peptide number 2 914.0578000000002 0 AVKGKPVSE I.claudius_F2_104_69_254192_peptide number 3 3313.9536000000007 0 RVQSICYRIGAALLLSLTVFALFNDFLRL I.claudius_F2_105_602_255000_peptide number 1 278.32540000000006 0 ME I.claudius_F2_105_602_255000_peptide number 2 1934.1557 0 LQPDSWWKLWGNKFE I.claudius_F2_105_602_255000_peptide number 3 550.5616 0 GAQFE I.claudius_F2_105_602_255000_peptide number 4 3517.8081 0 KDLQSIRDYYLNNGYAKAQITKTDVQLNDE I.claudius_F2_105_602_255000_peptide number 5 1359.5252 0 KTKVNVTIDVNE I.claudius_F2_105_602_255000_peptide number 6 2221.4928999999997 0 GLQYDLRSARIIGNLGGMSAE I.claudius_F2_105_602_255000_peptide number 7 2624.8988999999997 0 LEPLLSALHLNDTFRRSDIADVE I.claudius_F2_105_602_255000_peptide number 8 943.0988000000001 0 NAIKAKLGE I.claudius_F2_105_602_255000_peptide number 9 4523.029599999999 0 RGYGSATVNSVPDFDDANKTLAITLVVDAGRRLTVRQLRFE I.claudius_F2_105_602_255000_peptide number 10 1377.4145 0 GNTVSADSTLRQE I.claudius_F2_105_602_255000_peptide number 11 690.7695 0 MRQQE I.claudius_F2_105_602_255000_peptide number 12 1196.2655000000002 0 GTWYNSQLVE I.claudius_F2_105_602_255000_peptide number 13 1551.7875000000001 0 LGKIRLDRTGFFE I.claudius_F2_105_602_255000_peptide number 14 347.36430000000007 0 TVE I.claudius_F2_105_602_255000_peptide number 15 1343.3566 0 NRIDPINGSNDE I.claudius_F2_105_602_255000_peptide number 16 1078.259 0 VDVVYKVKE I.claudius_F2_105_602_255000_peptide number 17 1585.6729 0 RNTGSINFGIGYGTE I.claudius_F2_105_602_255000_peptide number 18 5944.3953 0 SGISYQASVKQDNFLGTGAAVSIAGTKNDYGTSVNLGYTEPYFTKDGVSLGGNVFFE I.claudius_F2_105_602_255000_peptide number 19 3359.4809000000005 0 NYDNSKSDTSSNYKRTTYGSNVTLGFPVNE I.claudius_F2_105_602_255000_peptide number 20 2404.5879999999997 0 NNSYYVGLGHTYNKISNFALE I.claudius_F2_105_602_255000_peptide number 21 14170.667500000007 0 YNRNLYIQSMKFKGNGIKTNDFDFSFGWNYNSLNRGYFPTKGVKASLGGRVTIPGSDNKYYKLSADVQGFYPLDRDHLWVVSAKASAGYANGFGNKRLPFYQTYTAGGIGSLRGFAYGSIGPNAIYAE I.claudius_F2_105_602_255000_peptide number 22 2646.82 0 HGNGNGTFKKISSDVIGGNAITTASAE I.claudius_F2_105_602_255000_peptide number 23 9449.648500000003 0 LIVPTPFVSDKSQNTVRTSLFVDAASVWNTKWKSDKSGLDNNVLKSLPDYGKSSRIRASTGVGFQWQSPIGPLVFSYAKPIKKYE I.claudius_F2_105_602_255000_peptide number 24 590.5378000000001 0 NDDVE I.claudius_F2_105_602_255000_peptide number 25 1117.2102 0 QFQFSIGGSF I.claudius_F2_106_51_259053_peptide number 1 5170.0108 0 MQLRALLLFSVHQQNLRPQLIRQFLHRVSIVQLLDHLGKQHDE I.claudius_F2_106_51_259053_peptide number 2 898.985 0 YSCSHRF I.claudius_F2_107_57_262516_peptide number 1 1235.406 0 MVLYPLQADGE I.claudius_F2_107_57_262516_peptide number 2 5019.896200000001 0 TLIQTSSHQQQTRPLPLKVRQFPLLMQHLKRPIMRPLSSFHE I.claudius_F2_107_57_262516_peptide number 3 393.4773 0 YVL I.claudius_F2_108_81_270340_peptide number 1 6047.020300000002 0 MGSKYTNVGTITNPPPIPNNPARKPANAPTSKQRRIKVNIIGLLIYKNGVSCILSE I.claudius_F2_108_81_270340_peptide number 2 1710.9504 0 NIFCLPNNAVNLLHE I.claudius_F2_108_81_270340_peptide number 3 1074.3612 0 MRKILVDCP I.claudius_F2_109_119_272462_peptide number 1 868.0125 0 MGRKTFE I.claudius_F2_109_119_272462_peptide number 2 2324.7237 0 SIGRPLPKRTNIVLSRQLFE I.claudius_F2_109_119_272462_peptide number 3 284.2686 0 HE I.claudius_F2_109_119_272462_peptide number 4 1080.1901 0 GVIWKDSFE I.claudius_F2_109_119_272462_peptide number 5 1298.3575999999998 0 SAVNFVRDFDE I.claudius_F2_109_119_272462_peptide number 6 788.9521 0 IMLIGGGE I.claudius_F2_109_119_272462_peptide number 7 2440.8306000000002 0 LFKQYLPKADKLYLTQIQTE I.claudius_F2_109_119_272462_peptide number 8 1581.6792 0 LDGDTFFPQLNWE I.claudius_F2_109_119_272462_peptide number 9 147.1293 0 E I.claudius_F2_109_119_272462_peptide number 10 333.3392 0 WE I.claudius_F2_109_119_272462_peptide number 11 260.2869 0 IE I.claudius_F2_109_119_272462_peptide number 12 409.39060000000006 0 FDE I.claudius_F2_109_119_272462_peptide number 13 780.8259000000002 0 YRKADE I.claudius_F2_109_119_272462_peptide number 14 1826.1307000000002 0 QNRYDCRFLILTRK I.claudius_F2_110_329_273187_peptide number 1 3026.4017 0 MVSSQVAGNVAKINADNMDKVHAGDILVE I.claudius_F2_110_329_273187_peptide number 2 1252.3272000000002 0 LDDTNAKLSFE I.claudius_F2_110_329_273187_peptide number 3 1527.6817000000003 0 QAKSNLANAVRQVE I.claudius_F2_110_329_273187_peptide number 4 1870.0276000000001 0 QLGFTVQQLQSAVHANE I.claudius_F2_110_329_273187_peptide number 5 1867.1147 0 ISLAQAQGNLARRVQLE I.claudius_F2_110_329_273187_peptide number 6 891.0442 0 KMGAIDKE I.claudius_F2_110_329_273187_peptide number 7 845.8992000000001 0 SFQHAKE I.claudius_F2_110_329_273187_peptide number 8 317.3383 0 AVE I.claudius_F2_110_329_273187_peptide number 9 2931.3533000000007 0 LAKANLNASKNQLAANQALLRNVPLRE I.claudius_F2_110_329_273187_peptide number 10 5988.7954 0 QPQIQNAINSLKQAWLNLQRTKIRSPIDGYVARRNVQVGQAVSVGGALMAVVSNE I.claudius_F2_110_329_273187_peptide number 11 705.8221000000001 0 QMWLE I.claudius_F2_110_329_273187_peptide number 12 607.6560000000001 0 ANFKE I.claudius_F2_110_329_273187_peptide number 13 2831.2526000000007 0 TQLTNMRIGQPVKIHFDLYGKNKE I.claudius_F2_110_329_273187_peptide number 14 963.0421 0 FDGVINGIE I.claudius_F2_110_329_273187_peptide number 15 4341.9451 0 MGTGNAFSLLPSQNATGNWIKVVQRVPVRIKLDPQQFTE I.claudius_F2_110_329_273187_peptide number 16 2630.0298000000003 0 TPLRIGLSATAKVRISDSSGAMLRE I.claudius_F2_110_329_273187_peptide number 17 2016.2055 0 KTEPKTLFSTDTLKYDE I.claudius_F2_110_329_273187_peptide number 18 404.41560000000004 0 SAVE I.claudius_F2_110_329_273187_peptide number 19 487.5471 0 NLIE I.claudius_F2_110_329_273187_peptide number 20 925.9854 0 SIIQQNSH I.claudius_F2_111_175_275191_peptide number 1 10396.175100000002 0 MRILVTISFIVYAITFYWRAVTFEPSMTFVDVALPQLVQGLAVSCFFMPLTTITLSGLPAHKMASASSLFNFLRTLAGSVGTSLTTFMWYNRE I.claudius_F2_111_175_275191_peptide number 2 1035.1115 0 AVHHTQLTE I.claudius_F2_111_175_275191_peptide number 3 5061.467200000001 0 HINPYNPISQSFYHQMNQFGLSDTQTSAYLAQQITSQGFIIGANE I.claudius_F2_111_175_275191_peptide number 4 3090.723200000001 0 IFWLSAMGFLGLLIVIWFAKPPFGTQH I.claudius_F2_112_72_277886_peptide number 1 3079.4557999999993 0 MLNADTDTSGIDFAFSLISFIIADCLRE I.claudius_F2_112_72_277886_peptide number 2 1618.8105 0 RSFQSFNVMIFNE I.claudius_F2_112_72_277886_peptide number 3 373.44450000000006 0 LLE I.claudius_F2_112_72_277886_peptide number 4 1125.3815 0 VGAPAMLIPKE I.claudius_F2_112_72_277886_peptide number 5 1726.0000000000002 0 TSGVSITFFIYGCIAF I.claudius_F2_113_65_278636_peptide number 1 1600.0226000000002 0 MARIKASKVIKLIE I.claudius_F2_113_65_278636_peptide number 2 1601.9092 0 KLKLCSSINTPIRE I.claudius_F2_113_65_278636_peptide number 3 3866.6571000000004 0 IGIANIGIKIARNEPINIKITTKTIKVASPIVFMTS I.claudius_F2_114_75_281264_peptide number 1 6758.994399999999 0 MFLQISLKFGKDSYCFKLDRIVGFSCKKYQMFFHICRYCSKKGLVSSKSFSSVAINIE I.claudius_F2_114_75_281264_peptide number 2 1701.9189 0 NTLCANCSSNSSLFLK I.claudius_F2_115_74_283239_peptide number 1 7967.1707000000015 0 MLHSSLTFGSIAKSAVSLGIAFSSAAHSPRSINWQRLLQKGRKVLSFIQGTDFWQIGQGTSIISSGIFIFRLL I.claudius_F2_116_86_284625_peptide number 1 2088.6106999999997 0 MIVIFCRFLHRHKMKE I.claudius_F2_116_86_284625_peptide number 2 1469.6472 0 LNHHADRPMFCE I.claudius_F2_116_86_284625_peptide number 3 6628.565600000002 0 LLLSQHVHAVVDLDINPLQLIPLHAPYPQINTHQLHLRFHAFSPNPQLVNKPRNQQR I.claudius_F2_117_67_286202_peptide number 1 2954.402000000001 0 MTIKLASSPSRNSSITTRLPASPKALPE I.claudius_F2_117_67_286202_peptide number 2 3815.3986000000014 0 SISRTASSASCNVIATITPLPAAKPSALTTIGVPFSRK I.claudius_F2_118_51_286635_peptide number 1 391.48300000000006 0 MLE I.claudius_F2_118_51_286635_peptide number 2 3958.7161000000006 0 YLSQKYSRFLLCVPMQYQRYPVRQKLYLLME I.claudius_F2_118_51_286635_peptide number 3 2063.4157999999998 0 IVQLSKPRRVHDRRFR I.claudius_F2_119_116_291492_peptide number 1 640.7091 0 MPHQE I.claudius_F2_119_116_291492_peptide number 2 275.3016 0 KE I.claudius_F2_119_116_291492_peptide number 3 722.7467 0 NTFGRE I.claudius_F2_119_116_291492_peptide number 4 2437.7056000000002 0 FYRFNGWKLDLNSHSLITPE I.claudius_F2_119_116_291492_peptide number 5 332.3098 0 GQE I.claudius_F2_119_116_291492_peptide number 6 876.0113000000001 0 FKLPRSE I.claudius_F2_119_116_291492_peptide number 7 1153.3766 0 FRAMLHFCE I.claudius_F2_119_116_291492_peptide number 8 1042.1471 0 NPGKLQTRE I.claudius_F2_119_116_291492_peptide number 9 147.1293 0 E I.claudius_F2_119_116_291492_peptide number 10 1075.3261 0 LLKKMTGRE I.claudius_F2_119_116_291492_peptide number 11 2507.8919 0 LKPQDRTVDVTIRRIRKHFE I.claudius_F2_119_116_291492_peptide number 12 1688.8589000000004 0 DHPNTPNIIMTIHGE I.claudius_F2_119_116_291492_peptide number 13 1059.1527 0 GYRFCGDIE I.claudius_F2_120_457_292237_peptide number 1 492.5869 0 MTIE I.claudius_F2_120_457_292237_peptide number 2 11166.126400000001 0 SILSAIDSFIWGAPLLILLSGTGLYLTLRLGFIQIRYLPRALGYLFKKDKGGKGDVSSFAALCTALAATIGTGNIVGVATAVQAGGPGAIFWMWLVALLGMATKYAE I.claudius_F2_120_457_292237_peptide number 3 2895.4241 0 CLLAVKYRVRDKNGFMAGGPMYYIE I.claudius_F2_120_457_292237_peptide number 4 10198.361300000006 0 RGLGIRWLAKLFALFGVMVAFFGIGTFPQVNAITHAMQDTFNIPVLVTAIIVTLLVGLIILGGVKRIATASSVIVPFMAILYVTTSLVIILLNIE I.claudius_F2_120_457_292237_peptide number 5 4455.1375 0 KVPDAILLIIDSAFDPQAALGGAVGLTVMKAIQSGVARGIFSNE I.claudius_F2_120_457_292237_peptide number 6 5515.3429 0 SGLGSAPIAAAAAQTREPVRQGLISMTGTFLDTIIVCTMTGIVLVLTGAWNNPE I.claudius_F2_120_457_292237_peptide number 7 4580.2146 0 LAGATVTNYAFAQGLGTSIGATIVTVGLLFFAFTTILGWCYYGE I.claudius_F2_120_457_292237_peptide number 8 6984.604100000003 0 RCFVYLVGIRGVKLYRLAYIMLVGLGAFLHLNLIWIIADIVNGLMAFPNLIALIGLRKVIIE I.claudius_F2_120_457_292237_peptide number 9 147.1293 0 E I.claudius_F2_120_457_292237_peptide number 10 2213.3617000000004 0 TKDYFQRLKINHYDQDE I.claudius_F2_120_457_292237_peptide number 11 358.47630000000004 0 VIK I.claudius_F2_121_65_295773_peptide number 1 647.7415000000001 0 MVVNGE I.claudius_F2_121_65_295773_peptide number 2 1622.9038 0 DVKIGAPVVAGAKVVAE I.claudius_F2_121_65_295773_peptide number 3 814.8869 0 VVAQGRGE I.claudius_F2_121_65_295773_peptide number 4 3264.7954999999997 0 KVKIVKFRRRKHSRKQQGHRQWFTE I.claudius_F2_121_65_295773_peptide number 5 828.9962 0 VKITGIQA I.claudius_F2_122_307_296326_peptide number 1 6921.368100000002 0 MKQQPLLGFTFALITAMAWGSLPIALKQVLSVMNAQTIVWYRFIIAAVSLLALLAYKKQLPE I.claudius_F2_122_307_296326_peptide number 2 6553.858499999999 0 LMKVRQYAWIMLIGVIGLTSNFLLFSSSLNYIEPSVAQIFIHLSSFGMLICGVLIFKE I.claudius_F2_122_307_296326_peptide number 3 9978.874200000004 0 KLGLHQKIGLFLLLIGLGLFFNDRFDAFAGLNQYSTGVILGVGGALIWVAYGMAQKLMLRKFNSQQILLMMYLGCAIAFMPMADFSQVQE I.claudius_F2_122_307_296326_peptide number 4 2755.2738999999997 0 LTPLALICFIYCCLNTLIGYGSYAE I.claudius_F2_122_307_296326_peptide number 5 4473.1329000000005 0 ALNRWDVSKVSVVITLVPLFTILFSHIAHYFSPADFAAPE I.claudius_F2_122_307_296326_peptide number 6 3299.8872000000006 0 LNNISYIGAFVVVCGAILSAIGHKLLPHKNH I.claudius_F2_123_72_298617_peptide number 1 796.8881 0 MQNLYE I.claudius_F2_123_72_298617_peptide number 2 3233.7312999999995 0 LYLLLQFLDSLYQSKCGNLSLHFLFQE I.claudius_F2_123_72_298617_peptide number 3 3730.3815999999993 0 QKPLSVKTSYIQLKAQKILCLDALHKSLQPAHE I.claudius_F2_123_72_298617_peptide number 4 561.6704 0 LSVPF I.claudius_F2_124_56_299841_peptide number 1 5716.473000000001 0 MSAWFKINSAARSTNFTGVKLCAGSLIIPRTKSPHSIRANNSSCGSSSKCGNSIA I.claudius_F2_125_215_300957_peptide number 1 2948.5230000000006 0 MTSALSGARGGWIGLPVVVGIILFLYKE I.claudius_F2_125_215_300957_peptide number 2 3256.0119000000004 0 FINKKLIITLIAIITIGLTALITSPKFGIE I.claudius_F2_125_215_300957_peptide number 3 1756.9529 0 KRYNAAKSDIVSYLE I.claudius_F2_125_215_300957_peptide number 4 1939.1161000000004 0 KNNRNTSLGARFDMWE I.claudius_F2_125_215_300957_peptide number 5 871.0328 0 NALIAIKE I.claudius_F2_125_215_300957_peptide number 6 1364.3725 0 APIFGHGSDGYDE I.claudius_F2_125_215_300957_peptide number 7 3234.6883 0 FRHKQVKSKQMAKTTLNFGSLHNQYLE I.claudius_F2_125_215_300957_peptide number 8 3957.7458000000006 0 SWVKRGLVGFIALILIILTPIFYFIKNLNTHNLE I.claudius_F2_125_215_300957_peptide number 9 4900.8032 0 TKCICILGIIHIVSHIFYFTSQSFLAHNSGNIFYFSAMLCFIV I.claudius_F2_126_105_310455_peptide number 1 1601.9455 0 MNLTLLLTSLLLQE I.claudius_F2_126_105_310455_peptide number 2 876.0906000000001 0 YLLILLE I.claudius_F2_126_105_310455_peptide number 3 147.1293 0 E I.claudius_F2_126_105_310455_peptide number 4 5267.1642 0 DRKDFYPSHRLGGFCLPRHQDLPLIMQQMLNMGLPMDLGNVLLRE I.claudius_F2_126_105_310455_peptide number 5 1351.4596999999999 0 SLLDWLQQGYE I.claudius_F2_126_105_310455_peptide number 6 3011.5208000000007 0 LRLNDCLQSKPTILVLHNQALNVYMN I.claudius_F2_127_617_311961_peptide number 1 520.6003000000001 0 MKNE I.claudius_F2_127_617_311961_peptide number 2 3816.4079000000006 0 IDIKKLRNIAIIAHVDHGKTTLVDKLLQQSGTFE I.claudius_F2_127_617_311961_peptide number 3 847.8274 0 SARGDVDE I.claudius_F2_127_617_311961_peptide number 4 1078.1544999999999 0 RVMDSNDLE I.claudius_F2_127_617_311961_peptide number 5 275.3016 0 KE I.claudius_F2_127_617_311961_peptide number 6 3642.9845 0 RGITILAKNTAINWNDYRINIVDTPGHADFGGE I.claudius_F2_127_617_311961_peptide number 7 246.2604 0 VE I.claudius_F2_127_617_311961_peptide number 8 7737.8674 0 RVLSMVDSVLLVVDAFDGPMPQTRFVTQKAFAHGLKPIVVINKVDRPGARPDWVVDQVFDLFVNLGASDE I.claudius_F2_127_617_311961_peptide number 9 1991.2436 0 QLDFPIIYASALNGVAGLE I.claudius_F2_127_617_311961_peptide number 10 284.2686 0 HE I.claudius_F2_127_617_311961_peptide number 11 446.45220000000006 0 DLAE I.claudius_F2_127_617_311961_peptide number 12 851.9634000000001 0 DMTPLFE I.claudius_F2_127_617_311961_peptide number 13 1345.5864000000001 0 AIVKHVEPPKVE I.claudius_F2_127_617_311961_peptide number 14 4788.440100000002 0 LDAPFQMQISQLDYNNYVGVIGIGRIKRGSIKPNQPVTIINSE I.claudius_F2_127_617_311961_peptide number 15 2366.6808 0 GKTRQGRIGQVLGHLGLQRYE I.claudius_F2_127_617_311961_peptide number 16 147.1293 0 E I.claudius_F2_127_617_311961_peptide number 17 1563.7039000000002 0 DVAYAGDIVAITGLGE I.claudius_F2_127_617_311961_peptide number 18 1549.6988 0 LNISDTICDINTVE I.claudius_F2_127_617_311961_peptide number 19 2902.2546 0 ALPSLTVDEPTVTMFFCVNTSPFAGQE I.claudius_F2_127_617_311961_peptide number 20 1293.4686000000002 0 GKYVTSRQILE I.claudius_F2_127_617_311961_peptide number 21 658.7475000000001 0 RLNKE I.claudius_F2_127_617_311961_peptide number 22 1149.3433 0 LVHNVALRVE I.claudius_F2_127_617_311961_peptide number 23 147.1293 0 E I.claudius_F2_127_617_311961_peptide number 24 671.6536000000001 0 TPNPDE I.claudius_F2_127_617_311961_peptide number 25 906.9856 0 FRVSGRGE I.claudius_F2_127_617_311961_peptide number 26 923.1074000000001 0 LHLSVLIE I.claudius_F2_127_617_311961_peptide number 27 704.7994000000001 0 NMRRE I.claudius_F2_127_617_311961_peptide number 28 367.35390000000007 0 GYE I.claudius_F2_127_617_311961_peptide number 29 2604.9541 0 LAVSRPKVIYRDIDGKKQEPYE I.claudius_F2_127_617_311961_peptide number 30 802.8696 0 QVTIDVE I.claudius_F2_127_617_311961_peptide number 31 147.1293 0 E I.claudius_F2_127_617_311961_peptide number 32 914.9828000000001 0 QHQGSVME I.claudius_F2_127_617_311961_peptide number 33 842.9830000000001 0 ALGIRKGE I.claudius_F2_127_617_311961_peptide number 34 1741.0248000000001 0 VRDMLPDGKGRVRLE I.claudius_F2_127_617_311961_peptide number 35 3820.2641 0 YIIPSRGLIGFRGDFMTMTSGTGLLYSSFSHYDE I.claudius_F2_127_617_311961_peptide number 36 502.56180000000006 0 IKGGE I.claudius_F2_127_617_311961_peptide number 37 2819.2185000000004 0 IGQRKNGVLISNATGKALGYALFGLQE I.claudius_F2_127_617_311961_peptide number 38 1259.4754 0 RGKLMIDANIE I.claudius_F2_127_617_311961_peptide number 39 409.43370000000004 0 VYE I.claudius_F2_127_617_311961_peptide number 40 4970.6832 0 GQIIGIHSRSNDLTVNCLQGKKLTNMRASGKDDAIVLTTPVKFSLE I.claudius_F2_127_617_311961_peptide number 41 459.494 0 QAIE I.claudius_F2_127_617_311961_peptide number 42 752.7230000000001 0 FIDDDE I.claudius_F2_127_617_311961_peptide number 43 359.418 0 LVE I.claudius_F2_127_617_311961_peptide number 44 444.47950000000003 0 VTPE I.claudius_F2_127_617_311961_peptide number 45 1356.6569 0 SIRIRKKLLTE I.claudius_F2_127_617_311961_peptide number 46 1845.9286000000002 0 NDRKRANRTTTSTSTH I.claudius_F2_128_714_315830_peptide number 1 278.32540000000006 0 ME I.claudius_F2_128_714_315830_peptide number 2 2035.3063 0 NDGQLVFTKRKRYALPE I.claudius_F2_128_714_315830_peptide number 3 1612.8706000000002 0 KLDLFKGTVIGHRE I.claudius_F2_128_714_315830_peptide number 4 5053.700499999999 0 GFGFLQVDGKKDDLFIPNHQMQRVMHGDFVLAQPAGLDRRGRRE I.claudius_F2_128_714_315830_peptide number 5 983.2092 0 VRIVRVLE I.claudius_F2_128_714_315830_peptide number 6 1607.8971999999999 0 SRKKQIVGRFFLE I.claudius_F2_128_714_315830_peptide number 7 2432.6430000000005 0 NGFGYVVPDDSRIGRDILVPNE I.claudius_F2_128_714_315830_peptide number 8 1551.7728000000002 0 HRNGARMGQVVVVE I.claudius_F2_128_714_315830_peptide number 9 388.41610000000003 0 LQE I.claudius_F2_128_714_315830_peptide number 10 1518.6699 0 RSASFNQPIGVITE I.claudius_F2_128_714_315830_peptide number 11 1178.3795 0 ILGDNMAKGME I.claudius_F2_128_714_315830_peptide number 12 246.2604 0 VE I.claudius_F2_128_714_315830_peptide number 13 1960.2396 0 IALRNHDILHKFPSAVE I.claudius_F2_128_714_315830_peptide number 14 1042.2284 0 KYVKKFTE I.claudius_F2_128_714_315830_peptide number 15 147.1293 0 E I.claudius_F2_128_714_315830_peptide number 16 333.33770000000004 0 VSE I.claudius_F2_128_714_315830_peptide number 17 147.1293 0 E I.claudius_F2_128_714_315830_peptide number 18 2094.4149 0 AKKGRVDLRNLPLVTIDGE I.claudius_F2_128_714_315830_peptide number 19 1418.4416 0 DARDFDDAVYCE I.claudius_F2_128_714_315830_peptide number 20 3290.7698 0 KHGKGWKLWVAIADVSYYVRLRSTLDVE I.claudius_F2_128_714_315830_peptide number 21 2297.5941000000003 0 AHNRGNSVYFPNRVVPMLPE I.claudius_F2_128_714_315830_peptide number 22 2307.7329 0 ILSNGLCSLNPQVDRLCMVCE I.claudius_F2_128_714_315830_peptide number 23 1950.2184 0 MQISAKGKLTDYRFYE I.claudius_F2_128_714_315830_peptide number 24 2163.5632 0 AVMNSHARLTYTKVAKMLE I.claudius_F2_128_714_315830_peptide number 25 319.26800000000003 0 GDE I.claudius_F2_128_714_315830_peptide number 26 147.1293 0 E I.claudius_F2_128_714_315830_peptide number 27 1584.8175 0 LRTRYSTLVPHLE I.claudius_F2_128_714_315830_peptide number 28 147.1293 0 E I.claudius_F2_128_714_315830_peptide number 29 2492.8289 0 LYKLYQALLSARHQRGAIDFE I.claudius_F2_128_714_315830_peptide number 30 361.3908 0 TIE I.claudius_F2_128_714_315830_peptide number 31 1426.6821 0 TKFIFNAMGRIE I.claudius_F2_128_714_315830_peptide number 32 1651.9051 0 RIEPVVRNDA-KIIE I.claudius_F2_128_714_315830_peptide number 33 147.1293 0 E I.claudius_F2_128_714_315830_peptide number 34 1398.6703000000002 0 CM-LANIAAANFME I.claudius_F2_128_714_315830_peptide number 35 1877.1081000000001 0 KHKEPALYRIHATPSE I.claudius_F2_128_714_315830_peptide number 36 147.1293 0 E I.claudius_F2_128_714_315830_peptide number 37 1328.5126999999998 0 KLTSFRTFLSE I.claudius_F2_128_714_315830_peptide number 38 678.7736 0 FGLTLE I.claudius_F2_128_714_315830_peptide number 39 1576.7888 0 GGLKPTTKDYAALLE I.claudius_F2_128_714_315830_peptide number 40 502.605 0 KVKE I.claudius_F2_128_714_315830_peptide number 41 652.6569000000001 0 RPDHE I.claudius_F2_128_714_315830_peptide number 42 3111.572 0 LIQTMLLRSLSQAVYHADNIGHFGLALE I.claudius_F2_128_714_315830_peptide number 43 147.1293 0 E I.claudius_F2_128_714_315830_peptide number 44 3259.7590000000005 0 YAHFTSPIRRYPDLTLHRGIKYLLAKE I.claudius_F2_128_714_315830_peptide number 45 2161.2442 0 QGAKRKTTDTGGYHYSFDE I.claudius_F2_128_714_315830_peptide number 46 1350.5414000000003 0 MDLLGNHCSMTE I.claudius_F2_128_714_315830_peptide number 47 1089.1209 0 RRADDATRE I.claudius_F2_128_714_315830_peptide number 48 963.1084000000001 0 VADWLKCE I.claudius_F2_128_714_315830_peptide number 49 1035.0883000000001 0 YMQDHVGGE I.claudius_F2_128_714_315830_peptide number 50 3454.9194999999995 0 FSGVISSVTGFGLFVRLDDLFIDGLVHISTLE I.claudius_F2_128_714_315830_peptide number 51 1931.0659 0 NDYYQFDAAKQRLIGE I.claudius_F2_128_714_315830_peptide number 52 1993.2912000000001 0 NSGMQYRLGDKVRIKVE I.claudius_F2_128_714_315830_peptide number 53 567.6352 0 AVHLE I.claudius_F2_128_714_315830_peptide number 54 1339.5138000000002 0 NKMVDFSLIGSE I.claudius_F2_128_714_315830_peptide number 55 1397.6295 0 RKPRRAGKTAKE I.claudius_F2_128_714_315830_peptide number 56 977.2014000000001 0 KAKKVFKE I.claudius_F2_128_714_315830_peptide number 57 3098.7363000000005 0 LPSKASKKRKSAVKKKDVSKKTSRKRK I.claudius_F2_129_791_323254_peptide number 1 3061.5532 0 MAQLVDDNIMLINTMNNSLLDRKGVIE I.claudius_F2_129_791_323254_peptide number 2 802.9141999999999 0 KYGIPPE I.claudius_F2_129_791_323254_peptide number 3 2403.7027000000003 0 LIIDYLALMGDSADNIPGVAGVGE I.claudius_F2_129_791_323254_peptide number 4 1488.7481999999998 0 KTALGLLQGIGSMAE I.claudius_F2_129_791_323254_peptide number 5 721.7983000000002 0 IYANLE I.claudius_F2_129_791_323254_peptide number 6 445.51060000000007 0 KVAE I.claudius_F2_129_791_323254_peptide number 7 1181.4281 0 LPIRGAKKLGE I.claudius_F2_129_791_323254_peptide number 8 572.6947 0 KLLAE I.claudius_F2_129_791_323254_peptide number 9 1996.1759000000002 0 KNNADLSYTLATIKTDVE I.claudius_F2_129_791_323254_peptide number 10 1315.4691000000003 0 LNVTTDQLLLGE I.claudius_F2_129_791_323254_peptide number 11 960.0399000000001 0 SQKDQLIE I.claudius_F2_129_791_323254_peptide number 12 847.9134000000001 0 YFARYE I.claudius_F2_129_791_323254_peptide number 13 992.1313 0 FKRWLNE I.claudius_F2_129_791_323254_peptide number 14 1366.4515000000001 0 VMNGADSITQTTE I.claudius_F2_129_791_323254_peptide number 15 2152.3418 0 QPVKMNQYKATSQDQSAVE I.claudius_F2_129_791_323254_peptide number 16 1605.7903 0 NTPKIQIDRTKYE I.claudius_F2_129_791_323254_peptide number 17 1559.7615 0 TLLTQADLTRWIE I.claudius_F2_129_791_323254_peptide number 18 1385.6054000000004 0 KLNAAKLIAVDTE I.claudius_F2_129_791_323254_peptide number 19 2046.2544000000003 0 TDSLDYMSANLVGISFALE I.claudius_F2_129_791_323254_peptide number 20 318.2832 0 NGE I.claudius_F2_129_791_323254_peptide number 21 2034.3082000000002 0 AAYLPLQLDYLDAPKTLE I.claudius_F2_129_791_323254_peptide number 22 1354.6344 0 KSTALAAIKPILE I.claudius_F2_129_791_323254_peptide number 23 1766.9508 0 NPNIHKIGQNIKFDE I.claudius_F2_129_791_323254_peptide number 24 1029.1499 0 SIFARHGIE I.claudius_F2_129_791_323254_peptide number 25 544.5985000000001 0 LQGVE I.claudius_F2_129_791_323254_peptide number 26 3399.7665 0 FDTMLLSYTLNSTGRHNMDDLAKRYLGHE I.claudius_F2_129_791_323254_peptide number 27 579.6426 0 TIAFE I.claudius_F2_129_791_323254_peptide number 28 1931.1934 0 SLAGKGKSQLTFNQIPLE I.claudius_F2_129_791_323254_peptide number 29 447.4403 0 QATE I.claudius_F2_129_791_323254_peptide number 30 452.4584000000001 0 YAAE I.claudius_F2_129_791_323254_peptide number 31 2130.4635 0 DADVTMKLQQALWLKLQE I.claudius_F2_129_791_323254_peptide number 32 686.7511000000001 0 EPTLVE I.claudius_F2_129_791_323254_peptide number 33 783.9325000000001 0 LYKTME I.claudius_F2_129_791_323254_peptide number 34 1307.6044000000002 0 LPLLHVLSRME I.claudius_F2_129_791_323254_peptide number 35 1896.0832 0 RTGVLIDSDALFMQSNE I.claudius_F2_129_791_323254_peptide number 36 973.1247999999999 0 IASRLTALE I.claudius_F2_129_791_323254_peptide number 37 2306.5726 0 KQAYALAGQPFNLASTKQLQE I.claudius_F2_129_791_323254_peptide number 38 877.0357000000001 0 ILFDKLE I.claudius_F2_129_791_323254_peptide number 39 1679.9119 0 LPVLQKTPKGAPSTNE I.claudius_F2_129_791_323254_peptide number 40 147.1293 0 E I.claudius_F2_129_791_323254_peptide number 41 359.418 0 VLE I.claudius_F2_129_791_323254_peptide number 42 147.1293 0 E I.claudius_F2_129_791_323254_peptide number 43 734.7541 0 LSYSHE I.claudius_F2_129_791_323254_peptide number 44 6926.8316 0 LPKILVKHRGLSKLKSTYTDKLPQMVNSQTGRVHTSYHQAVTATGRLSSSDPNLQNIPIRNE I.claudius_F2_129_791_323254_peptide number 45 147.1293 0 E I.claudius_F2_129_791_323254_peptide number 46 1453.6511 0 GRHIRQAFIARE I.claudius_F2_129_791_323254_peptide number 47 1415.5005 0 GYSIVAADYSQIE I.claudius_F2_129_791_323254_peptide number 48 3237.6043000000004 0 LRIMAHLSGDQGLINAFSQGKDIHRSTAAE I.claudius_F2_129_791_323254_peptide number 49 878.9655 0 IFGVSLDE I.claudius_F2_129_791_323254_peptide number 50 434.4416 0 VTSE I.claudius_F2_129_791_323254_peptide number 51 6452.3227000000015 0 QRRNAKAINFGLIYGMSAFGLSRQLGISRADAQKYMDLYFQRYPSVQQFMTDIRE I.claudius_F2_129_791_323254_peptide number 52 993.1146000000001 0 KAKAQGYVE I.claudius_F2_129_791_323254_peptide number 53 2766.1428 0 TLFGRRLYLPDINSSNAMRRKGAE I.claudius_F2_129_791_323254_peptide number 54 2726.2231 0 RVAINAPMQGTAADIIKRAMIKLDE I.claudius_F2_129_791_323254_peptide number 55 1093.1906 0 VIRHDPDIE I.claudius_F2_129_791_323254_peptide number 56 1002.1661 0 MIMQVHDE I.claudius_F2_129_791_323254_peptide number 57 506.5919 0 LVFE I.claudius_F2_129_791_323254_peptide number 58 489.52340000000004 0 VRSE I.claudius_F2_129_791_323254_peptide number 59 896.0441000000001 0 KVAFFRE I.claudius_F2_129_791_323254_peptide number 60 913.053 0 QIKQHME I.claudius_F2_129_791_323254_peptide number 61 360.36300000000006 0 AAAE I.claudius_F2_129_791_323254_peptide number 62 881.1106000000002 0 LVVPLIVE I.claudius_F2_129_791_323254_peptide number 63 1003.0232000000002 0 VGVGQNWDE I.claudius_F2_129_791_323254_peptide number 64 226.2325 0 AH I.claudius_F2_130_176_335025_peptide number 1 1915.2155 0 MGGQDKGLQILGKQSLIE I.claudius_F2_130_176_335025_peptide number 2 2738.0264 0 HIINRLQPQIHQISINANRNQTE I.claudius_F2_130_176_335025_peptide number 3 1406.5367999999999 0 YAKFGFPVFSDE I.claudius_F2_130_176_335025_peptide number 4 1688.9384000000002 0 LPDFQGPLSGMLTALE I.claudius_F2_130_176_335025_peptide number 5 4811.553300000001 0 KTKSDFILFTPCDTPFFPMNLLDKLKSAVKNDRTLIAYACDE I.claudius_F2_130_176_335025_peptide number 6 147.1293 0 E I.claudius_F2_130_176_335025_peptide number 7 303.31500000000005 0 RE I.claudius_F2_130_176_335025_peptide number 8 1530.8529 0 HPVFCLMSVQLKE I.claudius_F2_130_176_335025_peptide number 9 1173.3216000000002 0 KLRHYLASGE I.claudius_F2_130_176_335025_peptide number 10 1220.4874 0 RRLLQFMKE I.claudius_F2_130_176_335025_peptide number 11 1179.2798 0 NGGISVKFTQE I.claudius_F2_130_176_335025_peptide number 12 147.1293 0 E I.claudius_F2_130_176_335025_peptide number 13 465.4571000000001 0 GNFE I.claudius_F2_130_176_335025_peptide number 14 1520.7255 0 NFNTLDDLKKTVI I.claudius_F2_131_53_336551_peptide number 1 5964.923000000002 0 MINPNFLWRHRKSAVSMSMGIYPPAFFDNFIANIGFKTTNMAFHTNSVKKKG I.claudius_F2_132_52_338689_peptide number 1 625.7375000000001 0 MPHIE I.claudius_F2_132_52_338689_peptide number 2 5101.925199999999 0 FVARWWLINYSPCYPVRLTKDLQGLYAFLALRSYRLQSHLIE I.claudius_F2_132_52_338689_peptide number 3 510.54400000000004 0 HQNI I.claudius_F2_133_298_339106_peptide number 1 2498.8765999999996 0 MMLQLHQSYQNKAKAFGVFQE I.claudius_F2_133_298_339106_peptide number 2 1568.8179 0 KSIFAQHLNRLLE I.claudius_F2_133_298_339106_peptide number 3 275.2585 0 QE I.claudius_F2_133_298_339106_peptide number 4 260.2869 0 IE I.claudius_F2_133_298_339106_peptide number 5 1718.8998000000001 0 FLGFSQYSTKLLADE I.claudius_F2_133_298_339106_peptide number 6 941.0382000000002 0 LGKYNFAE I.claudius_F2_133_298_339106_peptide number 7 3663.1779999999994 0 SGTLILCQYNFLATDYLFIALLDSRHSMLVDE I.claudius_F2_133_298_339106_peptide number 8 1039.1464999999998 0 HLDIRRTE I.claudius_F2_133_298_339106_peptide number 9 5772.504700000001 0 YLDITQFDIAARINLTDLQVNANSNRYLTFIKGRVGRKISDFFMDFLGAE I.claudius_F2_133_298_339106_peptide number 10 147.1293 0 E I.claudius_F2_133_298_339106_peptide number 11 2522.7223999999997 0 GLNPQVQNQCLLQAVSDYCDQGE I.claudius_F2_133_298_339106_peptide number 12 502.56180000000006 0 LNKE I.claudius_F2_133_298_339106_peptide number 13 1305.4794 0 QTQAVKKQVFE I.claudius_F2_133_298_339106_peptide number 14 1439.5499 0 YCKGQLSNGNNIE I.claudius_F2_133_298_339106_peptide number 15 416.47260000000006 0 LRE I.claudius_F2_133_298_339106_peptide number 16 1088.1658 0 LSDSLPTLNE I.claudius_F2_133_298_339106_peptide number 17 966.0876 0 QPFVVFTE I.claudius_F2_133_298_339106_peptide number 18 850.9156 0 KQNYGLE I.claudius_F2_133_298_339106_peptide number 19 147.1293 0 E I.claudius_F2_133_298_339106_peptide number 20 3024.4239000000002 0 SIPPIRSTLKSLTKFSGSGKGVTLSFDAE I.claudius_F2_133_298_339106_peptide number 21 4020.6513000000004 0 LLNTRIQWDPMTDTLTIKGLPPNLKDQLQKALKSE I.claudius_F2_133_298_339106_peptide number 22 132.1179 0 N I.claudius_F2_134_75_342078_peptide number 1 1727.0197000000003 0 MHMKVRSIPFQHSE I.claudius_F2_134_75_342078_peptide number 2 2255.6318 0 FWIMAISSLFVAKHFTDLE I.claudius_F2_134_75_342078_peptide number 3 3438.081200000001 0 YRPTACSKQAFHMIFRACRKPKCFGLFTE I.claudius_F2_134_75_342078_peptide number 4 459.50070000000005 0 RRE I.claudius_F2_134_75_342078_peptide number 5 1022.2684 0 KFRAKGGKM I.claudius_F2_135_55_342593_peptide number 1 6234.5558999999985 0 MAQCPHNITLLGDLFLLSIDWRISCKQLMSILRLLVLVAVVYVQRLPQQKQILT I.claudius_F2_136_507_342943_peptide number 1 620.7161000000001 0 MTQLE I.claudius_F2_136_507_342943_peptide number 2 2921.3222000000005 0 RWGCPWSRKADGDVNVRRFGGMKIE I.claudius_F2_136_507_342943_peptide number 3 3896.3252 0 RTWFAADKTGFHLLHTLFQTSIQYPQIQRFDE I.claudius_F2_136_507_342943_peptide number 4 2602.0412000000006 0 HFVLDILVDDGHARGMVAMNMME I.claudius_F2_136_507_342943_peptide number 5 5136.802400000002 0 GSLVQINANAVVIATGGGCRAFKFNTNGGIVTGDGLSMAYRHGVPLRDME I.claudius_F2_136_507_342943_peptide number 6 2018.2923 0 FVQYHPTGLPNTGILMTE I.claudius_F2_136_507_342943_peptide number 7 520.5605 0 GCRGE I.claudius_F2_136_507_342943_peptide number 8 2327.5470000000005 0 GGILVNKDGYRYLQDYGLGPE I.claudius_F2_136_507_342943_peptide number 9 1405.6183 0 TPIGKPQNKYME I.claudius_F2_136_507_342943_peptide number 10 1660.8273000000002 0 LGPRDKVSQAFWQE I.claudius_F2_136_507_342943_peptide number 11 2815.2334000000005 0 WKKGNTLKTAKGVDVVHLDLRHLGE I.claudius_F2_136_507_342943_peptide number 12 688.7718 0 KYLHE I.claudius_F2_136_507_342943_peptide number 13 877.0622000000001 0 RLPFICE I.claudius_F2_136_507_342943_peptide number 14 652.6933 0 LASAYE I.claudius_F2_136_507_342943_peptide number 15 2474.8322000000003 0 GVNPVNEPIPVRPVVHYTMGGIE I.claudius_F2_136_507_342943_peptide number 16 709.7016000000001 0 VDFNSE I.claudius_F2_136_507_342943_peptide number 17 1190.3919 0 TRIKGLFAVGE I.claudius_F2_136_507_342943_peptide number 18 1843.972 0 CASSGLHGANRLGSNSLAE I.claudius_F2_136_507_342943_peptide number 19 1012.2040000000001 0 LVVLGRVAGE I.claudius_F2_136_507_342943_peptide number 20 906.9823000000001 0 YAAQRAVE I.claudius_F2_136_507_342943_peptide number 21 2199.3784 0 AQSVNQSAVDAQAKDVVARLE I.claudius_F2_136_507_342943_peptide number 22 724.8056 0 ALHKQE I.claudius_F2_136_507_342943_peptide number 23 318.2832 0 GNE I.claudius_F2_136_507_342943_peptide number 24 507.49379999999996 0 SWSE I.claudius_F2_136_507_342943_peptide number 25 531.5600000000001 0 IRDE I.claudius_F2_136_507_342943_peptide number 26 666.8078 0 MGTVME I.claudius_F2_136_507_342943_peptide number 27 147.1293 0 E I.claudius_F2_136_507_342943_peptide number 28 2183.465 0 GCGIYRDQASMQKAVDKIAE I.claudius_F2_136_507_342943_peptide number 29 388.4592 0 LKE I.claudius_F2_136_507_342943_peptide number 30 2762.0385 0 RYKRIRVSDNSSVFNTDVLYTVE I.claudius_F2_136_507_342943_peptide number 31 1776.9805 0 LGYILDVAQSIANSAIE I.claudius_F2_136_507_342943_peptide number 32 431.4873 0 RKE I.claudius_F2_136_507_342943_peptide number 33 1432.4979 0 SRGAHQRLDYTE I.claudius_F2_136_507_342943_peptide number 34 1998.1552000000001 0 RDDVNYLKHTLAFYNE I.claudius_F2_136_507_342943_peptide number 35 755.8196 0 NGAPRIE I.claudius_F2_136_507_342943_peptide number 36 2122.4235 0 YSPVKITKSQPAKRVYGAE I.claudius_F2_136_507_342943_peptide number 37 218.2072 0 AE I.claudius_F2_136_507_342943_peptide number 38 346.3364 0 AQE I.claudius_F2_136_507_342943_peptide number 39 687.7855000000001 0 AAAKAKE I.claudius_F2_136_507_342943_peptide number 40 388.3763 0 QANG I.claudius_F2_137_86_346315_peptide number 1 5940.8487 0 MPFPNSAIFKYTSKIRFFDQVSSSNIVAGTSKPFRSQFCPCQSIKFLAVCWE I.claudius_F2_137_86_346315_peptide number 2 3885.6306000000004 0 IVDAPRIPLLDFSLYRIARWIASKSKPKCSRKR I.claudius_F2_138_350_356156_peptide number 1 1038.1717999999998 0 MTALFEPTE I.claudius_F2_138_350_356156_peptide number 2 3730.1645 0 HPHRRYNPLIDQWVLVSPHRAKRPWQGQQE I.claudius_F2_138_350_356156_peptide number 3 488.5353 0 KVNE I.claudius_F2_138_350_356156_peptide number 4 147.1293 0 E I.claudius_F2_138_350_356156_peptide number 5 2400.6857 0 QKPSYDPTCYLCPSNKRITGE I.claudius_F2_138_350_356156_peptide number 6 2429.7235 0 LNPDYRKPYVFKNDFSALLE I.claudius_F2_138_350_356156_peptide number 7 628.6289 0 DTPAPE I.claudius_F2_138_350_356156_peptide number 8 1636.7182000000003 0 KSSDPLFQSSQARGE I.claudius_F2_138_350_356156_peptide number 9 2327.6979 0 SRVICFSPDHSKTLPLLTALE I.claudius_F2_138_350_356156_peptide number 10 260.2869 0 IE I.claudius_F2_138_350_356156_peptide number 11 147.1293 0 E I.claudius_F2_138_350_356156_peptide number 12 901.0605 0 VIKVWQE I.claudius_F2_138_350_356156_peptide number 13 544.6018 0 QLRE I.claudius_F2_138_350_356156_peptide number 14 1481.6926000000003 0 LGAKYQWVQIFE I.claudius_F2_138_350_356156_peptide number 15 2778.0456000000004 0 NKGAAMGCSNPHPHGQIWANSFLPNE I.claudius_F2_138_350_356156_peptide number 16 473.524 0 VARE I.claudius_F2_138_350_356156_peptide number 17 2822.2030000000004 0 DRTQRDYLLKHGSVMLVDYVKRE I.claudius_F2_138_350_356156_peptide number 18 572.6947 0 LALKE I.claudius_F2_138_350_356156_peptide number 19 614.7348000000001 0 RIVVE I.claudius_F2_138_350_356156_peptide number 20 248.23319999999998 0 TE I.claudius_F2_138_350_356156_peptide number 21 1928.2356 0 HWIALVPYWAIWPFE I.claudius_F2_138_350_356156_peptide number 22 1648.9873 0 TLLLPKTHVKRLTE I.claudius_F2_138_350_356156_peptide number 23 462.4516 0 LSDE I.claudius_F2_138_350_356156_peptide number 24 2467.8544000000006 0 QSKDLAVILKKLTTKYDNLFE I.claudius_F2_138_350_356156_peptide number 25 1860.0096 0 TSFPYSMGFHAAPFNGE I.claudius_F2_138_350_356156_peptide number 26 376.3193 0 DNE I.claudius_F2_138_350_356156_peptide number 27 3184.6742 0 HWQLHAHFYPPLLRSATVRKFMVGYE I.claudius_F2_138_350_356156_peptide number 28 448.53430000000003 0 MLGE I.claudius_F2_138_350_356156_peptide number 29 945.9736 0 NQRDLTAE I.claudius_F2_138_350_356156_peptide number 30 417.4143 0 QAAE I.claudius_F2_138_350_356156_peptide number 31 843.9711000000001 0 RLRALSE I.claudius_F2_138_350_356156_peptide number 32 674.7453 0 VHYKE I.claudius_F2_138_350_356156_peptide number 33 403.47720000000004 0 RTK I.claudius_F2_139_53_358278_peptide number 1 3234.6602000000007 0 MTGGGFGGCIVALAPHDKVDSVRKIIADNYE I.claudius_F2_139_53_358278_peptide number 2 775.8906000000002 0 KTTGLKE I.claudius_F2_139_53_358278_peptide number 3 1543.7855000000002 0 TFYVCTASQGVRVI I.claudius_F2_140_431_360199_peptide number 1 278.32540000000006 0 ME I.claudius_F2_140_431_360199_peptide number 2 1163.4295 0 LAYMAKLPKE I.claudius_F2_140_431_360199_peptide number 3 147.1293 0 E I.claudius_F2_140_431_360199_peptide number 4 294.30320000000006 0 FE I.claudius_F2_140_431_360199_peptide number 5 147.1293 0 E I.claudius_F2_140_431_360199_peptide number 6 2364.7247 0 RRTRVFAQMQPNSALLLFSE I.claudius_F2_140_431_360199_peptide number 7 260.2869 0 IE I.claudius_F2_140_431_360199_peptide number 8 4385.8683 0 KRRNNDCTYPFRQDSYFWYLTGFNEPNAALLLLKTE I.claudius_F2_140_431_360199_peptide number 9 374.38960000000003 0 QVE I.claudius_F2_140_431_360199_peptide number 10 1681.0305999999998 0 KAIIFLRPRDPLLE I.claudius_F2_140_431_360199_peptide number 11 1187.3084000000001 0 TWNGRRLGVE I.claudius_F2_140_431_360199_peptide number 12 1168.2604000000001 0 RAPQQLNVNE I.claudius_F2_140_431_360199_peptide number 13 581.6154 0 AYSIE I.claudius_F2_140_431_360199_peptide number 14 147.1293 0 E I.claudius_F2_140_431_360199_peptide number 15 2267.7072000000003 0 FATVLPKILKNLTALYHVPE I.claudius_F2_140_431_360199_peptide number 16 1257.3485999999998 0 IHTWGDTLVSE I.claudius_F2_140_431_360199_peptide number 17 752.7694 0 SAVNFSE I.claudius_F2_140_431_360199_peptide number 18 1259.4737 0 ILDWRPMLSE I.claudius_F2_140_431_360199_peptide number 19 1087.2937000000002 0 MRLIKSPNE I.claudius_F2_140_431_360199_peptide number 20 3210.7347000000004 0 IRLMQQAGQITALGHIKAMQTTRPNRFE I.claudius_F2_140_431_360199_peptide number 21 310.30260000000004 0 YE I.claudius_F2_140_431_360199_peptide number 22 260.2869 0 IE I.claudius_F2_140_431_360199_peptide number 23 712.7485 0 SDILHE I.claudius_F2_140_431_360199_peptide number 24 3128.4584999999997 0 FNRHCARFPSYNSIVAGGSNACILHYTE I.claudius_F2_140_431_360199_peptide number 25 1929.0699 0 NDRPLNDGDLVLIDAGCE I.claudius_F2_140_431_360199_peptide number 26 2761.0751 0 FAMYAGDITRTFPVNGKFSQPQRE I.claudius_F2_140_431_360199_peptide number 27 423.4602000000001 0 IYE I.claudius_F2_140_431_360199_peptide number 28 1268.5485 0 LVLKAQKRAIE I.claudius_F2_140_431_360199_peptide number 29 1497.6490000000003 0 LLVPGNSIKQANDE I.claudius_F2_140_431_360199_peptide number 30 2609.0668 0 VIRIKTQGLVDLGILKGDVDTLIE I.claudius_F2_140_431_360199_peptide number 31 4146.560799999999 0 QQAYRQFYMHGLGHWLGLDVHDVGSYGQDKQRILE I.claudius_F2_140_431_360199_peptide number 32 1620.9042999999997 0 IGMVITVEPGIYISE I.claudius_F2_140_431_360199_peptide number 33 644.6283000000001 0 DADVPE I.claudius_F2_140_431_360199_peptide number 34 1162.3387 0 QYKGIGVRIE I.claudius_F2_140_431_360199_peptide number 35 834.9345 0 DNLLMTE I.claudius_F2_140_431_360199_peptide number 36 1403.6223 0 YGNKILTAAVPKE I.claudius_F2_140_431_360199_peptide number 37 559.6098000000001 0 IADIE I.claudius_F2_140_431_360199_peptide number 38 637.7481 0 NLMNF I.claudius_F2_141_246_364093_peptide number 1 1755.0215000000003 0 MDIDSAKAKGAMALFGE I.claudius_F2_141_246_364093_peptide number 2 1958.2389 0 KYGDKVRVLTMGDFSIE I.claudius_F2_141_246_364093_peptide number 3 2242.6396000000004 0 LCGGIHAKRTGDIGLFKIITE I.claudius_F2_141_246_364093_peptide number 4 1169.3346 0 NAVAAGIRRIE I.claudius_F2_141_246_364093_peptide number 5 3764.1179000000006 0 AVTGQNAIDWLHNQQRILTQSADLLKSDVNTLAE I.claudius_F2_141_246_364093_peptide number 6 1555.8177 0 KIQQLQDKAKKVE I.claudius_F2_141_246_364093_peptide number 7 275.3016 0 KE I.claudius_F2_141_246_364093_peptide number 8 686.7973000000001 0 LQGLKE I.claudius_F2_141_246_364093_peptide number 9 3223.6971999999996 0 KAAMQAGSYFVKSAVKINGVSVIAQQLDGIE I.claudius_F2_141_246_364093_peptide number 10 3020.4566999999997 0 TKSLRVMVDDLKNQLGSGVIAFASILDE I.claudius_F2_141_246_364093_peptide number 11 2069.4022 0 KVNLVVGVTNDLTAKIKAGE I.claudius_F2_141_246_364093_peptide number 12 2773.1735000000003 0 LVNLMAQQVGGKGGGRPDMAMAGGSQLE I.claudius_F2_141_246_364093_peptide number 13 1955.2181 0 NVTQAIKVAQDWLNKNL I.claudius_F2_142_51_365635_peptide number 1 5733.1494 0 MVLQIVVALSLMAAKVQKLIVLLKNLLLKTHHQILLWLGVMFFQQQFGIC I.claudius_F2_143_308_366593_peptide number 1 2851.287 0 MPGYTHLQRAQPITFAHWCMAYVE I.claudius_F2_143_308_366593_peptide number 2 6973.538700000001 0 MFDRDYSRLTDAYNRMNTCPLGSGALAGTAYAVDRDSLAHDLSFAFATRNSLDSVSDRDHIVE I.claudius_F2_143_308_366593_peptide number 3 1846.1552 0 LLSIASLSMAHLSRFAE I.claudius_F2_143_308_366593_peptide number 4 1025.1331 0 DMIIFNSGE I.claudius_F2_143_308_366593_peptide number 5 578.6148000000001 0 ANFVE I.claudius_F2_143_308_366593_peptide number 6 2363.6241999999997 0 LSDRVTSGSSLMPQKKNPDACE I.claudius_F2_143_308_366593_peptide number 7 3618.3164000000006 0 LIRGKTGRVIGSLTSMLITLKGLPLAYNKDMQE I.claudius_F2_143_308_366593_peptide number 8 390.389 0 DKE I.claudius_F2_143_308_366593_peptide number 9 2503.7573 0 GIFDALDTWQNCVDMATFVLDE I.claudius_F2_143_308_366593_peptide number 10 700.8240000000001 0 LKVNVE I.claudius_F2_143_308_366593_peptide number 11 560.6046 0 RTRE I.claudius_F2_143_308_366593_peptide number 12 1124.2013 0 AALKGYSNATE I.claudius_F2_143_308_366593_peptide number 13 2339.6043000000004 0 LADYLVSKGVPFRDSHHIVGE I.claudius_F2_143_308_366593_peptide number 14 793.9042000000001 0 TVVYAIE I.claudius_F2_143_308_366593_peptide number 15 630.7341 0 KGKGLE I.claudius_F2_143_308_366593_peptide number 16 686.7510000000001 0 DLTIPE I.claudius_F2_143_308_366593_peptide number 17 812.8693000000001 0 FRQFSE I.claudius_F2_143_308_366593_peptide number 18 894.9220000000001 0 VVGDDVYE I.claudius_F2_143_308_366593_peptide number 19 2544.0034 0 ILSLQSCLDKRCAKGGVSPLRVAE I.claudius_F2_143_308_366593_peptide number 20 402.44270000000006 0 AIAE I.claudius_F2_143_308_366593_peptide number 21 692.8069 0 AKTRFA I.claudius_F2_144_372_369216_peptide number 1 1504.6665 0 MNGSKVTNPNWKE I.claudius_F2_144_372_369216_peptide number 2 646.6473 0 QGLNSE I.claudius_F2_144_372_369216_peptide number 3 1054.1527999999998 0 NFVAFNLTE I.claudius_F2_144_372_369216_peptide number 4 1449.6093 0 RIQLIGGTWYGGE I.claudius_F2_144_372_369216_peptide number 5 5713.631800000001 0 MKKGMSSMMNYFLPLKGVGAMHCSANVGKDGDVAIFFGLSGTGKTTLSTDPKRE I.claudius_F2_144_372_369216_peptide number 6 660.6706 0 LIGDDE I.claudius_F2_144_372_369216_peptide number 7 1435.495 0 HGWDDVGIFNFE I.claudius_F2_144_372_369216_peptide number 8 1278.434 0 GGCYAKTIHLSE I.claudius_F2_144_372_369216_peptide number 9 147.1293 0 E I.claudius_F2_144_372_369216_peptide number 10 1944.1525 0 NEPDIYRAIRRDALLE I.claudius_F2_144_372_369216_peptide number 11 2026.0762000000002 0 NVVVRSDGSVDFDDGSKTE I.claudius_F2_144_372_369216_peptide number 12 5133.898099999999 0 NTRVSYPIYHIDNIVKPVSRAGHATKVIFLTADAFGVLPPVSKLTPE I.claudius_F2_144_372_369216_peptide number 13 2025.2601000000004 0 QTKYYFLSGFTAKLAGTE I.claudius_F2_144_372_369216_peptide number 14 3027.3648 0 RGITEPTPTFSACFGAAFLTLHPTQYAE I.claudius_F2_144_372_369216_peptide number 15 1272.5174000000002 0 VLVKRMQAAGAE I.claudius_F2_144_372_369216_peptide number 16 3547.9664 0 AYLVNTGWNGTGKRISIKDTRGIIDAILDGSIE I.claudius_F2_144_372_369216_peptide number 17 346.3795 0 KAE I.claudius_F2_144_372_369216_peptide number 18 335.3767 0 MGE I.claudius_F2_144_372_369216_peptide number 19 4053.5719000000004 0 LPIFNLAIPKALPGVDSAILDPRDTYADKAQWQSKAE I.claudius_F2_144_372_369216_peptide number 20 1972.2041 0 DLAGRFVKNFVKYATNE I.claudius_F2_144_372_369216_peptide number 21 147.1293 0 E I.claudius_F2_144_372_369216_peptide number 22 996.2045 0 GKALIAAGPKA I.claudius_F2_145_299_371447_peptide number 1 2879.4645000000005 0 MASIVGAAGLLPTLSAVKAGKRVLLANKE I.claudius_F2_145_299_371447_peptide number 2 2797.1834 0 SLVTCGQLFIDAVKNYGSKLLPVDSE I.claudius_F2_145_299_371447_peptide number 3 1252.3751 0 HNAIFQSLPPE I.claudius_F2_145_299_371447_peptide number 4 346.3364 0 AQE I.claudius_F2_145_299_371447_peptide number 5 993.1774000000001 0 KIGFCPLSE I.claudius_F2_145_299_371447_peptide number 6 2205.5516000000002 0 LGVSKIILTGSGGPFRYTPLE I.claudius_F2_145_299_371447_peptide number 7 949.0156 0 QFTNITPE I.claudius_F2_145_299_371447_peptide number 8 2931.3702000000008 0 QAVAHPNWSMGKKISVDSATMMNKGLE I.claudius_F2_145_299_371447_peptide number 9 423.4602000000001 0 YIE I.claudius_F2_145_299_371447_peptide number 10 1164.27 0 ARWLFNASAE I.claudius_F2_145_299_371447_peptide number 11 147.1293 0 E I.claudius_F2_145_299_371447_peptide number 12 278.32540000000006 0 ME I.claudius_F2_145_299_371447_peptide number 13 3906.5125000000003 0 VIIHPQSIIHSMVRYVDGSVITQMGNPDMRTPIAE I.claudius_F2_145_299_371447_peptide number 14 2597.983 0 TMAYPHRTFAGVEPLDFFKIKE I.claudius_F2_145_299_371447_peptide number 15 3963.384700000001 0 LTFIEPDFNRYPNLKLAIDAFAAGQYATTAMNAANE I.claudius_F2_145_299_371447_peptide number 16 2822.2822000000006 0 IAVQAFLDRQIGFMDIAKINSKTIE I.claudius_F2_145_299_371447_peptide number 17 1775.9528 0 RISPYTIQNIDDVLE I.claudius_F2_145_299_371447_peptide number 18 801.845 0 IDAQARE I.claudius_F2_145_299_371447_peptide number 19 943.1419000000001 0 IAKTLLRE I.claudius_F2_146_80_373315_peptide number 1 3020.5011999999992 0 MNSFQLMAKPTGSICNLDCQYCFYLE I.claudius_F2_146_80_373315_peptide number 2 1438.6117000000002 0 KPHLNQRAMTNE I.claudius_F2_146_80_373315_peptide number 3 359.418 0 VLE I.claudius_F2_146_80_373315_peptide number 4 986.1186000000001 0 AYIKSYIE I.claudius_F2_146_80_373315_peptide number 5 3413.7897000000003 0 TTPQQQVTFLWQGGEPTLAGLDFYKRAVNF I.claudius_F2_147_130_374134_peptide number 1 2287.6951 0 MFTLPYYLPQNLNKCIISE I.claudius_F2_147_130_374134_peptide number 2 576.6404 0 SKTLE I.claudius_F2_147_130_374134_peptide number 3 1122.2284 0 KNSLIYAQGE I.claudius_F2_147_130_374134_peptide number 4 500.58910000000003 0 KPKE I.claudius_F2_147_130_374134_peptide number 5 1914.2059000000002 0 FYFLKQGLVGLYHSLE I.claudius_F2_147_130_374134_peptide number 6 446.45550000000003 0 NGKE I.claudius_F2_147_130_374134_peptide number 7 1217.3311 0 TLTRLYHANE I.claudius_F2_147_130_374134_peptide number 8 1266.4000999999998 0 YFGFRTIFSE I.claudius_F2_147_130_374134_peptide number 9 1368.5783000000001 0 TSYHCSAKVLME I.claudius_F2_147_130_374134_peptide number 10 3640.0667 0 ADIVRIFPGNHANFIANNPDFSCYLMKQLSNE I.claudius_F2_147_130_374134_peptide number 11 847.9762999999999 0 LLMQNTE I.claudius_F2_148_55_377479_peptide number 1 4986.6149000000005 0 MFSVTSRRKSPSTVNLPTSSRSLSICSSDNSLILTSSAIPAAAQIACE I.claudius_F2_148_55_377479_peptide number 2 693.8777 0 RVLPIP I.claudius_F2_149_135_379780_peptide number 1 441.4987000000001 0 MYE I.claudius_F2_149_135_379780_peptide number 2 4552.4248 0 TWLIIPRTAGVSINSTVWCIWRRPRPRKVALCFGKRAIE I.claudius_F2_149_135_379780_peptide number 3 6161.258799999999 0 LRTCVTLIVLAIIHYPKISSTVLPRFAATISGDFIFANASIVARTTLIGLVEPYALE I.claudius_F2_149_135_379780_peptide number 4 3673.2726000000007 0 RTLRTPATSNTARIAPPAMIPVPSLAGCINTREPV I.claudius_F2_150_85_383028_peptide number 1 1018.2068 0 MIFMNFSE I.claudius_F2_150_85_383028_peptide number 2 8306.8201 0 RSSRVTGPKIRVPIGCSVLLFKITQALPSKRITEPSGRRTPFLVRTTTAFNTSPFFTLPRGIASFTVILMMSPIAA I.claudius_F2_151_60_385686_peptide number 1 2149.4206999999997 0 MSARRVCRGTRPSRYHSE I.claudius_F2_151_60_385686_peptide number 2 4598.4768 0 RAISAPPKRPLTSTLIPLAPKRIALCTARFIARRNITRRSN I.claudius_F2_152_74_386336_peptide number 1 7454.777100000003 0 MLGPSSTKILATLRSSISAPSLCSAFAIADSKTFFTKAAAFLLVKVKISNACATFLPRIKSATKRAFWAE I.claudius_F2_152_74_386336_peptide number 2 344.41 0 VRA I.claudius_F2_153_131_391250_peptide number 1 519.6122 0 MIAGE I.claudius_F2_153_131_391250_peptide number 2 474.5054 0 IDVE I.claudius_F2_153_131_391250_peptide number 3 927.0531 0 LVPQGTLAE I.claudius_F2_153_131_391250_peptide number 4 2151.4662000000003 0 RIRAGGAGLGGILTPTGVGTVVE I.claudius_F2_153_131_391250_peptide number 5 147.1293 0 E I.claudius_F2_153_131_391250_peptide number 6 1271.4232000000002 0 GKQKIQIDGRE I.claudius_F2_153_131_391250_peptide number 7 536.6178000000001 0 YLLE I.claudius_F2_153_131_391250_peptide number 8 2595.9668 0 LPLKADIAIIHAQKGDMNGNLAYE I.claudius_F2_153_131_391250_peptide number 9 2781.2104000000004 0 LSARNFNPLVALAAKTVIAQVDNLLE I.claudius_F2_153_131_391250_peptide number 10 853.9163000000001 0 VGQLPPDE I.claudius_F2_153_131_391250_peptide number 11 1606.8777000000002 0 VITPAALIDYIVCSE I.claudius_F2_154_97_392034_peptide number 1 1604.9729000000002 0 MDLVTGAKKVIIGME I.claudius_F2_154_97_392034_peptide number 2 3159.8291000000004 0 HCAKSGSSKILKKCTLPLTASKKVAMVVTE I.claudius_F2_154_97_392034_peptide number 3 952.1039000000001 0 LAVFNFIE I.claudius_F2_154_97_392034_peptide number 4 813.9848999999999 0 GRLVLKE I.claudius_F2_154_97_392034_peptide number 5 916.9771000000001 0 HAPHVDLE I.claudius_F2_154_97_392034_peptide number 6 789.9172 0 TIKAKTE I.claudius_F2_154_97_392034_peptide number 7 1269.3561 0 ADFIVADDFKE I.claudius_F2_154_97_392034_peptide number 8 1033.1998999999998 0 MQISQKGLE I.claudius_F2_154_97_392034_peptide number 9 131.1729 0 L I.claudius_F2_155_345_392630_peptide number 1 2414.905800000001 0 MGSIACIINWGFGLVVGAMFAKE I.claudius_F2_155_345_392630_peptide number 2 5245.150500000002 0 VARRIKGSDYALLIACAYIAFMTWGGGFSGSMPLLAATPGNPVAHLMMSE I.claudius_F2_155_345_392630_peptide number 3 4622.4898 0 SNPQGIIPAVSTLFSGYNIFITLSLVICLPFITYMMMPKNGE I.claudius_F2_155_345_392630_peptide number 4 2971.3579999999997 0 TKSIDPKLIAPDPTFDKKLDKDATLAE I.claudius_F2_155_345_392630_peptide number 5 406.4977 0 KME I.claudius_F2_155_345_392630_peptide number 6 147.1293 0 E I.claudius_F2_155_345_392630_peptide number 7 8825.3274 0 SRFLAYTIGALGYSYLGMYFYKNGFNLTINNVNLIFLITGIVLHGSPMAYMRAIINATRSTAGILVQFPFYAGVQLMME I.claudius_F2_155_345_392630_peptide number 8 983.0764999999999 0 HSGLGGLITE I.claudius_F2_155_345_392630_peptide number 9 6507.382800000001 0 FFINVANKDSFPLLTFFSSAFINFAVPSGGGHWVIQGPFVIPAAQALGADLGKSTMAIAYGE I.claudius_F2_155_345_392630_peptide number 10 5221.338900000002 0 QWMNMAQPFWALPALGIAGLGVRDIMGFCMTALIFTAPIFIIGLYFL I.claudius_F2_156_113_396690_peptide number 1 1870.2198999999998 0 MAKITPPFAVPSNLVRE I.claudius_F2_156_113_396690_peptide number 2 9033.6046 0 IPVKPTASLNNFAWLIAFCPVPASSVSIISCGAVSSYFFITRTIFFSSSIKLFLFCKRPAVSAIRISILRAAADCIASKITDAE I.claudius_F2_156_113_396690_peptide number 3 1090.248 0 SEPVLCATTGI I.claudius_F2_157_92_397566_peptide number 1 1080.2101 0 MISSIGSSAVE I.claudius_F2_157_92_397566_peptide number 2 8584.852900000004 0 ISCIFSSSTKSLASNFSIDGSISFIFSSSIIGSILGSSCFLLRPNNDAQNPPFLFSSAIKCSLNCNPIKMSFILAKNRLN I.claudius_F2_158_161_398463_peptide number 1 1221.4192000000003 0 MLDIVLYEPE I.claudius_F2_158_161_398463_peptide number 2 5037.674300000001 0 IPQNTGNIIRLCANTGFRLHLIEPLGFTWDDKRLRRSGLDYHE I.claudius_F2_158_161_398463_peptide number 3 365.38110000000006 0 FAE I.claudius_F2_158_161_398463_peptide number 4 1058.2342999999998 0 IKRHKTFE I.claudius_F2_158_161_398463_peptide number 5 478.53870000000006 0 AFLE I.claudius_F2_158_161_398463_peptide number 6 234.2066 0 SE I.claudius_F2_158_161_398463_peptide number 7 3609.268300000001 0 KPKRLFALTTKGCPAHSQVKFKLGDYLMFGPE I.claudius_F2_158_161_398463_peptide number 8 1230.4342000000001 0 TRGIPMSILNE I.claudius_F2_158_161_398463_peptide number 9 506.6367 0 MPME I.claudius_F2_158_161_398463_peptide number 10 2910.3296 0 QKIRIPMTANSRSMNLSNSVAVTVYE I.claudius_F2_158_161_398463_peptide number 11 1701.9222000000002 0 AWRQLGYKGAVNLPE I.claudius_F2_158_161_398463_peptide number 12 245.3187 0 VK I.claudius_F2_159_58_400149_peptide number 1 1375.5479000000003 0 MVVTRSAADTPVE I.claudius_F2_159_58_400149_peptide number 2 4736.6441 0 TPFAASIVTVKAVLFTLLLCSTIGGKSSCWQRSSVMHKQTMPLP I.claudius_F2_160_408_400765_peptide number 1 1760.0230999999999 0 MRAKYNAKYLGTKSE I.claudius_F2_160_408_400765_peptide number 2 303.31500000000005 0 RE I.claudius_F2_160_408_400765_peptide number 3 2386.6639 0 KYFHLAYNKHTQFLRYQE I.claudius_F2_160_408_400765_peptide number 4 964.1379999999999 0 QIMSKTKE I.claudius_F2_160_408_400765_peptide number 5 2678.1570000000006 0 KKVGVIFGKFYPVHTGHINMIYE I.claudius_F2_160_408_400765_peptide number 6 794.8492 0 AFSKVDE I.claudius_F2_160_408_400765_peptide number 7 6477.610600000002 0 LHVIVCSDTVRDLKLFYDSKMKRMPTVQDRLRWMQQIFKYQKNQIFIHHLVE I.claudius_F2_160_408_400765_peptide number 8 1722.7640999999999 0 DGIPSYPNGWQSWSE I.claudius_F2_160_408_400765_peptide number 9 944.0853000000002 0 AVKTLFHE I.claudius_F2_160_408_400765_peptide number 10 2335.523 0 KHFEPSIVFSSEPQDKAPYE I.claudius_F2_160_408_400765_peptide number 11 721.8414 0 KYLGLE I.claudius_F2_160_408_400765_peptide number 12 3832.3628 0 VSLVDPDRTFFNVSATKIRTTPFQYWKFIPKE I.claudius_F2_160_408_400765_peptide number 13 1576.8368 0 ARPFFAKTVAILGGE I.claudius_F2_160_408_400765_peptide number 14 2309.5733999999998 0 SSGKSVLVNKLAAVFNTTSAWE I.claudius_F2_160_408_400765_peptide number 15 523.5396000000001 0 YGRE I.claudius_F2_160_408_400765_peptide number 16 540.6082 0 FVFE I.claudius_F2_160_408_400765_peptide number 17 617.6492000000001 0 KLGGDE I.claudius_F2_160_408_400765_peptide number 18 5616.238000000001 0 QAMQYSDYPQMALGHQRYIDYAVRHSHKIAFIDTDFITTQAFCIQYE I.claudius_F2_160_408_400765_peptide number 19 1472.7075000000002 0 GKAHPFLDSMIKE I.claudius_F2_160_408_400765_peptide number 20 1666.8682999999999 0 YPFDVTILLKNNTE I.claudius_F2_160_408_400765_peptide number 21 4249.867800000001 0 WVDDGLRSLGSQKQRQQFQQLLKKLLDKYKVPYIE I.claudius_F2_160_408_400765_peptide number 22 260.2869 0 IE I.claudius_F2_160_408_400765_peptide number 23 1882.0782000000002 0 SPSYLDRYNQVKAVIE I.claudius_F2_160_408_400765_peptide number 24 601.6929 0 KVLNE I.claudius_F2_160_408_400765_peptide number 25 147.1293 0 E I.claudius_F2_160_408_400765_peptide number 26 147.1293 0 E I.claudius_F2_160_408_400765_peptide number 27 347.3642 0 ISE I.claudius_F2_160_408_400765_peptide number 28 1434.5932000000003 0 LQNTTFPIKGTSQ I.claudius_F2_161_67_405237_peptide number 1 7787.900400000001 0 MPTSDFLLFSRHSIPQQQNNVPTHVSHYHLKLDKADLKQKIKWHQQLNVPHQIMPKLAQNLLGNFH I.claudius_F2_162_55_406030_peptide number 1 5815.804600000003 0 MCVVTATHSILVNNVLLILVVVSSVSTAVSKFQAQNNLDLLKNPANLRGFVLYS I.claudius_F2_163_100_406420_peptide number 1 2568.1985999999997 0 MVMHVLMLILNFLRLAQHQME I.claudius_F2_163_100_406420_peptide number 2 2415.6770000000006 0 YLRSDGHCVQNLDLVDLNLVE I.claudius_F2_163_100_406420_peptide number 3 1254.416 0 KCRKNDAKYE I.claudius_F2_163_100_406420_peptide number 4 3866.4332999999992 0 LVRHRIAPQSLFYLNLVKHHNDVHLNASFLLAE I.claudius_F2_163_100_406420_peptide number 5 1641.9713 0 SIIDGILLTRCYKF I.claudius_F2_164_281_407466_peptide number 1 1137.2631 0 MFAQDPTKAE I.claudius_F2_164_281_407466_peptide number 2 1977.2934000000002 0 RMKVYYQHLNQVRIE I.claudius_F2_164_281_407466_peptide number 3 5285.010600000001 0 MINNLKATQAQIAVQKKAILSQQKNHRNQLSTQKKQQQALQKAQQE I.claudius_F2_164_281_407466_peptide number 4 827.8392000000001 0 HQSTLNE I.claudius_F2_164_281_407466_peptide number 5 2155.4082999999996 0 LNKNLALDQDKLNTLKANE I.claudius_F2_164_281_407466_peptide number 6 743.8089 0 QALRQE I.claudius_F2_164_281_407466_peptide number 7 615.6797 0 IQRAE I.claudius_F2_164_281_407466_peptide number 8 573.6 0 QAARE I.claudius_F2_164_281_407466_peptide number 9 275.2585 0 QE I.claudius_F2_164_281_407466_peptide number 10 431.4873 0 KRE I.claudius_F2_164_281_407466_peptide number 11 303.31500000000005 0 RE I.claudius_F2_164_281_407466_peptide number 12 1014.137 0 ALAQRQKAE I.claudius_F2_164_281_407466_peptide number 13 147.1293 0 E I.claudius_F2_164_281_407466_peptide number 14 1561.7379000000003 0 KRTSKPYQPTVQE I.claudius_F2_164_281_407466_peptide number 15 3717.1476 0 RQLLNSTSGLGAAKKQYSLPVSGSILHTFGSIQAGE I.claudius_F2_164_281_407466_peptide number 16 4475.2879 0 VRWKGMVIGASAGTPVKAIAAGRVILAGYLNGYGYMVIVKHGE I.claudius_F2_164_281_407466_peptide number 17 3450.8051 0 TDLSLYGFNQAVSVKVGQLVSAGQVIAQVGNTGE I.claudius_F2_164_281_407466_peptide number 18 2633.0152999999996 0 ISRSALYFGISRKGTPVNPAGWVR I.claudius_F2_165_76_414236_peptide number 1 2679.9807 0 MRFGLDNGFSQGCSKFGITRLDTE I.claudius_F2_165_76_414236_peptide number 2 3291.7564000000016 0 KPVKPALGFAPRPVAPSSRISPPEPVAAPGNGE I.claudius_F2_165_76_414236_peptide number 3 1946.3572000000001 0 IAVGWLCVSTFIKMCTSS I.claudius_F2_166_166_415962_peptide number 1 1145.3265000000001 0 MTVTLAGNPIE I.claudius_F2_166_166_415962_peptide number 2 1026.1029999999998 0 VGGHFPQVGE I.claudius_F2_166_166_415962_peptide number 3 359.418 0 IVE I.claudius_F2_166_166_415962_peptide number 4 7732.8272 0 NFILVGNDLADVALNDFASKRKVLNIFPSIDTGVCATSVRKFNQQAAKLSNTIVLCISADLPFAQARFCGAE I.claudius_F2_166_166_415962_peptide number 5 317.33820000000003 0 GIE I.claudius_F2_166_166_415962_peptide number 6 4130.6197 0 NAKTVSTFRNHALHSQLGVDIQTGPLAGLTSRAVIVLDE I.claudius_F2_166_166_415962_peptide number 7 1280.3869000000002 0 QNNVLHSQLVE I.claudius_F2_166_166_415962_peptide number 8 147.1293 0 E I.claudius_F2_166_166_415962_peptide number 9 388.4592 0 IKE I.claudius_F2_166_166_415962_peptide number 10 650.6344 0 EPNYE I.claudius_F2_166_166_415962_peptide number 11 627.7732000000001 0 AALAVLA I.claudius_F2_167_811_418524_peptide number 1 3483.1099000000013 0 MANFINMYRQLLSLPLSALVKNNPIPANPIE I.claudius_F2_167_811_418524_peptide number 2 147.1293 0 E I.claudius_F2_167_811_418524_peptide number 3 4314.957699999999 0 LSLNIHQPIVYVLPYTSQTDFVIFRRNCLALGLPDPAE I.claudius_F2_167_811_418524_peptide number 4 389.40420000000006 0 KNE I.claudius_F2_167_811_418524_peptide number 5 1678.9254 0 INGVKLPRYVYLDE I.claudius_F2_167_811_418524_peptide number 6 1491.6943 0 GRRIFKSKGAKDE I.claudius_F2_167_811_418524_peptide number 7 1229.3782999999999 0 TTTIFNKYLE I.claudius_F2_167_811_418524_peptide number 8 741.7931000000001 0 LHRTSE I.claudius_F2_167_811_418524_peptide number 9 2180.4593 0 SLDVQLIPVSVLWGRSPGQE I.claudius_F2_167_811_418524_peptide number 10 5003.7362 0 DKSDLPNLRLLNGIQKTFAAIWFGRDTFVRFSQAVSLRYMVVE I.claudius_F2_167_811_418524_peptide number 11 543.4846 0 HGSDE I.claudius_F2_167_811_418524_peptide number 12 4578.419200000001 0 KIAQKLARVAKMHFAKQRISATGPRLPNRQAMFNKLLQSE I.claudius_F2_167_811_418524_peptide number 13 827.9717 0 AIRRAIE I.claudius_F2_167_811_418524_peptide number 14 262.2167 0 DE I.claudius_F2_167_811_418524_peptide number 15 989.1242000000001 0 AKSKNISIE I.claudius_F2_167_811_418524_peptide number 16 602.681 0 KAQKE I.claudius_F2_167_811_418524_peptide number 17 850.9554 0 AYKILDE I.claudius_F2_167_811_418524_peptide number 18 4897.5577 0 IAADVSHSSLRAVDRFLRWLWNKLYSGINVQNSNRVRKLALE I.claudius_F2_167_811_418524_peptide number 19 341.3199 0 GHE I.claudius_F2_167_811_418524_peptide number 20 8196.524599999999 0 IVYVPCHRSHIDYLLLSYVLYHQGLVPPHIAAGINLNFWPIGRMFRSWGAFFIRRTFKGNRLYSAIFRE I.claudius_F2_167_811_418524_peptide number 21 510.5375 0 YLSE I.claudius_F2_167_811_418524_peptide number 22 1107.2188 0 LFHRGYSVE I.claudius_F2_167_811_418524_peptide number 23 570.6341000000001 0 YFIE I.claudius_F2_167_811_418524_peptide number 24 4589.327799999999 0 GGRSRTGRLLAPKTGMMSMTLQALQHSQTRPISIVPVYVGYE I.claudius_F2_167_811_418524_peptide number 25 496.55730000000005 0 HVLE I.claudius_F2_167_811_418524_peptide number 26 824.8752000000002 0 VDTYAKE I.claudius_F2_167_811_418524_peptide number 27 743.8520000000001 0 LRGAAKE I.claudius_F2_167_811_418524_peptide number 28 275.3016 0 KE I.claudius_F2_167_811_418524_peptide number 29 4700.3581 0 NAGLVLRVIKKLRNLGQGFVNFGEPITLSNYLSQHFPDWKE I.claudius_F2_167_811_418524_peptide number 30 526.5004 0 QNHE I.claudius_F2_167_811_418524_peptide number 31 147.1293 0 E I.claudius_F2_167_811_418524_peptide number 32 5168.953500000001 0 KPQWFTPAVNNISKQVMININKAAAVNSMNLVGTALLSSRQRALSRE I.claudius_F2_167_811_418524_peptide number 33 501.57370000000003 0 QLLE I.claudius_F2_167_811_418524_peptide number 34 3376.7862000000005 0 QLSSYQQLLQNVPYSTDVVLPNVTPQAMLE I.claudius_F2_167_811_418524_peptide number 35 1447.7211 0 HVLALDRIGVLIE I.claudius_F2_167_811_418524_peptide number 36 708.7168 0 KDNFGE I.claudius_F2_167_811_418524_peptide number 37 628.7613 0 IVRLE I.claudius_F2_167_811_418524_peptide number 38 3749.3417999999997 0 RSSAVLMTYYRNNIQHLFVLPSLVASIILHYE I.claudius_F2_167_811_418524_peptide number 39 2444.8655 0 AIQKDLLLDAIRKIYPFLQGE I.claudius_F2_167_811_418524_peptide number 40 919.0342 0 LFLHFNE I.claudius_F2_167_811_418524_peptide number 41 262.2167 0 DE I.claudius_F2_167_811_418524_peptide number 42 1320.4936999999998 0 LNVQIHQIINE I.claudius_F2_167_811_418524_peptide number 43 3780.3143 0 FARQSVINSNDNFLSINKSKVRILQLWSAGMLE I.claudius_F2_167_811_418524_peptide number 44 2605.0400000000004 0 ILQRYYITVTILQKQPAISRAE I.claudius_F2_167_811_418524_peptide number 45 260.2869 0 LE I.claudius_F2_167_811_418524_peptide number 46 275.3016 0 KE I.claudius_F2_167_811_418524_peptide number 47 1932.1848000000002 0 SQLVAQRLSVLHGINAPE I.claudius_F2_167_811_418524_peptide number 48 1863.1162000000002 0 FFDKAVFSSFIANLKE I.claudius_F2_167_811_418524_peptide number 49 856.8788000000001 0 QRYFDE I.claudius_F2_167_811_418524_peptide number 50 1124.2411000000002 0 SGYTVLDKIE I.claudius_F2_167_811_418524_peptide number 51 147.1293 0 E I.claudius_F2_167_811_418524_peptide number 52 1271.4166 0 LASTLSHLISTE I.claudius_F2_167_811_418524_peptide number 53 1076.3075 0 ICLTVKGTIE I.claudius_F2_167_811_418524_peptide number 54 362.37890000000004 0 KSE I.claudius_F2_167_811_418524_peptide number 55 420.4149 0 DLSS I.claudius_F2_168_149_425327_peptide number 1 406.4546 0 MQE I.claudius_F2_168_149_425327_peptide number 2 797.916 0 FISMATE I.claudius_F2_168_149_425327_peptide number 3 4438.1965 0 FAQKHTLLAVSWFAIFVMVIYTFYKGATSKFKVITHNE I.claudius_F2_168_149_425327_peptide number 4 1058.1862 0 VIRLINSDE I.claudius_F2_168_149_425327_peptide number 5 1114.2926 0 AIVVDLRSLE I.claudius_F2_168_149_425327_peptide number 6 147.1293 0 E I.claudius_F2_168_149_425327_peptide number 7 1824.0451999999998 0 FQRGHIINSINVLPSE I.claudius_F2_168_149_425327_peptide number 8 1156.3324 0 IKNQNIGKLE I.claudius_F2_168_149_425327_peptide number 9 499.5182 0 SHKE I.claudius_F2_168_149_425327_peptide number 10 3442.8675000000007 0 NALILVDTNGTSASASAVFLTKQGFNSVFVLKE I.claudius_F2_168_149_425327_peptide number 11 1832.1965 0 GLSAWVAANLPLVKKHK I.claudius_F2_169_1160_428732_peptide number 1 4071.748100000001 0 MSSQPRFIHLRTHTDFSMIDSIVKVKPLVKACAANE I.claudius_F2_169_1160_428732_peptide number 2 2318.6432 0 MVAMGLTDFTNFCGVVSFYSE I.claudius_F2_169_1160_428732_peptide number 3 2475.9428 0 MLSSGMKPIIGADVKVKSPLCGDE I.claudius_F2_169_1160_428732_peptide number 4 1440.596 0 YFDLTLLAKNNE I.claudius_F2_169_1160_428732_peptide number 5 3632.039599999999 0 GYRNITLLLSKAYQRGYNDLPYIDQDWLIE I.claudius_F2_169_1160_428732_peptide number 6 2420.7631000000006 0 HRDGVIILSGGTQGDVGKKLLKE I.claudius_F2_169_1160_428732_peptide number 7 431.44090000000006 0 NVAE I.claudius_F2_169_1160_428732_peptide number 8 260.2869 0 IE I.claudius_F2_169_1160_428732_peptide number 9 913.9699 0 SAVAFYQE I.claudius_F2_169_1160_428732_peptide number 10 2141.3437 0 FFADHFYLALSRTGRPNE I.claudius_F2_169_1160_428732_peptide number 11 147.1293 0 E I.claudius_F2_169_1160_428732_peptide number 12 1275.4963 0 RYIQAALKLAE I.claudius_F2_169_1160_428732_peptide number 13 2051.3438 0 RCDLPLVATNDVMFLNTE I.claudius_F2_169_1160_428732_peptide number 14 409.39060000000006 0 DFE I.claudius_F2_169_1160_428732_peptide number 15 355.3465 0 AHE I.claudius_F2_169_1160_428732_peptide number 16 3487.853499999999 0 IRVAIHDGYTLDDPKRPKCYTSQQYFRSE I.claudius_F2_169_1160_428732_peptide number 17 147.1293 0 E I.claudius_F2_169_1160_428732_peptide number 18 1552.8103999999998 0 DMCKLFADIPSALE I.claudius_F2_169_1160_428732_peptide number 19 3482.9577000000004 0 NTLLIAQRCSVTLRLGQYFLPQFPTGDLSTE I.claudius_F2_169_1160_428732_peptide number 20 1093.2304000000001 0 DFLVQKSKE I.claudius_F2_169_1160_428732_peptide number 21 317.33820000000003 0 GLE I.claudius_F2_169_1160_428732_peptide number 22 147.1293 0 E I.claudius_F2_169_1160_428732_peptide number 23 1135.3117 0 RLVFLFPDE I.claudius_F2_169_1160_428732_peptide number 24 643.7760000000001 0 KVRLE I.claudius_F2_169_1160_428732_peptide number 25 935.0355000000001 0 KRPKYDE I.claudius_F2_169_1160_428732_peptide number 26 643.7329 0 RLQVE I.claudius_F2_169_1160_428732_peptide number 27 2086.4722 0 LDVINQMGFPGYFLIVME I.claudius_F2_169_1160_428732_peptide number 28 3901.3351000000007 0 FIQWSKDNDIPVGPGRGSGAGSLVAYALKITDLDPLE I.claudius_F2_169_1160_428732_peptide number 29 782.8797000000001 0 FDLLFE I.claudius_F2_169_1160_428732_peptide number 30 774.8643 0 RFLNPE I.claudius_F2_169_1160_428732_peptide number 31 2502.801 0 RVSMPDFDVDFCMDGRDRVIE I.claudius_F2_169_1160_428732_peptide number 32 454.47760000000005 0 HVAE I.claudius_F2_169_1160_428732_peptide number 33 5990.954000000002 0 TYGRGAVSQIITFGTMAAKAVIRDVGRVLGHPYGFVDRISKLIPPDPGMTLAKAFE I.claudius_F2_169_1160_428732_peptide number 34 1496.4856 0 TEPQLQTAYDSDE I.claudius_F2_169_1160_428732_peptide number 35 147.1293 0 E I.claudius_F2_169_1160_428732_peptide number 36 1413.7314 0 VRALINMARKLE I.claudius_F2_169_1160_428732_peptide number 37 3216.578700000001 0 GVTRNAGKHAGGVVISPTLITDFAPLYCDNE I.claudius_F2_169_1160_428732_peptide number 38 1607.7217 0 GLHPVTHFDKNDVE I.claudius_F2_169_1160_428732_peptide number 39 3765.5134000000003 0 YAGLVKFDFLGLRTLTIIKWALDIINVRMVRE I.claudius_F2_169_1160_428732_peptide number 40 1705.9061 0 GKPRVDIAAIPLDDPE I.claudius_F2_169_1160_428732_peptide number 41 381.3805 0 SFE I.claudius_F2_169_1160_428732_peptide number 42 744.8798 0 LLKRSE I.claudius_F2_169_1160_428732_peptide number 43 908.0068 0 TTAVFQLE I.claudius_F2_169_1160_428732_peptide number 44 2036.3788000000004 0 SRGMKDLIKRLQPDCFE I.claudius_F2_169_1160_428732_peptide number 45 3365.8611000000005 0 DIIALVALFRPGPLQSGMVDNFIDRKHGRE I.claudius_F2_169_1160_428732_peptide number 46 147.1293 0 E I.claudius_F2_169_1160_428732_peptide number 47 779.7915 0 VSYPDAE I.claudius_F2_169_1160_428732_peptide number 48 2476.8196 0 YQHASLKPILEPTYGIILYQE I.claudius_F2_169_1160_428732_peptide number 49 3243.844200000001 0 QVMQIAQVLAGYTLGGADLLRRAMGKKKPE I.claudius_F2_169_1160_428732_peptide number 50 147.1293 0 E I.claudius_F2_169_1160_428732_peptide number 51 1249.5254 0 MAKQRLVFKE I.claudius_F2_169_1160_428732_peptide number 52 275.2585 0 GAE I.claudius_F2_169_1160_428732_peptide number 53 731.7518 0 KNGIDGE I.claudius_F2_169_1160_428732_peptide number 54 1194.4402 0 LSMKIFDLVE I.claudius_F2_169_1160_428732_peptide number 55 3634.0589999999997 0 KFAGYGFNKSHSAAYALVSYQTLWLKTHFPAE I.claudius_F2_169_1160_428732_peptide number 56 986.1635 0 FMAAVMTSE I.claudius_F2_169_1160_428732_peptide number 57 1512.6372999999999 0 MDNTDKIVGLYDE I.claudius_F2_169_1160_428732_peptide number 58 2706.1505000000006 0 CLRMGLKVTPPDINIGKHHFSVNE I.claudius_F2_169_1160_428732_peptide number 59 332.3098 0 QGE I.claudius_F2_169_1160_428732_peptide number 60 1275.493 0 IVYGIGAIKGVGE I.claudius_F2_169_1160_428732_peptide number 61 414.4534 0 GPIE I.claudius_F2_169_1160_428732_peptide number 62 842.94 0 ALVAARNE I.claudius_F2_169_1160_428732_peptide number 63 2955.4362000000006 0 GGIFKDLFDLCARVDLKKINRRTFE I.claudius_F2_169_1160_428732_peptide number 64 2455.8303 0 SLIMSGAFDKLGPHRAALSKNLE I.claudius_F2_169_1160_428732_peptide number 65 1455.4866000000002 0 DALRASDQHAKDE I.claudius_F2_169_1160_428732_peptide number 66 1399.5890000000002 0 AMGQTDMFGVLTE I.claudius_F2_169_1160_428732_peptide number 67 385.37250000000006 0 THE I.claudius_F2_169_1160_428732_peptide number 68 361.3478 0 DVE I.claudius_F2_169_1160_428732_peptide number 69 1240.2751 0 NAYANTPPYTE I.claudius_F2_169_1160_428732_peptide number 70 801.8847000000001 0 KQILDGE I.claudius_F2_169_1160_428732_peptide number 71 303.31500000000005 0 RE I.claudius_F2_169_1160_428732_peptide number 72 1963.237 0 TLGLYLSSHPVSRYLKE I.claudius_F2_169_1160_428732_peptide number 73 6512.419600000003 0 LSHYTSTRLKDLAPNRRGQISTVAGLVVASRIAMTKKGNRLGIATLDDRSGRLDLTLFGE I.claudius_F2_169_1160_428732_peptide number 74 347.3642 0 SLE I.claudius_F2_169_1160_428732_peptide number 75 479.4837 0 QFGE I.claudius_F2_169_1160_428732_peptide number 76 3156.5651000000003 0 KLQKDTVIVASGQVSFDDFSGGLKMTVRE I.claudius_F2_169_1160_428732_peptide number 77 720.8319000000001 0 LMTLDE I.claudius_F2_169_1160_428732_peptide number 78 1679.9151999999997 0 ARSRYVKSLAISLSE I.claudius_F2_169_1160_428732_peptide number 79 5708.566800000001 0 HQITPSFIKQFKALLEPVSGGTLPINVYYQSPKGRALLRLGVQWSIIPTDE I.claudius_F2_169_1160_428732_peptide number 80 474.5484 0 ILTE I.claudius_F2_169_1160_428732_peptide number 81 756.8871 0 LVNLLGE I.claudius_F2_169_1160_428732_peptide number 82 404.41560000000004 0 SAVE I.claudius_F2_169_1160_428732_peptide number 83 260.2869 0 LE I.claudius_F2_169_1160_428732_peptide number 84 294.30320000000006 0 FE I.claudius_F2_170_412_437117_peptide number 1 6194.1990000000005 0 MMVNVIIGLYYAVVLGWAASYTYFSFTGAWGDKPIDFFIGKFLKMGDIKNGISFE I.claudius_F2_170_412_437117_peptide number 2 11324.658200000005 0 FVGMVTAPLIAMWIVALGVLSMGVQKGIAKVSSVLMPVLVVMFMVLVIYSLFLPGAAKGLDALFTPDWSKLSNPSVWIAAYGQIFFSLSIGFGIMVTYASYLKKE I.claudius_F2_170_412_437117_peptide number 3 1786.8893999999998 0 SDLTGSGLVVGFANSSFE I.claudius_F2_170_412_437117_peptide number 4 2033.3267000000005 0 VLAGIGVFAALGFIATAQGQE I.claudius_F2_170_412_437117_peptide number 5 333.33770000000004 0 VSE I.claudius_F2_170_412_437117_peptide number 6 2465.8847 0 VAKGGIGLAFFAFPTIINKAPFGE I.claudius_F2_170_412_437117_peptide number 7 2463.9269000000004 0 VLGMLFFGSLTFAALTSFISVIE I.claudius_F2_170_412_437117_peptide number 8 7431.904399999999 0 VIISAIQDKIRISRGKVTFIVGVPMMLVSVILFGTTTGLPMLDVFDKFVNYFGIVAVAFASLIAIVANE I.claudius_F2_170_412_437117_peptide number 9 1207.3791 0 KLGLLGNHLNE I.claudius_F2_170_412_437117_peptide number 10 3186.7845 0 TSSFKVGFFWRLCIVLTSGVLAFMLFSE I.claudius_F2_170_412_437117_peptide number 11 736.8131000000001 0 GAKVFSE I.claudius_F2_170_412_437117_peptide number 12 367.35390000000007 0 GYE I.claudius_F2_170_412_437117_peptide number 13 3837.4698999999996 0 GYPNWFVNTFGWGMSISLLVVACFLSRLKWKSE I.claudius_F2_170_412_437117_peptide number 14 818.9120000000001 0 TKLTIDE I.claudius_F2_170_412_437117_peptide number 15 433.45680000000004 0 TKGE I.claudius_F2_171_157_439633_peptide number 1 4111.8497 0 MVQPRTVSVGKKSLIWIPFFGILYWVTGNIFLDRE I.claudius_F2_171_157_439633_peptide number 2 2140.3871999999997 0 NRTKAHNTMSQLARRINE I.claudius_F2_171_157_439633_peptide number 3 1251.4069000000002 0 DNLSIWMFPE I.claudius_F2_171_157_439633_peptide number 4 5587.4053 0 GTRNRGRGLLPFKTGAFHAAISAGVPIIPVVCSSTHNKINLNRWDNGKVICE I.claudius_F2_171_157_439633_peptide number 5 3085.4439999999995 0 IMDPIDVSGYTKDNVRDLAAYCHDLME I.claudius_F2_171_157_439633_peptide number 6 615.7228 0 KRIAE I.claudius_F2_171_157_439633_peptide number 7 375.37430000000006 0 LDE I.claudius_F2_171_157_439633_peptide number 8 147.1293 0 E I.claudius_F2_171_157_439633_peptide number 9 501.57700000000006 0 IAKGN I.claudius_F2_172_153_440582_peptide number 1 690.8505 0 MWLIE I.claudius_F2_172_153_440582_peptide number 2 262.2167 0 DE I.claudius_F2_172_153_440582_peptide number 3 2715.0827 0 QSLKANLPNKYGVDDIPLILQDME I.claudius_F2_172_153_440582_peptide number 4 3112.4556000000007 0 FNNDGLQLFKQNQPHFVGNRLLVNGIE I.claudius_F2_172_153_440582_peptide number 5 3858.3234999999995 0 APYLDVARGWIRLRLLNASLARAYDLRLDNDQE I.claudius_F2_172_153_440582_peptide number 6 2755.3188999999998 0 MLLIAQDLGFLPKAKSVKSLVLSPGE I.claudius_F2_172_153_440582_peptide number 7 374.39290000000005 0 RAE I.claudius_F2_172_153_440582_peptide number 8 1840.2518 0 ILVNMMKLTTYLSLAE I.claudius_F2_172_153_440582_peptide number 9 1891.2887999999998 0 VNVACTKNKKYVVLRR I.claudius_F2_173_783_441630_peptide number 1 3039.5044999999996 0 MNKKHTLISLAILTALYSQQSLADLHE I.claudius_F2_173_783_441630_peptide number 2 1295.5275 0 QCLMGVPKFSGE I.claudius_F2_173_783_441630_peptide number 3 1488.6805 0 VVTGDVNALPVYIE I.claudius_F2_173_783_441630_peptide number 4 518.4751 0 ADNAE I.claudius_F2_173_783_441630_peptide number 5 7093.758100000003 0 INQPNDATYQGNVDLKQGNRHLLAQSVQVKQSGNQSTPLRMAYVRNGFDYKDNQINMLGKDAE I.claudius_F2_173_783_441630_peptide number 6 1562.5501 0 FNLDSHDGNLTNSE I.claudius_F2_173_783_441630_peptide number 7 310.30260000000004 0 YE I.claudius_F2_173_783_441630_peptide number 8 4766.2110999999995 0 FVGRQGRGKADNITLHNNYRVMKNATFTSCLHGDNAWAVDASE I.claudius_F2_173_783_441630_peptide number 9 935.0785000000001 0 IRQYVKE I.claudius_F2_173_783_441630_peptide number 10 147.1293 0 E I.claudius_F2_173_783_441630_peptide number 11 381.38050000000004 0 YAE I.claudius_F2_173_783_441630_peptide number 12 8960.099700000002 0 MWHARFKIHGVPVFYTPYLQLPIGDRRRSGLLIPSAGTSSQDGLWYAQPIYWNIAPNYDLTFTPKYMSRRGWQANGE I.claudius_F2_173_783_441630_peptide number 13 1085.2099 0 FRYLTSIGE I.claudius_F2_173_783_441630_peptide number 14 559.6132 0 GKVAGE I.claudius_F2_173_783_441630_peptide number 15 1114.2512000000002 0 YLGKVRYSE I.claudius_F2_173_783_441630_peptide number 16 18107.77760000001 0 YASDNRKRHLFYWNHNSSFLQNWRLNINYTRVSDKRYFNDFDSIYGRSTDGYANQYARIAYYQPNYNFSLSAHQFQIFDDIVNIGPYRAVPQLDFNYHKYDLANGWLNFKLHSQAVRFDNDSKLMPTAWRFHAEPSLNSLMSNKYGSLNIE I.claudius_F2_173_783_441630_peptide number 17 1144.2772 0 TKLYATRYE I.claudius_F2_173_783_441630_peptide number 18 1046.1358 0 QKKGSGKNAE I.claudius_F2_173_783_441630_peptide number 19 3501.0395 0 DVQKTVNRVIPQFKVDLQSVLARDITFLKE I.claudius_F2_173_783_441630_peptide number 20 9208.880700000005 0 YTQTFEPHVQYLYRPYRNQSNIGSTLNNDYLGFGYDSALVQQDYYSLFRDRRYSGLDRISSANQVTLGGTTRFYDIAGE I.claudius_F2_173_783_441630_peptide number 21 147.1293 0 E I.claudius_F2_173_783_441630_peptide number 22 2246.4345 0 RFNLSAGQIYYLSNSRIDE I.claudius_F2_173_783_441630_peptide number 23 1673.7781 0 NPANKTPTSSSAWALE I.claudius_F2_173_783_441630_peptide number 24 3823.0575 0 SNWKISNKWYWRGSYQFDTHTNSTSLANTSLE I.claudius_F2_173_783_441630_peptide number 25 521.5204 0 YNPE I.claudius_F2_173_783_441630_peptide number 26 1881.0534 0 KNNLIQLNYRYANQE I.claudius_F2_173_783_441630_peptide number 27 3037.2948 0 YIDQNLGKSANAYQQDIQQVGLVVGWE I.claudius_F2_173_783_441630_peptide number 28 2547.8611000000005 0 IANNWAVVGRYYQDLALQKPVE I.claudius_F2_173_783_441630_peptide number 29 3668.9872000000005 0 QYLGVQYNSCCWAASVGVKRNVTNHQNQTRNE I.claudius_F2_173_783_441630_peptide number 30 1336.4866000000002 0 IVYDNSIGITLE I.claudius_F2_173_783_441630_peptide number 31 1610.6840000000002 0 LRGLGSNDHQSGIQE I.claudius_F2_173_783_441630_peptide number 32 391.48300000000006 0 MLE I.claudius_F2_173_783_441630_peptide number 33 1507.7747 0 KGKLPYIRAFSLD I.claudius_F2_174_416_448296_peptide number 1 1833.0736 0 MNFFQYKHNKLYAE I.claudius_F2_174_416_448296_peptide number 2 1030.153 0 DMPVQQLAE I.claudius_F2_174_416_448296_peptide number 3 1744.9405 0 QFGTPLYVYSRATLE I.claudius_F2_174_416_448296_peptide number 4 5131.828700000001 0 RHWHAFDSAFGNRPHLICFAVKSCSNIGVLNIMAKLGSGFDIVSQGE I.claudius_F2_174_416_448296_peptide number 5 260.2869 0 LE I.claudius_F2_174_416_448296_peptide number 6 2204.4860000000003 0 RVLAAGGDASKVVFSGVAKSRE I.claudius_F2_174_416_448296_peptide number 7 147.1293 0 E I.claudius_F2_174_416_448296_peptide number 8 731.9042000000001 0 IMRALE I.claudius_F2_174_416_448296_peptide number 9 1135.3399000000002 0 VRIRCFNVE I.claudius_F2_174_416_448296_peptide number 10 420.41499999999996 0 SVSE I.claudius_F2_174_416_448296_peptide number 11 1122.2747 0 LKHINQIAGE I.claudius_F2_174_416_448296_peptide number 12 3160.6016000000004 0 MGKIAPISLRVNPDVDAHTHPYISTGLKE I.claudius_F2_174_416_448296_peptide number 13 993.0715 0 NKFGVSVNE I.claudius_F2_174_416_448296_peptide number 14 374.39290000000005 0 ARE I.claudius_F2_174_416_448296_peptide number 15 2833.2834 0 VYKLASTLPNIKITGMDCHIGSQLTE I.claudius_F2_174_416_448296_peptide number 16 1874.2051000000001 0 LQPFLDATDRLIVLME I.claudius_F2_174_416_448296_peptide number 17 516.5884000000001 0 QLKE I.claudius_F2_174_416_448296_peptide number 18 2174.3637000000003 0 DGITLKHLDLGGGLGVTYTDE I.claudius_F2_174_416_448296_peptide number 19 1524.6297000000002 0 TPPHPSDYANALLE I.claudius_F2_174_416_448296_peptide number 20 891.0226 0 KLKNYPE I.claudius_F2_174_416_448296_peptide number 21 260.2869 0 LE I.claudius_F2_174_416_448296_peptide number 22 2868.3307000000004 0 IILEPGRAISANAGILVAKVQYLKSNE I.claudius_F2_174_416_448296_peptide number 23 2415.7003 0 SRNFAITDTGMNDMIRPALYE I.claudius_F2_174_416_448296_peptide number 24 838.9679000000001 0 AYMNIVE I.claudius_F2_174_416_448296_peptide number 25 745.8215 0 IDRTLE I.claudius_F2_174_416_448296_peptide number 26 303.31500000000005 0 RE I.claudius_F2_174_416_448296_peptide number 27 1292.5005 0 KAIYDVVGPVCE I.claudius_F2_174_416_448296_peptide number 28 1180.2678999999998 0 TSDFLGKQRE I.claudius_F2_174_416_448296_peptide number 29 531.5997 0 LSIAE I.claudius_F2_174_416_448296_peptide number 30 2902.0507000000002 0 GDYIAQCSAGAYGASMSSNYNSRARTAE I.claudius_F2_174_416_448296_peptide number 31 1819.0273000000002 0 VLVDGDQSYLIRRRE I.claudius_F2_174_416_448296_peptide number 32 489.5200000000001 0 TLQE I.claudius_F2_174_416_448296_peptide number 33 630.7323 0 LWALE I.claudius_F2_174_416_448296_peptide number 34 319.3541 0 STI I.claudius_F2_175_59_456917_peptide number 1 6421.4198 0 MACGLSVPHFHLPIIRGISDSFPSLSPSISQIPKHYSPVRHSSARKQAFSCYRSTCMC I.claudius_F2_176_69_461643_peptide number 1 8048.450800000002 0 MPTDHQPIARMDTYKPHQPLHPLIGVVLLHYKSVAQYKCQHLRRNCLKFPQIHVDYLCVILCLRSQNQ I.claudius_F2_177_50_464893_peptide number 1 5244.9519 0 MLDHGNHPKVDGSSLAHWVTQLVCQRFRQQVRMRPLNKPDQYKE I.claudius_F2_177_50_464893_peptide number 2 250.2722 0 CE I.claudius_F2_177_50_464893_peptide number 3 365.42410000000007 0 YLA I.claudius_F2_178_57_465444_peptide number 1 3082.8951 0 MKKLFLLLVLLQVLHQQLVLPILHCE I.claudius_F2_178_57_465444_peptide number 2 3577.3304000000003 0 YYSLTLRFCCNIPQLLLAARKLMQYLQSLL I.claudius_F2_179_65_467066_peptide number 1 7165.670100000006 0 MQAQSMQPNQPTNQPTNQPTNQPTNQPTNQPTNQPTNQPTNQPTNQPTNQPTNQPTKIVMFLNN I.claudius_F2_180_844_467737_peptide number 1 3544.0026999999995 0 MNNQNLKTLTLAGRSKKFDILIIDTTRDGHE I.claudius_F2_180_844_467737_peptide number 2 260.2869 0 IE I.claudius_F2_180_844_467737_peptide number 3 2611.8621000000003 0 NYDYKIYPNKQADLRAVGPTRE I.claudius_F2_180_844_467737_peptide number 4 2547.8595000000005 0 KADPYQITRQSTLIKLGFQPNE I.claudius_F2_180_844_467737_peptide number 5 1569.672 0 NHRLSVALDDSTLE I.claudius_F2_180_844_467737_peptide number 6 2056.2327 0 TKGIDLSYALRPYSTAGNE I.claudius_F2_180_844_467737_peptide number 7 495.5262 0 KYGE I.claudius_F2_180_844_467737_peptide number 8 2139.3709 0 RIINDQSKRKNIQFSYE I.claudius_F2_180_844_467737_peptide number 9 3328.6008 0 NFSQTPFWDHIKLSYSSQKITNKARSDE I.claudius_F2_180_844_467737_peptide number 10 2186.3842999999997 0 YCHQSTCNGVSNPQGLHLVE I.claudius_F2_180_844_467737_peptide number 11 147.1293 0 E I.claudius_F2_180_844_467737_peptide number 12 3606.9076999999997 0 GGVYKIVDKNGDKLTYNKNAGWYGQFQNKNGE I.claudius_F2_180_844_467737_peptide number 13 2181.2454 0 NVDNDIDSTGGSLDSVLIDCE I.claudius_F2_180_844_467737_peptide number 14 1624.9045 0 RLNCKNKFQVFVE I.claudius_F2_180_844_467737_peptide number 15 390.389 0 KDE I.claudius_F2_180_844_467737_peptide number 16 147.1293 0 E I.claudius_F2_180_844_467737_peptide number 17 738.7859000000001 0 GKDKYE I.claudius_F2_180_844_467737_peptide number 18 310.30260000000004 0 YE I.claudius_F2_180_844_467737_peptide number 19 147.1293 0 E I.claudius_F2_180_844_467737_peptide number 20 743.8487 0 RDIIVE I.claudius_F2_180_844_467737_peptide number 21 3121.5836999999997 0 TLPNGKKYGKITLKKGKTPLWDDVYQE I.claudius_F2_180_844_467737_peptide number 22 147.1293 0 E I.claudius_F2_180_844_467737_peptide number 23 4240.5962 0 SARFLFPKSYGYSTDFVNDRDLNTNTQQIKLDLDKE I.claudius_F2_180_844_467737_peptide number 24 2100.29 0 FSLWHTQHSLKYGGFYE I.claudius_F2_180_844_467737_peptide number 25 3572.0374999999995 0 KTLKSMVNHQYNTVANVQWWAGNFFCNKLE I.claudius_F2_180_844_467737_peptide number 26 2705.9800999999998 0 NGKRTPAPDYSHRCSLMNTDKGKE I.claudius_F2_180_844_467737_peptide number 27 5242.8001 0 TYLIPVTTKNNVLYFGDNVQLTSWLGLDLNYRYDHVKYLPSYDE I.claudius_F2_180_844_467737_peptide number 28 10860.180200000006 0 KIPVPNGLITGLFKKFGPKDYVYGSKYSKPADYTDCTYNSDCYKKNFKDNLALLLRKTDYKHHSYNLGLNLDPTDWLRVQLKYANGFRAPTSDE I.claudius_F2_180_844_467737_peptide number 29 2508.8450000000007 0 IYMTFKHPQFSIQPNTDLKAE I.claudius_F2_180_844_467737_peptide number 30 692.759 0 TSKTKE I.claudius_F2_180_844_467737_peptide number 31 3493.828 0 VAFTFYKNSSYITLNAFQNDYRNFIDLVE I.claudius_F2_180_844_467737_peptide number 32 766.8854000000001 0 VGPRPIE I.claudius_F2_180_844_467737_peptide number 33 147.1293 0 E I.claudius_F2_180_844_467737_peptide number 34 2685.9107 0 GSTIAYPFHQNQNRDRARVRGIE I.claudius_F2_180_844_467737_peptide number 35 687.7854 0 IASRLE I.claudius_F2_180_844_467737_peptide number 36 710.7956 0 MGDLFE I.claudius_F2_180_844_467737_peptide number 37 3471.961500000001 0 KLQGFHLGYKFTYQKGRIKDNGLNPKYKE I.claudius_F2_180_844_467737_peptide number 38 407.46080000000006 0 FLE I.claudius_F2_180_844_467737_peptide number 39 980.076 0 LNKDKHPE I.claudius_F2_180_844_467737_peptide number 40 310.30260000000004 0 YE I.claudius_F2_180_844_467737_peptide number 41 6762.663700000001 0 AIARKPQPMNALQPTTSVYNIGYDAPSQKWGVDMYITNVAAKKAKDSFNSQWTSMVKRKE I.claudius_F2_180_844_467737_peptide number 42 722.7864 0 KIYGNE I.claudius_F2_180_844_467737_peptide number 43 461.4669 0 KDAE I.claudius_F2_180_844_467737_peptide number 44 776.7925 0 ASTANGKE I.claudius_F2_180_844_467737_peptide number 45 7229.181300000002 0 VKDSRGLWRNNRYTVIDTIAYWKPIKNLTFTAGVYNLTNKKYLTWDSARSIRHLGTINRVE I.claudius_F2_180_844_467737_peptide number 46 2764.0822999999996 0 TATGKGLNRFYAPGRNYRMSVQFE I.claudius_F2_180_844_467737_peptide number 47 165.1892 0 F I.claudius_F2_181_56_473491_peptide number 1 1343.5257 0 MPACTPPSNLSPE I.claudius_F2_181_56_473491_peptide number 2 275.3016 0 KE I.claudius_F2_181_56_473491_peptide number 3 4224.852000000001 0 TKSTPCAIFSCTVGSFGKPYWLKSTNAPLPKSVTTGTFIS I.claudius_F2_182_68_475360_peptide number 1 704.8756000000001 0 MTIVIE I.claudius_F2_182_68_475360_peptide number 2 888.9222 0 FHWVGDE I.claudius_F2_182_68_475360_peptide number 3 3084.5118999999995 0 RIFQYLFHNRMATIFNFHTHFITE I.claudius_F2_182_68_475360_peptide number 4 923.0494000000001 0 CWHHVIE I.claudius_F2_182_68_475360_peptide number 5 2071.4228 0 GVCALGKIDQYIQFRKCE I.claudius_F2_182_68_475360_peptide number 6 614.6949 0 ARQLQ I.claudius_F2_183_57_476968_peptide number 1 6819.082299999999 0 MIRHSCHRNGLSCRLTSFRQRNIQQCRRFFRIVIKQLVKIPHAIKQQNIWILRFE I.claudius_F2_183_57_476968_peptide number 2 165.1892 0 F I.claudius_F2_184_66_477656_peptide number 1 601.7558 0 MILPE I.claudius_F2_184_66_477656_peptide number 2 1030.1148999999998 0 VGHCHTTFE I.claudius_F2_184_66_477656_peptide number 3 774.8594 0 AIGATTLE I.claudius_F2_184_66_477656_peptide number 4 1970.2429000000002 0 LIGVLFALFTDDVTCVDE I.claudius_F2_184_66_477656_peptide number 5 2417.7493 0 VATGTLGDVPASDLIGPIIVPSDPI I.claudius_F2_185_62_478180_peptide number 1 7501.0317000000005 0 MLSIYTISDCFGNCFCLYCRCTNYGFRRGLKCRLCRCCWHCWLLINRLKILLWRDHISRCR I.claudius_F2_186_73_480138_peptide number 1 8381.0087 0 MPWHNCLLANKILNASLLAQMPKKTLLLSSIMGDVQPSFFLVSLKDRKLNVDLRFHFQSRLLLKYLRQLKGQ I.claudius_F2_187_154_481231_peptide number 1 677.8105 0 MSKLAE I.claudius_F2_187_154_481231_peptide number 2 459.494 0 LQAE I.claudius_F2_187_154_481231_peptide number 3 404.4189 0 TRE I.claudius_F2_187_154_481231_peptide number 4 373.44450000000006 0 IIE I.claudius_F2_187_154_481231_peptide number 5 1775.9062999999999 0 DLLNDGSEPNALYIIE I.claudius_F2_187_154_481231_peptide number 6 1483.5859 0 HHIAHHDFDLLE I.claudius_F2_187_154_481231_peptide number 7 1311.4822000000001 0 KIAVDAFKAGYE I.claudius_F2_187_154_481231_peptide number 8 333.33770000000004 0 VSE I.claudius_F2_187_154_481231_peptide number 9 218.2072 0 AE I.claudius_F2_187_154_481231_peptide number 10 147.1293 0 E I.claudius_F2_187_154_481231_peptide number 11 1989.2047000000002 0 FKDDDGKPIFCFDIISE I.claudius_F2_187_154_481231_peptide number 12 246.2604 0 VE I.claudius_F2_187_154_481231_peptide number 13 459.5371 0 LKAE I.claudius_F2_187_154_481231_peptide number 14 944.0405000000001 0 IIDAQQKE I.claudius_F2_187_154_481231_peptide number 15 696.8749 0 ILPLLE I.claudius_F2_187_154_481231_peptide number 16 1686.7767000000001 0 KHNGIYDGWGTYFE I.claudius_F2_187_154_481231_peptide number 17 889.7746000000001 0 DPNADDDE I.claudius_F2_187_154_481231_peptide number 18 654.58 0 YGDDGE I.claudius_F2_187_154_481231_peptide number 19 637.6356000000001 0 FLDDE I.claudius_F2_187_154_481231_peptide number 20 262.2167 0 DE I.claudius_F2_187_154_481231_peptide number 21 654.58 0 YGDDGE I.claudius_F2_187_154_481231_peptide number 22 671.6519000000001 0 FFDDE I.claudius_F2_187_154_481231_peptide number 23 262.2167 0 DE I.claudius_F2_187_154_481231_peptide number 24 147.1293 0 E I.claudius_F2_187_154_481231_peptide number 25 636.7006 0 EPRVH I.claudius_F2_188_579_482495_peptide number 1 2558.1525000000006 0 MKKKSLKLTALFLALSCFPAFAE I.claudius_F2_188_579_482495_peptide number 2 703.7385 0 QTVDIE I.claudius_F2_188_579_482495_peptide number 3 2626.9677 0 VQGIRGFRAVRNTDLNVNLINKE I.claudius_F2_188_579_482495_peptide number 4 147.1293 0 E I.claudius_F2_188_579_482495_peptide number 5 537.5414 0 MDGSE I.claudius_F2_188_579_482495_peptide number 6 2570.9013 0 RYQHLVTKAVDRGLRVFGYYE I.claudius_F2_188_579_482495_peptide number 7 723.7746000000001 0 SSVRFE I.claudius_F2_188_579_482495_peptide number 8 3455.9210000000007 0 RKQRQGKRDLLIAHVTPGEPTKIAGTDVQIE I.claudius_F2_188_579_482495_peptide number 9 204.1806 0 GE I.claudius_F2_188_579_482495_peptide number 10 532.5017 0 AAQDE I.claudius_F2_188_579_482495_peptide number 11 1927.2081000000003 0 NFNALRKNLPKDGVLVE I.claudius_F2_188_579_482495_peptide number 12 3693.043400000001 0 HQTYDDYKTAISRLALNRGYFDGNFKISRLE I.claudius_F2_188_579_482495_peptide number 13 444.47940000000006 0 ISPE I.claudius_F2_188_579_482495_peptide number 14 9563.457500000006 0 THQAWWRMLFDSGVRYHYGNITFSHSQIRDDYLNNILNIKSGDPYLMNNLSDLTSDFPSSNWFSSVLVQPNVNHKSKTVDVE I.claudius_F2_188_579_482495_peptide number 15 1475.7975000000001 0 IILYPRKKNAME I.claudius_F2_188_579_482495_peptide number 16 4666.1729000000005 0 LGVGFSTDGGVHGQIGWTKPWINSRGHSLRSNLYLSAPKQTLE I.claudius_F2_188_579_482495_peptide number 17 2825.1983 0 ATYRMPLLKNPLNYYYDFAVGWE I.claudius_F2_188_579_482495_peptide number 18 204.1806 0 GE I.claudius_F2_188_579_482495_peptide number 19 275.3016 0 KE I.claudius_F2_188_579_482495_peptide number 20 9810.949300000006 0 NDTNTRVLTLSALRYWNNAHGWQYFGGLRMRYDSFTQADITDKTLLLYPTVGFTRTRLRGGSFATWGDVQKITFDLSKRIWLSE I.claudius_F2_188_579_482495_peptide number 21 2030.2402000000002 0 SSFIKVQASSAWVRTYAE I.claudius_F2_188_579_482495_peptide number 22 1051.1606 0 NHRVVARAE I.claudius_F2_188_579_482495_peptide number 23 1130.2935 0 IGYLHTKGIE I.claudius_F2_188_579_482495_peptide number 24 4920.675800000002 0 KIPPTLRFFAGGDRSVRGYGYKKIAPKNRNGKLVGGSRLLTTSLE I.claudius_F2_188_579_482495_peptide number 25 3244.434600000001 0 YQYQVYPNWWAATFADSGLAADNYTAKE I.claudius_F2_188_579_482495_peptide number 26 4825.438900000001 0 LRYGTGVGVRWASPVGAIKFDIATPIRDKDNSKNIQFYIGLGTE I.claudius_F2_188_579_482495_peptide number 27 131.1729 0 I I.claudius_F2_189_240_487418_peptide number 1 278.32540000000006 0 ME I.claudius_F2_189_240_487418_peptide number 2 8479.613100000004 0 IRSDLRINIGKDVSLDAYGLKTNLDGLLSVKQDKGNLGLFGQINLTKGRYASFGQDLLIRKGLISFSGQATQPTLNIE I.claudius_F2_189_240_487418_peptide number 3 698.7683000000001 0 AIRNPE I.claudius_F2_189_240_487418_peptide number 4 379.4293 0 TME I.claudius_F2_189_240_487418_peptide number 5 1828.0292000000002 0 DSKITAGVRVIGIADSPE I.claudius_F2_189_240_487418_peptide number 6 2780.09 0 VTIFSEPSKPQDQALSYLLTGRSLE I.claudius_F2_189_240_487418_peptide number 7 378.3352 0 SSGE I.claudius_F2_189_240_487418_peptide number 8 2514.8694 0 VGSTGSVGAALIGLGISKSGKLVGSIGE I.claudius_F2_189_240_487418_peptide number 9 4582.129600000001 0 VFGIQDLNLGTSGVGDKSKVTVSGNITNRLQIKYGVGLFDGLAE I.claudius_F2_189_240_487418_peptide number 10 3687.2245 0 VTLRYRLMPQLYFQSVSSTNQVFDLLYKFE I.claudius_F2_189_240_487418_peptide number 11 165.1892 0 F I.claudius_F2_190_81_490727_peptide number 1 9204.826300000002 0 MQLLPHCTLDKLMLYIRQNLASSLIQAPLVVVIAYLHVLLISFGVNHSQLKQKQKEPQVRSFLTLFSYYVPIHSGYSKSF I.claudius_F2_191_156_491212_peptide number 1 365.4027 0 MSE I.claudius_F2_191_156_491212_peptide number 2 2297.6571 0 KYVVTWDMFQMHARRLSE I.claudius_F2_191_156_491212_peptide number 3 2977.507900000001 0 RLLPASQWKGIIAVSRGGLFPAAVLARE I.claudius_F2_191_156_491212_peptide number 4 836.9784 0 LGLRHIE I.claudius_F2_191_156_491212_peptide number 5 1687.7450000000001 0 TVCIASYHDHNNQGE I.claudius_F2_191_156_491212_peptide number 6 1432.5806 0 LQVLHAAQVPNGGE I.claudius_F2_191_156_491212_peptide number 7 4083.6247000000017 0 GFIVVDDLVDTGNTARAIRQMYPNAKFVTVFAKPAGAE I.claudius_F2_191_156_491212_peptide number 8 1933.1182000000003 0 LVDDYVIDIPQNTWIE I.claudius_F2_191_156_491212_peptide number 9 1854.1556999999998 0 QPWDLGLTFVPPLSRK I.claudius_F2_192_63_493482_peptide number 1 6241.376500000004 0 MAKPVNGPIAPPITAIKIPINNGASGPRGTPFPSSVNAIINAIRIAVITNSTAKAPPMLKLG I.claudius_F2_193_81_493869_peptide number 1 8112.366000000003 0 MVTAGFRCAPDKPAVAYTASATPIPHIMLISHKPKLAPATFSAATQPTPKKINKAVPKNSPIQFAFNDLSIDHSLE I.claudius_F2_193_81_493869_peptide number 2 514.662 0 VRLK I.claudius_F2_194_50_496072_peptide number 1 2633.1181000000006 0 MPTSCNKYICLVLKAKHKNNTPE I.claudius_F2_194_50_496072_peptide number 2 2882.4137000000005 0 IVAVDALITTAFIFLATFFTIKFCTD I.claudius_F2_195_50_498485_peptide number 1 4846.745899999999 0 MLLILAALPYNDYTFYIIFSYILGIGGKQWDYRLVSIKMLE I.claudius_F2_195_50_498485_peptide number 2 1000.2610000000001 0 IFRHLALM I.claudius_F2_196_387_499102_peptide number 1 792.9194 0 MFTYCE I.claudius_F2_196_387_499102_peptide number 2 871.0362 0 VKNLIRE I.claudius_F2_196_387_499102_peptide number 3 1913.1021 0 GGKVIGVNAYDHKNRRE I.claudius_F2_196_387_499102_peptide number 4 2230.5228 0 RQFFAPLVVNAGGIWGQGIAE I.claudius_F2_196_387_499102_peptide number 5 7101.323900000003 0 YADLKIKMFPAKGALLVMGHRINKLVINRCRKPADADILVPGDTICVIGTTSSRIPYDQIDNME I.claudius_F2_196_387_499102_peptide number 6 444.47950000000003 0 VTPE I.claudius_F2_196_387_499102_peptide number 7 147.1293 0 E I.claudius_F2_196_387_499102_peptide number 8 891.0226 0 VDILFRE I.claudius_F2_196_387_499102_peptide number 9 204.1806 0 GE I.claudius_F2_196_387_499102_peptide number 10 4779.3807000000015 0 KLAPSLRHTRVLRAYAGVRPLVASDDDPSGRNVSRGIVLLDHAE I.claudius_F2_196_387_499102_peptide number 11 2558.97 0 RDGLDGFITITGGKLMTYRLMAE I.claudius_F2_196_387_499102_peptide number 12 2250.6404 0 WATDLVCKKLNKTARCVTAE I.claudius_F2_196_387_499102_peptide number 13 827.879 0 QPLPGSTE I.claudius_F2_196_387_499102_peptide number 14 518.5215000000001 0 SRQE I.claudius_F2_196_387_499102_peptide number 15 3317.7554999999998 0 TNQKVISLPSTIRYSAVYRHGSRATRLLE I.claudius_F2_196_387_499102_peptide number 16 275.3016 0 KE I.claudius_F2_196_387_499102_peptide number 17 1108.2931 0 RLDRSMVCE I.claudius_F2_196_387_499102_peptide number 18 250.2722 0 CE I.claudius_F2_196_387_499102_peptide number 19 546.5714 0 AVTAGE I.claudius_F2_196_387_499102_peptide number 20 850.9158000000001 0 VRYAVDE I.claudius_F2_196_387_499102_peptide number 21 2602.9481 0 LDVNNLVDLRRRSRVGMGTCQAE I.claudius_F2_196_387_499102_peptide number 22 1554.8593 0 LCACRAAGLMNRFE I.claudius_F2_196_387_499102_peptide number 23 1766.9694 0 VATPRQSTTQLSAFME I.claudius_F2_196_387_499102_peptide number 24 147.1293 0 E I.claudius_F2_196_387_499102_peptide number 25 1469.6454 0 RWRGIEPIAWGE I.claudius_F2_196_387_499102_peptide number 26 487.55050000000006 0 AIRE I.claudius_F2_196_387_499102_peptide number 27 218.2072 0 AE I.claudius_F2_196_387_499102_peptide number 28 2285.5701 0 FTSWMYASVLGLNDVKPLDE I.claudius_F2_196_387_499102_peptide number 29 1077.0173 0 QAQQGTDSNE I.claudius_F2_196_387_499102_peptide number 30 165.1892 0 F I.claudius_F2_197_427_501562_peptide number 1 2273.4798 0 MDNNIQRLIDSAKQSLNSPE I.claudius_F2_197_427_501562_peptide number 2 916.9705000000001 0 SYKYIDE I.claudius_F2_197_427_501562_peptide number 3 381.3805 0 SFE I.claudius_F2_197_427_501562_peptide number 4 3293.7291000000005 0 SCIKCTACTAVCPVSRNNPLYPGPKQSGPDGE I.claudius_F2_197_427_501562_peptide number 5 972.1434 0 RLRLKSAE I.claudius_F2_197_427_501562_peptide number 6 538.5476000000001 0 LYDE I.claudius_F2_197_427_501562_peptide number 7 1431.7036 0 ALKYCTNCKRCE I.claudius_F2_197_427_501562_peptide number 8 7399.726700000002 0 VACPSDVKIGDLIVRARNNHLAQSKKPLMNKLRDAILSNTDVMGKINTPLAPIVNTITGLKATKFMLE I.claudius_F2_197_427_501562_peptide number 9 4267.907999999999 0 KTLNISKKRTLPKYAFGTFRSWYMKNALQDQQKFE I.claudius_F2_197_427_501562_peptide number 10 2500.7880999999998 0 RKVAYFHGCYVNYNNPQLGKE I.claudius_F2_197_427_501562_peptide number 11 1839.2686000000003 0 FLKVFNAMNIGVMLLE I.claudius_F2_197_427_501562_peptide number 12 275.3016 0 KE I.claudius_F2_197_427_501562_peptide number 13 3716.295400000001 0 KCCGLPLMVNGFPNRARNIAQFNTDYIGKMVDE I.claudius_F2_197_427_501562_peptide number 14 845.8942000000001 0 NGIDVISE I.claudius_F2_197_427_501562_peptide number 15 1194.2729 0 ASSCSLNLRDE I.claudius_F2_197_427_501562_peptide number 16 3518.0978 0 YHHILGIDNAKVRPHIHMVTPFLYQLFKE I.claudius_F2_197_427_501562_peptide number 17 3578.1913 0 GKTLPLKPLKLRVAYHTACHVDKAGWAPYTLE I.claudius_F2_197_427_501562_peptide number 18 1026.2703 0 VLKKIPSLE I.claudius_F2_197_427_501562_peptide number 19 2118.4958 0 IIMLPSQCCGIAGTYGFKSE I.claudius_F2_197_427_501562_peptide number 20 424.40520000000004 0 NYE I.claudius_F2_197_427_501562_peptide number 21 1691.8361999999997 0 ISQSIGKNLFDNINE I.claudius_F2_197_427_501562_peptide number 22 986.0325000000001 0 GGFDYVISE I.claudius_F2_197_427_501562_peptide number 23 3273.8882999999996 0 CQTCKWQIDMSSNVTCIHPLTLLCMSMDA I.claudius_F2_198_293_505108_peptide number 1 278.32540000000006 0 ME I.claudius_F2_198_293_505108_peptide number 2 4448.9674 0 FTDLQIFIHLSDTKNFTKTATQNHMSPSTLSRQIQRLE I.claudius_F2_198_293_505108_peptide number 3 262.2167 0 DE I.claudius_F2_198_293_505108_peptide number 4 2031.3590000000002 0 LGKTLFIRDNRQVKLTE I.claudius_F2_198_293_505108_peptide number 5 367.35390000000007 0 YGE I.claudius_F2_198_293_505108_peptide number 6 1111.2903 0 KFLQFAKTE I.claudius_F2_198_293_505108_peptide number 7 1906.0612 0 WQNWQQFKQQLKDE I.claudius_F2_198_293_505108_peptide number 8 349.294 0 SDE I.claudius_F2_198_293_505108_peptide number 9 420.4811000000001 0 LCGE I.claudius_F2_198_293_505108_peptide number 10 2272.6641 0 IKLFCSVTASYSHLPHVLKE I.claudius_F2_198_293_505108_peptide number 11 1222.3957 0 FRQRYPKVE I.claudius_F2_198_293_505108_peptide number 12 1341.5064 0 IQLTTGDPALALE I.claudius_F2_198_293_505108_peptide number 13 5253.0797 0 LIQAQQVDLALAGKPNNLPSSVVFHKIDDISLSLIAPRVACLATQLLQE I.claudius_F2_198_293_505108_peptide number 14 1875.1931 0 KPIDWQQMPFIFPVE I.claudius_F2_198_293_505108_peptide number 15 966.056 0 GHARQRIE I.claudius_F2_198_293_505108_peptide number 16 730.8117000000001 0 QWLRE I.claudius_F2_198_293_505108_peptide number 17 1820.0998000000002 0 KQIKHPKIYATVAGHE I.claudius_F2_198_293_505108_peptide number 18 4497.2172 0 GIVPMVGLGFGLAMLPDAVIDSSPMNNQISRLNLDKPIEPFE I.claudius_F2_198_293_505108_peptide number 19 1274.49 0 LGICTQKRNLE I.claudius_F2_198_293_505108_peptide number 20 1460.7413999999999 0 QPLVRAFWAMLE I.claudius_F2_199_106_506896_peptide number 1 650.7868000000001 0 MPFKE I.claudius_F2_199_106_506896_peptide number 2 972.0522000000001 0 ITPQQAWE I.claudius_F2_199_106_506896_peptide number 3 4342.934699999998 0 MMQQGAILVDIRDNMRFAYSHPKGAFHLTNQSFLQFE I.claudius_F2_199_106_506896_peptide number 4 147.1293 0 E I.claudius_F2_199_106_506896_peptide number 5 2940.2859000000003 0 LADFDSPIIVSCYHGVSSRNVATFLVE I.claudius_F2_199_106_506896_peptide number 6 2265.5256000000004 0 QGYKNVFSMIGGFDGWCRAE I.claudius_F2_199_106_506896_peptide number 7 821.9142 0 LPIDTTY I.claudius_F2_200_296_508687_peptide number 1 1957.2554999999998 0 MLTALNRYWDYLRIE I.claudius_F2_200_296_508687_peptide number 2 5116.766299999998 0 RQMSPHTITNYQHQLDATIKILAQQDIHSWTQVTPSVVRFILAE I.claudius_F2_200_296_508687_peptide number 3 917.0616 0 SKKQGLKE I.claudius_F2_200_296_508687_peptide number 4 2532.9806 0 KSLALRLSALRRFLSFLVQQGE I.claudius_F2_200_296_508687_peptide number 5 2659.0295000000006 0 LKVNPATGISAPKQGRHLPKNMDGE I.claudius_F2_200_296_508687_peptide number 6 2664.9644000000003 0 QVQQLLANDSKEPIDIRDRAILE I.claudius_F2_200_296_508687_peptide number 7 1255.4404 0 LMYSSGLRLSE I.claudius_F2_200_296_508687_peptide number 8 1727.9165000000003 0 LQGLDLNSINTRVRE I.claudius_F2_200_296_508687_peptide number 9 1099.2846 0 VRVIGKGNKE I.claudius_F2_200_296_508687_peptide number 10 1729.9358000000002 0 RVVPFGRYASHAIQE I.claudius_F2_200_296_508687_peptide number 11 1615.8728 0 WLKVRALFNPKDE I.claudius_F2_200_296_508687_peptide number 12 2436.8136999999997 0 ALFVSQLGNRISHRAIQKRLE I.claudius_F2_200_296_508687_peptide number 13 3181.5905999999995 0 TWGIRQGLNSHLNPHKLRHSFATHMLE I.claudius_F2_200_296_508687_peptide number 14 1075.1307 0 ASSDLRAVQE I.claudius_F2_200_296_508687_peptide number 15 2637.8991 0 LLGHSNLSTTQIYTHLNFQHLAE I.claudius_F2_200_296_508687_peptide number 16 1596.8348999999998 0 VYDQAHPRAKRKK I.claudius_F2_201_51_510636_peptide number 1 2933.3829000000005 0 MPVSSVIVKSTSRGGWAKSLLSNTAKVE I.claudius_F2_201_51_510636_peptide number 2 2316.6538 0 AKPIPLSDPSVVPRAFTHSPSI I.claudius_F2_202_156_511192_peptide number 1 365.4027 0 MSE I.claudius_F2_202_156_511192_peptide number 2 2297.6571 0 KYVVTWDMFQMHARRLSE I.claudius_F2_202_156_511192_peptide number 3 2977.507900000001 0 RLLPASQWKGIIAVSRGGLFPAAVLARE I.claudius_F2_202_156_511192_peptide number 4 836.9784 0 LGLRHIE I.claudius_F2_202_156_511192_peptide number 5 1687.7450000000001 0 TVCIASYHDHNNQGE I.claudius_F2_202_156_511192_peptide number 6 1432.5806 0 LQVLHAAQVPNGGE I.claudius_F2_202_156_511192_peptide number 7 4083.6247000000017 0 GFIVVDDLVDTGNTARAIRQMYPNAKFVTVFAKPAGAE I.claudius_F2_202_156_511192_peptide number 8 1933.1182000000003 0 LVDDYVIDIPQNTWIE I.claudius_F2_202_156_511192_peptide number 9 1854.1556999999998 0 QPWDLGLTFVPPLSRK I.claudius_F2_203_159_512734_peptide number 1 1685.9030000000002 0 MIRIGHGFDVHAFGE I.claudius_F2_203_159_512734_peptide number 2 1068.2241000000001 0 DRPLIIGGVE I.claudius_F2_203_159_512734_peptide number 3 5839.463200000003 0 VPYHTGFIAHSDGDVALHALTDAILGAAALGDIGKLFPDTDMQYKNADSRGLLRE I.claudius_F2_203_159_512734_peptide number 4 876.9562999999999 0 AFRQVQE I.claudius_F2_203_159_512734_peptide number 5 3550.2044 0 KGYKIGNVDITIIAQAPKMRPHIDAMRAKIAE I.claudius_F2_203_159_512734_peptide number 6 834.8914 0 DLQCDIE I.claudius_F2_203_159_512734_peptide number 7 1090.1852 0 QVNVKATTTE I.claudius_F2_203_159_512734_peptide number 8 1035.1544999999999 0 KLGFTGRQE I.claudius_F2_203_159_512734_peptide number 9 491.5590000000001 0 GIACE I.claudius_F2_203_159_512734_peptide number 10 883.0899000000001 0 AVALLIRQ I.claudius_F2_204_70_514434_peptide number 1 3402.0873 0 MIKIKRLRKSKPFTTIKRYQTYQVMNE I.claudius_F2_204_70_514434_peptide number 2 3124.4617000000003 0 YALANYDVRFSAVHFQFVSFRYFFE I.claudius_F2_204_70_514434_peptide number 3 1684.1138000000003 0 ILRFSLLILQLLIE I.claudius_F2_204_70_514434_peptide number 4 287.35530000000006 0 VIG I.claudius_F2_205_334_514860_peptide number 1 917.0847000000001 0 MNRALAIE I.claudius_F2_205_334_514860_peptide number 2 737.8012 0 FSRVTE I.claudius_F2_205_334_514860_peptide number 3 4109.6667 0 AAALAAYTWLGRGDKNAADDAAVKAMRYMLNLIHMDAE I.claudius_F2_205_334_514860_peptide number 4 529.6269000000001 0 IVIGE I.claudius_F2_205_334_514860_peptide number 5 204.1806 0 GE I.claudius_F2_205_334_514860_peptide number 6 375.37430000000006 0 IDE I.claudius_F2_205_334_514860_peptide number 7 879.0318000000001 0 APMLYVGE I.claudius_F2_205_334_514860_peptide number 8 745.8215 0 KVGSGLGE I.claudius_F2_205_334_514860_peptide number 9 4467.1269 0 LVSIAVDPIDGTHMTAMGQSNAISVLAAGGKNTFLKAPDMYME I.claudius_F2_205_334_514860_peptide number 10 2021.4004999999997 0 KLVVGSNVKGIIDLNLPLE I.claudius_F2_205_334_514860_peptide number 11 6460.553600000002 0 QNLRRIASKLGKSLSDLTVMVLAKPRHDAVIKQIHNLGAKVLAIPDGDVAGSVLCCLPDAE I.claudius_F2_205_334_514860_peptide number 12 1203.3409 0 VDLLYGIGGAPE I.claudius_F2_205_334_514860_peptide number 13 2421.777600000001 0 GVAAAAAIRALGGDMQARLIPRNE I.claudius_F2_205_334_514860_peptide number 14 677.7013000000001 0 VKSDTE I.claudius_F2_205_334_514860_peptide number 15 147.1293 0 E I.claudius_F2_205_334_514860_peptide number 16 886.9925000000001 0 NKKIAANE I.claudius_F2_205_334_514860_peptide number 17 1400.6464999999998 0 IQRCAALGVKVNE I.claudius_F2_205_334_514860_peptide number 18 600.7479000000001 0 VLKLE I.claudius_F2_205_334_514860_peptide number 19 3604.973200000001 0 DLVRDDNLVFTATGITNGDLLKGISRKGNLASTE I.claudius_F2_205_334_514860_peptide number 20 3485.1291 0 TILIRGKSRTIRKIQSIHYLDDLYKILNI I.claudius_F2_206_199_517109_peptide number 1 543.5939000000001 0 MHQE I.claudius_F2_206_199_517109_peptide number 2 2208.4081 0 QLDGAMNIRDKYGKIGADNE I.claudius_F2_206_199_517109_peptide number 3 787.8135000000001 0 QYVSYE I.claudius_F2_206_199_517109_peptide number 4 1327.5278 0 QIAKFILQHTE I.claudius_F2_206_199_517109_peptide number 5 995.0508 0 NHLAQQRE I.claudius_F2_206_199_517109_peptide number 6 5600.3874000000005 0 IFRRIIYAYLLGNNDLHLRNFSFIYPKNSHPKLAPIYDFVSVSPYPE I.claudius_F2_206_199_517109_peptide number 7 1670.9893 0 IFNSTLLALPLLARE I.claudius_F2_206_199_517109_peptide number 8 147.1293 0 E I.claudius_F2_206_199_517109_peptide number 9 1570.6583000000003 0 GNATLAKGFNTQYGE I.claudius_F2_206_199_517109_peptide number 10 956.9913000000001 0 YIGDDFVE I.claudius_F2_206_199_517109_peptide number 11 351.35450000000003 0 FGE I.claudius_F2_206_199_517109_peptide number 12 1806.1541000000002 0 NIGLNKNVIIQKLIPE I.claudius_F2_206_199_517109_peptide number 13 501.57370000000003 0 IIQE I.claudius_F2_206_199_517109_peptide number 14 275.3016 0 KE I.claudius_F2_206_199_517109_peptide number 15 374.43270000000007 0 KVE I.claudius_F2_206_199_517109_peptide number 16 4059.712200000001 0 QIYSQSFMPQPHIDCVLKTYRKRLALLNLLNEPE I.claudius_F2_206_199_517109_peptide number 17 131.1729 0 L I.claudius_F2_207_64_523411_peptide number 1 2266.7951 0 MLLMCNGGQHLRLVRILGLE I.claudius_F2_207_64_523411_peptide number 2 2065.4995 0 NLTLVQRLMSGMLTFVLE I.claudius_F2_207_64_523411_peptide number 3 1883.1902 0 LILNFLTYYPLKQQE I.claudius_F2_207_64_523411_peptide number 4 1113.3473 0 NQSISLIILL I.claudius_F2_208_161_524220_peptide number 1 7342.271200000003 0 MAKFMDGFNLSYKYTYQKGRMNGNIPMNAIQPRTMVYGLGYDHPNHKFGFDFYTTHVASKNPE I.claudius_F2_208_161_524220_peptide number 2 1210.3121 0 DTYNMFYKE I.claudius_F2_208_161_524220_peptide number 3 147.1293 0 E I.claudius_F2_208_161_524220_peptide number 4 9927.193800000001 0 NKKDSTIKWRSKSYTILDLIGYVQPIKNLTIRAGVYNLTNRKYITWDSARSIRSFGTSNVIDQSTGLGINRFYAPGRNYKMSVQFE I.claudius_F2_208_161_524220_peptide number 5 165.1892 0 F I.claudius_F2_209_639_525781_peptide number 1 1737.0293000000004 0 MIIFSNLSLKRGQTE I.claudius_F2_209_639_525781_peptide number 2 373.44450000000006 0 LLE I.claudius_F2_209_639_525781_peptide number 3 3301.8570000000004 0 NASATINPKQKVGLVGKNGCGKSSLFALLKKE I.claudius_F2_209_639_525781_peptide number 4 488.5982 0 LMPE I.claudius_F2_209_639_525781_peptide number 5 261.2319 0 GGE I.claudius_F2_209_639_525781_peptide number 6 1862.0088000000003 0 VNYPANWRVSWVNQE I.claudius_F2_209_639_525781_peptide number 7 1976.1447000000003 0 TPALDISAIDYVIQGDRE I.claudius_F2_209_639_525781_peptide number 8 1180.3771 0 YCRLQQKLE I.claudius_F2_209_639_525781_peptide number 9 488.4955 0 RANE I.claudius_F2_209_639_525781_peptide number 10 1663.7930000000003 0 RNDGNAIARIHGQLE I.claudius_F2_209_639_525781_peptide number 11 2501.7479 0 TLDAWTIQSRAASLLHGLGFSQE I.claudius_F2_209_639_525781_peptide number 12 147.1293 0 E I.claudius_F2_209_639_525781_peptide number 13 5288.105400000001 0 TIQPVKAFSGGWRMRLNLAQALLCPSDLLLLDEPTNHLDLDAVIWLE I.claudius_F2_209_639_525781_peptide number 14 3719.2926000000007 0 RWLVQYQGTLVLISHDRDFLDPIVTKILHIE I.claudius_F2_209_639_525781_peptide number 15 744.7936 0 NQKLNE I.claudius_F2_209_639_525781_peptide number 16 1068.047 0 YTGDYSSFE I.claudius_F2_209_639_525781_peptide number 17 5777.6905000000015 0 VQRATKLAQQTAMYRQQQQKISHLQKYIDRFKAKATKAKQAQSRMKALE I.claudius_F2_209_639_525781_peptide number 18 434.51110000000006 0 RME I.claudius_F2_209_639_525781_peptide number 19 1596.7768 0 LIAPAYVDNPFTFE I.claudius_F2_209_639_525781_peptide number 20 1738.0588000000002 0 FRPPQSLPNPLVMIE I.claudius_F2_209_639_525781_peptide number 21 951.9764 0 QASAGYGIGE I.claudius_F2_209_639_525781_peptide number 22 404.41560000000004 0 SAVE I.claudius_F2_209_639_525781_peptide number 23 3573.318600000001 0 ILSKIKLNLVPGSRIGLLGKNGAGKSTLIKLLAGE I.claudius_F2_209_639_525781_peptide number 24 3344.7276999999995 0 LTALSGTVQLAKGVQLGYFAQHQLDTLRADE I.claudius_F2_209_639_525781_peptide number 25 1410.6396 0 SALWHMQKLAPE I.claudius_F2_209_639_525781_peptide number 26 376.3624 0 QTE I.claudius_F2_209_639_525781_peptide number 27 3072.3027000000006 0 QQVRDYLGSFAFHGDKVNQAVKSFSGGE I.claudius_F2_209_639_525781_peptide number 28 4209.9115 0 KARLVLALIVWQRPNLLLLDEPTNHLDLDMRQALTE I.claudius_F2_209_639_525781_peptide number 29 708.7566 0 ALVDYE I.claudius_F2_209_639_525781_peptide number 30 2031.2763 0 GSLVVVSHDRHLLRNTVE I.claudius_F2_209_639_525781_peptide number 31 147.1293 0 E I.claudius_F2_209_639_525781_peptide number 32 1277.4676000000002 0 FYLVHDKKVE I.claudius_F2_209_639_525781_peptide number 33 147.1293 0 E I.claudius_F2_209_639_525781_peptide number 34 707.7718000000001 0 FKGDLE I.claudius_F2_209_639_525781_peptide number 35 1068.1363000000001 0 DYQKWLSE I.claudius_F2_209_639_525781_peptide number 36 664.6196000000001 0 QNSTSE I.claudius_F2_209_639_525781_peptide number 37 575.6126 0 NKVSE I.claudius_F2_209_639_525781_peptide number 38 660.674 0 KVGDNE I.claudius_F2_209_639_525781_peptide number 39 974.0301 0 NSVQNRKE I.claudius_F2_209_639_525781_peptide number 40 715.8022000000001 0 QKRRE I.claudius_F2_209_639_525781_peptide number 41 218.2072 0 AE I.claudius_F2_209_639_525781_peptide number 42 1923.2641999999998 0 LRQQTAPLRKKITQLE I.claudius_F2_209_639_525781_peptide number 43 147.1293 0 E I.claudius_F2_209_639_525781_peptide number 44 970.1011000000001 0 KMNKFSSE I.claudius_F2_209_639_525781_peptide number 45 558.625 0 LANIE I.claudius_F2_209_639_525781_peptide number 46 789.7879 0 NQLADTE I.claudius_F2_209_639_525781_peptide number 47 608.6407 0 LYNAE I.claudius_F2_209_639_525781_peptide number 48 389.40420000000006 0 NKE I.claudius_F2_209_639_525781_peptide number 49 2197.5281 0 KLTALLAQQVDVKKALDDVE I.claudius_F2_209_639_525781_peptide number 50 248.23319999999998 0 TE I.claudius_F2_209_639_525781_peptide number 51 764.8463 0 WMTAQE I.claudius_F2_209_639_525781_peptide number 52 147.1293 0 E I.claudius_F2_209_639_525781_peptide number 53 260.2869 0 LE I.claudius_F2_209_639_525781_peptide number 54 147.1293 0 E I.claudius_F2_209_639_525781_peptide number 55 461.5761 0 MLQA I.claudius_F2_210_115_529842_peptide number 1 2587.0082 0 MTALDIDACMQNSGLIRHRAKLE I.claudius_F2_210_115_529842_peptide number 2 1421.7037999999998 0 AIVKNAKAYLAME I.claudius_F2_210_115_529842_peptide number 3 435.49580000000003 0 KCGE I.claudius_F2_210_115_529842_peptide number 4 3502.8830000000007 0 NFSDFIWSFVNHKPIVNDVPDLRSVPTKTE I.claudius_F2_210_115_529842_peptide number 5 2078.5 0 VSKALSKALKKRGFVFIGE I.claudius_F2_210_115_529842_peptide number 6 2781.1459999999997 0 TTCYAFMQSMGLVDDHLNDCPCKTS I.claudius_F2_211_112_531958_peptide number 1 4655.357500000001 0 MYGISDIAFVGGSLVKHGGHNPLEPLAFKMPVITGKHTFNFPE I.claudius_F2_211_112_531958_peptide number 2 907.1313 0 IFRMLVE I.claudius_F2_211_112_531958_peptide number 3 643.7296 0 VQGVLE I.claudius_F2_211_112_531958_peptide number 4 918.945 0 VNSTADALE I.claudius_F2_211_112_531958_peptide number 5 473.524 0 RAVE I.claudius_F2_211_112_531958_peptide number 6 773.8746000000001 0 ALLNSKE I.claudius_F2_211_112_531958_peptide number 7 390.3923 0 SRE I.claudius_F2_211_112_531958_peptide number 8 878.9290000000001 0 RLGNAGYE I.claudius_F2_211_112_531958_peptide number 9 490.6141 0 VLME I.claudius_F2_211_112_531958_peptide number 10 2012.3555 0 NRGALQRLLDLLKPYLE I.claudius_F2_211_112_531958_peptide number 11 387.4347 0 RNV I.claudius_F2_212_71_532757_peptide number 1 3021.7179000000006 0 MIKIFIFLTALIVLSGCGSVVKLIDPTE I.claudius_F2_212_71_532757_peptide number 2 1463.5865 0 KYTAYAGVAYDLE I.claudius_F2_212_71_532757_peptide number 3 3313.9021 0 MAQQWGLPILDLPLSFLLDTVLLPYAWAQ I.claudius_F2_213_567_533287_peptide number 1 754.8482000000001 0 MTLFDE I.claudius_F2_213_567_533287_peptide number 2 1100.2245 0 HDQFALLKE I.claudius_F2_213_567_533287_peptide number 3 888.0171 0 LTADVLKE I.claudius_F2_213_567_533287_peptide number 4 887.9773 0 DKDLLRE I.claudius_F2_213_567_533287_peptide number 5 4033.607 0 LISVISNWKNDLISPKQAFALARDAKYQTFAKCYE I.claudius_F2_213_567_533287_peptide number 6 3503.9752000000008 0 RYATQIRTYNALDFDDLIMLPTLLFKQNE I.claudius_F2_213_567_533287_peptide number 7 147.1293 0 E I.claudius_F2_213_567_533287_peptide number 8 2004.3353000000002 0 VRSKWQAKIRYLLVDE I.claudius_F2_213_567_533287_peptide number 9 1248.2094 0 YQDTNTSQYE I.claudius_F2_213_567_533287_peptide number 10 3480.9022 0 LIKLLVGDRACFTVVGDDDQSIYSWRGARPE I.claudius_F2_213_567_533287_peptide number 11 2228.6164999999996 0 NMVRLRDDFPRLNVIKLE I.claudius_F2_213_567_533287_peptide number 12 2515.7595 0 QNYRSTQRILHCANILIDNNE I.claudius_F2_213_567_533287_peptide number 13 1705.9508 0 HVFDKKLFSTIGKGE I.claudius_F2_213_567_533287_peptide number 14 713.9055000000001 0 KLLVIE I.claudius_F2_213_567_533287_peptide number 15 460.48210000000006 0 AKNE I.claudius_F2_213_567_533287_peptide number 16 147.1293 0 E I.claudius_F2_213_567_533287_peptide number 17 284.2686 0 HE I.claudius_F2_213_567_533287_peptide number 18 218.2072 0 AE I.claudius_F2_213_567_533287_peptide number 19 586.6816 0 RIVAE I.claudius_F2_213_567_533287_peptide number 20 3578.0918 0 LIAHRFSRKTKYKDYAILYRGNHQSRLLE I.claudius_F2_213_567_533287_peptide number 21 2630.0296999999996 0 KVLMQNRIPYKISGGTSFFSRAE I.claudius_F2_213_567_533287_peptide number 22 3536.0885000000007 0 IKDMMAYLRLVVNQDDDAAFLRIVNTPKRE I.claudius_F2_213_567_533287_peptide number 23 1130.2919 0 IGTATLQKLGE I.claudius_F2_213_567_533287_peptide number 24 459.494 0 LAQE I.claudius_F2_213_567_533287_peptide number 25 873.0073 0 KHISLFE I.claudius_F2_213_567_533287_peptide number 26 478.53870000000006 0 AIFE I.claudius_F2_213_567_533287_peptide number 27 294.30320000000006 0 FE I.claudius_F2_213_567_533287_peptide number 28 2662.0929 0 LIQRITPKAYDSLQKFGRWIVE I.claudius_F2_213_567_533287_peptide number 29 489.4769 0 LNDE I.claudius_F2_213_567_533287_peptide number 30 857.9082999999999 0 IQRSEPE I.claudius_F2_213_567_533287_peptide number 31 1532.7661 0 RAVRSMLSAIHYE I.claudius_F2_213_567_533287_peptide number 32 147.1293 0 E I.claudius_F2_213_567_533287_peptide number 33 586.6335000000001 0 YLYE I.claudius_F2_213_567_533287_peptide number 34 937.0050000000001 0 YATSPKAAE I.claudius_F2_213_567_533287_peptide number 35 2398.7096 0 MQSKNVATLFDWVADMLKGDE I.claudius_F2_213_567_533287_peptide number 36 2487.8508000000006 0 TNEPMNLNQVVTRLTLRDMLE I.claudius_F2_213_567_533287_peptide number 37 360.3663 0 RGE I.claudius_F2_213_567_533287_peptide number 38 2217.324 0 DDDDSDQVQLMTLHASKGLE I.claudius_F2_213_567_533287_peptide number 39 1231.4587000000001 0 FPYVYLIGME I.claudius_F2_213_567_533287_peptide number 40 147.1293 0 E I.claudius_F2_213_567_533287_peptide number 41 1209.3057 0 GILPHQTSIDE I.claudius_F2_213_567_533287_peptide number 42 475.45040000000006 0 DNVE I.claudius_F2_213_567_533287_peptide number 43 147.1293 0 E I.claudius_F2_213_567_533287_peptide number 44 147.1293 0 E I.claudius_F2_213_567_533287_peptide number 45 1660.9185 0 RRLAYVGITRAQKE I.claudius_F2_213_567_533287_peptide number 46 968.1282000000001 0 LTFSLCRE I.claudius_F2_213_567_533287_peptide number 47 807.8545 0 RRQYGE I.claudius_F2_213_567_533287_peptide number 48 1413.6205000000002 0 LVRPEPSRFLAE I.claudius_F2_213_567_533287_peptide number 49 1100.1781 0 LPNDDVLWE I.claudius_F2_213_567_533287_peptide number 50 1087.2276 0 RDKPKLTTE I.claudius_F2_213_567_533287_peptide number 51 531.5600000000001 0 QKQE I.claudius_F2_213_567_533287_peptide number 52 1784.0692 0 KTQNQLDRLRAILKS I.claudius_F2_214_355_537059_peptide number 1 896.0011000000001 0 MDRMSQE I.claudius_F2_214_355_537059_peptide number 2 523.4932 0 NDFE I.claudius_F2_214_355_537059_peptide number 3 3570.9122 0 NLNPVFFTTSQAGQKAPVFGGKDAGDLKSAFDIE I.claudius_F2_214_355_537059_peptide number 4 147.1293 0 E I.claudius_F2_214_355_537059_peptide number 5 2010.2686000000006 0 LKKLDIIVTCQGGDYTNE I.claudius_F2_214_355_537059_peptide number 6 4586.1846000000005 0 VYPKLKATGWDGYWVDAASALRMKDDAIIVLDPVNQHVISE I.claudius_F2_214_355_537059_peptide number 7 2885.5103000000004 0 GLKKGIKTFVGGNCTVSLMLMAIGGLFE I.claudius_F2_214_355_537059_peptide number 8 602.6777000000001 0 KDLVE I.claudius_F2_214_355_537059_peptide number 9 2111.3377 0 WISVATYQAASGAGAKNMRE I.claudius_F2_214_355_537059_peptide number 10 1003.2136 0 LLSQMGLLE I.claudius_F2_214_355_537059_peptide number 11 619.6221 0 QAVSSE I.claudius_F2_214_355_537059_peptide number 12 1300.4545000000003 0 LKDPASSILDIE I.claudius_F2_214_355_537059_peptide number 13 3843.4117000000006 0 RKVTAKMRADNFPTDNFGAALGGSLIPWIDKLLPE I.claudius_F2_214_355_537059_peptide number 14 662.6899000000001 0 TGQTKE I.claudius_F2_214_355_537059_peptide number 15 147.1293 0 E I.claudius_F2_214_355_537059_peptide number 16 752.8140000000001 0 WKGYAE I.claudius_F2_214_355_537059_peptide number 17 4588.399 0 TNKILGLSDNPIPVDGLCVRIGALRCHSQAFTIKLKKDLPLE I.claudius_F2_214_355_537059_peptide number 18 147.1293 0 E I.claudius_F2_214_355_537059_peptide number 19 260.2869 0 IE I.claudius_F2_214_355_537059_peptide number 20 910.9708 0 QIIASHNE I.claudius_F2_214_355_537059_peptide number 21 1227.4088000000002 0 WVKVIPNDKE I.claudius_F2_214_355_537059_peptide number 22 630.7341 0 ITLRE I.claudius_F2_214_355_537059_peptide number 23 2592.1094000000007 0 LTPAKVTGTLSVPVGRLRKLAMGPE I.claudius_F2_214_355_537059_peptide number 24 3099.626 0 YLAAFTVGDQLLWGAAEPVRRILKQLVA I.claudius_F2_215_367_539274_peptide number 1 3788.5702000000006 0 MSKMKKIVTALCLVGVGVGALWGSQWIMHKTSTPE I.claudius_F2_215_367_539274_peptide number 2 1617.7811000000002 0 FCASCHSMSYPQQE I.claudius_F2_215_367_539274_peptide number 3 333.3392 0 WE I.claudius_F2_215_367_539274_peptide number 4 2442.6892000000003 0 GSSHFANAKGVRAQCSDCHIPKE I.claudius_F2_215_367_539274_peptide number 5 2267.6242 0 GWHYVKAKFIALKDLWYE I.claudius_F2_215_367_539274_peptide number 6 644.7176000000001 0 AQGKIE I.claudius_F2_215_367_539274_peptide number 7 389.40420000000006 0 NKE I.claudius_F2_215_367_539274_peptide number 8 438.47490000000005 0 KYE I.claudius_F2_215_367_539274_peptide number 9 582.6101 0 AHRAE I.claudius_F2_215_367_539274_peptide number 10 1809.0324999999998 0 MAQRVWKDMKANDSE I.claudius_F2_215_367_539274_peptide number 11 1386.5339 0 TCRSCHSFDAME I.claudius_F2_215_367_539274_peptide number 12 1612.8260000000002 0 LSKQTKLAKQTHTE I.claudius_F2_215_367_539274_peptide number 13 2311.5957000000003 0 AQTNGQTCIDCHKGIVHFLPE I.claudius_F2_215_367_539274_peptide number 14 2805.917000000001 0 VHGDQNTQKSSAVQGGTLSDGSAIFATE I.claudius_F2_215_367_539274_peptide number 15 1206.3268 0 MVKATNDKGNE I.claudius_F2_215_367_539274_peptide number 16 978.1662000000001 0 VRLMPYAE I.claudius_F2_215_367_539274_peptide number 17 2724.9996000000006 0 LMQWKVDGDQIQGTLHGWQQVGAE I.claudius_F2_215_367_539274_peptide number 18 707.7719000000001 0 AVVYQE I.claudius_F2_215_367_539274_peptide number 19 1359.6343000000002 0 LGKRITLALMDE I.claudius_F2_215_367_539274_peptide number 20 2675.9061 0 DARNHVQVLKIVHDAVTDSDWKE I.claudius_F2_215_367_539274_peptide number 21 1029.1882 0 ISVAVNVAKE I.claudius_F2_215_367_539274_peptide number 22 6105.721600000001 0 KMTSDLTTLNQYGNQLNQTQCSGCHAAIGADHYTANQWIGVVNSMKDRTSMKKDE I.claudius_F2_215_367_539274_peptide number 23 2119.4906 0 VRALTIYLQRNAKDMAKQ I.claudius_F2_216_470_541475_peptide number 1 1774.0594 0 MLMGGWGMQRQRHGE I.claudius_F2_216_470_541475_peptide number 2 9142.304700000004 0 QTHWMLVTLASMLGQIGLPGGGFGLSYHYSNGGVPTATGGIIGSITASPSGKAGAKTWLDDTSKSAFPLARIADVLLHPGKKIQYNGTE I.claudius_F2_216_470_541475_peptide number 3 4526.0681 0 ITYPDIKAVYWAGGNPFVHHQDTNTLVKAFQKPDVVIVNE I.claudius_F2_216_470_541475_peptide number 4 2336.6187 0 VNWTPTARMADIVLPATTSYE I.claudius_F2_216_470_541475_peptide number 5 3135.6122 0 RNDLTMAGDYSMMSVYPMKQVVPPQFE I.claudius_F2_216_470_541475_peptide number 6 1213.2928000000002 0 AKNDYDIFVE I.claudius_F2_216_470_541475_peptide number 7 842.9830999999999 0 LAKRAGVE I.claudius_F2_216_470_541475_peptide number 8 147.1293 0 E I.claudius_F2_216_470_541475_peptide number 9 539.5357 0 QYTE I.claudius_F2_216_470_541475_peptide number 10 433.45680000000004 0 GKTE I.claudius_F2_216_470_541475_peptide number 11 278.32540000000006 0 ME I.claudius_F2_216_470_541475_peptide number 12 446.4968 0 WLE I.claudius_F2_216_470_541475_peptide number 13 147.1293 0 E I.claudius_F2_216_470_541475_peptide number 14 2937.2951 0 FYNAAFSAARANRVAMPRFDKFWAE I.claudius_F2_216_470_541475_peptide number 15 833.9282000000001 0 NKPLSFE I.claudius_F2_216_470_541475_peptide number 16 275.2585 0 AGE I.claudius_F2_216_470_541475_peptide number 17 1207.381 0 AAKKWVRYGE I.claudius_F2_216_470_541475_peptide number 18 450.48890000000006 0 FRE I.claudius_F2_216_470_541475_peptide number 19 1550.7513999999999 0 DPLLNPLGTPSGKIE I.claudius_F2_216_470_541475_peptide number 20 807.8877 0 IFSDVVE I.claudius_F2_216_470_541475_peptide number 21 2066.2971 0 KMNYNDCKGHPSWMEPE I.claudius_F2_216_470_541475_peptide number 22 147.1293 0 E I.claudius_F2_216_470_541475_peptide number 23 736.77 0 FAGNVTE I.claudius_F2_216_470_541475_peptide number 24 147.1293 0 E I.claudius_F2_216_470_541475_peptide number 25 4742.3786 0 YPLALVTPHPYYRLHSQLAHTSLRQKYAVNDREPVMIHPE I.claudius_F2_216_470_541475_peptide number 26 3075.4392000000007 0 DAAARGIKDGDIVRIHSKRGQVLAGAAVTE I.claudius_F2_216_470_541475_peptide number 27 1194.3805 0 NIIKGTVALHE I.claudius_F2_216_470_541475_peptide number 28 1301.4226000000003 0 GAWYDPMYLGE I.claudius_F2_216_470_541475_peptide number 29 234.2066 0 SE I.claudius_F2_216_470_541475_peptide number 30 1761.0326 0 KPLCKNGCANVLTRDE I.claudius_F2_216_470_541475_peptide number 31 1960.1701000000003 0 GTSKLAQGNSPNTCIVQIE I.claudius_F2_216_470_541475_peptide number 32 860.0086000000001 0 KFIGVAPE I.claudius_F2_216_470_541475_peptide number 33 1244.4825 0 VTVFKQPKQVA I.claudius_F2_217_51_548564_peptide number 1 3084.5417 0 MSLNLLDFLLQVDEPILLIGTRQQGQE I.claudius_F2_217_51_548564_peptide number 2 2686.1142999999997 0 QYRGSFSLVNIRKTFPLNIAFLT I.claudius_F2_218_305_548885_peptide number 1 406.4546 0 MQE I.claudius_F2_218_305_548885_peptide number 2 425.3900000000001 0 DYE I.claudius_F2_218_305_548885_peptide number 3 5594.530699999999 0 CIFCVVDLHAITVRQDPVALRKATLDVLALYLACGIDPNKSTIFVQSHVPE I.claudius_F2_218_305_548885_peptide number 4 1961.1564 0 HTQLSWVLNCYTYFGE I.claudius_F2_218_305_548885_peptide number 5 1949.2155999999998 0 MSRMTQFKDKSARYAE I.claudius_F2_218_305_548885_peptide number 6 4015.5437999999995 0 NINVGLFDYPVLMAADILLYQAKSVPVGDDQKQHLE I.claudius_F2_218_305_548885_peptide number 7 2438.7351 0 ITRDIANRFNALYGNIFTIPE I.claudius_F2_218_305_548885_peptide number 8 1846.1552000000004 0 IFIGKAGARIMSLQDPE I.claudius_F2_218_305_548885_peptide number 9 2091.3465 0 KKMSKSDDNRNNVVTLLE I.claudius_F2_218_305_548885_peptide number 10 5520.207500000003 0 DPKSVAKKIKRAVTDSDEPPVVRYDVQNKAGVSNLLDILSAVTDKPIADLE I.claudius_F2_218_305_548885_peptide number 11 275.3016 0 KE I.claudius_F2_218_305_548885_peptide number 12 294.30320000000006 0 FE I.claudius_F2_218_305_548885_peptide number 13 1519.721 0 GKMYGHLKTAVADE I.claudius_F2_218_305_548885_peptide number 14 1060.1988000000001 0 VSTLLASLQE I.claudius_F2_218_305_548885_peptide number 15 1264.3064 0 RFHQYRNDE I.claudius_F2_218_305_548885_peptide number 16 1342.4977000000001 0 TLLDNILRQGAE I.claudius_F2_218_305_548885_peptide number 17 901.0225 0 KARAKAQE I.claudius_F2_218_305_548885_peptide number 18 822.9454000000002 0 TLAKVYE I.claudius_F2_218_305_548885_peptide number 19 761.9087 0 AVGFVAAK I.claudius_F2_219_843_551130_peptide number 1 3544.0026999999995 0 MNNQNLKTLTLAGRSKKFDILIIDTTRDGHE I.claudius_F2_219_843_551130_peptide number 2 260.2869 0 IE I.claudius_F2_219_843_551130_peptide number 3 2611.8621000000003 0 NYDYKIYPNKQADLRAVGPTRE I.claudius_F2_219_843_551130_peptide number 4 2547.8595000000005 0 KADPYQITRQSTLIKLGFQPNE I.claudius_F2_219_843_551130_peptide number 5 1569.672 0 NHRLSVALDDSTLE I.claudius_F2_219_843_551130_peptide number 6 2113.2839999999997 0 TKGIDLSYALRPYSTANNE I.claudius_F2_219_843_551130_peptide number 7 495.5262 0 KYGE I.claudius_F2_219_843_551130_peptide number 8 2139.3709 0 RIINDQSKRKNIQFSYE I.claudius_F2_219_843_551130_peptide number 9 3328.6008 0 NFSQTPFWDHIKLSYSSQKITNKARSDE I.claudius_F2_219_843_551130_peptide number 10 2186.3842999999997 0 YCHQSTCNGVSNPQGLHLVE I.claudius_F2_219_843_551130_peptide number 11 147.1293 0 E I.claudius_F2_219_843_551130_peptide number 12 1484.6951000000001 0 KGVYKIKDKYGGE I.claudius_F2_219_843_551130_peptide number 13 260.2869 0 LE I.claudius_F2_219_843_551130_peptide number 14 362.37890000000004 0 SKE I.claudius_F2_219_843_551130_peptide number 15 727.7647000000001 0 IGWSHE I.claudius_F2_219_843_551130_peptide number 16 808.879 0 FKNSKGE I.claudius_F2_219_843_551130_peptide number 17 2208.3602 0 DADKDISQRSSLDSVLINCE I.claudius_F2_219_843_551130_peptide number 18 1657.9311 0 KLDCSKKFRIYQE I.claudius_F2_219_843_551130_peptide number 19 425.3900000000001 0 YDE I.claudius_F2_219_843_551130_peptide number 20 435.38649999999996 0 NSSE I.claudius_F2_219_843_551130_peptide number 21 1089.1126 0 KYTYDDRE I.claudius_F2_219_843_551130_peptide number 22 260.2869 0 IE I.claudius_F2_219_843_551130_peptide number 23 3170.6609 0 VGTLPNGKKYGKIPLKKGKTPSWNGFPQE I.claudius_F2_219_843_551130_peptide number 24 4277.659499999999 0 TARFLFPKSYGYSTDFVNDRDLNTHTQQIKLDLDKE I.claudius_F2_219_843_551130_peptide number 25 2157.3876 0 FHLWHTQHQLKYGGLYE I.claudius_F2_219_843_551130_peptide number 26 4120.5865 0 KTLKSMVNHQYNTAANVQWWADYFFCARAKGGNLGE I.claudius_F2_219_843_551130_peptide number 27 7866.740800000003 0 KKTPHPNVSVAGCVNGTPLHSDIGKDTYLIPVTTKNNVLYFGDNVQLTSWLGLDLNYRYDHVKYLPGYDE I.claudius_F2_219_843_551130_peptide number 28 1856.1682999999998 0 KTPVPGGLIAGIFVPFNE I.claudius_F2_219_843_551130_peptide number 29 2427.6433 0 KDVVYGAYVPSGYKDCRYNTE I.claudius_F2_219_843_551130_peptide number 30 931.0666000000001 0 CYKKNFE I.claudius_F2_219_843_551130_peptide number 31 147.1293 0 E I.claudius_F2_219_843_551130_peptide number 32 5272.883900000001 0 NLALLLRKTDYKHHSYNLGLNLDPTDWLRVQLKYANAFRAPTSDE I.claudius_F2_219_843_551130_peptide number 33 2423.7405000000003 0 IYMTFKHPDFSIGPNTNLKAE I.claudius_F2_219_843_551130_peptide number 34 676.7596000000001 0 TAKTKE I.claudius_F2_219_843_551130_peptide number 35 1004.1356000000001 0 VAFTFYKE I.claudius_F2_219_843_551130_peptide number 36 2642.8677000000002 0 NSYLTLSAFQSDYRNFIDLVFE I.claudius_F2_219_843_551130_peptide number 37 1330.4871 0 KNKQIDKGSAIE I.claudius_F2_219_843_551130_peptide number 38 2254.4202000000005 0 YPFYQNQNRDQARVRGIE I.claudius_F2_219_843_551130_peptide number 39 687.7854 0 IASRLE I.claudius_F2_219_843_551130_peptide number 40 710.7956 0 MGDLFE I.claudius_F2_219_843_551130_peptide number 41 3412.896 0 KLQGFHLGYKLTYQKGRIKDNKLRSGYAE I.claudius_F2_219_843_551130_peptide number 42 7817.797900000001 0 FLKLNPQYTAIASQDQPMNALQPTTSVYNIGYDAPSKKWGMDVYITDVAAKKAKDSFNSQWTSMVKRKE I.claudius_F2_219_843_551130_peptide number 43 695.718 0 NIYGTE I.claudius_F2_219_843_551130_peptide number 44 8454.493200000003 0 RTVPATQANGKDVKDSRGLWRNNRYTVIDTIAYWKPIKNLTFTAGVYNLTNKKYLTWDSARSVRHLGTINRVE I.claudius_F2_219_843_551130_peptide number 45 2764.0822999999996 0 TATGKGLNRFYAPGRNYRMSVQFE I.claudius_F2_219_843_551130_peptide number 46 165.1892 0 F I.claudius_F2_220_51_558261_peptide number 1 3884.5053000000007 0 MPNSKSVIDKNIVKNYRTFYLNLTSCTMRFAVE I.claudius_F2_220_51_558261_peptide number 2 1817.2199999999998 0 IGNCPIKVISFPPMTSL I.claudius_F2_221_135_562932_peptide number 1 1097.2886 0 MTITPHLRE I.claudius_F2_221_135_562932_peptide number 2 5200.124899999999 0 HLKMLGFVRNFLLAIQNKSHKAKHRLASVFPKVHSKFSSVIQRAE I.claudius_F2_221_135_562932_peptide number 3 1875.1550000000004 0 RYRFLCVTILYQGGGE I.claudius_F2_221_135_562932_peptide number 4 6525.346800000001 0 SPPLQNKAHQVKFGQISPHFYRFQLTIRQVYSHHHTPLSLADLNVQDFLLLVLSDE I.claudius_F2_221_135_562932_peptide number 5 978.1693 0 ILHLMQSH I.claudius_F2_222_50_569565_peptide number 1 5869.8602 0 MGTSIKDTLFSFYLLTFIFQRCFRFVFNLVYNYQPICVSTRCLSSSVRR I.claudius_F2_223_59_571020_peptide number 1 6421.4198 0 MACGLSVPHFHLPIIRGISDSFPSLSPSISQIPKHYSPVRHSSARKQAFSCYRSTCMC I.claudius_F2_224_346_572314_peptide number 1 1362.6795 0 MIKLNNI-KIFE I.claudius_F2_224_346_572314_peptide number 2 1696.982 0 LP-KKLT-LDNVSLNIE I.claudius_F2_224_346_572314_peptide number 3 2588.0558 0 KGQICGVIGASGAGKSTLIRCVNLLE I.claudius_F2_224_346_572314_peptide number 4 1287.4162000000001 0 KPTSGSVIVDGVE I.claudius_F2_224_346_572314_peptide number 5 961.0711000000001 0 LTKLSDRE I.claudius_F2_224_346_572314_peptide number 6 2976.5000000000005 0 LVLARRQIGMIFQHFNLLSSRTVFE I.claudius_F2_224_346_572314_peptide number 7 754.8713 0 NVALPLE I.claudius_F2_224_346_572314_peptide number 8 260.2869 0 LE I.claudius_F2_224_346_572314_peptide number 9 234.2066 0 SE I.claudius_F2_224_346_572314_peptide number 10 802.9159000000001 0 SKAKIQE I.claudius_F2_224_346_572314_peptide number 11 1371.6185 0 KITALLDLVGLSE I.claudius_F2_224_346_572314_peptide number 12 3671.1473000000005 0 KRDAYPSNLSGGQKQRVAIARALASDPKVLLCDE I.claudius_F2_224_346_572314_peptide number 13 2000.2936999999997 0 ATSALDPATTQSILKLLKE I.claudius_F2_224_346_572314_peptide number 14 1707.0231 0 INRTLGITILLITHE I.claudius_F2_224_346_572314_peptide number 15 278.32540000000006 0 ME I.claudius_F2_224_346_572314_peptide number 16 2112.4501 0 VVKQICDQVAVIDQGRLVE I.claudius_F2_224_346_572314_peptide number 17 589.5961000000001 0 QGTVGE I.claudius_F2_224_346_572314_peptide number 18 919.0327000000001 0 IFANPKTE I.claudius_F2_224_346_572314_peptide number 19 459.494 0 LAQE I.claudius_F2_224_346_572314_peptide number 20 1561.7359999999999 0 FIRSTFHISLPDE I.claudius_F2_224_346_572314_peptide number 21 423.4602000000001 0 YLE I.claudius_F2_224_346_572314_peptide number 22 2102.3889 0 NLTDTPKHSKAYPIIKFE I.claudius_F2_224_346_572314_peptide number 23 2237.5108 0 FTGRSVDAPLLSQASKKFGVE I.claudius_F2_224_346_572314_peptide number 24 2346.6299000000004 0 LSILTSQIDYAGGVKFGYTIAE I.claudius_F2_224_346_572314_peptide number 25 246.2604 0 VE I.claudius_F2_224_346_572314_peptide number 26 319.26800000000003 0 GDE I.claudius_F2_224_346_572314_peptide number 27 1411.6196000000004 0 DAITQTKVYLME I.claudius_F2_224_346_572314_peptide number 28 729.7824 0 NNVRVE I.claudius_F2_224_346_572314_peptide number 29 677.7889000000001 0 VLGYVQ I.claudius_F2_225_52_575580_peptide number 1 1370.5344 0 MSGIQIVRHNSE I.claudius_F2_225_52_575580_peptide number 2 4815.657500000002 0 FFMTKQRIGDSLRRRTNINKQRCTVRNQLRNFLCNIIFL I.claudius_F2_226_120_577072_peptide number 1 9771.585799999999 0 MSRLTKAKFFFYSTHCAIIILWLIARHGKQTARFVYHAQMIILINNIQIRFKGRIVFNQCHFYSLFVTMTRKQSKRQFALE I.claudius_F2_226_120_577072_peptide number 2 4268.0851 0 SSSSDCVRCCSKISISLWRIFLFTARKACKRLISALNC I.claudius_F2_227_102_578246_peptide number 1 2957.384200000001 0 MPFPLDKFVQKHSIPHCTNVLNDFE I.claudius_F2_227_102_578246_peptide number 2 8807.058900000005 0 ANLSHKAHKLAHHVFVQYDPIGQYIVPINRDLSVNQITLNLLRIGNYALPSQYSSSVKPARRFLNPQNKRRLYPVR I.claudius_F2_228_250_580226_peptide number 1 826.8744 0 MNYRDE I.claudius_F2_228_250_580226_peptide number 2 1826.1008 0 LILQWVNQQGKASVIE I.claudius_F2_228_250_580226_peptide number 3 1114.2296000000001 0 LAQHCDISVE I.claudius_F2_228_250_580226_peptide number 4 6567.4846000000025 0 TIRRDLNKLANKGLLHRTHGGAVSNKTKDLGSFFQTRKHINATAKRHIAQKALDLLYE I.claudius_F2_228_250_580226_peptide number 5 6180.000600000001 0 NAVIGLDASSTSWYFAYLMPDIPCTVVTNSMFNINALVNKSNVKTIVTGGVYSAKYE I.claudius_F2_228_250_580226_peptide number 6 882.9558000000001 0 AFYGPLSE I.claudius_F2_228_250_580226_peptide number 7 3054.4361000000004 0 YLLQRLHINFSVFSCSGIDKNGNIWE I.claudius_F2_228_250_580226_peptide number 8 348.30920000000003 0 SNE I.claudius_F2_228_250_580226_peptide number 9 1320.6248 0 LNASLKRKMME I.claudius_F2_228_250_580226_peptide number 10 305.2845 0 ASE I.claudius_F2_228_250_580226_peptide number 11 1441.6272000000001 0 RAYLLIDSSKFE I.claudius_F2_228_250_580226_peptide number 12 3555.0186999999996 0 KTSLIQLADLSKINTIFSDRSLPDNLQKYCE I.claudius_F2_228_250_580226_peptide number 13 956.1175000000001 0 QHDIMTVL I.claudius_F2_229_403_581763_peptide number 1 1611.8162 0 MGIAGSIVNQAFFQE I.claudius_F2_229_403_581763_peptide number 2 881.9959000000001 0 YLGMRNE I.claudius_F2_229_403_581763_peptide number 3 786.9133 0 YVDMME I.claudius_F2_229_403_581763_peptide number 4 1732.9811000000002 0 IKRRLDRKIYDQE I.claudius_F2_229_403_581763_peptide number 5 147.1293 0 E I.claudius_F2_229_403_581763_peptide number 6 1681.9492 0 VDLALSWVKQYCKE I.claudius_F2_229_403_581763_peptide number 7 831.8677000000001 0 GVDVNSLE I.claudius_F2_229_403_581763_peptide number 8 730.7273 0 NQRNAE I.claudius_F2_229_403_581763_peptide number 9 147.1293 0 E I.claudius_F2_229_403_581763_peptide number 10 374.39290000000005 0 RAE I.claudius_F2_229_403_581763_peptide number 11 446.4968 0 LWE I.claudius_F2_229_403_581763_peptide number 12 2905.4356000000002 0 NVVKMTIITRDLMVGNPKLATLNYAE I.claudius_F2_229_403_581763_peptide number 13 147.1293 0 E I.claudius_F2_229_403_581763_peptide number 14 3091.333800000001 0 ALGHNAIAAGFQGQRHWTDHLPNGDFME I.claudius_F2_229_403_581763_peptide number 15 2411.6866999999997 0 AMLNSTYDWNGVRPPYILATE I.claudius_F2_229_403_581763_peptide number 16 3913.2862 0 NDSLNAIGMLFGHQLTGKAQIFADVRTYWSQDSVE I.claudius_F2_229_403_581763_peptide number 17 1000.1121 0 RVTGWRPE I.claudius_F2_229_403_581763_peptide number 18 1845.9597000000003 0 SGFIHLINSGSAALDGTGE I.claudius_F2_229_403_581763_peptide number 19 2007.1205999999997 0 HQDAQGNPTLKPAWDVTE I.claudius_F2_229_403_581763_peptide number 20 147.1293 0 E I.claudius_F2_229_403_581763_peptide number 21 147.1293 0 E I.claudius_F2_229_403_581763_peptide number 22 718.8657000000001 0 AKRCLE I.claudius_F2_229_403_581763_peptide number 23 1212.3378000000002 0 NTRWCPAVHE I.claudius_F2_229_403_581763_peptide number 24 4099.7775 0 YFRGGGLSSQFLTKGGIPFTIHRINLIKGLGPVLQIAE I.claudius_F2_229_403_581763_peptide number 25 2364.5291 0 GWSIDLPQDVHNKLNQRTNE I.claudius_F2_229_403_581763_peptide number 26 6669.6297 0 TWPTTWFVPRLTGKGAFTDVYSVMANWGANHCVATHGHVGADLITLASMLRIPVCMHNVSE I.claudius_F2_229_403_581763_peptide number 27 1994.1697000000001 0 KNIFRPSAWNGFGQDKE I.claudius_F2_229_403_581763_peptide number 28 1759.9384 0 GQDYRACQNFGPLYK I.claudius_F2_230_92_584181_peptide number 1 5862.738200000003 0 MANKLKNGLSVLHQVSQFQAKSLICVGGGSKNVLWNQIRANTLNLPIDVVDISE I.claudius_F2_230_92_584181_peptide number 2 1834.0966 0 STVLGAAMFTFAGVGIYE I.claudius_F2_230_92_584181_peptide number 3 2200.4805 0 NVNAAQQAMQPTRKRIYPN I.claudius_F2_231_173_585056_peptide number 1 1149.3831 0 MPYHLMKTE I.claudius_F2_231_173_585056_peptide number 2 1344.4292 0 NIVYVDGNGKHE I.claudius_F2_231_173_585056_peptide number 3 147.1293 0 E I.claudius_F2_231_173_585056_peptide number 4 773.8316000000001 0 NKLPSSE I.claudius_F2_231_173_585056_peptide number 5 1699.865 0 WQFHLSVYHTRPE I.claudius_F2_231_173_585056_peptide number 6 1985.2275000000002 0 ANAVVHNHSIHCAGLSILE I.claudius_F2_231_173_585056_peptide number 7 4371.0445 0 KPIPAIHYMVAVSGTDHIPCVPYATFGSHKLASYVATGIKE I.claudius_F2_231_173_585056_peptide number 8 1662.9507000000003 0 SKAILLAHHGLITCGE I.claudius_F2_231_173_585056_peptide number 9 1300.4593000000002 0 NLDKALWLAQE I.claudius_F2_231_173_585056_peptide number 10 246.2604 0 VE I.claudius_F2_231_173_585056_peptide number 11 1692.9916000000003 0 VLASWYLKLLSTGLE I.claudius_F2_231_173_585056_peptide number 12 798.9669000000001 0 IPLLSKE I.claudius_F2_231_173_585056_peptide number 13 2019.3698000000002 0 QMQVVLGKFHTYGLRIE I.claudius_F2_231_173_585056_peptide number 14 147.1293 0 E I.claudius_F2_231_173_585056_peptide number 15 105.09259999999999 0 S I.claudius_F2_232_241_586177_peptide number 1 1172.3121 0 MSIRTHDLAE I.claudius_F2_232_241_586177_peptide number 2 3314.119500000001 0 IRDPYIALGFVVVAVFIIIGLKKMPAVKIE I.claudius_F2_232_241_586177_peptide number 3 147.1293 0 E I.claudius_F2_232_241_586177_peptide number 4 2352.6909 0 AGQISFKTAVSRLAQKAKYRE I.claudius_F2_232_241_586177_peptide number 5 2737.1976 0 GVIAQAFYVGVQIMCWTFIVQYAE I.claudius_F2_232_241_586177_peptide number 6 921.0518999999999 0 RLGFTKAE I.claudius_F2_232_241_586177_peptide number 7 3278.8831000000005 0 GQNFNIIAMAIFISSRFISTALMKYLKAE I.claudius_F2_232_241_586177_peptide number 8 5868.1899 0 FMLMLFAIGGFLSILGVIFIDGVWGLYCLILTSGFMPLMFPTIYGIALYGLKE I.claudius_F2_232_241_586177_peptide number 9 147.1293 0 E I.claudius_F2_232_241_586177_peptide number 10 2911.4598 0 STLGAAGLVMAIVGGALMPPLQGMIIDQGE I.claudius_F2_232_241_586177_peptide number 11 3740.6528 0 VMGLPAVNFSFILPLICFVVIAIYGFRAWKILK I.claudius_F2_233_109_587949_peptide number 1 478.5603 0 MSLE I.claudius_F2_233_109_587949_peptide number 2 2084.4184 0 LLLAGATVTVTHRFTKNLE I.claudius_F2_233_109_587949_peptide number 3 2872.2813 0 NHVRQADILVVAVGKPNLISGDWIKE I.claudius_F2_233_109_587949_peptide number 4 2154.4206000000004 0 SAVVIDVGINRVDGKLVGDVE I.claudius_F2_233_109_587949_peptide number 5 679.7187000000001 0 FDKAAE I.claudius_F2_233_109_587949_peptide number 6 3046.5786 0 KAAYITPVPGGVGPMTVAMLMSNTLYAYE I.claudius_F2_233_109_587949_peptide number 7 397.4295 0 HNK I.claudius_F2_234_231_595494_peptide number 1 477.5756 0 MAKE I.claudius_F2_234_231_595494_peptide number 2 815.8252 0 QPNDLTE I.claudius_F2_234_231_595494_peptide number 3 1202.3117 0 QLTDTPKTAVE I.claudius_F2_234_231_595494_peptide number 4 346.3364 0 QAE I.claudius_F2_234_231_595494_peptide number 5 5380.327000000002 0 TMQSVPQTIVKKTGTALSLLAILVALGIGGAGYYFGQQQMAKIQQKLTALE I.claudius_F2_234_231_595494_peptide number 6 2431.5321999999996 0 NQTGANLSSNNTNNNKRLTQLE I.claudius_F2_234_231_595494_peptide number 7 903.9767 0 QSLKTAQE I.claudius_F2_234_231_595494_peptide number 8 686.7542000000001 0 NIAQLE I.claudius_F2_234_231_595494_peptide number 9 974.1096 0 QLIVSKTGE I.claudius_F2_234_231_595494_peptide number 10 3078.4512 0 ITSLQTQMKQVSQLAIAQQPSDWLFSE I.claudius_F2_234_231_595494_peptide number 11 3299.7252000000008 0 ADFLLNNALRKLVLDNDVDTAVSLLKLADE I.claudius_F2_234_231_595494_peptide number 12 1316.4175 0 TLVKVNNSQANE I.claudius_F2_234_231_595494_peptide number 13 3985.4764 0 IRSAINQDLKQLLSLSSVDQNAIMQKLSQLANTVDE I.claudius_F2_234_231_595494_peptide number 14 528.6454 0 LQRL I.claudius_F2_235_335_597000_peptide number 1 393.41280000000006 0 MDE I.claudius_F2_235_335_597000_peptide number 2 752.7694000000001 0 GDYAKAE I.claudius_F2_235_335_597000_peptide number 3 2344.7515 0 KLIGKNAKHSAEPVLNLIKAAE I.claudius_F2_235_335_597000_peptide number 4 873.8679 0 AAQQRGDE I.claudius_F2_235_335_597000_peptide number 5 1112.2352 0 FSANRYLIE I.claudius_F2_235_335_597000_peptide number 6 319.3111 0 ATE I.claudius_F2_235_335_597000_peptide number 7 1030.1297000000002 0 LAGSDNLLVE I.claudius_F2_235_335_597000_peptide number 8 2793.2261 0 IARTRILLQQNKLPAARSSVDSLLE I.claudius_F2_235_335_597000_peptide number 9 904.0496 0 MARRNKE I.claudius_F2_235_335_597000_peptide number 10 770.9569000000001 0 VLKLAVE I.claudius_F2_235_335_597000_peptide number 11 3071.3956000000007 0 IYLRSKAYQALDKILDNVANSGLFNDE I.claudius_F2_235_335_597000_peptide number 12 147.1293 0 E I.claudius_F2_235_335_597000_peptide number 13 1123.2597 0 FKDLRSKTE I.claudius_F2_235_335_597000_peptide number 14 659.6858000000001 0 NGLLDE I.claudius_F2_235_335_597000_peptide number 15 520.6003000000001 0 KMNE I.claudius_F2_235_335_597000_peptide number 16 147.1293 0 E I.claudius_F2_235_335_597000_peptide number 17 2603.8512000000005 0 GIDGLLTWWNQQPRHRRNNIE I.claudius_F2_235_335_597000_peptide number 18 1910.1989999999998 0 LKISLIQRLIDCNDHE I.claudius_F2_235_335_597000_peptide number 19 406.38840000000005 0 SATE I.claudius_F2_235_335_597000_peptide number 20 508.5647 0 LTFE I.claudius_F2_235_335_597000_peptide number 21 2766.2603 0 ILKKLGDNTAISLPLCTQITRLQPE I.claudius_F2_235_335_597000_peptide number 22 1172.3716 0 DNSKLLKLIE I.claudius_F2_235_335_597000_peptide number 23 1001.1417 0 KRAKRVDE I.claudius_F2_235_335_597000_peptide number 24 2285.6478 0 KQKCCINRALGYLYVRNNE I.claudius_F2_235_335_597000_peptide number 25 1765.0809 0 FIKAADVFKNVIACPE I.claudius_F2_235_335_597000_peptide number 26 388.41610000000003 0 QLE I.claudius_F2_235_335_597000_peptide number 27 1447.6318 0 QNDLMMASYVFE I.claudius_F2_235_335_597000_peptide number 28 901.9608000000001 0 QAGDKALAE I.claudius_F2_235_335_597000_peptide number 29 658.7045 0 QVRQE I.claudius_F2_235_335_597000_peptide number 30 1529.797 0 SLKSVMAIQDVIPE I.claudius_F2_235_335_597000_peptide number 31 305.2845 0 SAE I.claudius_F2_235_335_597000_peptide number 32 147.1293 0 E I.claudius_F2_235_335_597000_peptide number 33 376.4055000000001 0 KTE I.claudius_F2_235_335_597000_peptide number 34 147.1293 0 E I.claudius_F2_235_335_597000_peptide number 35 746.8062 0 NSTALLE I.claudius_F2_235_335_597000_peptide number 36 449.45619999999997 0 SKSE I.claudius_F2_236_59_604302_peptide number 1 6421.4198 0 MACGLSVPHFHLPIIRGISDSFPSLSPSISQIPKHYSPVRHSSARKQAFSCYRSTCMC I.claudius_F2_237_55_605454_peptide number 1 6590.9533 0 MLILYIHIKPPMNNYFKRVSRSTSDFIYIMKFLLHLNINVRFVSQIVNLKFIFI I.claudius_F2_238_355_605794_peptide number 1 578.6364000000001 0 MATQE I.claudius_F2_238_355_605794_peptide number 2 147.1293 0 E I.claudius_F2_238_355_605794_peptide number 3 1340.568 0 KQKALAAALGQIE I.claudius_F2_238_355_605794_peptide number 4 2195.5354000000007 0 KQFGKGSIMKLGDTKTLDVE I.claudius_F2_238_355_605794_peptide number 5 2412.8006000000005 0 SISTGSLGLDVALGIGGLPMGRIVE I.claudius_F2_238_355_605794_peptide number 6 561.6273 0 IFGPE I.claudius_F2_238_355_605794_peptide number 7 2840.2099000000003 0 SSGKTTLTLSVIAQAQKAGKTCAFIDAE I.claudius_F2_238_355_605794_peptide number 8 1839.0965000000003 0 HALDPIYAAKLGVDVKE I.claudius_F2_238_355_605794_peptide number 9 1105.1548999999998 0 LFVSQPDNGE I.claudius_F2_238_355_605794_peptide number 10 459.494 0 QALE I.claudius_F2_238_355_605794_peptide number 11 2740.176900000001 0 ICDALVRSGAIDVIIVDSVAALTPKAE I.claudius_F2_238_355_605794_peptide number 12 260.2869 0 IE I.claudius_F2_238_355_605794_peptide number 13 5633.642700000001 0 GDMGDSHMGLQARLMSQALRKLTGQIKNANCLVVFINQIRMKIGVMFGNPE I.claudius_F2_238_355_605794_peptide number 14 3029.3212 0 TTTGGNALKFYSSVRLDIRRTGSVKDGE I.claudius_F2_238_355_605794_peptide number 15 658.701 0 NIIGNE I.claudius_F2_238_355_605794_peptide number 16 2920.4104999999995 0 TRVKVVKNKLAAPFRQVDFQILYGE I.claudius_F2_238_355_605794_peptide number 17 660.7170000000001 0 GISKAGE I.claudius_F2_238_355_605794_peptide number 18 373.44450000000006 0 LLE I.claudius_F2_238_355_605794_peptide number 19 1022.2419000000002 0 LGVKHKLVE I.claudius_F2_238_355_605794_peptide number 20 1261.2958000000003 0 KSGAWYSYNGE I.claudius_F2_238_355_605794_peptide number 21 1703.9596 0 KIGQGKANSMKWLNE I.claudius_F2_238_355_605794_peptide number 22 374.3895 0 NIE I.claudius_F2_238_355_605794_peptide number 23 477.46630000000005 0 KSDE I.claudius_F2_238_355_605794_peptide number 24 260.2869 0 LE I.claudius_F2_238_355_605794_peptide number 25 714.8141 0 ARLRAE I.claudius_F2_238_355_605794_peptide number 26 641.7137 0 LVANPE I.claudius_F2_238_355_605794_peptide number 27 890.013 0 QALMADIE I.claudius_F2_238_355_605794_peptide number 28 362.33580000000006 0 QSE I.claudius_F2_238_355_605794_peptide number 29 476.4384 0 NNTE I.claudius_F2_238_355_605794_peptide number 30 234.2066 0 SE I.claudius_F2_238_355_605794_peptide number 31 496.4679 0 SDFE I.claudius_F2_239_190_609433_peptide number 1 391.48300000000006 0 MIE I.claudius_F2_239_190_609433_peptide number 2 928.0213000000001 0 HCDKPLSE I.claudius_F2_239_190_609433_peptide number 3 4176.923000000001 0 ISYVYIGDARNNMGNSLLLIGAKLGMDVRICGPKALLPE I.claudius_F2_239_190_609433_peptide number 4 544.5985000000001 0 ANLVE I.claudius_F2_239_190_609433_peptide number 5 381.4683 0 MCE I.claudius_F2_239_190_609433_peptide number 6 621.7257000000001 0 KFAKE I.claudius_F2_239_190_609433_peptide number 7 933.0179999999999 0 SGARITVTE I.claudius_F2_239_190_609433_peptide number 8 2801.130800000001 0 DIDKAVKGVDFIHTDVWVSMGEPLE I.claudius_F2_239_190_609433_peptide number 9 491.49440000000004 0 TWGE I.claudius_F2_239_190_609433_peptide number 10 1569.8856 0 RIKLLLPYQVTPE I.claudius_F2_239_190_609433_peptide number 11 2686.1856999999995 0 LMKRTGNPKVKFMHCLPAFHNSE I.claudius_F2_239_190_609433_peptide number 12 1001.1383000000001 0 TKVGRQIAE I.claudius_F2_239_190_609433_peptide number 13 535.5901 0 KYPE I.claudius_F2_239_190_609433_peptide number 14 615.6763000000001 0 LANGIE I.claudius_F2_239_190_609433_peptide number 15 347.36430000000007 0 VTE I.claudius_F2_239_190_609433_peptide number 16 147.1293 0 E I.claudius_F2_239_190_609433_peptide number 17 393.4343 0 VFE I.claudius_F2_239_190_609433_peptide number 18 908.0299 0 SPMNIAFE I.claudius_F2_239_190_609433_peptide number 19 346.3364 0 QAE I.claudius_F2_239_190_609433_peptide number 20 1641.9996999999998 0 NRMHTIKAVMVASLA I.claudius_F2_240_387_611418_peptide number 1 3714.468400000001 0 MVFIFVLGGMIGVINRTGSFNAGLMALVKKTKGNE I.claudius_F2_240_387_611418_peptide number 2 2235.7267000000006 0 FFIVFCVSVLMVLGGTTCGIE I.claudius_F2_240_387_611418_peptide number 3 147.1293 0 E I.claudius_F2_240_387_611418_peptide number 4 147.1293 0 E I.claudius_F2_240_387_611418_peptide number 5 5840.8024000000005 0 AVAFYPILVPVFLALGYDAIVCVGAIFLAASMGTAFSTINPFSVVIASNAAGIQFTE I.claudius_F2_240_387_611418_peptide number 6 4668.3496000000005 0 GIGFRALGLVLGATCVIAYLYWYCKKIKADPSFSYTYDDRE I.claudius_F2_240_387_611418_peptide number 7 147.1293 0 E I.claudius_F2_240_387_611418_peptide number 8 7922.4912 0 FRQRYMKNFDPNTTIPFSARRKLILTLFCISFPIMIWGVMVGGWWFPQMAASFLAITIIIMFISGLSE I.claudius_F2_240_387_611418_peptide number 9 634.7427 0 KDIME I.claudius_F2_240_387_611418_peptide number 10 482.48440000000005 0 SFTE I.claudius_F2_240_387_611418_peptide number 11 362.33580000000006 0 GASE I.claudius_F2_240_387_611418_peptide number 12 1935.3543000000002 0 LVGVSLIIGLARGVNLVLE I.claudius_F2_240_387_611418_peptide number 13 13894.71350000001 0 QGMISDTILDYMSNVVSGMPGSVFILGQLVVFIFLGLIVPSSSGLAVLSMPIMAPLADSVGIPRDIVVSAYNWGQYAMLFLAPTGLVLVTLQMLQIPFDRWVKFVMPMIGCLLLIGSILLVVQVSLYSV I.claudius_F2_241_394_614545_peptide number 1 1279.5894 0 MMKDCSPLLLE I.claudius_F2_241_394_614545_peptide number 2 374.3895 0 LNE I.claudius_F2_241_394_614545_peptide number 3 8267.1874 0 NDPGILVTQSVHKQQAGFSQTSQIHKKDKHIKGQDRYVNHKRFNNAFMLHASTSPFYPLFATLDVNAKIQGSE I.claudius_F2_241_394_614545_peptide number 4 1024.1367 0 AGRRLWHE I.claudius_F2_241_394_614545_peptide number 5 746.9156 0 CVKVGIE I.claudius_F2_241_394_614545_peptide number 6 1182.3963 0 ARKLVLNHCE I.claudius_F2_241_394_614545_peptide number 7 2549.9168 0 LIRPFIPTTIKGKKWQDYDTE I.claudius_F2_241_394_614545_peptide number 8 147.1293 0 E I.claudius_F2_241_394_614545_peptide number 9 659.7289000000001 0 IATNLE I.claudius_F2_241_394_614545_peptide number 10 1867.0684 0 FFKFHPTDTWHKFE I.claudius_F2_241_394_614545_peptide number 11 553.5192000000001 0 GYADE I.claudius_F2_241_394_614545_peptide number 12 2171.5105 0 QYFVDPCKFLLTTPGISLE I.claudius_F2_241_394_614545_peptide number 13 305.2845 0 TGE I.claudius_F2_241_394_614545_peptide number 14 310.30260000000004 0 YE I.claudius_F2_241_394_614545_peptide number 15 147.1293 0 E I.claudius_F2_241_394_614545_peptide number 16 1563.7949 0 FGVPATILANYLRE I.claudius_F2_241_394_614545_peptide number 17 641.7136 0 NGIIPE I.claudius_F2_241_394_614545_peptide number 18 1676.9707000000003 0 KCDLNSILFLLTPAE I.claudius_F2_241_394_614545_peptide number 19 1807.159 0 TITKMQTLVAQIALFE I.claudius_F2_241_394_614545_peptide number 20 2530.9152000000004 0 KHIKQDSLLKYVLPTVYKNNE I.claudius_F2_241_394_614545_peptide number 21 1772.9787000000003 0 DRYKGYTIRQLCQE I.claudius_F2_241_394_614545_peptide number 22 3030.5029000000013 0 MHDLYVSRNVKQLQKDLFRKATLPE I.claudius_F2_241_394_614545_peptide number 23 1284.3739 0 YVLNPHDANIE I.claudius_F2_241_394_614545_peptide number 24 871.0362 0 LIRNKVE I.claudius_F2_241_394_614545_peptide number 25 1452.6947 0 LVPLTDIVGRVAAE I.claudius_F2_241_394_614545_peptide number 26 1567.8466 0 GALPYPPGVLCVVPGE I.claudius_F2_241_394_614545_peptide number 27 1694.8833 0 KWSTTAHQYFLALE I.claudius_F2_241_394_614545_peptide number 28 147.1293 0 E I.claudius_F2_241_394_614545_peptide number 29 1115.2358 0 GINTLPGFAPE I.claudius_F2_241_394_614545_peptide number 30 2792.0626 0 IQGVYLQKDPDGRTRAYGYVLTDY I.claudius_F2_242_70_616929_peptide number 1 1129.4132 0 MAALAVLLKAE I.claudius_F2_242_70_616929_peptide number 2 3285.7401000000004 0 NVAPQKYKTTVFVAFIGSLYSIYALYAAGE I.claudius_F2_242_70_616929_peptide number 3 3276.840800000001 0 QAMLYGSIVTFIGWTLYGFVSYKFDLKK I.claudius_F2_243_54_617677_peptide number 1 1904.2078999999999 0 MAGSYDFLLKLCVSDIE I.claudius_F2_243_54_617677_peptide number 2 147.1293 0 E I.claudius_F2_243_54_617677_peptide number 3 2345.6964 0 LNHIKNTHLTNAIGIKTLKSE I.claudius_F2_243_54_617677_peptide number 4 1232.4668000000001 0 IILKTVKSTTE I.claudius_F2_243_54_617677_peptide number 5 341.44570000000004 0 LPL I.claudius_F2_244_227_619209_peptide number 1 3186.8524 0 MPLKRIINMKNMLLLSSSKYKNTGYLE I.claudius_F2_244_227_619209_peptide number 2 3714.1454000000003 0 HTIPWLQNFLADYRGKTIAFVPYAGVSRTFDE I.claudius_F2_244_227_619209_peptide number 3 310.30260000000004 0 YE I.claudius_F2_244_227_619209_peptide number 4 3159.5787 0 KTVQNALSDLGMNIVSVHRGKQHRDIIE I.claudius_F2_244_227_619209_peptide number 5 2253.5728000000004 0 QADVIAIGGGNTFCLLKQLYE I.claudius_F2_244_227_619209_peptide number 6 1122.2747 0 HNLIDIIRE I.claudius_F2_244_227_619209_peptide number 7 6605.3238 0 KVNNGTPYFGWSAGANVAGSSIMTTNDMPITYPPSFQALQLFPHQINPHFISGKMQGHNGE I.claudius_F2_244_227_619209_peptide number 8 390.3923 0 SRE I.claudius_F2_244_227_619209_peptide number 9 147.1293 0 E I.claudius_F2_244_227_619209_peptide number 10 487.55050000000006 0 RLAE I.claudius_F2_244_227_619209_peptide number 11 1659.9617999999998 0 FLLVNPTALVYALPE I.claudius_F2_244_227_619209_peptide number 12 2546.9044 0 GSALHIQNGMGNRIGRKSYFVLQ I.claudius_F2_245_167_620750_peptide number 1 2287.8029 0 MLIGAIYGIIVTRISPVKITE I.claudius_F2_245_167_620750_peptide number 2 147.1293 0 E I.claudius_F2_245_167_620750_peptide number 3 4164.776600000001 0 FFNGMGNSYANVLGIIIAASVFVAGLKSTGAVDAAISFLKE I.claudius_F2_245_167_620750_peptide number 4 348.30920000000003 0 SNE I.claudius_F2_245_167_620750_peptide number 5 3760.2784 0 FVRWGATIGPFLMGLITGSGDAAAIAFNTAVTPHAVE I.claudius_F2_245_167_620750_peptide number 6 4024.7296 0 LGYTHVNLGMAAAIAGAIGRTASPIAGVTIVCAGLAMVSPVE I.claudius_F2_245_167_620750_peptide number 7 2336.0213 0 MVKRTAPGMILAVLFLALFML I.claudius_F2_246_50_621893_peptide number 1 2949.6616 0 MMQIILLLHTLVFARIQAQLLLIQE I.claudius_F2_246_50_621893_peptide number 2 2868.5492 0 IFFPLQKLIFAIKVNLRTQVLRPI I.claudius_F2_247_117_622243_peptide number 1 1771.0422999999998 0 MQIAKGISISFNVAYE I.claudius_F2_247_117_622243_peptide number 2 248.23319999999998 0 TE I.claudius_F2_247_117_622243_peptide number 3 416.4693000000001 0 IVGE I.claudius_F2_247_117_622243_peptide number 4 1006.0455 0 AVDMNNDVE I.claudius_F2_247_117_622243_peptide number 5 727.932 0 LIKLIE I.claudius_F2_247_117_622243_peptide number 6 147.1293 0 E I.claudius_F2_247_117_622243_peptide number 7 460.5218 0 ISLE I.claudius_F2_247_117_622243_peptide number 8 1910.947 0 QPQINNVNSDYAFNASE I.claudius_F2_247_117_622243_peptide number 9 1257.3967 0 DATILGRRVQE I.claudius_F2_247_117_622243_peptide number 10 2150.3554000000004 0 HGGKAIYFILGADRTAGHHE I.claudius_F2_247_117_622243_peptide number 11 218.2072 0 AE I.claudius_F2_247_117_622243_peptide number 12 671.6519000000001 0 FDFDE I.claudius_F2_247_117_622243_peptide number 13 2104.446 0 NQLLTGVNIYTSLVQKLLS I.claudius_F2_248_464_623269_peptide number 1 1517.7481000000002 0 MVWDKANLQGKVE I.claudius_F2_248_464_623269_peptide number 2 1647.8701999999998 0 TRDIVKTAQKYVPE I.claudius_F2_248_464_623269_peptide number 3 2584.8982 0 MKKKGADIVVALAHTGPSDEPYQE I.claudius_F2_248_464_623269_peptide number 4 275.2585 0 GAE I.claudius_F2_248_464_623269_peptide number 5 3195.5428000000006 0 NSAFYLADVPHIDAVIFGHSHRLFPNKE I.claudius_F2_248_464_623269_peptide number 6 1957.1878000000002 0 FAKSPNADIVNGTVKGIPE I.claudius_F2_248_464_623269_peptide number 7 2040.2531000000004 0 SMAGYWANNISVVDLGLTE I.claudius_F2_248_464_623269_peptide number 8 2410.8113 0 HKGKWIVTSGKAVLRPIYDIE I.claudius_F2_248_464_623269_peptide number 9 1214.3687 0 TKKALAKNDPE I.claudius_F2_248_464_623269_peptide number 10 1120.3418000000001 0 ITALLKPVHE I.claudius_F2_248_464_623269_peptide number 11 4746.311 0 ATRKYVSQPIGKATDNMYSYLALLQDDPTIQIVNQAQKAYVE I.claudius_F2_248_464_623269_peptide number 12 3457.951700000001 0 KVAPSIAAMAGLPILSAGAPFKAGGRKNDPTGYTE I.claudius_F2_248_464_623269_peptide number 13 3195.6656000000007 0 VNKGKLTFRNAADLYLYPNTLVVVKATGE I.claudius_F2_248_464_623269_peptide number 14 516.5884000000001 0 QLKE I.claudius_F2_248_464_623269_peptide number 15 446.4968 0 WLE I.claudius_F2_248_464_623269_peptide number 16 2596.8854999999994 0 CSAGMFKQIDPTSDKPQSLIDWE I.claudius_F2_248_464_623269_peptide number 17 1909.0157000000002 0 GFRTYNFDVIDGVNYE I.claudius_F2_248_464_623269_peptide number 18 1427.5146 0 YDLTKPARYDGE I.claudius_F2_248_464_623269_peptide number 19 815.9775 0 CKLINPE I.claudius_F2_248_464_623269_peptide number 20 2138.3831 0 SHRVVNLTYQGKPVDPKAE I.claudius_F2_248_464_623269_peptide number 21 3359.6561999999994 0 FLIATNNYRAYGNKFPGTGDKHIVYASPDE I.claudius_F2_248_464_623269_peptide number 22 1594.7643 0 SRQILADYIKATSE I.claudius_F2_248_464_623269_peptide number 23 275.3016 0 KE I.claudius_F2_248_464_623269_peptide number 24 3089.3762 0 GSVNPNADKNWRFVPITGNDKLDVRFE I.claudius_F2_248_464_623269_peptide number 25 519.503 0 TSPSE I.claudius_F2_248_464_623269_peptide number 26 876.9960000000001 0 QAAKFIAE I.claudius_F2_248_464_623269_peptide number 27 1494.6685000000002 0 KAQYPMKQVGTDE I.claudius_F2_248_464_623269_peptide number 28 1353.5617999999997 0 IGFAVYQIDLSK I.claudius_F2_249_367_626135_peptide number 1 811.9426000000001 0 MYTGVIE I.claudius_F2_249_367_626135_peptide number 2 1191.3567000000003 0 GIGPRYCPSIE I.claudius_F2_249_367_626135_peptide number 3 2348.5929 0 DKVMRFADRNSHQIYLEPE I.claudius_F2_249_367_626135_peptide number 4 619.622 0 GLTSNE I.claudius_F2_249_367_626135_peptide number 5 2797.2066000000004 0 VYPNGISTSLPFDVQMGIVNSMKGLE I.claudius_F2_249_367_626135_peptide number 6 1330.5318 0 NARIVKPGYAIE I.claudius_F2_249_367_626135_peptide number 7 1771.9195 0 YDYFDPRDLKPTLE I.claudius_F2_249_367_626135_peptide number 8 2091.2767000000003 0 TKSISGLFFAGQINGTTGYE I.claudius_F2_249_367_626135_peptide number 9 147.1293 0 E I.claudius_F2_249_367_626135_peptide number 10 1758.9685000000002 0 AAAQGLLAGINAGLYVQE I.claudius_F2_249_367_626135_peptide number 11 4337.7812 0 KDAWYPRRDQSYTGVLVDDLCTLGTKEPYRVFTSRAE I.claudius_F2_249_367_626135_peptide number 12 962.1468000000001 0 YRLLLRE I.claudius_F2_249_367_626135_peptide number 13 1464.5794 0 DNADIRLTPIAHE I.claudius_F2_249_367_626135_peptide number 14 658.7408 0 LGLIDE I.claudius_F2_249_367_626135_peptide number 15 1436.6405 0 ARWARFNQKME I.claudius_F2_249_367_626135_peptide number 16 374.3895 0 NIE I.claudius_F2_249_367_626135_peptide number 17 275.2585 0 QE I.claudius_F2_249_367_626135_peptide number 18 1834.0931 0 RQRLRSIWLHPRSE I.claudius_F2_249_367_626135_peptide number 19 423.4602000000001 0 YLE I.claudius_F2_249_367_626135_peptide number 20 147.1293 0 E I.claudius_F2_249_367_626135_peptide number 21 1282.489 0 ANKVLGSPLVRE I.claudius_F2_249_367_626135_peptide number 22 362.3358 0 ASGE I.claudius_F2_249_367_626135_peptide number 23 898.0185 0 DLLRRPE I.claudius_F2_249_367_626135_peptide number 24 1974.2979 0 MTYDILTSLTPYKPAME I.claudius_F2_249_367_626135_peptide number 25 390.389 0 DKE I.claudius_F2_249_367_626135_peptide number 26 317.3383 0 AVE I.claudius_F2_249_367_626135_peptide number 27 374.38960000000003 0 QVE I.claudius_F2_249_367_626135_peptide number 28 1197.3794 0 IAIKYQGYIE I.claudius_F2_249_367_626135_peptide number 29 540.527 0 HQQE I.claudius_F2_249_367_626135_peptide number 30 147.1293 0 E I.claudius_F2_249_367_626135_peptide number 31 260.2869 0 IE I.claudius_F2_249_367_626135_peptide number 32 824.9281000000001 0 KQKRHE I.claudius_F2_249_367_626135_peptide number 33 2027.1483999999998 0 NTAIPANFDYSKVSGLSNE I.claudius_F2_249_367_626135_peptide number 34 714.8539000000001 0 VRAKLE I.claudius_F2_249_367_626135_peptide number 35 4068.791900000001 0 QHRPVSIGQASRISGITPAAISIILVNLKKQGMLKRGE I.claudius_F2_250_701_628502_peptide number 1 918.0696 0 MARTTPIE I.claudius_F2_250_701_628502_peptide number 2 2204.3997000000004 0 RYRNIGISAHIDAGKTTTTE I.claudius_F2_250_701_628502_peptide number 3 1619.8615 0 RILFYTGVSHKIGE I.claudius_F2_250_701_628502_peptide number 4 1362.4876 0 VHDGAATMDWME I.claudius_F2_250_701_628502_peptide number 5 275.2585 0 QE I.claudius_F2_250_701_628502_peptide number 6 275.2585 0 QE I.claudius_F2_250_701_628502_peptide number 7 4417.869 0 RGITITSAATTAFWSGMSQQFPQHRINVIDTPGHVDFTVE I.claudius_F2_250_701_628502_peptide number 8 246.2604 0 VE I.claudius_F2_250_701_628502_peptide number 9 2552.9475 0 RSMRVLDGAVMVYCAVGGVQPQSE I.claudius_F2_250_701_628502_peptide number 10 1294.4152 0 TVWRQANKYE I.claudius_F2_250_701_628502_peptide number 11 2532.961 0 VPRIAFVNKMDRTGANFLRVVE I.claudius_F2_250_701_628502_peptide number 12 2089.438 0 QLKTRLGANAIPLQLPVGAE I.claudius_F2_250_701_628502_peptide number 13 147.1293 0 E I.claudius_F2_250_701_628502_peptide number 14 2092.4170999999997 0 NFTGVVDLIKMKAINWNE I.claudius_F2_250_701_628502_peptide number 15 1162.2261999999998 0 ADQGMTFTYE I.claudius_F2_250_701_628502_peptide number 16 147.1293 0 E I.claudius_F2_250_701_628502_peptide number 17 1077.1896000000002 0 VPANMQADCE I.claudius_F2_250_701_628502_peptide number 18 147.1293 0 E I.claudius_F2_250_701_628502_peptide number 19 944.0454000000002 0 WRQNLVE I.claudius_F2_250_701_628502_peptide number 20 360.36300000000006 0 AAAE I.claudius_F2_250_701_628502_peptide number 21 305.2845 0 ASE I.claudius_F2_250_701_628502_peptide number 22 147.1293 0 E I.claudius_F2_250_701_628502_peptide number 23 391.48300000000006 0 LME I.claudius_F2_250_701_628502_peptide number 24 665.7351 0 KYLGGE I.claudius_F2_250_701_628502_peptide number 25 476.4782 0 DLTE I.claudius_F2_250_701_628502_peptide number 26 147.1293 0 E I.claudius_F2_250_701_628502_peptide number 27 147.1293 0 E I.claudius_F2_250_701_628502_peptide number 28 1497.7418 0 IKSALRQRVLANE I.claudius_F2_250_701_628502_peptide number 29 2506.9783 0 IILVTCGSAFKNKGVQAMLDAVVE I.claudius_F2_250_701_628502_peptide number 30 1924.1545 0 YLPAPTDIPAIKGINPDE I.claudius_F2_250_701_628502_peptide number 31 248.23319999999998 0 TE I.claudius_F2_250_701_628502_peptide number 32 204.1806 0 GE I.claudius_F2_250_701_628502_peptide number 33 713.6969 0 RHASDE I.claudius_F2_250_701_628502_peptide number 34 4908.481400000001 0 EPFSSLAFKIATDPFVGNLTFFRVYSGVINSGDTVLNSVRQKRE I.claudius_F2_250_701_628502_peptide number 35 1742.0176999999999 0 RFGRIVQMHANKRE I.claudius_F2_250_701_628502_peptide number 36 147.1293 0 E I.claudius_F2_250_701_628502_peptide number 37 388.4592 0 IKE I.claudius_F2_250_701_628502_peptide number 38 3096.5510000000004 0 VRAGDIAAAIGLKDVTTGDTLCAIDAPIILE I.claudius_F2_250_701_628502_peptide number 39 434.51110000000006 0 RME I.claudius_F2_250_701_628502_peptide number 40 2084.3259 0 FPEPVISVAVEPKTKADQE I.claudius_F2_250_701_628502_peptide number 41 1286.5438000000001 0 KMGLALGRLAQE I.claudius_F2_250_701_628502_peptide number 42 1202.2305000000001 0 DPSFRVHTDE I.claudius_F2_250_701_628502_peptide number 43 147.1293 0 E I.claudius_F2_250_701_628502_peptide number 44 291.25790000000006 0 SGE I.claudius_F2_250_701_628502_peptide number 45 806.9244 0 TIISGMGE I.claudius_F2_250_701_628502_peptide number 46 1637.9447000000002 0 LHLDIIVDRMKRE I.claudius_F2_250_701_628502_peptide number 47 521.6066000000001 0 FKVE I.claudius_F2_250_701_628502_peptide number 48 1361.5028000000002 0 ANIGKPQVSYRE I.claudius_F2_250_701_628502_peptide number 49 1202.3183 0 TIRTRVNDVE I.claudius_F2_250_701_628502_peptide number 50 2822.0951000000005 0 GKHAKQSGGRGQYGHVVIDLYPLDPE I.claudius_F2_250_701_628502_peptide number 51 521.5204 0 GPGYE I.claudius_F2_250_701_628502_peptide number 52 507.53690000000006 0 FVNE I.claudius_F2_250_701_628502_peptide number 53 869.0169999999999 0 IKGGVIPGE I.claudius_F2_250_701_628502_peptide number 54 1232.3822 0 YIPAVDKGIQE I.claudius_F2_250_701_628502_peptide number 55 3343.6553 0 QLKSGPLAGYPVVDLGVRLHFGSYHDVDSSE I.claudius_F2_250_701_628502_peptide number 56 3218.8910000000005 0 LAFKLAASLAFKAAFSKANPVLLEPIMKVE I.claudius_F2_250_701_628502_peptide number 57 246.2604 0 VE I.claudius_F2_250_701_628502_peptide number 58 442.46360000000004 0 TPPE I.claudius_F2_250_701_628502_peptide number 59 2235.48 0 YVGDVIGDLSRRRAMVNGQE I.claudius_F2_250_701_628502_peptide number 60 332.3098 0 ANE I.claudius_F2_250_701_628502_peptide number 61 968.1465000000002 0 FVVKIYAE I.claudius_F2_250_701_628502_peptide number 62 543.6105 0 VPLSE I.claudius_F2_250_701_628502_peptide number 63 3101.425200000001 0 MFGYATDLRSQTQGRASYSMEPLKYAE I.claudius_F2_250_701_628502_peptide number 64 1028.1571000000001 0 APTSVAAAVIE I.claudius_F2_250_701_628502_peptide number 65 501.62350000000004 0 ARKK I.claudius_F2_251_54_633514_peptide number 1 1746.9613 0 MSVGNTNSRMFNIFE I.claudius_F2_251_54_633514_peptide number 2 3750.2388 0 RMKHDFAVLANQCADTINDCFVGIYDSLIFISE I.claudius_F2_251_54_633514_peptide number 3 646.8212000000001 0 RIFIV I.claudius_F2_252_69_634608_peptide number 1 391.48300000000006 0 MLE I.claudius_F2_252_69_634608_peptide number 2 530.5752 0 NRIE I.claudius_F2_252_69_634608_peptide number 3 147.1293 0 E I.claudius_F2_252_69_634608_peptide number 4 260.2869 0 LE I.claudius_F2_252_69_634608_peptide number 5 866.0363000000001 0 MKIAFQE I.claudius_F2_252_69_634608_peptide number 6 616.6611 0 QLLDE I.claudius_F2_252_69_634608_peptide number 7 4568.1096 0 LNHALVQQQFDIDKMQVQLRYMANKLKDFQSSNIASQSE I.claudius_F2_252_69_634608_peptide number 8 147.1293 0 E I.claudius_F2_252_69_634608_peptide number 9 710.7774000000001 0 TPPPHY I.claudius_F2_253_75_635026_peptide number 1 3173.8123 0 MISSKLKPLSCKSCFAFAQKGQPGFVKIE I.claudius_F2_253_75_635026_peptide number 2 4815.284999999999 0 IDSCTWCCGARYFNIVSASDTLNGSPGSFGSINIFSTTPFFTSIE I.claudius_F2_254_302_635750_peptide number 1 890.0163000000001 0 MNIRDLE I.claudius_F2_254_302_635750_peptide number 2 793.9041000000001 0 YLVALSE I.claudius_F2_254_302_635750_peptide number 3 3005.3708 0 YKHFRRAADSCNVSQPTLSGQIRKLE I.claudius_F2_254_302_635750_peptide number 4 262.2167 0 DE I.claudius_F2_254_302_635750_peptide number 5 769.9686 0 LGIILLE I.claudius_F2_254_302_635750_peptide number 6 2905.3794000000003 0 RTSRKVLFTQSGMLLVDQARTVLRE I.claudius_F2_254_302_635750_peptide number 7 728.9202 0 VKLLKE I.claudius_F2_254_302_635750_peptide number 8 863.9359999999999 0 MASNQGKE I.claudius_F2_254_302_635750_peptide number 9 3578.330300000001 0 MTGPLHIGLIPTVGPYLLPYIVPMLKAAFPDLE I.claudius_F2_254_302_635750_peptide number 10 669.7652 0 VFLYE I.claudius_F2_254_302_635750_peptide number 11 939.024 0 AQTHQLLE I.claudius_F2_254_302_635750_peptide number 12 388.41610000000003 0 QLE I.claudius_F2_254_302_635750_peptide number 13 1444.6528000000003 0 TGRLDCAIVATVPE I.claudius_F2_254_302_635750_peptide number 14 248.23319999999998 0 TE I.claudius_F2_254_302_635750_peptide number 15 478.53870000000006 0 AFIE I.claudius_F2_254_302_635750_peptide number 16 717.8097 0 VPIFNE I.claudius_F2_254_302_635750_peptide number 17 890.0992000000002 0 KMLLAVSE I.claudius_F2_254_302_635750_peptide number 18 903.9401 0 HHPWAQE I.claudius_F2_254_302_635750_peptide number 19 1358.5203000000001 0 SKLPMNQLNGQE I.claudius_F2_254_302_635750_peptide number 20 2816.2164000000007 0 MLMLDDGHCLRNQALDYCFTAGAKE I.claudius_F2_254_302_635750_peptide number 21 1133.1683 0 NSHFQATSLE I.claudius_F2_254_302_635750_peptide number 22 1836.1406 0 TLRNMVAANAGITFMPE I.claudius_F2_254_302_635750_peptide number 23 657.7561000000001 0 LAVLNE I.claudius_F2_254_302_635750_peptide number 24 4025.5952000000007 0 GTRKGVKYIPCYSPEPSRTIALVYRPGSPLRNRYE I.claudius_F2_254_302_635750_peptide number 25 932.9750000000001 0 RVASAVSDE I.claudius_F2_254_302_635750_peptide number 26 972.1797999999999 0 VKSILDGLK I.claudius_F2_255_763_637915_peptide number 1 1458.6791 0 MLNQQISQIIAAE I.claudius_F2_255_763_637915_peptide number 2 3459.9458000000004 0 LTVQPQQIFAAIQLLDDGNTIPFIARYRKE I.claudius_F2_255_763_637915_peptide number 3 1559.6357 0 ATGGLDDTQLRHFE I.claudius_F2_255_763_637915_peptide number 4 1063.2507 0 TRLIYLRE I.claudius_F2_255_763_637915_peptide number 5 260.2869 0 LE I.claudius_F2_255_763_637915_peptide number 6 1358.5436 0 DRRQTILKSIE I.claudius_F2_255_763_637915_peptide number 7 147.1293 0 E I.claudius_F2_255_763_637915_peptide number 8 789.831 0 QGKLTDE I.claudius_F2_255_763_637915_peptide number 9 1526.6937 0 LRDKIHATQSKTE I.claudius_F2_255_763_637915_peptide number 10 260.2869 0 LE I.claudius_F2_255_763_637915_peptide number 11 2289.6747 0 DLYLPYKPKRRTKGQIAIE I.claudius_F2_255_763_637915_peptide number 12 2120.3178 0 AGLEPLANLLWNEPKNDPE I.claudius_F2_255_763_637915_peptide number 13 1039.0936 0 STALSFVDAE I.claudius_F2_255_763_637915_peptide number 14 1958.2835 0 KGVADSKAALDGARIILME I.claudius_F2_255_763_637915_peptide number 15 521.5668000000001 0 RFAE I.claudius_F2_255_763_637915_peptide number 16 2586.0352000000003 0 DAGLLAKVRDYLAKNAVIVSKVIE I.claudius_F2_255_763_637915_peptide number 17 332.35290000000003 0 GKE I.claudius_F2_255_763_637915_peptide number 18 248.23319999999998 0 TE I.claudius_F2_255_763_637915_peptide number 19 1484.5244000000002 0 GAKFQDYFDHQE I.claudius_F2_255_763_637915_peptide number 20 2209.5767 0 LLKNVPSHRALAMFRGRNE I.claudius_F2_255_763_637915_peptide number 21 1455.5659000000003 0 GILQLSLNADPDAE I.claudius_F2_255_763_637915_peptide number 22 147.1293 0 E I.claudius_F2_255_763_637915_peptide number 23 928.9663 0 GSRQSYCE I.claudius_F2_255_763_637915_peptide number 24 147.1293 0 E I.claudius_F2_255_763_637915_peptide number 25 2478.7594000000004 0 IIRDYLDVRFTGQPADKWRE I.claudius_F2_255_763_637915_peptide number 26 1951.3138999999999 0 QVIAWTWKIKVSLHLE I.claudius_F2_255_763_637915_peptide number 27 248.23319999999998 0 TE I.claudius_F2_255_763_637915_peptide number 28 818.9815000000001 0 LMASLRE I.claudius_F2_255_763_637915_peptide number 29 346.3795 0 KAE I.claudius_F2_255_763_637915_peptide number 30 147.1293 0 E I.claudius_F2_255_763_637915_peptide number 31 147.1293 0 E I.claudius_F2_255_763_637915_peptide number 32 6042.9608000000035 0 AIDVFARNLTALLMAAPAGAKSTMGLDPGLRTGVKVAMVDNTGKLLDTTTIYPHTGRE I.claudius_F2_255_763_637915_peptide number 33 218.2072 0 AE I.claudius_F2_255_763_637915_peptide number 34 1725.0004000000001 0 AQVAIFSLIRKHNVE I.claudius_F2_255_763_637915_peptide number 35 1201.33 0 LIAIGNGTASRE I.claudius_F2_255_763_637915_peptide number 36 248.23319999999998 0 TE I.claudius_F2_255_763_637915_peptide number 37 1105.2875000000001 0 RFAKDVIKE I.claudius_F2_255_763_637915_peptide number 38 388.4592 0 IKE I.claudius_F2_255_763_637915_peptide number 39 1100.2231000000002 0 NKPQTVVVSE I.claudius_F2_255_763_637915_peptide number 40 940.9506000000001 0 AGASVYSASE I.claudius_F2_255_763_637915_peptide number 41 550.5616 0 FAANE I.claudius_F2_255_763_637915_peptide number 42 2637.9871 0 FPNLDVSLRGAVSIARRLQDPLAE I.claudius_F2_255_763_637915_peptide number 43 3561.051600000001 0 LVKIEPKAIGVGQYQHDVNQTQLARKLDAVVE I.claudius_F2_255_763_637915_peptide number 44 3455.9558000000006 0 DCVNAVGVDLNTASAPLLARVAGMTKTLAQNIVE I.claudius_F2_255_763_637915_peptide number 45 581.5757000000001 0 YRDE I.claudius_F2_255_763_637915_peptide number 46 621.6428000000001 0 NGRFE I.claudius_F2_255_763_637915_peptide number 47 477.4696 0 SRSE I.claudius_F2_255_763_637915_peptide number 48 1482.8117 0 LKKVPRLGPKAFE I.claudius_F2_255_763_637915_peptide number 49 2412.7029 0 QCAGFMRIANGKNPLDASGVHPE I.claudius_F2_255_763_637915_peptide number 50 676.7579000000001 0 AYPVVE I.claudius_F2_255_763_637915_peptide number 51 3431.8696000000004 0 KILQATAQSIQDLMSNAGVVRQLDAKQFIDE I.claudius_F2_255_763_637915_peptide number 52 1521.7118999999998 0 QFGLPTVQDIFKE I.claudius_F2_255_763_637915_peptide number 53 260.2869 0 LE I.claudius_F2_255_763_637915_peptide number 54 1011.0934 0 KPGRDPRGE I.claudius_F2_255_763_637915_peptide number 55 912.0402000000001 0 FKTAVFAE I.claudius_F2_255_763_637915_peptide number 56 303.31170000000003 0 GVE I.claudius_F2_255_763_637915_peptide number 57 147.1293 0 E I.claudius_F2_255_763_637915_peptide number 58 1219.448 0 ITDLKSGMILE I.claudius_F2_255_763_637915_peptide number 59 3603.9422000000004 0 GTVTNVTNFGAFVDIGVHQDGLVHISSLSDKFVE I.claudius_F2_255_763_637915_peptide number 60 2003.3458 0 DPHQVVKTGNIVKVKVLE I.claudius_F2_255_763_637915_peptide number 61 1912.2615999999998 0 VDVPRKRIALTMRLDE I.claudius_F2_255_763_637915_peptide number 62 2733.9721000000004 0 SAVKNDSKSDRTLSTRPRGNMQRE I.claudius_F2_255_763_637915_peptide number 63 1560.6733 0 ARNSRGNNVIGNAFA I.claudius_F2_256_60_642595_peptide number 1 1006.0900000000001 0 MNADQLWE I.claudius_F2_256_60_642595_peptide number 2 3556.0519 0 TTMDPNSRRMLKVSIKDAVAADQLFTTLMGDE I.claudius_F2_256_60_642595_peptide number 3 784.8610000000001 0 VEPRRE I.claudius_F2_256_60_642595_peptide number 4 407.46080000000006 0 FIE I.claudius_F2_256_60_642595_peptide number 5 1098.2532999999999 0 LNALRANLDV I.claudius_F2_257_105_643281_peptide number 1 5252.153200000003 0 MPLSYLDYVLDKVDVVLLMSVNPGFGGQSFIPATLKKLQQARKIIDE I.claudius_F2_257_105_643281_peptide number 2 952.0195000000001 0 SGYDIRLE I.claudius_F2_257_105_643281_peptide number 3 1215.3104 0 VDGGVKVDNIAE I.claudius_F2_257_105_643281_peptide number 4 3811.321999999999 0 IAAAGADMFVAGSAIFGKPDYKQVIDQIRTQLASVSA I.claudius_F2_258_71_644014_peptide number 1 4720.556300000001 0 MFSQYWPHLALTIYLVKCWAVNPYLPLSHIQLHFIIYAE I.claudius_F2_258_71_644014_peptide number 2 3523.3062999999997 0 NLVLNHAKCFSWAILKMILSQVTLRAVQLLV I.claudius_F2_259_124_644508_peptide number 1 9119.673400000003 0 MAISRLINLGANPFLNGLHRLLSQLVSVMHFHLRGYPLRKVQRLCLIGRSIPKCRHLSLCSHFQILLSSHHSQVHDHHE I.claudius_F2_259_124_644508_peptide number 2 5409.503700000001 0 VCHLKVCRQSRLRILHRILYKLRFHALYCLNLDSVLLNLRYAQR I.claudius_F2_260_151_645526_peptide number 1 2928.3232000000003 0 MHNIDSLDQKILRVLTKDARTPYAE I.claudius_F2_260_151_645526_peptide number 2 1842.1270000000002 0 MAKNFGVSPGTIHVRVE I.claudius_F2_260_151_645526_peptide number 3 1916.2899000000002 0 KMRQSGIIKGTKVIIDE I.claudius_F2_260_151_645526_peptide number 4 2534.9899 0 RKLGYDVCCFIGIILKSAKDYE I.claudius_F2_260_151_645526_peptide number 5 857.0925000000001 0 KVIKKLE I.claudius_F2_260_151_645526_peptide number 6 496.4679 0 SFDE I.claudius_F2_260_151_645526_peptide number 7 345.39150000000006 0 VVE I.claudius_F2_260_151_645526_peptide number 8 2423.7373000000002 0 AYYTTGNYSIFLKVMTHTIAE I.claudius_F2_260_151_645526_peptide number 9 1579.8357 0 LHSVLATKIQLIDE I.claudius_F2_260_151_645526_peptide number 10 576.5973 0 IQSTE I.claudius_F2_260_151_645526_peptide number 11 1739.0881999999997 0 TLISMQNPILRDIKP I.claudius_F2_261_613_646776_peptide number 1 1627.9416 0 MAVLKFFKDSSILE I.claudius_F2_261_613_646776_peptide number 2 7666.957800000003 0 NNMVQTQASSAGTLSSVIFVLPGLLMMGYWQDFPFWQTMLICAAGGTLGVLFTIPLRRAMVVNSNLPYPE I.claudius_F2_261_613_646776_peptide number 3 516.5454000000001 0 GVAAAE I.claudius_F2_261_613_646776_peptide number 4 9713.322800000004 0 ILKAGNHADGDSGVKDIAYGGVLAGLVAFLTNGLRVMADGASAWIQTGKAAFQLPMGFSLALLGAGYLIGIVGGIAMLIGVILTWGVAVPYFTMSE I.claudius_F2_261_613_646776_peptide number 5 4890.866700000001 0 DIAADASLIDSAMTVWKTKVRYIGVGTIGIAAIWTLLILMKPMIE I.claudius_F2_261_613_646776_peptide number 6 1576.8418000000001 0 GMVHSFRMLKGGQE I.claudius_F2_261_613_646776_peptide number 7 305.2845 0 ASE I.claudius_F2_261_613_646776_peptide number 8 4294.1091 0 HRIDIDLSPKTMIYILIATVALIVISLHHFIAAAPISPE I.claudius_F2_261_613_646776_peptide number 9 6348.551099999998 0 LSILLVVVCTFLAVFIGFFVAAASGYMAGLVGSSSSPISGIGIISVIVISLVLVSIGNASGLFE I.claudius_F2_261_613_646776_peptide number 10 4268.8778999999995 0 TVDGQKFLTALTLFTASIVITTACISNDNLQDLKTGLLVE I.claudius_F2_261_613_646776_peptide number 11 2765.318600000001 0 ATPWRQQVALIIGCFVGALVIAPVLE I.claudius_F2_261_613_646776_peptide number 12 4723.342 0 ILYHAYGFSGALPRPDMDPSQALSAPQATLMTAISQGIFTNKLE I.claudius_F2_261_613_646776_peptide number 13 7591.0935000000045 0 WTYILTGVGLGAVLITIDAFLKKVSNKVFSLPVIAVGIGIYLPPSINTPVIVGAFLAWIMARHIAKLGNKE I.claudius_F2_261_613_646776_peptide number 14 603.6658 0 VSAKAE I.claudius_F2_261_613_646776_peptide number 15 1466.6797000000001 0 RFGTLFSAGLIVGE I.claudius_F2_261_613_646776_peptide number 16 2037.3768000000002 0 SLMGVILAFIIAASVTTGGSE I.claudius_F2_261_613_646776_peptide number 17 855.9751000000001 0 APLSLNLE I.claudius_F2_261_613_646776_peptide number 18 833.842 0 NWDTIGE I.claudius_F2_261_613_646776_peptide number 19 2746.4262000000003 0 WFGLIVFIVGIVIFASRVLRAKKI I.claudius_F2_262_225_650785_peptide number 1 1170.3392999999999 0 MHSLRPLTSE I.claudius_F2_262_225_650785_peptide number 2 393.41280000000006 0 DME I.claudius_F2_262_225_650785_peptide number 3 1292.3943 0 NNLVLGQYTAAE I.claudius_F2_262_225_650785_peptide number 4 690.8092000000001 0 INGKME I.claudius_F2_262_225_650785_peptide number 5 608.6838 0 KGYLE I.claudius_F2_262_225_650785_peptide number 6 147.1293 0 E I.claudius_F2_262_225_650785_peptide number 7 1058.1466 0 KGVPANSRTE I.claudius_F2_262_225_650785_peptide number 8 968.1282000000001 0 TYIALRCE I.claudius_F2_262_225_650785_peptide number 9 260.2869 0 IE I.claudius_F2_262_225_650785_peptide number 10 2760.1615 0 NWRWAGVPFYVRTGKRLPARVTE I.claudius_F2_262_225_650785_peptide number 11 2162.4458 0 IVIHFKTTPHPVFSQNAPE I.claudius_F2_262_225_650785_peptide number 12 1338.5520999999999 0 NKLIIRIQPDE I.claudius_F2_262_225_650785_peptide number 13 1709.0209000000002 0 AISMRFGLKKPGAGFE I.claudius_F2_262_225_650785_peptide number 14 346.3795 0 AKE I.claudius_F2_262_225_650785_peptide number 15 2220.4571000000005 0 VSMDFRYADLAGAQVLTAYE I.claudius_F2_262_225_650785_peptide number 16 4710.378000000001 0 RLLLDAMKGDATLFARTDAVHAAWKFVQPILDYKANGGRIHE I.claudius_F2_262_225_650785_peptide number 17 310.30260000000004 0 YE I.claudius_F2_262_225_650785_peptide number 18 3350.034100000001 0 AGTWGPVAADKLIAKQGKVWRKPSGLMKKKV I.claudius_F2_263_80_652241_peptide number 1 278.32540000000006 0 ME I.claudius_F2_263_80_652241_peptide number 2 1432.7429000000002 0 ILAYILTALVTLE I.claudius_F2_263_80_652241_peptide number 3 1097.2619 0 HFYILYLE I.claudius_F2_263_80_652241_peptide number 4 639.7608 0 MFTIE I.claudius_F2_263_80_652241_peptide number 5 6140.8414999999995 0 SKSGVRQSRVIQRLFGSRDYFWLCHQPNFGDLFLFRLCDYRRSFWGSYDE I.claudius_F2_263_80_652241_peptide number 6 147.1293 0 E I.claudius_F2_264_133_652749_peptide number 1 1841.0724000000002 0 MQLNDLGNYVKQCWE I.claudius_F2_264_133_652749_peptide number 2 1605.8548 0 NIPMFFPQVRIDE I.claudius_F2_264_133_652749_peptide number 3 1519.8085000000003 0 FVIMPNHLHGIIE I.claudius_F2_264_133_652749_peptide number 4 373.44450000000006 0 IIE I.claudius_F2_264_133_652749_peptide number 5 5082.8445 0 QVKGKCNLPLQLRATQLPQKGTSQTIGSIVRRFKAGVTSWARKNSE I.claudius_F2_264_133_652749_peptide number 6 1532.6533 0 IFDVWQRNYYE I.claudius_F2_264_133_652749_peptide number 7 781.8569000000001 0 HIIRDE I.claudius_F2_264_133_652749_peptide number 8 1043.1699 0 KSYLQIYE I.claudius_F2_264_133_652749_peptide number 9 1289.4349 0 YIQNNPILWE I.claudius_F2_264_133_652749_peptide number 10 879.9105000000001 0 QDQLYVD I.claudius_F2_265_485_653593_peptide number 1 4536.2154 0 MSVKGDIGVIGLAVMGQNLILNMNDHGFKVVAYNRTTSKVDE I.claudius_F2_265_485_653593_peptide number 2 1853.0797999999998 0 FLQGAAKGTNIIGAYSLE I.claudius_F2_265_485_653593_peptide number 3 758.8600000000001 0 DLAAKLE I.claudius_F2_265_485_653593_peptide number 4 2331.7994000000003 0 KPRKVMLMVRAGDVVDQFIE I.claudius_F2_265_485_653593_peptide number 5 791.9345000000001 0 ALLPHLE I.claudius_F2_265_485_653593_peptide number 6 147.1293 0 E I.claudius_F2_265_485_653593_peptide number 7 2588.7839 0 GDIIIDGGNSNYPDTNRRVKALAE I.claudius_F2_265_485_653593_peptide number 8 1363.5186 0 KGIRFIGSGVSGGE I.claudius_F2_265_485_653593_peptide number 9 147.1293 0 E I.claudius_F2_265_485_653593_peptide number 10 1507.6306000000002 0 GARHGPSIMPGGNQE I.claudius_F2_265_485_653593_peptide number 11 1980.2658000000001 0 AWQYVKPIFQAISAKTE I.claudius_F2_265_485_653593_peptide number 12 1279.3558000000003 0 QGEPCCDWVGGE I.claudius_F2_265_485_653593_peptide number 13 1495.7044 0 GAGHFVKMVHNGIE I.claudius_F2_265_485_653593_peptide number 14 1071.2247 0 YGDMQLICE I.claudius_F2_265_485_653593_peptide number 15 898.0135 0 AYQFLKE I.claudius_F2_265_485_653593_peptide number 16 737.7977000000001 0 GLGLSYE I.claudius_F2_265_485_653593_peptide number 17 147.1293 0 E I.claudius_F2_265_485_653593_peptide number 18 808.9419 0 MQAIFAE I.claudius_F2_265_485_653593_peptide number 19 676.7180000000001 0 WKNTE I.claudius_F2_265_485_653593_peptide number 20 2741.0042000000008 0 LDSYLIDITTDILGYKDASGEPLVE I.claudius_F2_265_485_653593_peptide number 21 3272.744400000001 0 KILDTAGQKGTGKWTGINALDFGIPLTLITE I.claudius_F2_265_485_653593_peptide number 22 3199.637800000001 0 SVFARCVSSFKDQRVAANQLFGKTITPVE I.claudius_F2_265_485_653593_peptide number 23 974.1112 0 GDKKVWIE I.claudius_F2_265_485_653593_peptide number 24 2579.112 0 AVRKALLASKIISYAQGFMLIRE I.claudius_F2_265_485_653593_peptide number 25 305.2845 0 ASE I.claudius_F2_265_485_653593_peptide number 26 2040.2363000000003 0 QFGWDINYGATALLWRE I.claudius_F2_265_485_653593_peptide number 27 1983.2547000000002 0 GCIIRSRFLGNIRDAYE I.claudius_F2_265_485_653593_peptide number 28 2084.3271 0 ANPNLVFLGSDSYFKGILE I.claudius_F2_265_485_653593_peptide number 29 1715.9473 0 NALSDWRKVVAKSIE I.claudius_F2_265_485_653593_peptide number 30 4491.0885 0 VGIPMPCMASAITFLDGYTSARLPANLLQAQRDYFGAHTYE I.claudius_F2_265_485_653593_peptide number 31 958.0308 0 RTDKPRGE I.claudius_F2_265_485_653593_peptide number 32 2232.3236 0 FFHTNWTGRGGNTASTTYDV I.claudius_F2_266_303_656752_peptide number 1 549.6382 0 MSAIE I.claudius_F2_266_303_656752_peptide number 2 804.9516000000001 0 NIVISME I.claudius_F2_266_303_656752_peptide number 3 433.41370000000006 0 NATE I.claudius_F2_266_303_656752_peptide number 4 1342.5492000000002 0 RRKHITKQFE I.claudius_F2_266_303_656752_peptide number 5 5936.3841 0 SKKLSFSFFNAYTYQSINQSINQSINQSINQSINQSINQSINQSNSILHNIE I.claudius_F2_266_303_656752_peptide number 6 147.1293 0 E I.claudius_F2_266_303_656752_peptide number 7 903.035 0 SRILTKGE I.claudius_F2_266_303_656752_peptide number 8 2004.3781000000001 0 KGCLISHFLLWNKCVNE I.claudius_F2_266_303_656752_peptide number 9 408.4058 0 NFE I.claudius_F2_266_303_656752_peptide number 10 811.9640000000002 0 YLKIFE I.claudius_F2_266_303_656752_peptide number 11 759.8017000000001 0 DDVILGE I.claudius_F2_266_303_656752_peptide number 12 332.3098 0 NAE I.claudius_F2_266_303_656752_peptide number 13 862.9263000000001 0 VFLNQNE I.claudius_F2_266_303_656752_peptide number 14 2226.5739 0 WLKTRFDFNDIFIIRLE I.claudius_F2_266_303_656752_peptide number 15 1074.2701 0 TFLQPVKLE I.claudius_F2_266_303_656752_peptide number 16 4280.8371 0 KQTKIPPFNSRNFDILKSTHWGTAGYIISQGAAKYVIE I.claudius_F2_266_303_656752_peptide number 17 1078.1726 0 YLKNIPSDE I.claudius_F2_266_303_656752_peptide number 18 644.7144000000001 0 IVAVDE I.claudius_F2_266_303_656752_peptide number 19 2938.3956 0 LIFNKLVDVDNYIVYQLNPAICIQE I.claudius_F2_266_303_656752_peptide number 20 1574.7315 0 LQANQSKSVLTSGLE I.claudius_F2_266_303_656752_peptide number 21 275.3016 0 KE I.claudius_F2_266_303_656752_peptide number 22 2823.4378 0 RQKRSKIRKKKTLKQRLTRIKE I.claudius_F2_266_303_656752_peptide number 23 1668.9833999999998 0 NIIRALNRKKWKE I.claudius_F2_266_303_656752_peptide number 24 800.9033 0 QQRIKE I.claudius_F2_266_303_656752_peptide number 25 591.6782 0 MQGKE I.claudius_F2_266_303_656752_peptide number 26 664.8597000000001 0 IVRFM I.claudius_F2_267_73_658770_peptide number 1 477.5756 0 MAKE I.claudius_F2_267_73_658770_peptide number 2 478.5172 0 DCIE I.claudius_F2_267_73_658770_peptide number 3 790.925 0 MQGTILE I.claudius_F2_267_73_658770_peptide number 4 1207.3993 0 TLPNTMFRVE I.claudius_F2_267_73_658770_peptide number 5 260.2869 0 LE I.claudius_F2_267_73_658770_peptide number 6 3237.7338 0 NGHVVTAHISGKMRKNYIRILTGDKVTVE I.claudius_F2_267_73_658770_peptide number 7 1940.2731999999999 0 MTPYDLSKGRIIFRSR I.claudius_F2_268_118_659211_peptide number 1 942.0049000000001 0 MVHPDQSE I.claudius_F2_268_118_659211_peptide number 2 772.9098 0 QVPGMIE I.claudius_F2_268_118_659211_peptide number 3 939.0242000000001 0 RYTGSVKE I.claudius_F2_268_118_659211_peptide number 4 966.0527000000001 0 AGGQVHRLE I.claudius_F2_268_118_659211_peptide number 5 3052.5132 0 DWGRRQLAYPINKLHKAHYVLMNVE I.claudius_F2_268_118_659211_peptide number 6 898.9569 0 APQQVIDE I.claudius_F2_268_118_659211_peptide number 7 260.2869 0 LE I.claudius_F2_268_118_659211_peptide number 8 2672.0036 0 TTFRYNDAVLRSLVIHTKHAVTE I.claudius_F2_268_118_659211_peptide number 9 932.0962 0 ASPMKAAKE I.claudius_F2_268_118_659211_peptide number 10 147.1293 0 E I.claudius_F2_268_118_659211_peptide number 11 712.8380000000001 0 RKPLAE I.claudius_F2_268_118_659211_peptide number 12 246.2604 0 VE I.claudius_F2_268_118_659211_peptide number 13 637.5958 0 NNDFE I.claudius_F2_268_118_659211_peptide number 14 333.29460000000006 0 DAE I.claudius_F2_268_118_659211_peptide number 15 147.1293 0 E I.claudius_F2_269_150_660134_peptide number 1 4892.743500000001 0 MQVILLDKIVHLGQVGDQVNVKSGFARNFLIPQGKAVMATKANIE I.claudius_F2_269_150_660134_peptide number 2 431.4425 0 HFE I.claudius_F2_269_150_660134_peptide number 3 601.6565 0 ARRAE I.claudius_F2_269_150_660134_peptide number 4 260.2869 0 LE I.claudius_F2_269_150_660134_peptide number 5 1470.5873000000001 0 ATAAANLAAAQARAAE I.claudius_F2_269_150_660134_peptide number 6 1518.6651000000002 0 VTALGSVTIASKAGDE I.claudius_F2_269_150_660134_peptide number 7 1505.6744999999999 0 GRLFGAITTRDVAE I.claudius_F2_269_150_660134_peptide number 8 1244.4378 0 AVTAAGVKIAKSE I.claudius_F2_269_150_660134_peptide number 9 2626.9263 0 VRLPNGPIRTLGDHDVRFQLHGE I.claudius_F2_269_150_660134_peptide number 10 1245.4639000000002 0 VFAALDVIVVAE I.claudius_F2_270_52_661655_peptide number 1 2422.6928 0 MINNGLPAFATPSNTGSNSRMLE I.claudius_F2_270_52_661655_peptide number 2 3019.4769000000006 0 IFLSTRRRYGLSNSTVAVSGLLMKYGE I.claudius_F2_270_52_661655_peptide number 3 174.201 0 R I.claudius_F2_271_90_662912_peptide number 1 779.9437 0 MLFLAGE I.claudius_F2_271_90_662912_peptide number 2 1814.1399999999996 0 LAAKRKARGVKLNYPE I.claudius_F2_271_90_662912_peptide number 3 1245.3809 0 TIAYIASHLQE I.claudius_F2_271_90_662912_peptide number 4 445.47080000000005 0 AARE I.claudius_F2_271_90_662912_peptide number 5 592.663 0 GMSVAE I.claudius_F2_271_90_662912_peptide number 6 1785.0443 0 VMQYGATLLTVDDVME I.claudius_F2_271_90_662912_peptide number 7 374.38960000000003 0 GVAE I.claudius_F2_271_90_662912_peptide number 8 514.5958 0 MVHE I.claudius_F2_271_90_662912_peptide number 9 487.5472000000001 0 VQIE I.claudius_F2_271_90_662912_peptide number 10 1866.1252000000002 0 ATFPDGTKLVTVHNPIR I.claudius_F2_272_210_664663_peptide number 1 1368.4938000000002 0 MSSDSQAMGRIGE I.claudius_F2_272_210_664663_peptide number 2 2177.5499999999997 0 VVIRTWQTADKMKMQRGE I.claudius_F2_272_210_664663_peptide number 3 431.4408000000001 0 LGNE I.claudius_F2_272_210_664663_peptide number 4 2946.3215999999998 0 GNDNFRIKRYIAKYTINPAIAHGIAE I.claudius_F2_272_210_664663_peptide number 5 654.7124 0 HIGSLE I.claudius_F2_272_210_664663_peptide number 6 2274.7644 0 VGKIADIVLWKPMFFGVKPE I.claudius_F2_272_210_664663_peptide number 7 5565.380300000001 0 VVIKKGFISYAKMGDPNASIPTPQPVFYRPMYGAQGLATAQTAVFFVSQAAE I.claudius_F2_272_210_664663_peptide number 8 1512.7548000000002 0 KADIRAKFGLHKE I.claudius_F2_272_210_664663_peptide number 9 3107.4977000000003 0 TIAVKGCRNVGKKDLVHNDVTPNITVDAE I.claudius_F2_272_210_664663_peptide number 10 466.4883000000001 0 RYE I.claudius_F2_272_210_664663_peptide number 11 673.7159 0 VRVDGE I.claudius_F2_272_210_664663_peptide number 12 2197.5511 0 LITCEPVDSVPLGQRYFLF I.claudius_F2_273_54_666508_peptide number 1 2106.356 0 MDGQDILFDLRGSLVQAVE I.claudius_F2_273_54_666508_peptide number 2 787.8118000000001 0 LSLDPDE I.claudius_F2_273_54_666508_peptide number 3 147.1293 0 E I.claudius_F2_273_54_666508_peptide number 4 1897.1191 0 WLGAATLANDIRAMQHE I.claudius_F2_273_54_666508_peptide number 5 1145.3712 0 VLYTRLYMS I.claudius_F2_274_151_666997_peptide number 1 434.5078000000001 0 MGVE I.claudius_F2_274_151_666997_peptide number 2 1141.2583 0 TGGCPHTAIRE I.claudius_F2_274_151_666997_peptide number 3 778.8282 0 DASMNLE I.claudius_F2_274_151_666997_peptide number 4 432.4257 0 AVDE I.claudius_F2_274_151_666997_peptide number 5 1093.2537 0 MVTRFPDVE I.claudius_F2_274_151_666997_peptide number 6 619.7495 0 IVFIE I.claudius_F2_274_151_666997_peptide number 7 2839.0247 0 SGGDNLSATFSPDLADVTIFVIDVAQGE I.claudius_F2_274_151_666997_peptide number 8 3709.3179 0 KIPRKGGPGITRSDLLVINKTDLAPFVGADLSVME I.claudius_F2_274_151_666997_peptide number 9 2609.042000000001 0 RDARRMRNGQPFIFTNLMKKE I.claudius_F2_274_151_666997_peptide number 10 1115.2357 0 NLDGVIGWIE I.claudius_F2_274_151_666997_peptide number 11 1077.2740000000001 0 KYALLKNVE I.claudius_F2_274_151_666997_peptide number 12 770.8741 0 EPASLVR I.claudius_F2_275_134_667908_peptide number 1 335.3767 0 MGE I.claudius_F2_275_134_667908_peptide number 2 362.33580000000006 0 QSE I.claudius_F2_275_134_667908_peptide number 3 593.6691000000001 0 LIYGE I.claudius_F2_275_134_667908_peptide number 4 1198.3692 0 IVAIGRVLNDE I.claudius_F2_275_134_667908_peptide number 5 5398.249400000001 0 RFAFRQFSSHLKIYALQNDGKKRPLVSDCIQWLPSKMNLTALSQME I.claudius_F2_275_134_667908_peptide number 6 2137.2654999999995 0 NYSHQGSLTYLNLAKNNAE I.claudius_F2_275_134_667908_peptide number 7 1628.7822 0 IKQQVQALQQQSTE I.claudius_F2_275_134_667908_peptide number 8 147.1293 0 E I.claudius_F2_275_134_667908_peptide number 9 1342.5374 0 KDLLIGISQLNE I.claudius_F2_275_134_667908_peptide number 10 1466.7709 0 YGLMVRVLGCRAE I.claudius_F2_275_134_667908_peptide number 11 419.38710000000003 0 ANSE I.claudius_F2_275_134_667908_peptide number 12 244.3305 0 II I.claudius_F2_276_367_668814_peptide number 1 607.6345 0 MNTNE I.claudius_F2_276_367_668814_peptide number 2 827.9651000000001 0 VVANLALE I.claudius_F2_276_367_668814_peptide number 3 896.0457 0 KIGHKKGE I.claudius_F2_276_367_668814_peptide number 4 5973.595300000002 0 YNVINPMDHVNASQSTNDAYPTGFRIAVYNSILKLIDKIQYLHDSFDNKAKE I.claudius_F2_276_367_668814_peptide number 5 2547.9474000000005 0 FANILKMGRTQLQDAVPMTVGQE I.claudius_F2_276_367_668814_peptide number 6 1037.2515 0 FKAFAVLLE I.claudius_F2_276_367_668814_peptide number 7 147.1293 0 E I.claudius_F2_276_367_668814_peptide number 8 147.1293 0 E I.claudius_F2_276_367_668814_peptide number 9 1482.7702 0 VRNLKRTAGLLLE I.claudius_F2_276_367_668814_peptide number 10 1977.1326999999999 0 VNLGATAIGTGLNTPQGYTE I.claudius_F2_276_367_668814_peptide number 11 908.0962000000001 0 LVVKHLAE I.claudius_F2_276_367_668814_peptide number 12 959.1182000000001 0 VTGLACVPAE I.claudius_F2_276_367_668814_peptide number 13 487.5471 0 NLIE I.claudius_F2_276_367_668814_peptide number 14 4417.1444 0 ATSDCGAYVMVHGALKRTAVKLSKVCNDLRLLSSGPRAGLKE I.claudius_F2_276_367_668814_peptide number 15 584.6623000000001 0 INLPE I.claudius_F2_276_367_668814_peptide number 16 1837.1453 0 LQAGSSIMPAKVNPVVPE I.claudius_F2_276_367_668814_peptide number 17 2271.5454000000004 0 VVNQVCFKVIGNDTTVTFASE I.claudius_F2_276_367_668814_peptide number 18 2075.4082 0 AGQLQLNVMEPVIGQAMFE I.claudius_F2_276_367_668814_peptide number 19 2734.111000000001 0 SIDILTNACVNLRDKCVDGITVNKE I.claudius_F2_276_367_668814_peptide number 20 363.4298 0 ICE I.claudius_F2_276_367_668814_peptide number 21 4132.6585 0 NYVFNSIGIVTYLNPFIGHHNGDLVGKICAQTGKGVRE I.claudius_F2_276_367_668814_peptide number 22 458.54910000000007 0 VVLE I.claudius_F2_276_367_668814_peptide number 23 659.772 0 KGLLTE I.claudius_F2_276_367_668814_peptide number 24 147.1293 0 E I.claudius_F2_276_367_668814_peptide number 25 1031.1145000000001 0 QLDDILSVE I.claudius_F2_276_367_668814_peptide number 26 1534.8215999999998 0 NLMNPTYKAKLNK I.claudius_F2_277_54_672154_peptide number 1 5929.9188 0 MNLRFYHCYSGFTNCFFCCSLPAKRCTSTVFSSLVRPSVRSLAISISISRSIA I.claudius_F2_278_54_673085_peptide number 1 6604.743100000002 0 MSWMSLKKRPHNPRQIVLMPLHPYNLQQQVIVWVHRWFARLHTNHKAPYLYDK I.claudius_F2_279_343_674539_peptide number 1 803.0218000000001 0 MKILGIE I.claudius_F2_279_343_674539_peptide number 2 553.5408 0 TSCDE I.claudius_F2_279_343_674539_peptide number 3 866.9118000000001 0 TGVAIYDE I.claudius_F2_279_343_674539_peptide number 4 147.1293 0 E I.claudius_F2_279_343_674539_peptide number 5 2570.8928000000005 0 KGLIANQLYTQIALHADYGGVVPE I.claudius_F2_279_343_674539_peptide number 6 2103.468 0 LASRDHIRKTAPLIKAALE I.claudius_F2_279_343_674539_peptide number 7 147.1293 0 E I.claudius_F2_279_343_674539_peptide number 8 4835.451899999998 0 ANLTASDIDGIAYTSGPGLVGALLVGATIARSLAYAWNVPAIGVHHME I.claudius_F2_279_343_674539_peptide number 9 4187.7339 0 GHLLAPMLDDNSPHFPFVALLVSGGHTQLVRVDGVGKYE I.claudius_F2_279_343_674539_peptide number 10 416.4693000000001 0 VIGE I.claudius_F2_279_343_674539_peptide number 11 776.7461 0 SIDDAAGE I.claudius_F2_279_343_674539_peptide number 12 2477.8093999999996 0 AFDKTAKLLGLDYPGGAALSRLAE I.claudius_F2_279_343_674539_peptide number 13 4547.072400000002 0 KGTPNRFTFPRPMTDRAGLDFSFSGLKTFAANTVNQAIKNE I.claudius_F2_279_343_674539_peptide number 14 204.1806 0 GE I.claudius_F2_279_343_674539_peptide number 15 373.44450000000006 0 LIE I.claudius_F2_279_343_674539_peptide number 16 3110.582700000001 0 QTKADIAYAFQDAVVDTLAIKCKRALKE I.claudius_F2_279_343_674539_peptide number 17 2160.5194 0 TGYKRLVIAGGVSANKKLRE I.claudius_F2_279_343_674539_peptide number 18 1283.4537000000003 0 TLAHLMQNLGGE I.claudius_F2_279_343_674539_peptide number 19 5015.703799999999 0 VFYPQPQFCTDNGAMIAYTGFLRLKQGQHSDLAIDVKPRWAMAE I.claudius_F2_279_343_674539_peptide number 20 412.52360000000004 0 LPAI I.claudius_F2_280_243_676686_peptide number 1 8829.334700000005 0 MMLPKVATDNLMALPLDYAFVVSAAPIFLTSFGFHVIMASVNSYLGGSVDKFRRAILIGTAIPLAAYLVWQLATHGVLSQSE I.claudius_F2_280_243_676686_peptide number 2 2227.5191 0 FVRILQADPTLNGLVNATRE I.claudius_F2_280_243_676686_peptide number 3 978.08 0 ITGSHFMGE I.claudius_F2_280_243_676686_peptide number 4 2484.9926 0 VVRVFSSLALITSFLGVMLGVFE I.claudius_F2_280_243_676686_peptide number 5 4050.745000000001 0 GLGDLFKRYHLPNNRFVLTIAAFLPPLVFALFYPE I.claudius_F2_280_243_676686_peptide number 6 3476.1585999999998 0 GFITALSYAGLLCAFYCLILPISLAWRTRIE I.claudius_F2_280_243_676686_peptide number 7 4480.4464 0 NPTLPYRVAGGNFALVLALLIGVVIMLIPFLIQWGYLPVVAG I.claudius_F2_281_87_678171_peptide number 1 5357.538300000002 0 MIILGKMQRHLSIIICWHYLGRLDFVIFSVKNMAISCLIPLNINVE I.claudius_F2_281_87_678171_peptide number 2 4547.600400000002 0 ITALLVGLYMGYGHKMQMLALFQIILVFAKAIYPPCQKVY I.claudius_F2_282_387_678814_peptide number 1 5381.363500000002 0 MSVIKMTDLDLAGKRVFIRADLNVPVKDGKVTSDARIRATIPTLKLALE I.claudius_F2_282_387_678814_peptide number 2 1710.9956000000002 0 KGAKVMVTSHLGRPTE I.claudius_F2_282_387_678814_peptide number 3 204.1806 0 GE I.claudius_F2_282_387_678814_peptide number 4 519.5907000000001 0 FKPE I.claudius_F2_282_387_678814_peptide number 5 2277.5315 0 DSLQPVVDYLKNAGFNVRLE I.claudius_F2_282_387_678814_peptide number 6 1451.4913000000001 0 QDYLNGVDVKDGE I.claudius_F2_282_387_678814_peptide number 7 571.7067000000001 0 IVVLE I.claudius_F2_282_387_678814_peptide number 8 915.006 0 NVRVNKGE I.claudius_F2_282_387_678814_peptide number 9 729.7791000000001 0 KKNDPE I.claudius_F2_282_387_678814_peptide number 10 3391.8291000000004 0 LGKKYAALCDVFVMDAFGTAHRAQASTYGVAE I.claudius_F2_282_387_678814_peptide number 11 1343.5901 0 FAPIACAGPLLAAE I.claudius_F2_282_387_678814_peptide number 12 2979.5374 0 LDALGKALKEPARPMVAIVGGSKVSTKLE I.claudius_F2_282_387_678814_peptide number 13 3642.1207000000004 0 VLNSLSKIADQIIVGGGIANTFIAAAGHNVGKSLYE I.claudius_F2_282_387_678814_peptide number 14 955.1063000000001 0 ADLIPVAKE I.claudius_F2_282_387_678814_peptide number 15 1878.1310000000003 0 LAANTDIPVPVDVRVGLE I.claudius_F2_282_387_678814_peptide number 16 381.3805 0 FSE I.claudius_F2_282_387_678814_peptide number 17 562.5708000000001 0 TAAATE I.claudius_F2_282_387_678814_peptide number 18 587.6664000000001 0 KVVNE I.claudius_F2_282_387_678814_peptide number 19 604.6075000000001 0 VKDDE I.claudius_F2_282_387_678814_peptide number 20 1181.2493 0 SIFDIGDKSAE I.claudius_F2_282_387_678814_peptide number 21 459.494 0 QLAE I.claudius_F2_282_387_678814_peptide number 22 1985.3286000000003 0 IIKNAKTVLWNGPVGVFE I.claudius_F2_282_387_678814_peptide number 23 1118.2448 0 FPHFRKGTE I.claudius_F2_282_387_678814_peptide number 24 4441.8983 0 IISHAIANSDAFSIAGGGDTLAAIDLFGIADKISYISTGGGAFLE I.claudius_F2_282_387_678814_peptide number 25 393.4343 0 FVE I.claudius_F2_282_387_678814_peptide number 26 811.9658000000002 0 GKVLPAVE I.claudius_F2_282_387_678814_peptide number 27 373.44450000000006 0 ILE I.claudius_F2_282_387_678814_peptide number 28 615.7261000000001 0 KRAKN I.claudius_F2_283_347_681232_peptide number 1 278.32540000000006 0 ME I.claudius_F2_283_347_681232_peptide number 2 4962.871400000001 0 KILVIRNDKLGDFMQAWPAFAMLKASNPKLKLTALVPSYTASLAE I.claudius_F2_283_347_681232_peptide number 3 3102.5621999999994 0 ICPFIDHVIIDSKKNDKTDFKRLVQE I.claudius_F2_283_347_681232_peptide number 4 6380.2649 0 IKAQQFDGMISFFSNTHNGKLAWKSGIKYRLAPATKWVQILYNHRLTQRRSRSE I.claudius_F2_283_347_681232_peptide number 5 362.37890000000004 0 KSE I.claudius_F2_283_347_681232_peptide number 6 218.2072 0 AE I.claudius_F2_283_347_681232_peptide number 7 3416.9428000000003 0 YNQDLVRTFLQKHNMPVVEPKPPYLIFE I.claudius_F2_283_347_681232_peptide number 8 532.5879 0 KSAVE I.claudius_F2_283_347_681232_peptide number 9 1033.1386 0 NQRVFLQE I.claudius_F2_283_347_681232_peptide number 10 4045.5529 0 NLGLSANKKWIFVHSGSGGSATNLSLAQYADLIKGLLAE I.claudius_F2_283_347_681232_peptide number 11 1321.4555 0 FDCNVVLTAGPGE I.claudius_F2_283_347_681232_peptide number 12 234.2066 0 SE I.claudius_F2_283_347_681232_peptide number 13 509.55280000000005 0 KAYE I.claudius_F2_283_347_681232_peptide number 14 9179.3762 0 LANLVNDLRVAIYDKNKGLVDFAHSLACADLFIAGSTGPLHLSSAFNIPTIGFYPNSRSSQPRRWKPINDVDKHIAFCPPAGKE I.claudius_F2_283_347_681232_peptide number 15 720.7921000000001 0 SQMNLE I.claudius_F2_283_347_681232_peptide number 16 1058.1828 0 LISIDNALAE I.claudius_F2_283_347_681232_peptide number 17 1837.1067999999998 0 ISLFIRNMWQTSNNI I.claudius_F2_284_333_683643_peptide number 1 1614.8221 0 MTIRYDKSKTSRE I.claudius_F2_284_333_683643_peptide number 2 365.38110000000006 0 FAE I.claudius_F2_284_333_683643_peptide number 3 2760.1217 0 LAAKACLLVSKPSFANDAYYISDLGE I.claudius_F2_284_333_683643_peptide number 4 147.1293 0 E I.claudius_F2_284_333_683643_peptide number 5 1286.4097000000002 0 YGVASCYNALPE I.claudius_F2_284_333_683643_peptide number 6 2556.9161000000004 0 CGGAYTLTRLRLGTIARTCKSADE I.claudius_F2_284_333_683643_peptide number 7 505.5856 0 MLNE I.claudius_F2_284_333_683643_peptide number 8 2542.0755000000004 0 LLPRVAKCALSTMDKRHKFVVE I.claudius_F2_284_333_683643_peptide number 9 147.1293 0 E I.claudius_F2_284_333_683643_peptide number 10 1191.2457000000002 0 SNFFNSSFLE I.claudius_F2_284_333_683643_peptide number 11 275.3016 0 KE I.claudius_F2_284_333_683643_peptide number 12 3068.5275 0 GFIKRTNFTGMFAIVGLADATNHLLQCE I.claudius_F2_284_333_683643_peptide number 13 431.4408000000001 0 GLNE I.claudius_F2_284_333_683643_peptide number 14 1095.1635 0 TFGKSVRGDE I.claudius_F2_284_333_683643_peptide number 15 1232.4899 0 IATAIMDKLKE I.claudius_F2_284_333_683643_peptide number 16 684.6954000000001 0 ITDAHE I.claudius_F2_284_333_683643_peptide number 17 537.5629 0 GVYAE I.claudius_F2_284_333_683643_peptide number 18 2023.1729000000003 0 RTGNRYLLHAQVGASNHE I.claudius_F2_284_333_683643_peptide number 19 147.1293 0 E I.claudius_F2_284_333_683643_peptide number 20 1618.7990000000002 0 DKRNAPAHRIRVGE I.claudius_F2_284_333_683643_peptide number 21 8476.493900000003 0 EPTLLAHLKQSAPFHKYFPSGTGDLFAFDQTYVDHCDAVVDIIDGAFSLGYRYITTYLKNTDLIRVTGYLVKKSE I.claudius_F2_284_333_683643_peptide number 22 246.2604 0 VE I.claudius_F2_284_333_683643_peptide number 23 779.8842000000001 0 KYRKGE I.claudius_F2_284_333_683643_peptide number 24 1670.7312000000002 0 VALRDTTWYGSGTDE I.claudius_F2_284_333_683643_peptide number 25 1465.5907000000002 0 CANVFDRQLRDE I.claudius_F2_284_333_683643_peptide number 26 673.7556000000001 0 KDVIAE I.claudius_F2_284_333_683643_peptide number 27 146.1876 0 K I.claudius_F2_285_256_686023_peptide number 1 594.6358 0 MTQSE I.claudius_F2_285_256_686023_peptide number 2 5327.3704000000025 0 LFAIMVGGTASIAGSVMAGYAGMGVPLTYLIAASFMAAPAGLLFAKLMFPQTE I.claudius_F2_285_256_686023_peptide number 3 992.0404 0 QFTDKQPE I.claudius_F2_285_256_686023_peptide number 4 578.484 0 DNDSE I.claudius_F2_285_256_686023_peptide number 5 799.912 0 KPTNVLE I.claudius_F2_285_256_686023_peptide number 6 6988.193700000005 0 AMAGGASAGMQLALNVGAMLIAFVGLIALINGILSGVGGWFGYGDLTLQSIFGLIFKPLAYLIGVTDGAE I.claudius_F2_285_256_686023_peptide number 7 1602.9171 0 AGIAGQMIGMKLAVNE I.claudius_F2_285_256_686023_peptide number 8 726.8165000000001 0 FVGYLE I.claudius_F2_285_256_686023_peptide number 9 1694.9215000000002 0 FAKYLQPDSAIVLTE I.claudius_F2_285_256_686023_peptide number 10 6906.232500000001 0 KTKAIITFALCGFANFSSIAILIGGLGGMAPSRRSDVARLGIKAVIAGTLANLMSATIAGLFIGLGAAAL I.claudius_F2_286_108_687868_peptide number 1 278.32540000000006 0 ME I.claudius_F2_286_108_687868_peptide number 2 1186.3403 0 FCKAFNARTE I.claudius_F2_286_108_687868_peptide number 3 347.3642 0 SLE I.claudius_F2_286_108_687868_peptide number 4 6448.556600000003 0 KGLPIPVVITVYADRSFTFVTKTPPAAVLLKKAAGIKSGSGKPNKDKVGKVTLDQVRQIAE I.claudius_F2_286_108_687868_peptide number 5 1208.3393999999998 0 TKAADMTGATIE I.claudius_F2_286_108_687868_peptide number 6 1879.25 0 TKMKSIAGTARSMGLVVE I.claudius_F2_286_108_687868_peptide number 7 147.1293 0 E I.claudius_F2_287_122_688520_peptide number 1 4476.206700000002 0 MNFDVVIASPDAMRVVGQLGQVLGPRGLMPNPKVGTVTPNVAE I.claudius_F2_287_122_688520_peptide number 2 3431.8149 0 AVKNAKSGQIRYRNDKNGIIHTTIGKANFSE I.claudius_F2_287_122_688520_peptide number 3 615.7195 0 VQLKE I.claudius_F2_287_122_688520_peptide number 4 4241.9917 0 NLQALLAALNKAKPTTAKGIFIKKVSISTTMGAGVAVDQASL I.claudius_F2_288_1344_689269_peptide number 1 835.8779000000001 0 MGYSYSE I.claudius_F2_288_1344_689269_peptide number 2 4475.1985 0 KKRIRKDFGKRPQVLNVPYLLTIQLDSFDKFIQKDPE I.claudius_F2_288_1344_689269_peptide number 3 630.6479 0 GQQGLE I.claudius_F2_288_1344_689269_peptide number 4 1872.0419 0 AAFRSVFPIVSNNGYTE I.claudius_F2_288_1344_689269_peptide number 5 1198.3245000000002 0 LQYVDYRLE I.claudius_F2_288_1344_689269_peptide number 6 373.35850000000005 0 EPE I.claudius_F2_288_1344_689269_peptide number 7 664.7074 0 FDVRE I.claudius_F2_288_1344_689269_peptide number 8 2727.1466 0 CQIRGSTYAAGLRVKLRLVSYDKE I.claudius_F2_288_1344_689269_peptide number 9 1219.3455000000001 0 SSSRAVKDIKE I.claudius_F2_288_1344_689269_peptide number 10 261.2319 0 NE I.claudius_F2_288_1344_689269_peptide number 11 597.6811 0 VYMGE I.claudius_F2_288_1344_689269_peptide number 12 1721.9253 0 IPLMTDNGTFVINGTE I.claudius_F2_288_1344_689269_peptide number 13 5164.791 0 RVIVSQLHRSPGVFFDSDKGKTHSSGKVLYNARIIPYRGSWLDFE I.claudius_F2_288_1344_689269_peptide number 14 3661.2186000000006 0 FDPKDNLFARIDRRRKLPATIILRALGYTTE I.claudius_F2_288_1344_689269_peptide number 15 147.1293 0 E I.claudius_F2_288_1344_689269_peptide number 16 1499.7476000000001 0 ILNLFFDKITFE I.claudius_F2_288_1344_689269_peptide number 17 1399.6949 0 IAGDKLLMTLVPE I.claudius_F2_288_1344_689269_peptide number 18 629.7096 0 RLRGE I.claudius_F2_288_1344_689269_peptide number 19 781.8073 0 TASFDIE I.claudius_F2_288_1344_689269_peptide number 20 878.9689000000001 0 ANGKVYVE I.claudius_F2_288_1344_689269_peptide number 21 1676.9675 0 RGRRITARHIKALE I.claudius_F2_288_1344_689269_peptide number 22 1314.4415000000001 0 KDNISQVVVPSE I.claudius_F2_288_1344_689269_peptide number 23 1712.9368 0 YILGKVASKDYVDLE I.claudius_F2_288_1344_689269_peptide number 24 291.25790000000006 0 SGE I.claudius_F2_288_1344_689269_peptide number 25 815.9344 0 IICPANGE I.claudius_F2_288_1344_689269_peptide number 26 460.5218 0 ISLE I.claudius_F2_288_1344_689269_peptide number 27 1479.6736 0 TLAKLAQAGYTTIE I.claudius_F2_288_1344_689269_peptide number 28 1747.8516 0 TLFTNDLDYGPYISE I.claudius_F2_288_1344_689269_peptide number 29 1872.0371 0 TLRVDPTYDKTSALYE I.claudius_F2_288_1344_689269_peptide number 30 1673.9538 0 IYRMMRPGEPPTPE I.claudius_F2_288_1344_689269_peptide number 31 321.2839 0 SSE I.claudius_F2_288_1344_689269_peptide number 32 1272.4045 0 ALFNNLFFSAE I.claudius_F2_288_1344_689269_peptide number 33 2387.7151 0 RYDLSTVGRMKFNRSLAFPE I.claudius_F2_288_1344_689269_peptide number 34 204.1806 0 GE I.claudius_F2_288_1344_689269_peptide number 35 759.8049000000001 0 GAGILSNE I.claudius_F2_288_1344_689269_peptide number 36 2069.4318 0 DIIAVMRKLIDIRNGRGE I.claudius_F2_288_1344_689269_peptide number 37 1951.1054000000001 0 VDDIDHLGNRRIRSVGE I.claudius_F2_288_1344_689269_peptide number 38 349.40330000000006 0 MAE I.claudius_F2_288_1344_689269_peptide number 39 1330.5351 0 NQFRIGLVRVE I.claudius_F2_288_1344_689269_peptide number 40 601.6963000000001 0 RAVKE I.claudius_F2_288_1344_689269_peptide number 41 2875.277000000001 0 RLSLGDLDAITPQDLINPKPISAAVKE I.claudius_F2_288_1344_689269_peptide number 42 2176.3181999999997 0 FFGSSQLSQFMDQNNPLSE I.claudius_F2_288_1344_689269_peptide number 43 1948.2340000000004 0 VTHKRRISALGPGGLTRE I.claudius_F2_288_1344_689269_peptide number 44 578.6181 0 RAGFE I.claudius_F2_288_1344_689269_peptide number 45 1909.1333 0 VRDVHNTHYGRLCPIE I.claudius_F2_288_1344_689269_peptide number 46 345.3484 0 TPE I.claudius_F2_288_1344_689269_peptide number 47 2469.7027 0 GPNIGLINSLSAFARTNDYGFLE I.claudius_F2_288_1344_689269_peptide number 48 1491.6448000000003 0 TPYRKVVDGQVTE I.claudius_F2_288_1344_689269_peptide number 49 147.1293 0 E I.claudius_F2_288_1344_689269_peptide number 50 260.2869 0 IE I.claudius_F2_288_1344_689269_peptide number 51 837.9136000000001 0 YLSVIDE I.claudius_F2_288_1344_689269_peptide number 52 1535.6108 0 ANYIIAQANSNLDE I.claudius_F2_288_1344_689269_peptide number 53 1597.6871 0 NNRFTDAFVTARGE I.claudius_F2_288_1344_689269_peptide number 54 360.3663 0 RGE I.claudius_F2_288_1344_689269_peptide number 55 792.8763000000001 0 SGLYKPE I.claudius_F2_288_1344_689269_peptide number 56 2647.0073 0 DIHYMDVSTQQVVSVAAALIPFLE I.claudius_F2_288_1344_689269_peptide number 57 3565.0287000000008 0 HDDANRALMGANMQRQAVPTLRADKPLVGTGME I.claudius_F2_288_1344_689269_peptide number 58 3453.9848000000006 0 KPIALDSGVAVVAKRGGTVQYVDASRIVIKVNE I.claudius_F2_288_1344_689269_peptide number 59 262.2167 0 DE I.claudius_F2_288_1344_689269_peptide number 60 489.5200000000001 0 TIAGE I.claudius_F2_288_1344_689269_peptide number 61 4021.4934000000003 0 AGIDIYNLIKYTRSNQNTCINQIPCVNLGDPINRGE I.claudius_F2_288_1344_689269_peptide number 62 1173.2273 0 VLADGPSTDLGE I.claudius_F2_288_1344_689269_peptide number 63 2340.6566 0 LALGQNIRVAFMPWNGYNFE I.claudius_F2_288_1344_689269_peptide number 64 779.8561000000001 0 DSMLVSE I.claudius_F2_288_1344_689269_peptide number 65 1870.0741000000003 0 RVVQQDRFTTIHIQE I.claudius_F2_288_1344_689269_peptide number 66 1362.5522 0 LSCVARDTKLGAE I.claudius_F2_288_1344_689269_peptide number 67 147.1293 0 E I.claudius_F2_288_1344_689269_peptide number 68 1028.1138999999998 0 ITADIPNVGE I.claudius_F2_288_1344_689269_peptide number 69 861.9367000000001 0 SALSKLDE I.claudius_F2_288_1344_689269_peptide number 70 893.9802000000001 0 SGIVYVGAE I.claudius_F2_288_1344_689269_peptide number 71 1596.8664 0 VKGGDILVGKVTPKGE I.claudius_F2_288_1344_689269_peptide number 72 687.7391 0 TQLTPE I.claudius_F2_288_1344_689269_peptide number 73 147.1293 0 E I.claudius_F2_288_1344_689269_peptide number 74 1046.2631999999999 0 KLLRAIFGE I.claudius_F2_288_1344_689269_peptide number 75 3377.6703 0 KASDVKDSSLRVPNGTSGTVIDVQVFTRDGVE I.claudius_F2_288_1344_689269_peptide number 76 858.9825000000001 0 KDKRALE I.claudius_F2_288_1344_689269_peptide number 77 260.2869 0 IE I.claudius_F2_288_1344_689269_peptide number 78 147.1293 0 E I.claudius_F2_288_1344_689269_peptide number 79 675.7979 0 MQLRE I.claudius_F2_288_1344_689269_peptide number 80 803.9007 0 AKKDLTE I.claudius_F2_288_1344_689269_peptide number 81 147.1293 0 E I.claudius_F2_288_1344_689269_peptide number 82 260.2869 0 LE I.claudius_F2_288_1344_689269_peptide number 83 373.44450000000006 0 ILE I.claudius_F2_288_1344_689269_peptide number 84 3428.8937 0 AGLFARVRNLLISSGADAAQLDKLDRTKWLE I.claudius_F2_288_1344_689269_peptide number 85 675.6853000000001 0 QTIADE I.claudius_F2_288_1344_689269_peptide number 86 147.1293 0 E I.claudius_F2_288_1344_689269_peptide number 87 758.8202000000001 0 KQNQLE I.claudius_F2_288_1344_689269_peptide number 88 459.494 0 QLAE I.claudius_F2_288_1344_689269_peptide number 89 438.43180000000007 0 QYE I.claudius_F2_288_1344_689269_peptide number 90 147.1293 0 E I.claudius_F2_288_1344_689269_peptide number 91 544.6449 0 LRKE I.claudius_F2_288_1344_689269_peptide number 92 294.30320000000006 0 FE I.claudius_F2_288_1344_689269_peptide number 93 525.5985000000001 0 HKLE I.claudius_F2_288_1344_689269_peptide number 94 5790.9179 0 VKRKKIIKGDDLAPGVLKVVKVYLAVKRQIQPGDKMAGRHGNKGVISKINPVE I.claudius_F2_288_1344_689269_peptide number 95 768.7887000000001 0 DMPYDE I.claudius_F2_288_1344_689269_peptide number 96 642.6587000000001 0 NGQPVE I.claudius_F2_288_1344_689269_peptide number 97 2063.4636 0 IVLNPLGVPSRMNIGQILE I.claudius_F2_288_1344_689269_peptide number 98 2464.8387 0 THLGLAAKGIGDQINAMLKQKQE I.claudius_F2_288_1344_689269_peptide number 99 246.2604 0 VE I.claudius_F2_288_1344_689269_peptide number 100 3190.5149 0 KLRSYIQKAYDLLGNGSQKVDLSTFTDE I.claudius_F2_288_1344_689269_peptide number 101 147.1293 0 E I.claudius_F2_288_1344_689269_peptide number 102 2508.8699000000006 0 VLRLAGNLRKGLPVATPVFDGADE I.claudius_F2_288_1344_689269_peptide number 103 218.2072 0 AE I.claudius_F2_288_1344_689269_peptide number 104 388.4592 0 IKE I.claudius_F2_288_1344_689269_peptide number 105 2289.5835 0 LLKLGGLPTSGQITLYDGRTGE I.claudius_F2_288_1344_689269_peptide number 106 422.4755 0 KFE I.claudius_F2_288_1344_689269_peptide number 107 5571.3333999999995 0 RPVTVGYMYMLKLNHLVDDKMHARSTGSYSLVTQQPLGGKAQFGGQRFGE I.claudius_F2_288_1344_689269_peptide number 108 278.32540000000006 0 ME I.claudius_F2_288_1344_689269_peptide number 109 616.7058000000001 0 VWALE I.claudius_F2_288_1344_689269_peptide number 110 1086.1516 0 AYGAAYTLQE I.claudius_F2_288_1344_689269_peptide number 111 3578.0177000000003 0 MLTVKSDDVNGRTKMYKNIVSGNQHMEPGTPE I.claudius_F2_288_1344_689269_peptide number 112 967.1402 0 SFNVIMKE I.claudius_F2_288_1344_689269_peptide number 113 1014.1766 0 IRSLGLNIE I.claudius_F2_288_1344_689269_peptide number 114 375.37430000000006 0 LDE I.claudius_F2_288_1344_689269_peptide number 115 147.1293 0 E I.claudius_F2_289_519_697862_peptide number 1 393.41280000000006 0 MDE I.claudius_F2_289_519_697862_peptide number 2 6297.2129 0 SKKISLGQFFTPTHIVKYMIGLMTKNKNASILEPSSGNGVFLDSLIQLGYTNLTSYE I.claudius_F2_289_519_697862_peptide number 3 4827.3171999999995 0 IDGDIISHPFVINSSFITSYDKPQYDSIIGNPPYVRWKNLSE I.claudius_F2_289_519_697862_peptide number 4 644.7607 0 LQKKE I.claudius_F2_289_519_697862_peptide number 5 4046.7712 0 LKDNSIWKMYCNSLCDYFYIFIIKSILQLKVGGE I.claudius_F2_289_519_697862_peptide number 6 1908.1766 0 LIFICPDYFFSTKNAE I.claudius_F2_289_519_697862_peptide number 7 1494.693 0 GLRKFLINNGSFE I.claudius_F2_289_519_697862_peptide number 8 876.0509 0 KIILFNE I.claudius_F2_289_519_697862_peptide number 9 4319.952800000001 0 SKVFHGVSSSVVIFKYIKGKNIDNINIINIDSKSPIKSE I.claudius_F2_289_519_697862_peptide number 10 375.37430000000006 0 DIE I.claudius_F2_289_519_697862_peptide number 11 404.41550000000007 0 SLGE I.claudius_F2_289_519_697862_peptide number 12 3286.6454 0 SYYIPRFSSSDVWVTSPNHIKVALDKFE I.claudius_F2_289_519_697862_peptide number 13 2242.5902 0 SYCKTIKKVQPKSLFDDLE I.claudius_F2_289_519_697862_peptide number 14 3368.7275999999997 0 FSRIGSVCDIGNGMVSGLDKAFQMNDINYSE I.claudius_F2_289_519_697862_peptide number 15 260.2869 0 LE I.claudius_F2_289_519_697862_peptide number 16 3809.3705 0 LLNSICVAKAKHLDAFCFSGYTRYKFILDDINE I.claudius_F2_289_519_697862_peptide number 17 1696.8942 0 DKLITYFPNFFYE I.claudius_F2_289_519_697862_peptide number 18 4721.3308 0 FNNYKDYLLKRYSYNKYLPYWKWAFLRNFSLFSKNE I.claudius_F2_289_519_697862_peptide number 19 1091.3669 0 KKIFVPCKE I.claudius_F2_289_519_697862_peptide number 20 1826.0613000000003 0 RISKKSNFRFSLVDE I.claudius_F2_289_519_697862_peptide number 21 1816.0582 0 FIYPTQDVTALYKKE I.claudius_F2_289_519_697862_peptide number 22 488.5353 0 NVKE I.claudius_F2_289_519_697862_peptide number 23 347.3642 0 SIE I.claudius_F2_289_519_697862_peptide number 24 3121.6914000000015 0 YITAYLNSKAVFLWMKYKGVVKGNVVE I.claudius_F2_289_519_697862_peptide number 25 381.3805 0 FSE I.claudius_F2_289_519_697862_peptide number 26 2211.5643000000005 0 KPLANIPFRRIDWQLKSE I.claudius_F2_289_519_697862_peptide number 27 2314.6394999999998 0 KKIHDDITNLVRKYLSNKE I.claudius_F2_289_519_697862_peptide number 28 744.835 0 FSILHE I.claudius_F2_289_519_697862_peptide number 29 714.8073 0 INLNLE I.claudius_F2_289_519_697862_peptide number 30 785.9715000000001 0 KLGIKVE I.claudius_F2_289_519_697862_peptide number 31 131.1729 0 I I.claudius_F2_290_115_701050_peptide number 1 2291.6872 0 MGIVLAPAFVCVSAYLSINHGE I.claudius_F2_290_115_701050_peptide number 2 3399.0728000000004 0 VDTLAKILWGYGFLQLFFLLRLFPWIVE I.claudius_F2_290_115_701050_peptide number 3 6995.2776 0 KGLNIGLWAFSFGLASMANSATAFYHGNVLQGVSIFAFVFSNVMIGLLVLMTIYKLTKGQFFLK I.claudius_F2_291_50_702667_peptide number 1 5857.322800000001 0 MAIWAWAIFLYWYFLVCLVLAVLIICKLTVLIATLFCLLLVLAYWQVRY I.claudius_F2_292_63_705605_peptide number 1 6654.928400000001 0 MASSKDFSSNKAVTKPPLNVSPAAVVSIACTQKPLMIRLLPFRLTNTPFAPRVIITVSMPLS I.claudius_F2_293_103_708055_peptide number 1 2827.3668000000002 0 MPPRSVPINKTTGMTKKIGNSILTIE I.claudius_F2_293_103_708055_peptide number 2 1383.4604 0 AAIAPVNANTDPTE I.claudius_F2_293_103_708055_peptide number 3 2248.7470000000003 0 RSIPAIKITKVIPTAIIALTE I.claudius_F2_293_103_708055_peptide number 4 3695.5278 0 VWRKIFKILSTLKKSGLIIDTIAIRIINAIKE I.claudius_F2_293_103_708055_peptide number 5 1043.2840999999999 0 RCSIKNLPI I.claudius_F2_294_62_713119_peptide number 1 2204.6316 0 MYSSMPSSKPLIACPPLRPE I.claudius_F2_294_62_713119_peptide number 2 4231.8049 0 APKPTLAPSKTMTFFPFSASSNAADKPKNPAPITHTSACSI I.claudius_F2_295_286_713723_peptide number 1 3590.1276000000003 0 MYAKLKLTQNTGSGYDLVFPSSYYVNKMIKE I.claudius_F2_295_286_713723_peptide number 2 2967.4882000000007 0 KMLQPIDQSKLTNIHQIPKHLLNKE I.claudius_F2_295_286_713723_peptide number 3 506.5058 0 FDPE I.claudius_F2_295_286_713723_peptide number 4 1716.9270000000001 0 NKYSLPYVYGLTGIE I.claudius_F2_295_286_713723_peptide number 5 546.5283000000001 0 VNADE I.claudius_F2_295_286_713723_peptide number 6 1900.1346999999998 0 IDPKTITSWADLWKPE I.claudius_F2_295_286_713723_peptide number 7 1481.7161 0 FKGKVLMTSDARE I.claudius_F2_295_286_713723_peptide number 8 1955.1718999999998 0 VFHVALLLDGKSPNTTNE I.claudius_F2_295_286_713723_peptide number 9 147.1293 0 E I.claudius_F2_295_286_713723_peptide number 10 838.9017000000001 0 DIKTAYE I.claudius_F2_295_286_713723_peptide number 11 416.47260000000006 0 RLE I.claudius_F2_295_286_713723_peptide number 12 1631.7812000000001 0 KLLPNVATFNSDSPE I.claudius_F2_295_286_713723_peptide number 13 790.8605000000001 0 VPYVQGE I.claudius_F2_295_286_713723_peptide number 14 1851.1302 0 VAIGMIWNGSAYLAQKE I.claudius_F2_295_286_713723_peptide number 15 1352.4910000000002 0 NQSLQFVYPKE I.claudius_F2_295_286_713723_peptide number 16 2141.4017 0 GAIFWMDNYAIPTTAKNVE I.claudius_F2_295_286_713723_peptide number 17 1542.7790000000002 0 GAHKFIDFLLRPE I.claudius_F2_295_286_713723_peptide number 18 785.9284 0 NAKIVIE I.claudius_F2_295_286_713723_peptide number 19 1924.2059 0 RMGFSMPNNGAKTLLSAE I.claudius_F2_295_286_713723_peptide number 20 1297.4556 0 VANDPKLFPPAE I.claudius_F2_295_286_713723_peptide number 21 147.1293 0 E I.claudius_F2_295_286_713723_peptide number 22 246.2604 0 VE I.claudius_F2_295_286_713723_peptide number 23 1033.1569 0 KGIMQGDVGE I.claudius_F2_295_286_713723_peptide number 24 708.7566 0 AVDIYE I.claudius_F2_295_286_713723_peptide number 25 1137.3308 0 KYWGKLKTN I.claudius_F2_296_67_716741_peptide number 1 3864.514100000001 0 MKNVMKLSVIALLTAAAVPAMAGKTEPYTQSGTNARE I.claudius_F2_296_67_716741_peptide number 2 519.6122 0 MLQE I.claudius_F2_296_67_716741_peptide number 3 1895.1198000000002 0 QAIHWISVDQIKQSLE I.claudius_F2_296_67_716741_peptide number 4 932.0745000000001 0 GKAPINVSF I.claudius_F2_297_79_717213_peptide number 1 611.711 0 MHPVE I.claudius_F2_297_79_717213_peptide number 2 725.8136 0 FMGSRE I.claudius_F2_297_79_717213_peptide number 3 3573.918 0 RTTKYNKTPAIISHKVSIHYGDSDDDVLAAKE I.claudius_F2_297_79_717213_peptide number 4 2867.2666000000004 0 AGVRGIRLMRAANSTYQPMPTLGGYGE I.claudius_F2_297_79_717213_peptide number 5 147.1293 0 E I.claudius_F2_297_79_717213_peptide number 6 794.8921000000001 0 VLINSSY I.claudius_F2_298_80_720557_peptide number 1 1455.7878 0 MLLHIACSLGRIE I.claudius_F2_298_80_720557_peptide number 2 1157.2544 0 RGGCVSSLYSE I.claudius_F2_298_80_720557_peptide number 3 391.48300000000006 0 MLE I.claudius_F2_298_80_720557_peptide number 4 147.1293 0 E I.claudius_F2_298_80_720557_peptide number 5 3066.6773000000003 0 MQSAVIFPQVLAIHQDLLKLMPFSIPE I.claudius_F2_298_80_720557_peptide number 6 218.2072 0 AE I.claudius_F2_298_80_720557_peptide number 7 1647.8682000000001 0 QTYFLANIHSLVLE I.claudius_F2_298_80_720557_peptide number 8 982.221 0 QKQLKPLK I.claudius_F2_299_156_721080_peptide number 1 6900.0973 0 MLVKHILDSLVVSPYLQGDRFIDVGTGPGLPGLPLAIINPSKQFVLLDSLGKRISFIRNAIRE I.claudius_F2_299_156_721080_peptide number 2 1596.8697 0 LRLTNVTPVLSRVE I.claudius_F2_299_156_721080_peptide number 3 147.1293 0 E I.claudius_F2_299_156_721080_peptide number 4 535.547 0 YQPE I.claudius_F2_299_156_721080_peptide number 5 3147.5415 0 DKFDGVLSRAFASLKDMTDWCHHLPKE I.claudius_F2_299_156_721080_peptide number 6 1565.7229 0 NGYFYALKGIYQE I.claudius_F2_299_156_721080_peptide number 7 262.2167 0 DE I.claudius_F2_299_156_721080_peptide number 8 374.3895 0 INE I.claudius_F2_299_156_721080_peptide number 9 1476.7591 0 LNKKYTIQKVIE I.claudius_F2_299_156_721080_peptide number 10 543.6105 0 LSVPE I.claudius_F2_299_156_721080_peptide number 11 430.49580000000003 0 LIGE I.claudius_F2_299_156_721080_peptide number 12 906.1299000000001 0 RHLIVLR I.claudius_F2_300_263_722084_peptide number 1 839.8683000000001 0 MSGQTTSE I.claudius_F2_300_263_722084_peptide number 2 6388.460999999999 0 YISHHLSFLKTGDGFWNVHIDTLFFSILAAVIFLFVFSRVGKKATTGVPGKMQCLVE I.claudius_F2_300_263_722084_peptide number 3 458.54910000000007 0 IVVE I.claudius_F2_300_263_722084_peptide number 4 944.0852 0 WVNGIVKE I.claudius_F2_300_263_722084_peptide number 5 9350.1299 0 NFHGPRNVVAPLALTIFCWVFIMNAIDLIPVDFLPQFAGLFGIHYLRAVPTADISATLGMSICVFFLILFYTIKSKGFKGLVKE I.claudius_F2_300_263_722084_peptide number 6 2358.6917000000003 0 YTLHPFNHWAFIPVNFILE I.claudius_F2_300_263_722084_peptide number 7 2512.9628 0 TVTLLAKPISLAFRLFGNMYAGE I.claudius_F2_300_263_722084_peptide number 8 6606.063800000002 0 LIFILIAVMYSANMAIAALGIPLHLAWAIFHILVITLQAFIFMMLTVVYLSIAYNKADH I.claudius_F2_301_178_723715_peptide number 1 365.4027 0 MSE I.claudius_F2_301_178_723715_peptide number 2 1998.2811000000002 0 LTTIARPYAKAAFDFAIE I.claudius_F2_301_178_723715_peptide number 3 532.5448 0 QSAVE I.claudius_F2_301_178_723715_peptide number 4 562.6154 0 KWTE I.claudius_F2_301_178_723715_peptide number 5 979.1509000000001 0 MLGFAAAVAE I.claudius_F2_301_178_723715_peptide number 6 262.2167 0 DE I.claudius_F2_301_178_723715_peptide number 7 2584.9362 0 TVKAYLSSSLSAQKLADTVISICGE I.claudius_F2_301_178_723715_peptide number 8 1792.0215999999998 0 QLDQYGQNLIRLMAE I.claudius_F2_301_178_723715_peptide number 9 1344.5584000000001 0 NKRLSAIPAVFE I.claudius_F2_301_178_723715_peptide number 10 147.1293 0 E I.claudius_F2_301_178_723715_peptide number 11 795.8852000000002 0 FKHHVE I.claudius_F2_301_178_723715_peptide number 12 147.1293 0 E I.claudius_F2_301_178_723715_peptide number 13 667.7112000000001 0 HQAIAE I.claudius_F2_301_178_723715_peptide number 14 246.2604 0 VE I.claudius_F2_301_178_723715_peptide number 15 1371.4927 0 VTSAQPLNATQIE I.claudius_F2_301_178_723715_peptide number 16 732.8890000000001 0 KIAAAME I.claudius_F2_301_178_723715_peptide number 17 2894.4427000000005 0 KRLARKVKLNCNVDNALIAGVIVRTE I.claudius_F2_301_178_723715_peptide number 18 1978.1241000000002 0 DFVIDGSSRGQLTRLANE I.claudius_F2_301_178_723715_peptide number 19 372.4597 0 LQL I.claudius_F2_302_290_725818_peptide number 1 605.7048 0 MAGAKE I.claudius_F2_302_290_725818_peptide number 2 2105.4990000000003 0 IKTKIASVQSTQKITKAME I.claudius_F2_302_290_725818_peptide number 3 2544.9289000000003 0 MVATSKMRKTQDRMAASRPYSE I.claudius_F2_302_290_725818_peptide number 4 2595.9919000000004 0 TIRNVISHVSKASIGYKHPFLVE I.claudius_F2_302_290_725818_peptide number 5 303.31500000000005 0 RE I.claudius_F2_302_290_725818_peptide number 6 4032.7746000000016 0 VKKIGILVISTDRGMCGGLNVNLFKTTLNQIKNWKE I.claudius_F2_302_290_725818_peptide number 7 4086.5585 0 QNISTDLGLIGSKGISFFRSFGFNIKGQLSGLGDTPALE I.claudius_F2_302_290_725818_peptide number 8 147.1293 0 E I.claudius_F2_302_290_725818_peptide number 9 1770.9595 0 LIGVANTMFDAYRNGE I.claudius_F2_302_290_725818_peptide number 10 3305.8392000000003 0 IDAVYIAYNKFVNTMSQKPVVQQLVPLPE I.claudius_F2_302_290_725818_peptide number 11 956.9531999999999 0 SKDDHLNE I.claudius_F2_302_290_725818_peptide number 12 3267.6833999999994 0 RQQTWDYLYEPEPKVLLDSLLVRYLE I.claudius_F2_302_290_725818_peptide number 13 1522.6123000000002 0 SQIYQAVVDNVASE I.claudius_F2_302_290_725818_peptide number 14 4033.5525 0 QAARMVAMKAATDNAGNLINDLRLVYNKARQASITNE I.claudius_F2_302_290_725818_peptide number 15 374.3895 0 LNE I.claudius_F2_302_290_725818_peptide number 16 684.8245000000001 0 IVAGAAAI I.claudius_F2_303_123_729268_peptide number 1 918.0663000000002 0 MAEPTKIE I.claudius_F2_303_123_729268_peptide number 2 3650.253900000001 0 KRNAFTLPSKYLFKLGMEPWKPNAVKNTGLAE I.claudius_F2_303_123_729268_peptide number 3 8671.219200000001 0 IIKALSIGVAIKLSNLISGNIKLNTTAKAASITKNNTRLILSTLCVPMTINEPKITVNNKTLTLSPKLSGNKSFSSEPPPLI I.claudius_F2_304_50_732461_peptide number 1 5000.1035999999995 0 MKLYTVKILFRYRSRKIHTIIAYCHRMFIRANCITMHKIE I.claudius_F2_304_50_732461_peptide number 2 1038.2412 0 VTILHNTIK I.claudius_F2_305_52_732984_peptide number 1 4878.777799999999 0 MFIIFLSFYNRSNFAKIRQKLTALSTIKLLLNLAFHFLQSE I.claudius_F2_305_52_732984_peptide number 2 1177.4163 0 SPVLMFSQRL I.claudius_F2_306_60_734543_peptide number 1 425.49930000000006 0 MFE I.claudius_F2_306_60_734543_peptide number 2 4736.433500000002 0 GLNACSARSALGTGIGYGAITLLKMSISSGFANTKPQRNPAKAKALE I.claudius_F2_306_60_734543_peptide number 3 946.169 0 SVRIIAKCG I.claudius_F2_307_90_737879_peptide number 1 4399.2333 0 MMVSADKIHIVYARSNVIRSYIALKIHFKIKKSNFFE I.claudius_F2_307_90_737879_peptide number 2 6135.3517999999995 0 KNCVFSTFLLSLKFIKNVYLRGIIFQIFIVLIFFSLSVFISLQYLANQLRQS I.claudius_F2_308_145_738596_peptide number 1 647.7481 0 MRGRE I.claudius_F2_308_145_738596_peptide number 2 204.1806 0 GE I.claudius_F2_308_145_738596_peptide number 3 1855.0973999999999 0 KLNDIIQQRLDSIAVE I.claudius_F2_308_145_738596_peptide number 4 2072.3481 0 TDKVRSQMPAVLQWQRE I.claudius_F2_308_145_738596_peptide number 5 961.119 0 RLLQRFE I.claudius_F2_308_145_738596_peptide number 6 1397.4902 0 DAQLNLDPQRVE I.claudius_F2_308_145_738596_peptide number 7 275.2585 0 QE I.claudius_F2_308_145_738596_peptide number 8 1371.6450000000002 0 MILLAQRIDVAE I.claudius_F2_308_145_738596_peptide number 9 147.1293 0 E I.claudius_F2_308_145_738596_peptide number 10 1268.4856 0 LDRLQMHVKE I.claudius_F2_308_145_738596_peptide number 11 2337.7607 0 TTNILKKGGAVGRKLDFMMQE I.claudius_F2_308_145_738596_peptide number 12 530.5752 0 LNRE I.claudius_F2_308_145_738596_peptide number 13 1892.0267000000003 0 SNTLASKSINADITASAVE I.claudius_F2_308_145_738596_peptide number 14 713.9055000000001 0 LKVLIE I.claudius_F2_308_145_738596_peptide number 15 562.6403 0 QMRE I.claudius_F2_308_145_738596_peptide number 16 743.8055 0 QIQNLE I.claudius_F2_309_79_739646_peptide number 1 1398.6257000000003 0 MFIFKVQTQQE I.claudius_F2_309_79_739646_peptide number 2 218.2072 0 AE I.claudius_F2_309_79_739646_peptide number 3 404.41550000000007 0 IGSE I.claudius_F2_309_79_739646_peptide number 4 260.2869 0 IE I.claudius_F2_309_79_739646_peptide number 5 519.6122 0 MQLE I.claudius_F2_309_79_739646_peptide number 6 3560.9420999999998 0 ANWRKTGTITSAVNLDGVLWLQVVMNNDIDSE I.claudius_F2_309_79_739646_peptide number 7 1134.2423999999999 0 QQFRLLNSE I.claudius_F2_309_79_739646_peptide number 8 486.60210000000006 0 ILLE I.claudius_F2_309_79_739646_peptide number 9 1205.3602 0 RVQLPYSITE I.claudius_F2_310_80_744305_peptide number 1 5545.6865 0 MWCFARDLILQAMLMLDHLAYRMPFCRFHQARIMDFLRPLLPSFE I.claudius_F2_310_80_744305_peptide number 2 4275.9165 0 LIYLAMHQYRFYGDHGFLLHHARRLMPYVHIYDQ I.claudius_F2_311_54_745435_peptide number 1 5576.429400000002 0 MLAMVPTSNKSSGVGSSKSASLWDTKRICLSSFIASSRALIDFARPTKSGITI I.claudius_F2_312_192_746151_peptide number 1 2554.9398 0 MGRSLCQQLLDQQHIVLTQLTE I.claudius_F2_312_192_746151_peptide number 2 1768.9634 0 DLRLSLSINHIDPFE I.claudius_F2_312_192_746151_peptide number 3 1568.6455999999998 0 GYFSINIRNQNNE I.claudius_F2_312_192_746151_peptide number 4 3285.571099999999 0 RVYDSSFTFLSPNKLLIASIQGPSSDNAQE I.claudius_F2_312_192_746151_peptide number 5 3062.7832000000003 0 LVKQATKALHGMRPMFMLVNGFKMLAE I.claudius_F2_312_192_746151_peptide number 6 692.7836 0 KWQCE I.claudius_F2_312_192_746151_peptide number 7 3004.4438999999998 0 LVGIPHKAQGKYRLSARSKILFNYDE I.claudius_F2_312_192_746151_peptide number 8 608.6423000000001 0 FWQE I.claudius_F2_312_192_746151_peptide number 9 446.41240000000005 0 NQGE I.claudius_F2_312_192_746151_peptide number 10 1768.9699000000003 0 YRHNYWQLPLHIE I.claudius_F2_312_192_746151_peptide number 11 672.7741000000001 0 RKQLE I.claudius_F2_312_192_746151_peptide number 12 1931.2234999999998 0 DIASKKRSMYRKRYE I.claudius_F2_312_192_746151_peptide number 13 1418.6782000000003 0 MLDQMALDIQQL I.claudius_F2_313_118_747885_peptide number 1 278.32540000000006 0 ME I.claudius_F2_313_118_747885_peptide number 2 1956.1103 0 LDITFYRDDLTLVDQE I.claudius_F2_313_118_747885_peptide number 3 5535.266600000002 0 DKMPVYSGSSQYLNIQDKTVILVDDVLFTGRTIRAAMDALTDFGRAAKIE I.claudius_F2_313_118_747885_peptide number 4 1340.53 0 LVIFVDRGHRE I.claudius_F2_313_118_747885_peptide number 5 2030.2419 0 LPIRADYVGKNVPTSRDE I.claudius_F2_313_118_747885_peptide number 6 843.9679 0 LVQVRTE I.claudius_F2_313_118_747885_peptide number 7 841.8857000000002 0 KQDGCYE I.claudius_F2_313_118_747885_peptide number 8 599.7631000000001 0 VAILGK I.claudius_F2_314_191_748678_peptide number 1 1446.7382 0 MVMGAVRNKAIQE I.claudius_F2_314_191_748678_peptide number 2 818.8723 0 SIDVTRE I.claudius_F2_314_191_748678_peptide number 3 147.1293 0 E I.claudius_F2_314_191_748678_peptide number 4 1202.4209 0 VVALGQKMLDE I.claudius_F2_314_191_748678_peptide number 5 1432.5792000000001 0 AKSQGTAQKVTGKE I.claudius_F2_314_191_748678_peptide number 6 310.30260000000004 0 YE I.claudius_F2_314_191_748678_peptide number 7 6576.514500000003 0 VRHILLKLNPLLNDAQAKKQLAKIRSDIIAGKTTFADAALKYSKDYLSGANGGSLGYAFPE I.claudius_F2_314_191_748678_peptide number 8 2726.0875 0 TYAPQFAQTVVKSKQGVISAPFKTE I.claudius_F2_314_191_748678_peptide number 9 901.0189 0 FGWHILE I.claudius_F2_314_191_748678_peptide number 10 1232.2979 0 VTGVRDGDLTAE I.claudius_F2_314_191_748678_peptide number 11 973.0371000000001 0 AYTQKAYE I.claudius_F2_314_191_748678_peptide number 12 3504.953300000001 0 RLVNTQLQDATNDWVKALRKRANIQYFNK I.claudius_F2_315_158_749890_peptide number 1 1332.5708 0 MKKALNKAWNE I.claudius_F2_315_158_749890_peptide number 2 418.40240000000006 0 RDE I.claudius_F2_315_158_749890_peptide number 3 1031.1161 0 DLPLANPYE I.claudius_F2_315_158_749890_peptide number 4 988.2421000000002 0 MLILASIVE I.claudius_F2_315_158_749890_peptide number 5 275.3016 0 KE I.claudius_F2_315_158_749890_peptide number 6 603.6226 0 TGIANE I.claudius_F2_315_158_749890_peptide number 7 3366.0088000000005 0 RAKVASVFINRLKAKMKLQTDPTVIYGMGE I.claudius_F2_315_158_749890_peptide number 8 1463.5946 0 NYNGNIRKKDLE I.claudius_F2_315_158_749890_peptide number 9 2505.8363000000004 0 TKTPYNTYVIDGLPPTPIAMPSE I.claudius_F2_315_158_749890_peptide number 10 1015.0754 0 SSLQAVANPE I.claudius_F2_315_158_749890_peptide number 11 2666.8528000000006 0 KTDFYYFVADGSGGHKFTRNLNE I.claudius_F2_315_158_749890_peptide number 12 824.8817 0 HNKAVQE I.claudius_F2_315_158_749890_peptide number 13 1612.8324 0 YLRWYRSQKNAK I.claudius_F2_316_53_750854_peptide number 1 1970.2147 0 MDLDFFHRTRARYLE I.claudius_F2_316_53_750854_peptide number 2 1509.746 0 LVKDNPKAVVINAE I.claudius_F2_316_53_750854_peptide number 3 475.49340000000007 0 QSIE I.claudius_F2_316_53_750854_peptide number 4 786.8701000000001 0 LVQADIE I.claudius_F2_316_53_750854_peptide number 5 1348.4624999999999 0 SAVKNWWKSNE I.claudius_F2_316_53_750854_peptide number 6 146.1876 0 K I.claudius_F2_317_137_751582_peptide number 1 1226.4885 0 MNLGRPLLALE I.claudius_F2_317_137_751582_peptide number 2 489.5200000000001 0 TLQE I.claudius_F2_317_137_751582_peptide number 3 464.51210000000003 0 GFIE I.claudius_F2_317_137_751582_peptide number 4 2727.1348000000003 0 QRKNFLRQFWVFYRRRSPLE I.claudius_F2_317_137_751582_peptide number 5 974.1509000000001 0 LLPLFDKE I.claudius_F2_317_137_751582_peptide number 6 2705.1375 0 RYVQQVDWILAFLSDCLKHKLE I.claudius_F2_317_137_751582_peptide number 7 1665.8057000000003 0 IDSHRQVADLGRGIE I.claudius_F2_317_137_751582_peptide number 8 624.5971 0 QFSDE I.claudius_F2_317_137_751582_peptide number 9 3166.7335000000007 0 QTALGLLQAIKIMQKVRSDLLTINGVNVE I.claudius_F2_317_137_751582_peptide number 10 1473.7767000000001 0 LMLLDGLTRLVTE I.claudius_F2_317_137_751582_peptide number 11 393.4343 0 VFE I.claudius_F2_317_137_751582_peptide number 12 247.24839999999998 0 TQ I.claudius_F2_318_154_753025_peptide number 1 17946.331900000005 0 MAQHVMCITSIRKMTMVKLWCIATKIHVGVSHSTSNLAQPIYRLKHRLWVMTTNLCKLNTMVGVLRWWMNIVMQPQLKKLLLMTHQAIRLFRGFYMYSCWRHYFCLSNLFAAGLTAISNIPNGRKVRSFSFIFLSNDYGIISYYFGNCGFNFK I.claudius_F2_319_223_754061_peptide number 1 1612.8279 0 MQARTVTSTMTTRE I.claudius_F2_319_223_754061_peptide number 2 1640.7946 0 NIVYLDRTFSRQE I.claudius_F2_319_223_754061_peptide number 3 3135.5672 0 VMDTLSRDSHSKIVICDNGLDKILGYIE I.claudius_F2_319_223_754061_peptide number 4 1449.6277 0 SHTLLTMYLQNE I.claudius_F2_319_223_754061_peptide number 5 2745.2165 0 NVVLTDPKLLRKALFVPDTLSLYE I.claudius_F2_319_223_754061_peptide number 6 359.418 0 VLE I.claudius_F2_319_223_754061_peptide number 7 780.8656 0 LFKSTGE I.claudius_F2_319_223_754061_peptide number 8 920.0174 0 DFAIIVNE I.claudius_F2_319_223_754061_peptide number 9 2123.5324000000005 0 YALVVGIVTLNDVMSIVMGE I.claudius_F2_319_223_754061_peptide number 10 560.5979 0 LVSNE I.claudius_F2_319_223_754061_peptide number 11 147.1293 0 E I.claudius_F2_319_223_754061_peptide number 12 147.1293 0 E I.claudius_F2_319_223_754061_peptide number 13 880.9417000000001 0 YIVSRDE I.claudius_F2_319_223_754061_peptide number 14 1315.4276 0 NSWLIDGATPLE I.claudius_F2_319_223_754061_peptide number 15 147.1293 0 E I.claudius_F2_319_223_754061_peptide number 16 1537.7114000000001 0 VTRVLDIAYFPDE I.claudius_F2_319_223_754061_peptide number 17 147.1293 0 E I.claudius_F2_319_223_754061_peptide number 18 424.40520000000004 0 NYE I.claudius_F2_319_223_754061_peptide number 19 3362.0351000000005 0 TISGFMMYMLRKIPKKTDSVVYGKYKFE I.claudius_F2_319_223_754061_peptide number 20 575.6093000000001 0 VIDTE I.claudius_F2_319_223_754061_peptide number 21 1645.9369 0 NFKIDQILVSLVKE I.claudius_F2_319_223_754061_peptide number 22 275.2585 0 QE I.claudius_F2_320_148_755456_peptide number 1 2859.1685000000007 0 MGNDKKVIDLDKDKIDQKSYAAAYE I.claudius_F2_320_148_755456_peptide number 2 1308.4403 0 ATVATYKGRVNE I.claudius_F2_320_148_755456_peptide number 3 5655.159700000002 0 NFFVDNFASGANDWYLGRILVPVKQIQDKLYTGGHDSDVYAYYSGVLHAE I.claudius_F2_320_148_755456_peptide number 4 1716.9583 0 ALQANLKRLSANCWE I.claudius_F2_320_148_755456_peptide number 5 2470.7342 0 KVDSQSMAQGIYDAMRDLQKGE I.claudius_F2_320_148_755456_peptide number 6 431.4442 0 ARGE I.claudius_F2_320_148_755456_peptide number 7 376.3193 0 NDE I.claudius_F2_320_148_755456_peptide number 8 794.8491000000001 0 YIVQGSE I.claudius_F2_320_148_755456_peptide number 9 934.155 0 ALLKACTSK I.claudius_F2_321_165_756976_peptide number 1 2125.5399 0 MKIVALGVTQGHRLRFVAE I.claudius_F2_321_165_756976_peptide number 2 204.1806 0 GE I.claudius_F2_321_165_756976_peptide number 3 773.8316000000001 0 DAKQAIE I.claudius_F2_321_165_756976_peptide number 4 1129.264 0 SLGKAIANGLGE I.claudius_F2_321_165_756976_peptide number 5 1454.5351 0 NVSAVPPSEPDTIE I.claudius_F2_321_165_756976_peptide number 6 1411.5798 0 IMGDQIHTPAVTE I.claudius_F2_321_165_756976_peptide number 7 1071.0955000000001 0 DDNLPANAIE I.claudius_F2_321_165_756976_peptide number 8 919.0758000000001 0 AVFVIKNE I.claudius_F2_321_165_756976_peptide number 9 1504.6896 0 QGLHARPSAILVNE I.claudius_F2_321_165_756976_peptide number 10 4960.7996 0 VKKYNASVAVQNLDRNSQLVSAKSLMKIVALGVVKGTRLRFVATGE I.claudius_F2_321_165_756976_peptide number 11 147.1293 0 E I.claudius_F2_321_165_756976_peptide number 12 1284.4153000000001 0 AQQAIDGIGAVIE I.claudius_F2_321_165_756976_peptide number 13 461.46680000000003 0 SGLGE I.claudius_F2_322_92_758138_peptide number 1 1319.4858 0 MGAKGSLWINNE I.claudius_F2_322_92_758138_peptide number 2 1144.2987 0 GVLKAEPAQCE I.claudius_F2_322_92_758138_peptide number 3 2086.3217 0 NVVSTVGAGDSMVAGLIYGFE I.claudius_F2_322_92_758138_peptide number 4 761.864 0 KGLSKTE I.claudius_F2_322_92_758138_peptide number 5 3136.5040000000004 0 TLAFATAVSAFAVSQSNVGVSDLSLLDPILE I.claudius_F2_322_92_758138_peptide number 6 961.1771 0 KVQITMIE I.claudius_F2_322_92_758138_peptide number 7 75.0666 0 G I.claudius_F2_323_437_758775_peptide number 1 436.4806 0 MSAE I.claudius_F2_323_437_758775_peptide number 2 331.36480000000006 0 AIE I.claudius_F2_323_437_758775_peptide number 3 1520.7305000000001 0 AYAKKQGWNVKVE I.claudius_F2_323_437_758775_peptide number 4 988.0136 0 TRGQVGAGNE I.claudius_F2_323_437_758775_peptide number 5 460.5219000000001 0 ITVE I.claudius_F2_323_437_758775_peptide number 6 147.1293 0 E I.claudius_F2_323_437_758775_peptide number 7 4080.745100000001 0 VAAADLVFVAADIDVPLDKFKGKPMYRTSTGLALKKTE I.claudius_F2_323_437_758775_peptide number 8 275.2585 0 QE I.claudius_F2_323_437_758775_peptide number 9 883.9870000000001 0 FDKAFKE I.claudius_F2_323_437_758775_peptide number 10 1421.5116 0 AKIFDGGNNAGTKE I.claudius_F2_323_437_758775_peptide number 11 147.1293 0 E I.claudius_F2_323_437_758775_peptide number 12 390.3923 0 SRE I.claudius_F2_323_437_758775_peptide number 13 4149.039 0 KKGVYKHLMTGVSHMLPLVVAGGLLIAISFMFSFNVIE I.claudius_F2_323_437_758775_peptide number 14 5542.493900000001 0 NTGVFQDLPNMLINIGSGVAFKLMIAVFAGYVAFSIADRPGLAVGLIAGMLASE I.claudius_F2_323_437_758775_peptide number 15 6397.845000000003 0 AGAGILGGIIAGFLAGYVVKGLNVIIRLPASLTSLKPILILPLLGSMIVGLTMIYLINPPVAE I.claudius_F2_323_437_758775_peptide number 16 519.6553 0 IMKE I.claudius_F2_323_437_758775_peptide number 17 1137.2629 0 LSNWLTSMGE I.claudius_F2_323_437_758775_peptide number 18 9004.694500000001 0 VNAIVLGAIIGAMMCIDMGGPVNKAAYTFSVGLIASQVYTPMAAAMAAGMVPPIGMTVATWIARNKFTVSQCDAGKASFVLGLCFISE I.claudius_F2_323_437_758775_peptide number 19 7902.255000000003 0 GALPFVAADPIRVIISSVIGGAVAGAISMGLNITLQAPHGGLFVIPFVSEPLKYLGAIAIGALSTGVVYAIIKSKNNAE I.claudius_F2_324_86_763856_peptide number 1 9395.4786 0 MSMRRQLCAPLIVIFTKPAPDSPVTSSCAISSCIFCIFSCICWACFIKPPKPPFPNIMLSFIKSKIACILAKKWAFGNCGIYLKS I.claudius_F2_325_60_766661_peptide number 1 1105.3289000000002 0 MALNQVVCVE I.claudius_F2_325_60_766661_peptide number 2 5966.7597 0 NRQCDHCPKRLHFFAIMARHRDNRDAYRNQSSYYAQLFGLQLGLLKVQW I.claudius_F2_326_186_768044_peptide number 1 1142.3257999999998 0 MLPQVLNAQE I.claudius_F2_326_186_768044_peptide number 2 1234.4477 0 CHQQCKFVIE I.claudius_F2_326_186_768044_peptide number 3 275.3016 0 KE I.claudius_F2_326_186_768044_peptide number 4 730.8912 0 LPIFLE I.claudius_F2_326_186_768044_peptide number 5 147.1293 0 E I.claudius_F2_326_186_768044_peptide number 6 2156.4411 0 LWFDYRSTPLKQGFRLE I.claudius_F2_326_186_768044_peptide number 7 4673.241800000001 0 VTAIRKSSAQTYLQDFQPFNINILDVASNAVLRAFQYLLNE I.claudius_F2_326_186_768044_peptide number 8 617.6526 0 QVRSE I.claudius_F2_326_186_768044_peptide number 9 1011.128 0 NTLFLFQE I.claudius_F2_326_186_768044_peptide number 10 1044.1563 0 DDYCLAICE I.claudius_F2_326_186_768044_peptide number 11 1440.5182 0 RSQQSQILQSHE I.claudius_F2_326_186_768044_peptide number 12 822.9022000000001 0 NLTALYE I.claudius_F2_326_186_768044_peptide number 13 523.5363 0 QFTE I.claudius_F2_326_186_768044_peptide number 14 450.48890000000006 0 RFE I.claudius_F2_326_186_768044_peptide number 15 445.4674 0 GQLE I.claudius_F2_326_186_768044_peptide number 16 1842.0557 0 QVFVYQIPSSHTPLPE I.claudius_F2_326_186_768044_peptide number 17 830.8878 0 NWQRVE I.claudius_F2_326_186_768044_peptide number 18 248.23319999999998 0 TE I.claudius_F2_326_186_768044_peptide number 19 2433.8046000000004 0 LPFIALGNALWQKDLHQQKVGG I.claudius_F2_327_61_769444_peptide number 1 1849.1607000000004 0 MGQKPILHLQLTGHFE I.claudius_F2_327_61_769444_peptide number 2 3025.5211999999997 0 KTKTFLSALLANSSQLSVSRLQFMKPE I.claudius_F2_327_61_769444_peptide number 3 758.7739 0 DGPLQTE I.claudius_F2_327_61_769444_peptide number 4 1005.1649 0 IIFQLDKE I.claudius_F2_327_61_769444_peptide number 5 247.2915 0 TK I.claudius_F2_328_372_770268_peptide number 1 6571.4369 0 MPRLLQIIAKSKHLTLNKDDGIYYLNGSQSGKGQVAGNLTTNEPHLVSHTVKLHFAKASE I.claudius_F2_328_372_770268_peptide number 2 4944.6161 0 LMKSLTTGSGSLLSPAGSITFDDRSNLLVIQDEPRSVQNIKKLIAE I.claudius_F2_328_372_770268_peptide number 3 731.8579000000001 0 MDKPIE I.claudius_F2_328_372_770268_peptide number 4 572.6516 0 QIAIE I.claudius_F2_328_372_770268_peptide number 5 1017.1344 0 ARIVTITDE I.claudius_F2_328_372_770268_peptide number 6 475.53650000000005 0 SLKE I.claudius_F2_328_372_770268_peptide number 7 1388.5694 0 LGVRWGIFNPTE I.claudius_F2_328_372_770268_peptide number 8 1578.6854 0 NARRVAGSLTGNSFE I.claudius_F2_328_372_770268_peptide number 9 3669.1014000000005 0 NIADNLNVNFATTTTPAGSIALQVAKINGRLLDLE I.claudius_F2_328_372_770268_peptide number 10 531.5997 0 LSALE I.claudius_F2_328_372_770268_peptide number 11 303.31500000000005 0 RE I.claudius_F2_328_372_770268_peptide number 12 474.4656 0 NNVE I.claudius_F2_328_372_770268_peptide number 13 2356.7176 0 IIASPRLLTTNKKSASIKQGTE I.claudius_F2_328_372_770268_peptide number 14 1835.9651000000001 0 IPYIVSNTRNDTQSVE I.claudius_F2_328_372_770268_peptide number 15 450.48890000000006 0 FRE I.claudius_F2_328_372_770268_peptide number 16 600.7048000000001 0 AVLGLE I.claudius_F2_328_372_770268_peptide number 17 3479.8064 0 VTPHISKDNNILLDLLVSQNSPGSRVAYGQNE I.claudius_F2_328_372_770268_peptide number 18 917.0152999999999 0 VVSIDKQE I.claudius_F2_328_372_770268_peptide number 19 1221.3165 0 INTQVFAKDGE I.claudius_F2_328_372_770268_peptide number 20 1716.9288 0 TIVLGGVFHDTITKSE I.claudius_F2_328_372_770268_peptide number 21 2167.5897999999997 0 DKVPLLGDIPVIKRLFSKE I.claudius_F2_328_372_770268_peptide number 22 234.2066 0 SE I.claudius_F2_328_372_770268_peptide number 23 852.9415000000001 0 RHQKRE I.claudius_F2_328_372_770268_peptide number 24 1536.8557 0 LVIFVTPHILKAGE I.claudius_F2_328_372_770268_peptide number 25 361.3908 0 TLE I.claudius_F2_328_372_770268_peptide number 26 802.9159000000001 0 ALKQKSE I.claudius_F2_328_372_770268_peptide number 27 331.4112 0 GKK I.claudius_F2_329_223_772946_peptide number 1 576.6635 0 MQIGE I.claudius_F2_329_223_772946_peptide number 2 1418.6367 0 WKNYPLWLVAE I.claudius_F2_329_223_772946_peptide number 3 275.2585 0 QE I.claudius_F2_329_223_772946_peptide number 4 349.294 0 SDE I.claudius_F2_329_223_772946_peptide number 5 303.31500000000005 0 RE I.claudius_F2_329_223_772946_peptide number 6 1334.5138 0 YVSLSNLLSLPE I.claudius_F2_329_223_772946_peptide number 7 262.2167 0 DE I.claudius_F2_329_223_772946_peptide number 8 1057.2031 0 FHILSRGVE I.claudius_F2_329_223_772946_peptide number 9 2829.1770999999994 0 INHFLKTHKFCGKCGHKTQQTQDE I.claudius_F2_329_223_772946_peptide number 10 3226.7954 0 LAVQCIHCGYQTYPVICPSIIVAVRRGHE I.claudius_F2_329_223_772946_peptide number 11 2772.1206999999995 0 ILLANHKRHYSPNGGIYTTLAGFVE I.claudius_F2_329_223_772946_peptide number 12 303.31170000000003 0 VGE I.claudius_F2_329_223_772946_peptide number 13 395.4071 0 TFE I.claudius_F2_329_223_772946_peptide number 14 729.7824 0 QAVQRE I.claudius_F2_329_223_772946_peptide number 15 393.4343 0 VFE I.claudius_F2_329_223_772946_peptide number 16 147.1293 0 E I.claudius_F2_329_223_772946_peptide number 17 3537.9500000000003 0 TGISIKNLRYFGSQPWAFPNSQMVGFLADYE I.claudius_F2_329_223_772946_peptide number 18 291.25790000000006 0 SGE I.claudius_F2_329_223_772946_peptide number 19 602.6776000000001 0 ITLQE I.claudius_F2_329_223_772946_peptide number 20 234.2066 0 SE I.claudius_F2_329_223_772946_peptide number 21 1845.9597 0 IHDAQWFSYDQPLPE I.claudius_F2_329_223_772946_peptide number 22 1859.2170000000003 0 LPPTGTIARKLIHVTLE I.claudius_F2_329_223_772946_peptide number 23 562.6800000000001 0 LCKAE I.claudius_F2_329_223_772946_peptide number 24 501.5572 0 HKCD I.claudius_F2_330_91_774380_peptide number 1 1589.766 0 MNKTDLIDAIANAAE I.claudius_F2_330_91_774380_peptide number 2 1213.4269000000002 0 LNKKQAKAALE I.claudius_F2_330_91_774380_peptide number 3 1232.3806 0 ATLDAITASLKE I.claudius_F2_330_91_774380_peptide number 4 1734.9456 0 GEPVQLIGFGTFKVNE I.claudius_F2_330_91_774380_peptide number 5 1484.5775 0 RAARTGRNPQTGAE I.claudius_F2_330_91_774380_peptide number 6 2255.6982 0 IQIAASKVPAFVSGKALKDAIK I.claudius_F2_331_453_775238_peptide number 1 1200.3886 0 MVVMDSRHPE I.claudius_F2_331_453_775238_peptide number 2 1846.1353000000004 0 HLVAARSGSPLVIGLGIGE I.claudius_F2_331_453_775238_peptide number 3 2453.8326 0 NFLASDQLALLSVTRRFIFLE I.claudius_F2_331_453_775238_peptide number 4 147.1293 0 E I.claudius_F2_331_453_775238_peptide number 5 503.50350000000003 0 GDIAE I.claudius_F2_331_453_775238_peptide number 6 2273.5081999999998 0 ITRRTVDIYDTHGNKAKRE I.claudius_F2_331_453_775238_peptide number 7 397.4262 0 IHE I.claudius_F2_331_453_775238_peptide number 8 461.46680000000003 0 SNLE I.claudius_F2_331_453_775238_peptide number 9 518.4751 0 NDAAE I.claudius_F2_331_453_775238_peptide number 10 1435.6956 0 KGKFRHFMQKE I.claudius_F2_331_453_775238_peptide number 11 423.4602000000001 0 IYE I.claudius_F2_331_453_775238_peptide number 12 1117.2733 0 QPTALINTME I.claudius_F2_331_453_775238_peptide number 13 724.7658 0 GRINHE I.claudius_F2_331_453_775238_peptide number 14 1598.7958999999998 0 NVIVDSIGNGAKGILE I.claudius_F2_331_453_775238_peptide number 15 374.43270000000007 0 KVE I.claudius_F2_331_453_775238_peptide number 16 2516.8504 0 HIQIVACGTSYNAGMVARYWFE I.claudius_F2_331_453_775238_peptide number 17 979.0632 0 SLAGVSCDVE I.claudius_F2_331_453_775238_peptide number 18 418.4421 0 IASE I.claudius_F2_331_453_775238_peptide number 19 2612.9793 0 FRYRKFVTRPNSLLITLSQSGE I.claudius_F2_331_453_775238_peptide number 20 1372.5669 0 TADTLAALRLAKE I.claudius_F2_331_453_775238_peptide number 21 2083.432 0 KGYMAALTICNVAGSSLVRE I.claudius_F2_331_453_775238_peptide number 22 1296.4494000000002 0 SDLAFMTRAGVE I.claudius_F2_331_453_775238_peptide number 23 3354.9994 0 VGVASTKAFTTQLAALLMLVTALGKVKGHISVE I.claudius_F2_331_453_775238_peptide number 24 275.3016 0 KE I.claudius_F2_331_453_775238_peptide number 25 303.31500000000005 0 RE I.claudius_F2_331_453_775238_peptide number 26 1200.448 0 IIKAMQSLPAE I.claudius_F2_331_453_775238_peptide number 27 260.2869 0 IE I.claudius_F2_331_453_775238_peptide number 28 893.9802 0 KALAFDTE I.claudius_F2_331_453_775238_peptide number 29 260.2869 0 IE I.claudius_F2_331_453_775238_peptide number 30 402.44270000000006 0 ALAE I.claudius_F2_331_453_775238_peptide number 31 480.46850000000006 0 DFAE I.claudius_F2_331_453_775238_peptide number 32 2026.3424 0 KHHALFLGRGAFYPIAVE I.claudius_F2_331_453_775238_peptide number 33 787.9443000000001 0 ASLKLKE I.claudius_F2_331_453_775238_peptide number 34 831.9123 0 ISYIHAE I.claudius_F2_331_453_775238_peptide number 35 580.5876000000001 0 AYAAGE I.claudius_F2_331_453_775238_peptide number 36 2426.828900000001 0 LKHGPLALIDADMPVIVVAPNNE I.claudius_F2_331_453_775238_peptide number 37 373.44450000000006 0 LLE I.claudius_F2_331_453_775238_peptide number 38 816.9425000000001 0 KVKSNIE I.claudius_F2_331_453_775238_peptide number 39 147.1293 0 E I.claudius_F2_331_453_775238_peptide number 40 1708.9150000000002 0 VRARGGQLYVFADKE I.claudius_F2_331_453_775238_peptide number 41 707.7288000000001 0 AGFTPSE I.claudius_F2_331_453_775238_peptide number 42 5696.742 0 GMKIITMPKVNDIVAPIFYTIPMQLLSYYVALIKGTDVDQPRNLAKSVTVE I.claudius_F2_332_242_778862_peptide number 1 1928.1282 0 MQNNNDILKAQSPAALAE I.claudius_F2_332_242_778862_peptide number 2 147.1293 0 E I.claudius_F2_332_242_778862_peptide number 3 2250.5044000000003 0 YIVKSIWQDVFPAGSNLPSE I.claudius_F2_332_242_778862_peptide number 4 1844.0783000000001 0 RDLADKIGVTRTTLRE I.claudius_F2_332_242_778862_peptide number 5 3825.336600000001 0 VLQRLARDGWLTIQHGKPTKVNNIWDAAGPNIIE I.claudius_F2_332_242_778862_peptide number 6 2891.4271 0 TLIALDMQSAPLIIDNMLSLRSKMSE I.claudius_F2_332_242_778862_peptide number 7 673.7108000000001 0 SYIYE I.claudius_F2_332_242_778862_peptide number 8 1590.7757 0 AVKNSPQKSTALFAE I.claudius_F2_332_242_778862_peptide number 9 260.2869 0 LE I.claudius_F2_332_242_778862_peptide number 10 1310.3235 0 QLQNTAQDYTE I.claudius_F2_332_242_778862_peptide number 11 4807.594099999999 0 FDYQLFRQFTVVANKPFYRLIFNSLKGVYQRIGLLFFKE I.claudius_F2_332_242_778862_peptide number 12 696.7989 0 KKHRE I.claudius_F2_332_242_778862_peptide number 13 1041.1971 0 LTKQFYLE I.claudius_F2_332_242_778862_peptide number 14 864.0418999999999 0 MQQICLE I.claudius_F2_332_242_778862_peptide number 15 2960.3268000000003 0 GNADAVVDCIRKHNLRSSTYWKAILE I.claudius_F2_332_242_778862_peptide number 16 942.0279 0 RLPQNLSD I.claudius_F2_333_57_781085_peptide number 1 2710.0678000000003 0 MLTNFSIFWLKNSHFYSGKPYE I.claudius_F2_333_57_781085_peptide number 2 3862.362200000001 0 RQTQTLFSIRRQNLSRTLSGGKVQRKTNSKSTAL I.claudius_F2_334_235_781497_peptide number 1 725.8534000000001 0 MKVYGE I.claudius_F2_334_235_781497_peptide number 2 951.0976 0 NACLALFAE I.claudius_F2_334_235_781497_peptide number 3 400.4302 0 RPE I.claudius_F2_334_235_781497_peptide number 4 1955.2845000000002 0 SIVRLWATVQMSHKIGE I.claudius_F2_334_235_781497_peptide number 5 793.9041000000001 0 VLSYLAE I.claudius_F2_334_235_781497_peptide number 6 1289.3939 0 NKKAYHVVDSE I.claudius_F2_334_235_781497_peptide number 7 147.1293 0 E I.claudius_F2_334_235_781497_peptide number 8 831.9141 0 LARVSGTE I.claudius_F2_334_235_781497_peptide number 9 3076.576 0 HHGGICLLVKKPRAFTLQGYLDIPRNE I.claudius_F2_334_235_781497_peptide number 10 3865.351000000001 0 DCLVLLDNVNNAQNIGGVLRTCAYFGVKNIVADNVE I.claudius_F2_334_235_781497_peptide number 11 1311.4640000000002 0 NLYSAASMRVAE I.claudius_F2_334_235_781497_peptide number 12 332.3098 0 GGAE I.claudius_F2_334_235_781497_peptide number 13 791.9346 0 YIRVLE I.claudius_F2_334_235_781497_peptide number 14 5154.898899999998 0 ADYIDSALMQLRKSGYQIIHVSHNKQGDPLDKVRLKNKVVFVLSE I.claudius_F2_334_235_781497_peptide number 15 422.38779999999997 0 SSTE I.claudius_F2_334_235_781497_peptide number 16 616.6612 0 SLATPE I.claudius_F2_334_235_781497_peptide number 17 3488.0452999999998 0 DTQARLTLASPIKSGLNIAVNAGVLLAKWYFR I.claudius_F2_335_440_783002_peptide number 1 867.966 0 MNLSQFE I.claudius_F2_335_440_783002_peptide number 2 834.8699 0 QFDLSPE I.claudius_F2_335_440_783002_peptide number 3 685.8523 0 LLKALE I.claudius_F2_335_440_783002_peptide number 4 1508.7413999999999 0 KKGYSRPTAIQME I.claudius_F2_335_440_783002_peptide number 5 701.8319000000001 0 AIPAAME I.claudius_F2_335_440_783002_peptide number 6 147.1293 0 E I.claudius_F2_335_440_783002_peptide number 7 4922.6851 0 SDVLGSAPTGTGKTAAFLLPALQHLLDYPRRKPGPPRILVLTPTRE I.claudius_F2_335_440_783002_peptide number 8 760.8991000000001 0 LAMQVAE I.claudius_F2_335_440_783002_peptide number 9 346.3364 0 QAE I.claudius_F2_335_440_783002_peptide number 10 147.1293 0 E I.claudius_F2_335_440_783002_peptide number 11 4942.499000000001 0 LAQFTHLNIATITGGVAYQNHGDVFNTNQDLVVATPGRLLQYIKE I.claudius_F2_335_440_783002_peptide number 12 147.1293 0 E I.claudius_F2_335_440_783002_peptide number 13 969.0302000000001 0 NFDCRSVE I.claudius_F2_335_440_783002_peptide number 14 766.9019000000001 0 MLIFDE I.claudius_F2_335_440_783002_peptide number 15 1568.7303000000004 0 ADRMLQMGFGQDAE I.claudius_F2_335_440_783002_peptide number 16 530.615 0 KIAAE I.claudius_F2_335_440_783002_peptide number 17 1850.1257 0 TRWRKQTLLFSATLE I.claudius_F2_335_440_783002_peptide number 18 204.1806 0 GE I.claudius_F2_335_440_783002_peptide number 19 805.9148 0 LLVDFAE I.claudius_F2_335_440_783002_peptide number 20 1994.2131 0 RLLNDPVKVDAEPSRRE I.claudius_F2_335_440_783002_peptide number 21 1952.09 0 RKKINQWYYHADSNE I.claudius_F2_335_440_783002_peptide number 22 1367.6811 0 HKIKLLARFIE I.claudius_F2_335_440_783002_peptide number 23 248.23319999999998 0 TE I.claudius_F2_335_440_783002_peptide number 24 147.1293 0 E I.claudius_F2_335_440_783002_peptide number 25 1501.7786 0 VTRGIVFIRRRE I.claudius_F2_335_440_783002_peptide number 26 489.48030000000006 0 DARE I.claudius_F2_335_440_783002_peptide number 27 347.3642 0 LSE I.claudius_F2_335_440_783002_peptide number 28 1562.8152 0 TLRKRGIRSAYLE I.claudius_F2_335_440_783002_peptide number 29 204.1806 0 GE I.claudius_F2_335_440_783002_peptide number 30 7790.762800000001 0 MAQTQRNNAIDKLKSGIVTVLVATDVAARGIDIDDVSHVMNFDLPYSADTYLHRIGRTARAGKKGTAVSFVE I.claudius_F2_335_440_783002_peptide number 31 1835.1111 0 AHDYKLLGKIKRYTE I.claudius_F2_335_440_783002_peptide number 32 147.1293 0 E I.claudius_F2_335_440_783002_peptide number 33 2302.7149 0 ILKARILAGLEPRTKPPKDGE I.claudius_F2_335_440_783002_peptide number 34 1628.958 0 VKSVSKKQKARIKE I.claudius_F2_335_440_783002_peptide number 35 431.4873 0 KRE I.claudius_F2_335_440_783002_peptide number 36 147.1293 0 E I.claudius_F2_335_440_783002_peptide number 37 632.7501000000001 0 KKKTE I.claudius_F2_335_440_783002_peptide number 38 3031.5656000000004 0 AKKKVKLRHKDTKNIGKRRKPSNSNV I.claudius_F2_336_52_788691_peptide number 1 4013.4718 0 MPSASISNAKSTLSSTINGTPYSRHKSRQLIASAFCAE I.claudius_F2_336_52_788691_peptide number 2 607.6345 0 GVCSNE I.claudius_F2_336_52_788691_peptide number 3 812.9139 0 NLPLSRN I.claudius_F2_337_323_794586_peptide number 1 749.8334 0 MTKQNE I.claudius_F2_337_323_794586_peptide number 2 1562.8699000000001 0 KIINSSVKMLTISE I.claudius_F2_337_323_794586_peptide number 3 262.2167 0 DE I.claudius_F2_337_323_794586_peptide number 4 3315.9084000000003 0 SGQRIDNYLLAKLKGVPKSLIYRIVRKGE I.claudius_F2_337_323_794586_peptide number 5 1295.5342 0 VRVNKGRIKPE I.claudius_F2_337_323_794586_peptide number 6 2040.366 0 YKLQTGDVVRIPPVRVAE I.claudius_F2_337_323_794586_peptide number 7 1825.0715 0 KNDAPISKNLNKVAALE I.claudius_F2_337_323_794586_peptide number 8 762.8502000000001 0 NQILFE I.claudius_F2_337_323_794586_peptide number 9 2739.1073 0 DDCLIILNKPSGIAVHGGSGLNFGVIE I.claudius_F2_337_323_794586_peptide number 10 925.0869 0 ALRALRPE I.claudius_F2_337_323_794586_peptide number 11 634.7244000000001 0 ARFLE I.claudius_F2_337_323_794586_peptide number 12 3125.6302 0 LVHRLDRDTSGILLIAKKRSALRNLHE I.claudius_F2_337_323_794586_peptide number 13 3991.6416000000004 0 QLRVKTVQKDYLALVRGQWQSHIKVIQASLLKNE I.claudius_F2_337_323_794586_peptide number 14 491.4928 0 LSSGE I.claudius_F2_337_323_794586_peptide number 15 857.9978000000002 0 RIVRVSE I.claudius_F2_337_323_794586_peptide number 16 644.6746 0 QGKPSE I.claudius_F2_337_323_794586_peptide number 17 751.8277 0 TRFSIE I.claudius_F2_337_323_794586_peptide number 18 147.1293 0 E I.claudius_F2_337_323_794586_peptide number 19 5500.083300000001 0 RYINATLVKASPVTGRTHQIRVHTQYAGHPIALDDKYGDKDFDKQMNE I.claudius_F2_337_323_794586_peptide number 20 1933.2588 0 LGLNRLFLHAFSIRFE I.claudius_F2_337_323_794586_peptide number 21 680.71 0 HPKNGE I.claudius_F2_337_323_794586_peptide number 22 2512.9280000000003 0 TLRFNASLDHQMKAILQKLRE I.claudius_F2_337_323_794586_peptide number 23 233.26489999999998 0 SK I.claudius_F2_338_72_798575_peptide number 1 278.32540000000006 0 ME I.claudius_F2_338_72_798575_peptide number 2 1809.1698000000001 0 KALFKRLNIRHKRE I.claudius_F2_338_72_798575_peptide number 3 374.3895 0 NLE I.claudius_F2_338_72_798575_peptide number 4 2588.0377 0 NSIKMRYFPQPLLKTRRFYE I.claudius_F2_338_72_798575_peptide number 5 3809.2416 0 YHSHSQRAKPTTAHSIKKYQCGFRTKNRSARY I.claudius_F2_339_141_799071_peptide number 1 848.9644 0 MQKLSGGE I.claudius_F2_339_141_799071_peptide number 2 3617.1793000000002 0 MQRVLLARAILNKPNLLVLDEPTQGVDITGQAE I.claudius_F2_339_141_799071_peptide number 3 3707.3052 0 LYQLIHQTQQKLNCAVLMVSHDLHIVMADSKE I.claudius_F2_339_141_799071_peptide number 4 7476.2952 0 VLCINQHICCAGTPDVLSNDPTFMRLWGNQIAQNVGFYTHHHNHHHTLHGDVCGCNSSAVHCQNKDK I.claudius_F2_340_95_799994_peptide number 1 4846.993 0 MRFILMILTALTIALSMKFVGALIITSLLIIPAATARRFARTPE I.claudius_F2_340_95_799994_peptide number 2 5127.155199999998 0 SMVGWAIIMSMLSIIGGLILSAFYDTAAGPSVVICSAFLFVLSLFKRE I.claudius_F2_340_95_799994_peptide number 3 287.3586 0 RL I.claudius_F2_341_187_800755_peptide number 1 543.6337000000001 0 MPAPE I.claudius_F2_341_187_800755_peptide number 2 1236.4868000000001 0 GYRKALRLME I.claudius_F2_341_187_800755_peptide number 3 349.40330000000006 0 MAE I.claudius_F2_341_187_800755_peptide number 4 2376.7469000000006 0 RFKLPIITFIDTPGAYPGIGAE I.claudius_F2_341_187_800755_peptide number 5 147.1293 0 E I.claudius_F2_341_187_800755_peptide number 6 559.5734 0 RGQAE I.claudius_F2_341_187_800755_peptide number 7 942.0743 0 AIARNLRE I.claudius_F2_341_187_800755_peptide number 8 1573.9158000000002 0 MAQLTVPVICTVIGE I.claudius_F2_341_187_800755_peptide number 9 2871.1791 0 GGSGGALAIGVGDKVNMLQYSTYSVISPE I.claudius_F2_341_187_800755_peptide number 10 1164.3313 0 GCASILWKSAE I.claudius_F2_341_187_800755_peptide number 11 676.7165 0 KASTAAE I.claudius_F2_341_187_800755_peptide number 12 1204.4401000000003 0 VMGLTASRLKE I.claudius_F2_341_187_800755_peptide number 13 2324.5878000000002 0 LNLIDSIVQEPLGGAHRSYLE I.claudius_F2_341_187_800755_peptide number 14 331.36480000000006 0 IAE I.claudius_F2_341_187_800755_peptide number 15 1013.2350000000001 0 NLKLRLKE I.claudius_F2_341_187_800755_peptide number 16 446.45220000000006 0 DLAE I.claudius_F2_341_187_800755_peptide number 17 375.37430000000006 0 LDE I.claudius_F2_341_187_800755_peptide number 18 475.53650000000005 0 LSKE I.claudius_F2_341_187_800755_peptide number 19 147.1293 0 E I.claudius_F2_341_187_800755_peptide number 20 963.0918 0 LLNRRYE I.claudius_F2_341_187_800755_peptide number 21 992.1728 0 RLMSYGYC I.claudius_F2_342_91_801982_peptide number 1 547.6224000000001 0 MATPE I.claudius_F2_342_91_801982_peptide number 2 4274.786099999999 0 GVWHLSRPLYQFNFEPVGVGDLIAGTFLANLLNGKSDVE I.claudius_F2_342_91_801982_peptide number 3 365.38110000000006 0 AFE I.claudius_F2_342_91_801982_peptide number 4 577.6085 0 AMNNE I.claudius_F2_342_91_801982_peptide number 5 1082.2708 0 VAGVMKTTFE I.claudius_F2_342_91_801982_peptide number 6 567.5888000000001 0 LGSYE I.claudius_F2_342_91_801982_peptide number 7 1048.193 0 LQTIAARFE I.claudius_F2_342_91_801982_peptide number 8 1235.3430000000003 0 ILNPSSNYKAE I.claudius_F2_342_91_801982_peptide number 9 316.39660000000003 0 KVA I.claudius_F2_343_277_802716_peptide number 1 1885.2774000000002 0 MPILRPLLGFTRTQLE I.claudius_F2_343_277_802716_peptide number 2 751.7846 0 NYAQKE I.claudius_F2_343_277_802716_peptide number 3 1018.1206 0 KLNWITDE I.claudius_F2_343_277_802716_peptide number 4 348.30920000000003 0 SNE I.claudius_F2_343_277_802716_peptide number 5 1611.6738 0 DNRYDRNFLRNE I.claudius_F2_343_277_802716_peptide number 6 470.5597 0 ILPE I.claudius_F2_343_277_802716_peptide number 7 416.47260000000006 0 LRE I.claudius_F2_343_277_802716_peptide number 8 2201.4254000000005 0 RWAHFDLAVQRSAQHCFE I.claudius_F2_343_277_802716_peptide number 9 1300.4146 0 QQQLINDLLSE I.claudius_F2_343_277_802716_peptide number 10 508.5647 0 IFTE I.claudius_F2_343_277_802716_peptide number 11 3797.4788999999996 0 HCQIKNQFKLCQFRQYSLAKQTALLRMWLAE I.claudius_F2_343_277_802716_peptide number 12 502.5187000000001 0 NQLE I.claudius_F2_343_277_802716_peptide number 13 2231.6138 0 MPSKRQLTQLINDVIFAKE I.claudius_F2_343_277_802716_peptide number 14 147.1293 0 E I.claudius_F2_343_277_802716_peptide number 15 4271.9348 0 ANPQFQLVNKVIRRYQDSLYLTKPFSDLTKCTLKLE I.claudius_F2_343_277_802716_peptide number 16 1884.0061000000003 0 QNTLNLPDDLGNLTVQE I.claudius_F2_343_277_802716_peptide number 17 261.2319 0 NE I.claudius_F2_343_277_802716_peptide number 18 1928.1033000000002 0 HNLIFYWQDYSVTLE I.claudius_F2_343_277_802716_peptide number 19 2972.4486000000006 0 KTNLPISIRFGYSGKVKHYPKRPRE I.claudius_F2_343_277_802716_peptide number 20 1059.2156 0 DIKKIWQE I.claudius_F2_343_277_802716_peptide number 21 796.9096000000002 0 LGVPPWE I.claudius_F2_343_277_802716_peptide number 22 1491.6924 0 RNRIPLIFYGNE I.claudius_F2_343_277_802716_peptide number 23 1538.8319 0 LKSAVGFFRVLKSS I.claudius_F2_344_63_806758_peptide number 1 3259.9612 0 MLTMKVIFKTSTKFNTLLLAYSGKIPLAE I.claudius_F2_344_63_806758_peptide number 2 867.9842000000001 0 YALLPYE I.claudius_F2_344_63_806758_peptide number 3 2271.4937 0 LNRLNVAQFHANQAVRYQE I.claudius_F2_344_63_806758_peptide number 4 759.8082999999999 0 KNTGNQV I.claudius_F2_345_53_809823_peptide number 1 278.32540000000006 0 ME I.claudius_F2_345_53_809823_peptide number 2 790.8190000000001 0 SNNKSIE I.claudius_F2_345_53_809823_peptide number 3 4506.9787 0 VSGSSVLLAKSDKNAQSKLSPSDKRFNTSLSIILSSSNHSPFA I.claudius_F2_346_195_811475_peptide number 1 365.4027 0 MSE I.claudius_F2_346_195_811475_peptide number 2 2468.7198000000003 0 IKLIVGLGNPGDKYTDTRHNAGE I.claudius_F2_346_195_811475_peptide number 3 559.6544 0 WLIE I.claudius_F2_346_195_811475_peptide number 4 1571.7821999999999 0 RLARRFNVSLNPE I.claudius_F2_346_195_811475_peptide number 5 1783.0366 0 SKFFGKTARTLVNGKE I.claudius_F2_346_195_811475_peptide number 6 3179.7755 0 VRLLVPTTFMNLSGKAVGALASFYRIKPE I.claudius_F2_346_195_811475_peptide number 7 147.1293 0 E I.claudius_F2_346_195_811475_peptide number 8 837.9599000000001 0 ILVIHDE I.claudius_F2_346_195_811475_peptide number 9 7191.996800000002 0 LDLPPGTAKLKQGGGHGGHNGLKDIVAQLGNNNNFYRLRIGIGHPGHRDLVAGYVLNKPSPADRDALE I.claudius_F2_346_195_811475_peptide number 10 602.6777000000001 0 KVLDE I.claudius_F2_346_195_811475_peptide number 11 636.6725 0 ATDCVE I.claudius_F2_346_195_811475_peptide number 12 2241.6782 0 MIFRDGMVKATNRLNSFKI I.claudius_F2_347_162_812714_peptide number 1 953.0705 0 MYIANVNE I.claudius_F2_347_162_812714_peptide number 2 466.44190000000003 0 DGFE I.claudius_F2_347_162_812714_peptide number 3 1275.3705 0 NNPYLDRVRE I.claudius_F2_347_162_812714_peptide number 4 530.615 0 IAAKE I.claudius_F2_347_162_812714_peptide number 5 1127.3544000000002 0 GAVVVPVCAAIE I.claudius_F2_347_162_812714_peptide number 6 234.2066 0 SE I.claudius_F2_347_162_812714_peptide number 7 331.36480000000006 0 IAE I.claudius_F2_347_162_812714_peptide number 8 490.46170000000006 0 LDDE I.claudius_F2_347_162_812714_peptide number 9 147.1293 0 E I.claudius_F2_347_162_812714_peptide number 10 374.43270000000007 0 KVE I.claudius_F2_347_162_812714_peptide number 11 934.0439 0 FLQDLGIE I.claudius_F2_347_162_812714_peptide number 12 2994.4027000000006 0 EPGLNRVIRAGYALLNLQTYFTAGVKE I.claudius_F2_347_162_812714_peptide number 13 2497.8026999999997 0 VRAWTVSVGATAPKAAAVIHTDFE I.claudius_F2_347_162_812714_peptide number 14 819.9480000000001 0 KGFIRAE I.claudius_F2_347_162_812714_peptide number 15 593.6692 0 VIAYE I.claudius_F2_347_162_812714_peptide number 16 969.0052 0 DFIQFNGE I.claudius_F2_347_162_812714_peptide number 17 517.5334 0 NGAKE I.claudius_F2_347_162_812714_peptide number 18 858.9840000000002 0 AGKWRLE I.claudius_F2_347_162_812714_peptide number 19 2140.3773 0 GKDYIVQDGDVMHFRFNV I.claudius_F2_348_70_815546_peptide number 1 4808.6802 0 MYYVDYSLPLSKDVLISQYKKVLNHVLLPRFVATVPKLLNE I.claudius_F2_348_70_815546_peptide number 2 1412.6936000000003 0 TILMDLISKHLE I.claudius_F2_348_70_815546_peptide number 3 1888.2513000000001 0 YLNTLFLNLALVIYAF I.claudius_F2_349_53_818174_peptide number 1 2743.3726000000006 0 MSPSKKSPIIVFIPIICWIIIGGTE I.claudius_F2_349_53_818174_peptide number 2 3139.6896999999994 0 CPNTVFIRLNNRISIISLFYFAFLCSS I.claudius_F2_350_137_821675_peptide number 1 1837.0591 0 MLDNGFSFPVRVYYE I.claudius_F2_350_137_821675_peptide number 2 2097.2449 0 DTDAGGVVYHARYLHFFE I.claudius_F2_350_137_821675_peptide number 3 631.6825 0 RARTE I.claudius_F2_350_137_821675_peptide number 4 1739.9653 0 YLRTLNFTQQTLLE I.claudius_F2_350_137_821675_peptide number 5 147.1293 0 E I.claudius_F2_350_137_821675_peptide number 6 3010.5662 0 QQLAFVVKTLAIDYCVAAKLDDLLMVE I.claudius_F2_350_137_821675_peptide number 7 248.23319999999998 0 TE I.claudius_F2_350_137_821675_peptide number 8 333.33770000000004 0 VSE I.claudius_F2_350_137_821675_peptide number 9 977.1549 0 VKGATILFE I.claudius_F2_350_137_821675_peptide number 10 3704.5418000000004 0 QRLMRNTLMLSKATVKVACVDLGKMKPVAFPKE I.claudius_F2_350_137_821675_peptide number 11 1050.2569 0 VKAAFHHLK I.claudius_F2_351_79_822552_peptide number 1 2473.9318000000007 0 MHAFMALSGAKQATLQMVAPGIAE I.claudius_F2_351_79_822552_peptide number 2 3143.7430999999997 0 ALIATAIGLFAAIPAVMAYNRLSLRVNAIE I.claudius_F2_351_79_822552_peptide number 3 1100.0919999999999 0 QDYGNFIDE I.claudius_F2_351_79_822552_peptide number 4 1723.9741999999999 0 FTTILHRQAFGKAPH I.claudius_F2_352_428_824455_peptide number 1 2749.2747 0 MKLLKRLVSVFAIVLAVGSNAFAGDE I.claudius_F2_352_428_824455_peptide number 2 842.9798000000001 0 VRIVIDE I.claudius_F2_352_428_824455_peptide number 3 1838.0688 0 GVDGARPIAVVPFVGSAPE I.claudius_F2_352_428_824455_peptide number 4 3556.9553 0 DISKIVADDLRNSGKFNPIAVSQMPQRPTSAAE I.claudius_F2_352_428_824455_peptide number 5 457.4782 0 VNPE I.claudius_F2_352_428_824455_peptide number 6 6788.475500000001 0 AWSNIGIDAIVIGQVVPSGNGYSITYQLIDTVGASGTPGTVLMQNSYTVTNKWLRYGAHTVSDE I.claudius_F2_352_428_824455_peptide number 7 393.4343 0 VFE I.claudius_F2_352_428_824455_peptide number 8 3024.4354000000008 0 KLTAIRGAFRTRIAYVVQKNGGSQPYE I.claudius_F2_352_428_824455_peptide number 9 4448.881299999999 0 VRVADYDGYNQFIVNRSAQPIMSPAWSPDGQRLAYVSFE I.claudius_F2_352_428_824455_peptide number 10 14416.632200000007 0 NKKSQLVVQDLNSGARKVVASFQGHNGAPAFSPDGSRLAFASSRDGVLNIYVMGANGGTPTQLTSGAGNNTEPAWSPDGNSILFTSDRSGSPQVYRMDASGGSATAVGGRGSAQISADGKTLVMINGNNNVVKQDLTTGVSE I.claudius_F2_352_428_824455_peptide number 11 952.0593 0 VLSTSFLGE I.claudius_F2_352_428_824455_peptide number 12 5696.488300000002 0 SPSLSPNGIMIIYSSTQGLGKVLQLVSADGRFKASLPGSDGQVKFPAWSPYLTK I.claudius_F2_353_74_827674_peptide number 1 860.0301 0 MIIAAVNE I.claudius_F2_353_74_827674_peptide number 2 1269.4736000000003 0 NIHVTKCLGRE I.claudius_F2_353_74_827674_peptide number 3 762.8321000000001 0 NCKNGVE I.claudius_F2_353_74_827674_peptide number 4 601.673 0 CLTHE I.claudius_F2_353_74_827674_peptide number 5 446.4968 0 LWE I.claudius_F2_353_74_827674_peptide number 6 844.9525000000001 0 DLSLRIE I.claudius_F2_353_74_827674_peptide number 7 608.6407 0 SFLNE I.claudius_F2_353_74_827674_peptide number 8 545.6263 0 ITLAE I.claudius_F2_353_74_827674_peptide number 9 2693.0324 0 LVNKRNVKRQSHRDFNNLLVNQ I.claudius_F2_354_255_828412_peptide number 1 714.7478000000001 0 MHANNE I.claudius_F2_354_255_828412_peptide number 2 1255.4602000000002 0 IGVLQDIKAIGE I.claudius_F2_354_255_828412_peptide number 3 2316.6356000000005 0 LCRANKTIFHVDATQSVGKVE I.claudius_F2_354_255_828412_peptide number 4 487.5471 0 INLE I.claudius_F2_354_255_828412_peptide number 5 147.1293 0 E I.claudius_F2_354_255_828412_peptide number 6 3728.438900000001 0 LAVDLMSMSSHKLYGPKGVGALYVRRKPRVRLE I.claudius_F2_354_255_828412_peptide number 7 889.9549 0 AIIHGGGHE I.claudius_F2_354_255_828412_peptide number 8 1925.2404000000001 0 RGMRSGTLPVHQIVGMGE I.claudius_F2_354_255_828412_peptide number 9 849.9740000000002 0 AYRIAKE I.claudius_F2_354_255_828412_peptide number 10 147.1293 0 E I.claudius_F2_354_255_828412_peptide number 11 436.4806 0 MASE I.claudius_F2_354_255_828412_peptide number 12 2301.7102 0 MPRLKALRDRLYNGLKDIE I.claudius_F2_354_255_828412_peptide number 13 147.1293 0 E I.claudius_F2_354_255_828412_peptide number 14 899.9649000000001 0 TYVNGSME I.claudius_F2_354_255_828412_peptide number 15 1820.9551999999999 0 HRLDSNLNISFNYVE I.claudius_F2_354_255_828412_peptide number 16 204.1806 0 GE I.claudius_F2_354_255_828412_peptide number 17 3729.2182000000003 0 SLMMALRDIAVSSGSACTSASLEPSYVLRALGLNDE I.claudius_F2_354_255_828412_peptide number 18 1852.0555 0 LAHSSIRFTLGRYTTE I.claudius_F2_354_255_828412_peptide number 19 147.1293 0 E I.claudius_F2_354_255_828412_peptide number 20 147.1293 0 E I.claudius_F2_354_255_828412_peptide number 21 1466.6980000000003 0 IDYTINLMKGAVE I.claudius_F2_354_255_828412_peptide number 22 1734.0701 0 KLRALSPLWDMFKE I.claudius_F2_354_255_828412_peptide number 23 873.9472999999999 0 GIDLNTIE I.claudius_F2_354_255_828412_peptide number 24 499.5197 0 WSAH I.claudius_F2_355_175_830009_peptide number 1 2215.4785 0 MFNPFQIFDLPVDFQLDE I.claudius_F2_355_175_830009_peptide number 2 4114.6866 0 KVLNARYLKLQKALHPDNFVSSNALDQRVAMQKSTE I.claudius_F2_355_175_830009_peptide number 3 1796.0734000000002 0 VNDALKTLKDPILRAE I.claudius_F2_355_175_830009_peptide number 4 901.0156999999999 0 AIIALNTGE I.claudius_F2_355_175_830009_peptide number 5 616.6611 0 QLDLE I.claudius_F2_355_175_830009_peptide number 6 2236.5060000000003 0 QKSTQDVAFLMQQLQWRE I.claudius_F2_355_175_830009_peptide number 7 388.41610000000003 0 QLE I.claudius_F2_355_175_830009_peptide number 8 147.1293 0 E I.claudius_F2_355_175_830009_peptide number 9 246.2604 0 VE I.claudius_F2_355_175_830009_peptide number 10 674.6608 0 RQQDE I.claudius_F2_355_175_830009_peptide number 11 1019.1551 0 RALNAFAKE I.claudius_F2_355_175_830009_peptide number 12 516.5884000000001 0 IKQE I.claudius_F2_355_175_830009_peptide number 13 1122.2682 0 TQSLLTALFE I.claudius_F2_355_175_830009_peptide number 14 3011.3736 0 SLKSQQWARASQYCDKLRFTHKLSE I.claudius_F2_355_175_830009_peptide number 15 147.1293 0 E I.claudius_F2_355_175_830009_peptide number 16 260.2869 0 IE I.claudius_F2_355_175_830009_peptide number 17 402.4461 0 RVE I.claudius_F2_355_175_830009_peptide number 18 147.1293 0 E I.claudius_F2_355_175_830009_peptide number 19 563.6465000000001 0 RIFE I.claudius_F2_355_175_830009_peptide number 20 246.2603 0 LD I.claudius_F2_356_620_831289_peptide number 1 4850.426900000001 0 MALLQIAEPGQAAAPHQHRLAVGIDLGTTNSLVASVRSGQSVILNDE I.claudius_F2_356_620_831289_peptide number 2 275.2585 0 QE I.claudius_F2_356_620_831289_peptide number 3 1441.6307000000002 0 RSLVPSVVHYGVE I.claudius_F2_356_620_831289_peptide number 4 147.1293 0 E I.claudius_F2_356_620_831289_peptide number 5 672.8139000000001 0 KKVGLE I.claudius_F2_356_620_831289_peptide number 6 365.38110000000006 0 AFE I.claudius_F2_356_620_831289_peptide number 7 3808.2568999999994 0 QASLDPKNTVISVKRLIGRSLSDVQSRYSSLPYE I.claudius_F2_356_620_831289_peptide number 8 551.5895 0 FVASE I.claudius_F2_356_620_831289_peptide number 9 1721.9913999999999 0 NGLPLIITAQGAKSPIE I.claudius_F2_356_620_831289_peptide number 10 1553.7156000000002 0 VSSDILSRLNHIAE I.claudius_F2_356_620_831289_peptide number 11 658.7044 0 QRLGGE I.claudius_F2_356_620_831289_peptide number 12 5461.058700000001 0 LSGVVITVPAYFDDAQRQSTKDAARLAGLNVLRLLNEPTAAALAYGLDSGQE I.claudius_F2_356_620_831289_peptide number 13 2755.168 0 GIIAVYDLGGGTFDISILRLSKGIFE I.claudius_F2_356_620_831289_peptide number 14 2600.7862999999998 0 VLATGGDTALGGDDFDHLIADWVIE I.claudius_F2_356_620_831289_peptide number 15 1669.8375 0 QTKLKPQTANQQRE I.claudius_F2_356_620_831289_peptide number 16 1642.8915000000002 0 LITLANQAKITLTNE I.claudius_F2_356_620_831289_peptide number 17 1495.6316 0 KSAVISWQDFSVE I.claudius_F2_356_620_831289_peptide number 18 503.5499 0 ISRE I.claudius_F2_356_620_831289_peptide number 19 536.535 0 QFNE I.claudius_F2_356_620_831289_peptide number 20 2672.1972000000005 0 LIYPLVKRSLLTCRRALKDANVE I.claudius_F2_356_620_831289_peptide number 21 234.2066 0 SE I.claudius_F2_356_620_831289_peptide number 22 147.1293 0 E I.claudius_F2_356_620_831289_peptide number 23 1947.2628 0 VQAVVMVGGSTRVPYVRE I.claudius_F2_356_620_831289_peptide number 24 431.44090000000006 0 QVGE I.claudius_F2_356_620_831289_peptide number 25 5111.8989999999985 0 FFGKTPLTSIDPDKVVALGAAIQADILVGNKTDSDMLLLDVVPLSLGIE I.claudius_F2_356_620_831289_peptide number 26 705.8206 0 TMGGLVE I.claudius_F2_356_620_831289_peptide number 27 1807.1027000000001 0 KIIPRNTTIPVARAQE I.claudius_F2_356_620_831289_peptide number 28 2110.3465000000006 0 FTTFKDGQTAMTVHVLQGE I.claudius_F2_356_620_831289_peptide number 29 303.31500000000005 0 RE I.claudius_F2_356_620_831289_peptide number 30 4688.3694000000005 0 LVDDCRSLGRFTLRGIPPMAAGAAHIRVTYQVDADGLLSVTAME I.claudius_F2_356_620_831289_peptide number 31 2193.4533 0 KSTKVQASIQIKPSYGLTDE I.claudius_F2_356_620_831289_peptide number 32 147.1293 0 E I.claudius_F2_356_620_831289_peptide number 33 1540.6938000000002 0 VTAMIKSSFDNAQE I.claudius_F2_356_620_831289_peptide number 34 730.7671 0 DLQARE I.claudius_F2_356_620_831289_peptide number 35 331.36480000000006 0 LAE I.claudius_F2_356_620_831289_peptide number 36 530.5753 0 QRVE I.claudius_F2_356_620_831289_peptide number 37 701.769 0 ADRVIE I.claudius_F2_356_620_831289_peptide number 38 1172.2856000000002 0 SVIVALQADGAE I.claudius_F2_356_620_831289_peptide number 39 676.7131 0 LLSTDE I.claudius_F2_356_620_831289_peptide number 40 681.7394 0 FHHIE I.claudius_F2_356_620_831289_peptide number 41 3344.7478 0 TVLKQLMDVKQGSDRDAIAQGIKALDTATQE I.claudius_F2_356_620_831289_peptide number 42 2520.8623000000002 0 FAARRMNASINKALTGKNLSDIE I.claudius_F2_356_620_831289_peptide number 43 229.2331 0 NP I.claudius_F2_357_55_835402_peptide number 1 3141.537099999999 0 MAARTQPAVPSGRKVNCSSLSQNVYISFE I.claudius_F2_357_55_835402_peptide number 2 2545.8008 0 TTSVTSPIARANNGVLSTIGIRTSE I.claudius_F2_358_71_836875_peptide number 1 1315.5386999999998 0 MRTLLGAPTINE I.claudius_F2_358_71_836875_peptide number 2 5475.383 0 NSLPLKVNISPCLYSFCANTWRALSFTLIQLLFVSISITKSPFAIGNVGE I.claudius_F2_358_71_836875_peptide number 3 820.9724 0 ILGFSTAL I.claudius_F2_359_244_839971_peptide number 1 924.0724 0 MTANVFLE I.claudius_F2_359_244_839971_peptide number 2 1614.8251 0 NNKNPNCRIAITKE I.claudius_F2_359_244_839971_peptide number 3 2400.7072 0 DTDRIKGTGTKLPKNIPISCNE I.claudius_F2_359_244_839971_peptide number 4 3841.470400000001 0 LLKAMLVHSDNYAAHALSRAAGISRRQFIKKMNE I.claudius_F2_359_244_839971_peptide number 5 8167.252200000004 0 KAHQLGMYSTRFHDSSGLSSYNISSPMDLVKLAKYSLNKSDIKRLSNLSATYIQAGKQKLYIKNTNKLVRDE I.claudius_F2_359_244_839971_peptide number 6 1568.7252999999998 0 IFDAAVNKTGYIQE I.claudius_F2_359_244_839971_peptide number 7 4449.998500000001 0 SGYNLVFINKHRCKNATIGVISLNNTSSAYRSSFTKSKLE I.claudius_F2_359_244_839971_peptide number 8 1908.1436 0 KFGCTALNGRTIRDVAGE I.claudius_F2_359_244_839971_peptide number 9 509.50970000000007 0 AQYE I.claudius_F2_359_244_839971_peptide number 10 597.5287000000001 0 DGYDE I.claudius_F2_359_244_839971_peptide number 11 1347.6019999999999 0 VGFNTLIQKLSK I.claudius_F2_360_169_841442_peptide number 1 1237.4218 0 MSPSNALIYIE I.claudius_F2_360_169_841442_peptide number 2 2050.2711999999997 0 NIKNALVKYDPQNAAVYE I.claudius_F2_360_169_841442_peptide number 3 2952.3644 0 KNAADYAQKIKQLDEPLRAKLAQIPE I.claudius_F2_360_169_841442_peptide number 4 1089.2019 0 AQRWLVTSE I.claudius_F2_360_169_841442_peptide number 5 1618.7839999999999 0 GAFSYLAKDYNLKE I.claudius_F2_360_169_841442_peptide number 6 1062.1747 0 GYLWPINAE I.claudius_F2_360_169_841442_peptide number 7 2993.4198 0 QQGTPQQVRKVIDLVRKNNIPVVFSE I.claudius_F2_360_169_841442_peptide number 8 1457.6283999999998 0 STISAKPAQQVAKE I.claudius_F2_360_169_841442_peptide number 9 4229.825400000001 0 SGAKYGGVLYVDSLSAKNGPVPTYIDLLNVTVSTIVKGFGK I.claudius_F2_361_93_842590_peptide number 1 1403.6472 0 MINRTVIAAGKTE I.claudius_F2_361_93_842590_peptide number 2 1117.1258 0 DTFNQHNLE I.claudius_F2_361_93_842590_peptide number 3 1651.0046000000002 0 IVFGGVLRHIKLLGE I.claudius_F2_361_93_842590_peptide number 4 740.7188000000001 0 NLHNDE I.claudius_F2_361_93_842590_peptide number 5 1377.4544 0 DKRSVTVLTDDE I.claudius_F2_361_93_842590_peptide number 6 912.0402000000001 0 KAVVFYGE I.claudius_F2_361_93_842590_peptide number 7 1813.9413 0 TKQDPPAPTTQNCHFE I.claudius_F2_361_93_842590_peptide number 8 1523.7129999999997 0 DCPYKSAVKNKRD I.claudius_F2_362_272_843713_peptide number 1 1567.8017000000002 0 MFDWLLEPLQFE I.claudius_F2_362_272_843713_peptide number 2 7633.210999999998 0 FMQNALLTALIVSIICALLSCYLVLKGWSLMGDAISHAVLPGIVLAYLAGIPLAIGAFFSGIFCSLGVGYLKE I.claudius_F2_362_272_843713_peptide number 3 745.8248000000001 0 NSRIKE I.claudius_F2_362_272_843713_peptide number 4 2708.2195 0 DTAMGIVFSGMFAIGLVMFTKIQTE I.claudius_F2_362_272_843713_peptide number 5 147.1293 0 E I.claudius_F2_362_272_843713_peptide number 6 1901.1293000000003 0 HLTHILFGNVLGVSHQE I.claudius_F2_362_272_843713_peptide number 7 14796.89910000002 0 LIQSAVISAIIFCLIVFKRKDFLLYCFDPSHARVAGLSPKILHYGLLILLALTIVSTMQVVGVILVVAMLIAPGITALTLTKSFDKMLWVAIASSIASSLIGVILSYHFDASTGACIILLQAAFFVIALAYSKIRIR I.claudius_F2_363_64_847505_peptide number 1 3678.267700000001 0 MRTFGSNRIFPCTMPCVSMPASSRKSVDFPTPE I.claudius_F2_363_64_847505_peptide number 2 3395.0166000000013 0 LPNKLTHSFGNRVKLRCSNNVCPLKARLKS I.claudius_F2_364_57_848106_peptide number 1 6017.5429 0 MSINQSINQSINQSINQSINQSINQSINQSINQSINQSINQSINQSLSLLQVME I.claudius_F2_364_57_848106_peptide number 2 245.2756 0 QV I.claudius_F2_365_104_848807_peptide number 1 278.32540000000006 0 ME I.claudius_F2_365_104_848807_peptide number 2 2764.1135 0 YDLNALYFLQKHYGVNIYCISPE I.claudius_F2_365_104_848807_peptide number 3 2392.7659999999996 0 SPLCNYFPLSPLNNPITFILE I.claudius_F2_365_104_848807_peptide number 4 147.1293 0 E I.claudius_F2_365_104_848807_peptide number 5 6900.168300000003 0 KKNYTQDILIPPKFVYKKIGIYSKPRIYQNLIFRLIWDILRLPNDIKHALKSRKWD I.claudius_F2_366_242_849582_peptide number 1 1401.6279000000002 0 MNNVAGTLVLIQE I.claudius_F2_366_242_849582_peptide number 2 3086.5579000000002 0 MKKAGVWNFVFSSSATVYGDPKIIPITE I.claudius_F2_366_242_849582_peptide number 3 365.3596 0 DCE I.claudius_F2_366_242_849582_peptide number 4 1703.8672000000001 0 VGGTTNPYGTSKYMVE I.claudius_F2_366_242_849582_peptide number 5 3233.6969999999997 0 QILRDTAKAEPKFSMTILRYFNPVGAHE I.claudius_F2_366_242_849582_peptide number 6 574.6244 0 SGLIGE I.claudius_F2_366_242_849582_peptide number 7 6539.240999999999 0 DPNGIPNNLLPYISQVAIGKLAQLSVFGSDYDTHDGTGVRDYIHVVDLAVGHLKALQRHE I.claudius_F2_366_242_849582_peptide number 8 2822.1116000000006 0 NDAGLHIYNLGTGHGYSVLDMVKAFE I.claudius_F2_366_242_849582_peptide number 9 1476.7160000000001 0 KANNITIAYKLVE I.claudius_F2_366_242_849582_peptide number 10 2040.2151999999996 0 RRSGDIATCYSDPSLAAKE I.claudius_F2_366_242_849582_peptide number 11 673.7571 0 LGWVAE I.claudius_F2_366_242_849582_peptide number 12 473.5239 0 RGLE I.claudius_F2_366_242_849582_peptide number 13 2440.7146 0 KMMQDTWNWQKNNPKGYRD I.claudius_F2_367_226_851049_peptide number 1 2269.5324 0 MQQTNQPFYQAFWIPLQE I.claudius_F2_367_226_851049_peptide number 2 5064.8936 0 FFQRKGVIQAIGFLLFLFLYKFGDSFATTLQTKFIYDMGFSKE I.claudius_F2_367_226_851049_peptide number 3 6822.1077000000005 0 DIAIVVKSTALWSSILSGLAGGMIMLKLGINRALWLFGLVQMVTIGGFIWLAAFGHFDVITSAE I.claudius_F2_367_226_851049_peptide number 4 1198.4536 0 LWKLGVVIAAE I.claudius_F2_367_226_851049_peptide number 5 1873.1790000000003 0 YIGVGLGTAAFVAFMARE I.claudius_F2_367_226_851049_peptide number 6 7082.346600000001 0 SNPLYTATQLALFTSLSALPSKVLGILSGYVVGAVGYYQYFWFCLFLAIPGMLCLFWVAPLKQE I.claudius_F2_367_226_851049_peptide number 7 748.7824 0 NNKTSSV I.claudius_F2_368_56_855677_peptide number 1 1110.2805999999998 0 MGASILNYLE I.claudius_F2_368_56_855677_peptide number 2 2156.4577999999997 0 MLDAILVHGVSLSPYANVQE I.claudius_F2_368_56_855677_peptide number 3 1793.0345 0 HDLLITINRIHYRE I.claudius_F2_368_56_855677_peptide number 4 1249.4161000000001 0 TQLVVHKAPQE I.claudius_F2_369_66_856459_peptide number 1 4054.8016000000002 0 MFGPACILLLHICHNTFISPSFIARSCAIVCNPTFSE I.claudius_F2_369_66_856459_peptide number 2 3042.5169000000005 0 TVPFGNFQIRSAISRCFGLVTTKSAGKR I.claudius_F2_370_731_860220_peptide number 1 6256.385100000001 0 MKIVRVALAVPLPRLFDYFVPDDVSLQIGMRVLVPFGTQKRVAIVADFPTKSDVPE I.claudius_F2_370_731_860220_peptide number 2 5883.750399999999 0 DKLKAILQPLDLAPLFTPIYWDWLHWAANYYQAGLGDVLFQALPVKLRNGE I.claudius_F2_370_731_860220_peptide number 3 2705.9783 0 SAVKNDRTFWRITDAGKNALKQGE I.claudius_F2_370_731_860220_peptide number 4 1087.2739 0 LKRSKKQAE I.claudius_F2_370_731_860220_peptide number 5 822.9022000000001 0 ALQYLSE I.claudius_F2_370_731_860220_peptide number 6 476.4782 0 TDLE I.claudius_F2_370_731_860220_peptide number 7 2283.5375 0 KGNNDFSSAIWSALKAKGFIE I.claudius_F2_370_731_860220_peptide number 8 147.1293 0 E I.claudius_F2_370_731_860220_peptide number 9 2606.8867000000005 0 ITIQTNPLSWQQRLGNNPIVNAE I.claudius_F2_370_731_860220_peptide number 10 4091.5833000000002 0 NRLTLNKQQALAFSQLLFHSGFNVWLLDGVTGSGKTE I.claudius_F2_370_731_860220_peptide number 11 941.0779000000001 0 IYLQYIE I.claudius_F2_370_731_860220_peptide number 12 147.1293 0 E I.claudius_F2_370_731_860220_peptide number 13 1522.8706 0 ILKSGKQVLVLVPE I.claudius_F2_370_731_860220_peptide number 14 2132.4646 0 IGLTPQTVQRFKVRFNVE I.claudius_F2_370_731_860220_peptide number 15 5463.0793 0 IDVLHSNLTDTQRLYVWDRARSGQSAIVIGTRSALFTQFSNLGAIILDE I.claudius_F2_370_731_860220_peptide number 16 147.1293 0 E I.claudius_F2_370_731_860220_peptide number 17 4530.040099999999 0 HDSSYKQQDSWRYHARDLAIVLAQKLNISVLMGSATPSLE I.claudius_F2_370_731_860220_peptide number 18 5271.945400000001 0 SINNVQNGKYQHLVLSKRAGNSTALRHFVIDLKNQNIQNGLSKPLLE I.claudius_F2_370_731_860220_peptide number 19 884.0582 0 RMKAHLE I.claudius_F2_370_731_860220_peptide number 20 2524.9832999999994 0 KGNQVLLFLNRRGFAPVLLCHE I.claudius_F2_370_731_860220_peptide number 21 1246.4384 0 CGWIAQCPHCE I.claudius_F2_370_731_860220_peptide number 22 4777.3249 0 KPYTYHQHQNVLRCHHCGAQKTIPRQCGDCGSTHLVTTGLGTE I.claudius_F2_370_731_860220_peptide number 23 388.41610000000003 0 QLE I.claudius_F2_370_731_860220_peptide number 24 147.1293 0 E I.claudius_F2_370_731_860220_peptide number 25 3019.4141000000004 0 TLKTLFPHYSVARIDRDSTSRKGKLE I.claudius_F2_370_731_860220_peptide number 26 480.51150000000007 0 GYLE I.claudius_F2_370_731_860220_peptide number 27 4923.603400000001 0 DIQQGKSQILIGTQMLAKGHHFPNVTLVALVNVDSALFSLDFRAE I.claudius_F2_370_731_860220_peptide number 28 147.1293 0 E I.claudius_F2_370_731_860220_peptide number 29 2300.5764000000004 0 RLAQLYIQVAGRAGRADKQGE I.claudius_F2_370_731_860220_peptide number 30 3040.4264 0 VVLQTHYPDHPLLTTLLANGYQAFAKE I.claudius_F2_370_731_860220_peptide number 31 3377.8718000000003 0 TLQLRHSMGLPPFTFQALIKAQARHSDLAE I.claudius_F2_370_731_860220_peptide number 32 6333.393900000004 0 NCLSQIADFFQSKQITGLQMLGPMPAPFSKKAGQYRWQLLLQHPSRMTLQKALRE I.claudius_F2_370_731_860220_peptide number 33 637.6389 0 YQQAE I.claudius_F2_370_731_860220_peptide number 34 260.2869 0 LE I.claudius_F2_370_731_860220_peptide number 35 1940.1589 0 KNSQVRLILDVDPQDLS I.claudius_F2_371_94_864627_peptide number 1 2360.6403 0 MRSTTVSTALFKSSNAITSKTE I.claudius_F2_371_94_864627_peptide number 2 147.1293 0 E I.claudius_F2_371_94_864627_peptide number 3 4970.0046999999995 0 IINIISIFVSPKKKVRGIKMQAKKHSWRKAVSFLNALFKPCNE I.claudius_F2_371_94_864627_peptide number 4 522.5913 0 YLVE I.claudius_F2_371_94_864627_peptide number 5 2703.2689000000005 0 LIKWVSPVVLYINFPIFINASLR I.claudius_F2_372_58_866620_peptide number 1 837.0166 0 MLCITQE I.claudius_F2_372_58_866620_peptide number 2 1437.4696 0 SNTFGKFNDHAAE I.claudius_F2_372_58_866620_peptide number 3 4192.8527 0 IVHHRQQHTANIIHLQSVSGMTGIKLANIIHLQHAFK I.claudius_F2_373_54_869186_peptide number 1 2841.2889999999998 0 MQNKTTLKFALHDYCPDKRSLVCE I.claudius_F2_373_54_869186_peptide number 2 3284.901099999999 0 THCVAKISPRFVFSVLKSSRSCHIQRILA I.claudius_F2_374_57_870129_peptide number 1 7656.9469 0 MRNLWLYRFFHRLNWHSCFWLFRLSWLHRRNRCRSHFIWHLTWRLNNILLHWRIFY I.claudius_F2_375_53_871965_peptide number 1 2224.4275 0 MDCSKSSSGKFKAFSNNLGSE I.claudius_F2_375_53_871965_peptide number 2 3615.2113999999992 0 MAFFRIVSQFCSSLMTGSWGKIRTFQTISHF I.claudius_F2_376_105_872388_peptide number 1 512.5799000000001 0 MHPE I.claudius_F2_376_105_872388_peptide number 2 395.4071 0 TFE I.claudius_F2_376_105_872388_peptide number 3 1324.3502 0 QYSADAKAVGDAE I.claudius_F2_376_105_872388_peptide number 4 3141.593100000001 0 KWLLDQADCIVTLWNGAPITVTPPNFVE I.claudius_F2_376_105_872388_peptide number 5 260.2869 0 LE I.claudius_F2_376_105_872388_peptide number 6 3710.190200000001 0 IVDTDPGLKGDTAGTGGKPATLSTGAVVKVPLFVQIGE I.claudius_F2_376_105_872388_peptide number 7 1131.2404 0 VIRVDTRSGE I.claudius_F2_376_105_872388_peptide number 8 750.8860999999999 0 YVSRVK I.claudius_F2_377_53_874888_peptide number 1 3998.8598 0 MVLVKPKSPINPAVSAAITSAIITLMRSKLSASKTMIE I.claudius_F2_377_53_874888_peptide number 2 1599.8237000000001 0 ITTGFDNIVFFLVN I.claudius_F2_378_589_878821_peptide number 1 7622.607200000001 0 MMRTHYCGALNRNNIGQDVTLSGWVHRRRDLGGLIFIDMRDRDGIVQVCFDPKYQDALTAAAGLRNE I.claudius_F2_378_589_878821_peptide number 2 937.1141000000001 0 FCIQIKGE I.claudius_F2_378_589_878821_peptide number 3 1871.0803000000003 0 VIARPDNQINKNMATGE I.claudius_F2_378_589_878821_peptide number 4 246.2604 0 VE I.claudius_F2_378_589_878821_peptide number 5 558.6682000000001 0 VLAKE I.claudius_F2_378_589_878821_peptide number 6 2336.5124000000005 0 LRIYNASDVLPLDFNQNNTE I.claudius_F2_378_589_878821_peptide number 7 147.1293 0 E I.claudius_F2_378_589_878821_peptide number 8 1906.1956000000002 0 QRLKYRYLDLRRPE I.claudius_F2_378_589_878821_peptide number 9 3359.8782999999994 0 MAQRLKTRAKITSFVRRFMDDNGFLDIE I.claudius_F2_378_589_878821_peptide number 10 1088.2752999999998 0 TPMLTKATPE I.claudius_F2_378_589_878821_peptide number 11 5728.629600000001 0 GARDYLVPSRVHKGKFYALPQSPQLFKQLLMMSGFDRYYQIVKCFRDE I.claudius_F2_378_589_878821_peptide number 12 1099.1553999999999 0 DLRADRQPE I.claudius_F2_378_589_878821_peptide number 13 850.9124000000002 0 FTQIDVE I.claudius_F2_378_589_878821_peptide number 14 864.939 0 TSFLTAPE I.claudius_F2_378_589_878821_peptide number 15 402.4461 0 VRE I.claudius_F2_378_589_878821_peptide number 16 391.48300000000006 0 IME I.claudius_F2_378_589_878821_peptide number 17 2929.4171 0 RMVHGLWLDTIGVDLGKFPVMTWQE I.claudius_F2_378_589_878821_peptide number 18 2002.2581999999998 0 AMRRFGSDKPDLRNPLE I.claudius_F2_378_589_878821_peptide number 19 1332.5198 0 MVDVADIVKDVE I.claudius_F2_378_589_878821_peptide number 20 2710.0117000000005 0 FKVFNEPANNPNGRVAVIRVPNGAE I.claudius_F2_378_589_878821_peptide number 21 1002.123 0 ITRKQIDE I.claudius_F2_378_589_878821_peptide number 22 2799.1394 0 YTQFVGIYGAKGLAWAKVNDINAGLE I.claudius_F2_378_589_878821_peptide number 23 1302.4753 0 GVQSPIAKFLNE I.claudius_F2_378_589_878821_peptide number 24 917.0168 0 DVWKGLAE I.claudius_F2_378_589_878821_peptide number 25 4665.2480000000005 0 RVNAQTGDILFFGADKWQTTTDAMGALRLKLGRDLGLTRLDE I.claudius_F2_378_589_878821_peptide number 26 1707.9863000000003 0 WQPLWVIDFPMFE I.claudius_F2_378_589_878821_peptide number 27 418.40240000000006 0 RDE I.claudius_F2_378_589_878821_peptide number 28 147.1293 0 E I.claudius_F2_378_589_878821_peptide number 29 2083.2828999999997 0 GNLAAMHHPFTSPKDFSPE I.claudius_F2_378_589_878821_peptide number 30 388.41610000000003 0 QLE I.claudius_F2_378_589_878821_peptide number 31 2001.1311000000003 0 ADPTSAVANAYDMVINGYE I.claudius_F2_378_589_878821_peptide number 32 2763.1754000000005 0 VGGGSVRIFDPKMQQTVFRILGIDE I.claudius_F2_378_589_878821_peptide number 33 147.1293 0 E I.claudius_F2_378_589_878821_peptide number 34 559.5734 0 QQRE I.claudius_F2_378_589_878821_peptide number 35 3649.2624000000005 0 KFGFLLDALKFGTPPHAGLAFGLDRLTMLLTGTE I.claudius_F2_378_589_878821_peptide number 36 2165.5326000000005 0 NIRDVIAFPKTTAAACLMTE I.claudius_F2_378_589_878821_peptide number 37 1144.234 0 APSFANPQALE I.claudius_F2_378_589_878821_peptide number 38 147.1293 0 E I.claudius_F2_378_589_878821_peptide number 39 929.1121 0 LAISVVKAE I.claudius_F2_379_67_882404_peptide number 1 4748.4443999999985 0 MVTRILKLSDKPQADAADALAIAITHAHSIQHSLHIANSVKMTE I.claudius_F2_379_67_882404_peptide number 2 376.3624 0 TQE I.claudius_F2_379_67_882404_peptide number 3 2338.863 0 KMTALLKTRYSRGRFRLKI I.claudius_F2_380_237_883586_peptide number 1 1786.0106 0 MLTNLEPHDVLFIDE I.claudius_F2_380_237_883586_peptide number 2 1035.1975 0 IHRLSPAIE I.claudius_F2_380_237_883586_peptide number 3 147.1293 0 E I.claudius_F2_380_237_883586_peptide number 4 821.9805 0 VLYPAME I.claudius_F2_380_237_883586_peptide number 5 1196.3268 0 DYQLDIMIGE I.claudius_F2_380_237_883586_peptide number 6 4379.03 0 GPAARSIKLDLPPFTLVGATTRAGSLTSPLRDRFGIVQRLE I.claudius_F2_380_237_883586_peptide number 7 643.6849000000001 0 FYSVE I.claudius_F2_380_237_883586_peptide number 8 1661.875 0 DLTSIVARSAGCLNLE I.claudius_F2_380_237_883586_peptide number 9 260.2869 0 LE I.claudius_F2_380_237_883586_peptide number 10 692.7174 0 QQAAFE I.claudius_F2_380_237_883586_peptide number 11 7071.052900000005 0 VARRSRGTPRIANRLLRRVRDYADVRNGGIISINVAKQALSMLDVDDAGFDYLDRKLLSAVIE I.claudius_F2_380_237_883586_peptide number 12 1771.9243 0 RFDGGPVGLDNLAAAIGE I.claudius_F2_380_237_883586_peptide number 13 147.1293 0 E I.claudius_F2_380_237_883586_peptide number 14 632.6639 0 RDTIE I.claudius_F2_380_237_883586_peptide number 15 4333.8616999999995 0 DVLEPYLIQQGFLQRTPRGRIATSQTYRHFGLQKLSD I.claudius_F2_381_95_888984_peptide number 1 7721.139600000006 0 MTTSGFHSFKHFSIASQFGMPSCALKAGKACAVPVILCPMAQPILLVPKSKARAVIPINYAPLALTQNYKDE I.claudius_F2_381_95_888984_peptide number 2 2847.1061000000004 0 YQVTDWLQHNDLHRAYQIKFDR I.claudius_F2_382_60_889952_peptide number 1 2016.2400000000002 0 MHHHFLHTNLVISSVDE I.claudius_F2_382_60_889952_peptide number 2 4887.6623 0 SLAQYYDRIAHKLQSQFFAIVGFFYPSALRQVLRHSVLTIMA I.claudius_F2_383_132_894308_peptide number 1 3106.7164000000002 0 MIVIAIIAILATIAIPSYQNYTKKAAVSE I.claudius_F2_383_132_894308_peptide number 2 1404.5640000000003 0 LLQASAPYKADVE I.claudius_F2_383_132_894308_peptide number 3 928.018 0 LCVYSTNE I.claudius_F2_383_132_894308_peptide number 4 4286.7956 0 TTSCTGGKNGIAADIKTAKGYVASVITQSGGITVKGNGTLANME I.claudius_F2_383_132_894308_peptide number 5 3794.2716000000014 0 YILQAKGNAAAGVTWTTTCKGTDASLFPANFCGSVTK I.claudius_F2_384_135_895690_peptide number 1 448.53430000000003 0 MLGE I.claudius_F2_384_135_895690_peptide number 2 531.5600000000001 0 IRDE I.claudius_F2_384_135_895690_peptide number 3 147.1293 0 E I.claudius_F2_384_135_895690_peptide number 4 4320.882699999999 0 SAMIALRAAQTGHLVLSTLHTNDAISAISRLQQLGIQQYE I.claudius_F2_384_135_895690_peptide number 5 7442.464300000002 0 IKNSLLLVIAQRLVRKLCSKCGGNLANSCDCHQGYRGRIGVYQFLHWQQNDYQTDFKNLRASGLE I.claudius_F2_384_135_895690_peptide number 6 976.0394 0 KVSQGITDE I.claudius_F2_384_135_895690_peptide number 7 275.3016 0 KE I.claudius_F2_384_135_895690_peptide number 8 260.2869 0 IE I.claudius_F2_384_135_895690_peptide number 9 798.9735000000001 0 RVLGKNL I.claudius_F2_385_246_896574_peptide number 1 3106.8636 0 MLYPSMVLGISLLLTLALLLFIVPQFAE I.claudius_F2_385_246_896574_peptide number 2 884.9104 0 MYSGNNAE I.claudius_F2_385_246_896574_peptide number 3 13125.371200000005 0 LPTITAILLSISNFLKQNIGILLFFVLSFFLFYYFYLKRQTWFYQKKNQLISITPIFGTIQKLSRLVNFSQSLQIMLQAGVPLNQALDSFLPRTQTWQTKKTLVNDIVLDKE I.claudius_F2_385_246_896574_peptide number 4 2948.2648000000004 0 VRSILQWVSQGYAFSNSVSSDLFPME I.claudius_F2_385_246_896574_peptide number 5 1017.1574 0 AQQMLQIGE I.claudius_F2_385_246_896574_peptide number 6 1089.3062 0 QSGKLALMLE I.claudius_F2_385_246_896574_peptide number 7 468.5041 0 HIAE I.claudius_F2_385_246_896574_peptide number 8 552.5344 0 NYQE I.claudius_F2_385_246_896574_peptide number 9 4948.1347000000005 0 KLNHQIDLLSQMLEPLMMVIIGSLIGIIMMGMYLPIFNMGSVIQ I.claudius_F2_386_85_898241_peptide number 1 1431.6605 0 MAGNTRLSAILRE I.claudius_F2_386_85_898241_peptide number 2 6887.036100000002 0 RCNSILPVPLNSSKITSSIFEPVSTSAVAIIVKLPPSSTLRAAPKKRFGRCNALASTPPDKILPE I.claudius_F2_386_85_898241_peptide number 3 558.6682000000001 0 AGVTVL I.claudius_F2_387_69_898757_peptide number 1 4811.7388 0 MVLPAFGGATIKPRWPLPIGDAKSKIRAVKSSVEPLPRSILKRE I.claudius_F2_387_69_898757_peptide number 2 1805.1496 0 LACNGVKFSNKILLRE I.claudius_F2_387_69_898757_peptide number 3 764.8214999999999 0 TSGLSSLT I.claudius_F2_388_106_899563_peptide number 1 1644.8013999999998 0 MANWDGKYISPYAE I.claudius_F2_388_106_899563_peptide number 2 684.7418 0 HGKKSE I.claudius_F2_388_106_899563_peptide number 3 1695.0955000000001 0 QVKKITVSIPIKVLE I.claudius_F2_388_106_899563_peptide number 4 588.6510000000001 0 ILTNE I.claudius_F2_388_106_899563_peptide number 5 1953.171 0 RTRRQLKSLRHATNSE I.claudius_F2_388_106_899563_peptide number 6 476.5874 0 LLCE I.claudius_F2_388_106_899563_peptide number 7 2202.4848000000006 0 AFLHAFTGQPLPTDADLMKE I.claudius_F2_388_106_899563_peptide number 8 532.505 0 RNDE I.claudius_F2_388_106_899563_peptide number 9 357.4021 0 IPE I.claudius_F2_388_106_899563_peptide number 10 961.1374000000001 0 DAKVLMRE I.claudius_F2_388_106_899563_peptide number 11 628.6719 0 LGVDPE I.claudius_F2_388_106_899563_peptide number 12 420.41650000000004 0 SWE I.claudius_F2_388_106_899563_peptide number 13 181.1886 0 Y I.claudius_F2_389_69_900357_peptide number 1 2834.4454000000005 0 MKTITLNIKGIHCGCCVKSLTQVLTE I.claudius_F2_389_69_900357_peptide number 2 1273.3464 0 LDGVQSADVQLE I.claudius_F2_389_69_900357_peptide number 3 994.0562000000001 0 GKANITFDE I.claudius_F2_389_69_900357_peptide number 4 1155.3047 0 NRVNVAQLIE I.claudius_F2_389_69_900357_peptide number 5 359.418 0 VIE I.claudius_F2_389_69_900357_peptide number 6 824.789 0 DAGFDATE I.claudius_F2_390_706_900870_peptide number 1 1255.4454 0 MTCQSCANRIE I.claudius_F2_390_706_900870_peptide number 2 2088.4087000000004 0 KVLNKKPFVQQAGVNFAAE I.claudius_F2_390_706_900870_peptide number 3 147.1293 0 E I.claudius_F2_390_706_900870_peptide number 4 1265.3260999999998 0 AQVVFDATQASE I.claudius_F2_390_706_900870_peptide number 5 572.6516 0 AQIIE I.claudius_F2_390_706_900870_peptide number 6 1794.0193 0 IIHKTGFSAHIKQANE I.claudius_F2_390_706_900870_peptide number 7 470.5597 0 LPIE I.claudius_F2_390_706_900870_peptide number 8 147.1293 0 E I.claudius_F2_390_706_900870_peptide number 9 11469.556800000006 0 NTSIPWRLIVLWIINIPFLIGMLGMIGGSHNLMLPPIWQFALASIVQLWLAIPFYRGAIGSIRGGLTNMDVLVSTGTLTIYLYSAFMLFYHANHAMGHVYFE I.claudius_F2_390_706_900870_peptide number 10 1697.0466999999999 0 ASVMVIGFVSLGKFLE I.claudius_F2_390_706_900870_peptide number 11 3250.813700000001 0 DRTKKHSLNSLSMLLQLTPKKVTVLRNE I.claudius_F2_390_706_900870_peptide number 12 574.6691000000001 0 KWIE I.claudius_F2_390_706_900870_peptide number 13 1071.1816 0 IALDQVNIGE I.claudius_F2_390_706_900870_peptide number 14 899.9911999999999 0 IIRANQGE I.claudius_F2_390_706_900870_peptide number 15 943.0558000000001 0 RIAADGVIE I.claudius_F2_390_706_900870_peptide number 16 866.8520000000001 0 SGNGWCDE I.claudius_F2_390_706_900870_peptide number 17 642.6587000000001 0 SHLTGE I.claudius_F2_390_706_900870_peptide number 18 487.50750000000005 0 SRPE I.claudius_F2_390_706_900870_peptide number 19 147.1293 0 E I.claudius_F2_390_706_900870_peptide number 20 1516.8049000000005 0 KQKGGKVLAGAMVTE I.claudius_F2_390_706_900870_peptide number 21 11723.7013 0 GSIIYRANQLGSQTLLGDMMNALSDAQGSKAPIARFADKVTSVFVPVVLVISLVTFALTYILTNDSVSSLIHAVSVLVIACPCALGLATPAAIMVGLGKAVNAGVWFKDAAAME I.claudius_F2_390_706_900870_peptide number 22 147.1293 0 E I.claudius_F2_390_706_900870_peptide number 23 1985.1965000000005 0 TAHVDTVVLDKTGTLTKGE I.claudius_F2_390_706_900870_peptide number 24 260.2869 0 LE I.claudius_F2_390_706_900870_peptide number 25 1578.7201 0 ISALWQPQSAVYSE I.claudius_F2_390_706_900870_peptide number 26 1269.3594 0 DDLYRFAAAVE I.claudius_F2_390_706_900870_peptide number 27 1716.9386000000002 0 RQANHPIAKAIVQAAE I.claudius_F2_390_706_900870_peptide number 28 519.6553 0 -KMLE I.claudius_F2_390_706_900870_peptide number 29 1136.3611 0 IPTALFSKME I.claudius_F2_390_706_900870_peptide number 30 800.8569 0 VGQGIQAE I.claudius_F2_390_706_900870_peptide number 31 260.2869 0 LE I.claudius_F2_390_706_900870_peptide number 32 2385.82 0 QVGTIKVGKPDYCGLILPKNLE I.claudius_F2_390_706_900870_peptide number 33 8692.820700000002 0 DIWQIASIVAVSINDEPIGAFALTDTLKNDSLHAIQRLQQQNIDVVIMSGDQQSVVDYIAKQLGIKKAFGKLTPRDKAE I.claudius_F2_390_706_900870_peptide number 34 4313.862200000001 0 QIQKLKDLGHIVAMVGDGINDAPALASANVSFAMKSSSDIAE I.claudius_F2_390_706_900870_peptide number 35 8662.329600000005 0 QTASATLMQHSVNQLVDALFIARATLKNIKQNLFFALIYNILGIPLAAFGFLSPIIAGAAMALSSISVLMNALRLKKVRF I.claudius_F2_391_190_905281_peptide number 1 894.0464 0 MFALAVNE I.claudius_F2_391_190_905281_peptide number 2 147.1293 0 E I.claudius_F2_391_190_905281_peptide number 3 2648.9865999999997 0 NAAGGRVVTAPTNGACGIIPAVLAYYE I.claudius_F2_391_190_905281_peptide number 4 1031.2023 0 KFISPLTPE I.claudius_F2_391_190_905281_peptide number 5 373.44450000000006 0 IIE I.claudius_F2_391_190_905281_peptide number 6 2416.8141 0 RYLLAAGMIGSLYKMNASISGAE I.claudius_F2_391_190_905281_peptide number 7 591.6351 0 VGCQGE I.claudius_F2_391_190_905281_peptide number 8 1249.4575 0 VGVACSMAAAGLAE I.claudius_F2_391_190_905281_peptide number 9 1397.6391 0 ILGGNPLQVCIAAE I.claudius_F2_391_190_905281_peptide number 10 462.56090000000006 0 IAME I.claudius_F2_391_190_905281_peptide number 11 2079.3571 0 HNLGLTCDPVGGQVQVPCIE I.claudius_F2_391_190_905281_peptide number 12 3566.1460000000006 0 RNAIASVKAINASRMALRRTTNPRVTLDKVIE I.claudius_F2_391_190_905281_peptide number 13 542.6026 0 TMYE I.claudius_F2_391_190_905281_peptide number 14 1312.4521 0 TGKDMNAKYRE I.claudius_F2_391_190_905281_peptide number 15 1289.5013999999999 0 TSQGGLAVKIVCN I.claudius_F2_392_320_909015_peptide number 1 490.6141 0 MLVE I.claudius_F2_392_320_909015_peptide number 2 1725.8958 0 QDNKGTLVSFFVKNE I.claudius_F2_392_320_909015_peptide number 3 1574.6901 0 QSANDTLAHLKTFE I.claudius_F2_392_320_909015_peptide number 4 1846.1320000000003 0 NLTALSALPKQIPLHTE I.claudius_F2_392_320_909015_peptide number 5 601.6531 0 LRANE I.claudius_F2_392_320_909015_peptide number 6 1619.7985 0 RTWCDWVNQALVE I.claudius_F2_392_320_909015_peptide number 7 532.5878 0 IKSGE I.claudius_F2_392_320_909015_peptide number 8 1000.1899000000001 0 LTKIVLANE I.claudius_F2_392_320_909015_peptide number 9 1982.1954999999998 0 TTFHLKQAINAYDFLAE I.claudius_F2_392_320_909015_peptide number 10 234.2066 0 SE I.claudius_F2_392_320_909015_peptide number 11 1623.7887 0 KQNQGCYHFLWAE I.claudius_F2_392_320_909015_peptide number 12 1260.3096 0 NSHSVFVGSTPE I.claudius_F2_392_320_909015_peptide number 13 790.9101 0 RLFARE I.claudius_F2_392_320_909015_peptide number 14 864.9819 0 YNLLLTE I.claudius_F2_392_320_909015_peptide number 15 904.9615 0 ALAGTASVSE I.claudius_F2_392_320_909015_peptide number 16 234.2066 0 SE I.claudius_F2_392_320_909015_peptide number 17 147.1293 0 E I.claudius_F2_392_320_909015_peptide number 18 147.1293 0 E I.claudius_F2_392_320_909015_peptide number 19 1418.4645 0 TQSQANWLLNDE I.claudius_F2_392_320_909015_peptide number 20 630.7341 0 KNLKE I.claudius_F2_392_320_909015_peptide number 21 758.8616000000002 0 NWLVVE I.claudius_F2_392_320_909015_peptide number 22 1329.4593000000002 0 DISQNLRKQVE I.claudius_F2_392_320_909015_peptide number 23 895.9100000000001 0 SFDVSNVE I.claudius_F2_392_320_909015_peptide number 24 5695.7337000000025 0 LKPLRKVQHLIRKIRANLTAHYADVNILKAIHPTAAVSGLPQQQAKMILSE I.claudius_F2_392_320_909015_peptide number 25 260.2869 0 IE I.claudius_F2_392_320_909015_peptide number 26 2194.3999 0 TFDRGWYAGTLGVMSDVCSE I.claudius_F2_392_320_909015_peptide number 27 1255.4851 0 FCVAIRSAFIE I.claudius_F2_392_320_909015_peptide number 28 2035.3095 0 GHRIRVFAGAGIVAGSQPLE I.claudius_F2_392_320_909015_peptide number 29 147.1293 0 E I.claudius_F2_392_320_909015_peptide number 30 461.51150000000007 0 WKE I.claudius_F2_392_320_909015_peptide number 31 260.2869 0 IE I.claudius_F2_392_320_909015_peptide number 32 1275.4963 0 RKAAGLISLFAE I.claudius_F2_392_320_909015_peptide number 33 147.1293 0 E I.claudius_F2_392_320_909015_peptide number 34 146.1876 0 K I.claudius_F2_393_52_911422_peptide number 1 5949.319000000004 0 MVARFLICYLWMNKSKISSIDYRIMAIFLKSRQCSILNTLILILGQISILL I.claudius_F2_394_248_911757_peptide number 1 2583.055700000001 0 MINIIFLHGLLGTKNDWQKVIE I.claudius_F2_394_248_911757_peptide number 2 2492.8056 0 NLPHFNCIALDLPFHGQAKDLE I.claudius_F2_394_248_911757_peptide number 3 608.6408 0 VTNFE I.claudius_F2_394_248_911757_peptide number 4 420.3719 0 DSAE I.claudius_F2_394_248_911757_peptide number 5 4107.706899999999 0 YLAQQIKSAVKNGPYFLVGYSLGGRIALYYALQAQLE I.claudius_F2_394_248_911757_peptide number 6 1128.2793 0 RSNLQGVILE I.claudius_F2_394_248_911757_peptide number 7 1017.0912000000001 0 GANLGLKTDE I.claudius_F2_394_248_911757_peptide number 8 147.1293 0 E I.claudius_F2_394_248_911757_peptide number 9 2315.5678 0 KQARFQQDFAWAQRFMQE I.claudius_F2_394_248_911757_peptide number 10 331.32180000000005 0 SPE I.claudius_F2_394_248_911757_peptide number 11 2205.4241 0 KVLNDWYQQPVFSHLTTE I.claudius_F2_394_248_911757_peptide number 12 147.1293 0 E I.claudius_F2_394_248_911757_peptide number 13 756.8905 0 RLQLVE I.claudius_F2_394_248_911757_peptide number 14 2981.4504 0 KRKSNCGKNIGKMLLATSLSKQPDFSE I.claudius_F2_394_248_911757_peptide number 15 1793.0926000000002 0 KVRLSSLPFFYFCGE I.claudius_F2_394_248_911757_peptide number 16 1370.556 0 RDHKFQVLAKE I.claudius_F2_394_248_911757_peptide number 17 1961.1597 0 NQIDLVTIPCAGHNSHLE I.claudius_F2_394_248_911757_peptide number 18 1243.4082 0 NSKYFSKKIE I.claudius_F2_394_248_911757_peptide number 19 1055.3379 0 NCILKIVRP I.claudius_F2_395_201_913270_peptide number 1 3823.5000999999993 0 MVIGTFIMVATYSLFYIMTAFAQAYSRTAPKLSE I.claudius_F2_395_201_913270_peptide number 2 6841.1936 0 AGYALGLGIPANTFTGLLLISAIVFGIFISISGFYADKIGRRKWLIWVTIAIGVLGLAMPLFLE I.claudius_F2_395_201_913270_peptide number 3 3183.866800000001 0 NGTPVSVFAFLVIGMAIMGMTFGPMAALLPE I.claudius_F2_395_201_913270_peptide number 4 605.6799000000001 0 LFPTE I.claudius_F2_395_201_913270_peptide number 5 5865.9657000000025 0 VRYSGASLAYNLASIIGATIAAMISLKINASFGVMGVGIYLAINALMTFLALLASKE I.claudius_F2_395_201_913270_peptide number 6 918.9881 0 TKNVDLTE I.claudius_F2_395_201_913270_peptide number 7 131.1729 0 I I.claudius_F2_396_99_915091_peptide number 1 1541.8971000000004 0 MNAKILVIKVGQVE I.claudius_F2_396_99_915091_peptide number 2 1247.2644 0 TLTFSDGSQYE I.claudius_F2_396_99_915091_peptide number 3 2019.3915000000002 0 SAIRKKVVPSVKIHSLGAE I.claudius_F2_396_99_915091_peptide number 4 2921.203000000001 0 GNDVGLKKHHGGVDKALFFMSADSFNE I.claudius_F2_396_99_915091_peptide number 5 3306.8601000000003 0 LNALLNKDFSLYGYCDIRRKFCRVRLE I.claudius_F2_397_162_915757_peptide number 1 365.4027 0 MSE I.claudius_F2_397_162_915757_peptide number 2 832.9385000000001 0 ISTALSLE I.claudius_F2_397_162_915757_peptide number 3 2879.1959999999995 0 NCPCQSSHHYADCCGKFHLRQAFPE I.claudius_F2_397_162_915757_peptide number 4 319.3111 0 TAE I.claudius_F2_397_162_915757_peptide number 5 4362.1453 0 QLMRSRYTAYVLKNIPYIVVTTVPSQQTLLKPRLLQE I.claudius_F2_397_162_915757_peptide number 6 1305.3913 0 WADNTTWLGLE I.claudius_F2_397_162_915757_peptide number 7 602.7207000000001 0 ILKTE I.claudius_F2_397_162_915757_peptide number 8 1063.1598000000001 0 SLTKTQSAVE I.claudius_F2_397_162_915757_peptide number 9 939.0654 0 FKAIFQGE I.claudius_F2_397_162_915757_peptide number 10 147.1293 0 E I.claudius_F2_397_162_915757_peptide number 11 250.2722 0 CE I.claudius_F2_397_162_915757_peptide number 12 611.6049 0 QAHQE I.claudius_F2_397_162_915757_peptide number 13 991.1848 0 RSIFVKIE I.claudius_F2_397_162_915757_peptide number 14 3936.6277999999998 0 DRWYFVDPTVSLPTMKQPCVCGSGKKFKHCCGGFL I.claudius_F2_398_59_918423_peptide number 1 805.8982000000001 0 MHLYNE I.claudius_F2_398_59_918423_peptide number 2 1445.6207 0 LRFPNFANLPQE I.claudius_F2_398_59_918423_peptide number 3 1530.7916 0 RNLKLTKVVCNNE I.claudius_F2_398_59_918423_peptide number 4 578.6147000000001 0 FLNGE I.claudius_F2_398_59_918423_peptide number 5 2474.9645000000005 0 ITSVPQKAQMKNLKHVAIGWKP I.claudius_F2_399_481_919473_peptide number 1 5375.0439000000015 0 MKLDAPFNLDPNVKVRTRFAPSPTGYLHVGGARTALYSWLYAKHNNGE I.claudius_F2_399_481_919473_peptide number 2 775.9352000000001 0 FVLRIE I.claudius_F2_399_481_919473_peptide number 3 591.5656 0 DTDLE I.claudius_F2_399_481_919473_peptide number 4 588.6114 0 RSTPE I.claudius_F2_399_481_919473_peptide number 5 687.7821000000001 0 ATAAIIE I.claudius_F2_399_481_919473_peptide number 6 335.3767 0 GME I.claudius_F2_399_481_919473_peptide number 7 957.0821000000001 0 WLNLPWE I.claudius_F2_399_481_919473_peptide number 8 2429.601 0 HGPYYQTKRFDRYNQVIDE I.claudius_F2_399_481_919473_peptide number 9 391.48300000000006 0 MIE I.claudius_F2_399_481_919473_peptide number 10 1434.6396 0 QGLAYRCYCTKE I.claudius_F2_399_481_919473_peptide number 11 397.4262 0 HLE I.claudius_F2_399_481_919473_peptide number 12 147.1293 0 E I.claudius_F2_399_481_919473_peptide number 13 782.845 0 LRHTQE I.claudius_F2_399_481_919473_peptide number 14 517.5334 0 QNKE I.claudius_F2_399_481_919473_peptide number 15 3561.860800000001 0 KPRYDRHCLHDHNHSPDEPHVVRFKNPTE I.claudius_F2_399_481_919473_peptide number 16 1519.6581 0 GSVVFDDAVRGRIE I.claudius_F2_399_481_919473_peptide number 17 548.5441 0 ISNSE I.claudius_F2_399_481_919473_peptide number 18 4008.4504 0 LDDLIIRRTDGSPTYNFCVVVDDWDMGITHVVRGE I.claudius_F2_399_481_919473_peptide number 19 6317.048600000001 0 DHINNTPRQINILKAIGAPIPTYAHVSMINGDDGQKLSKRHGAVSVMQYRDDGYLPE I.claudius_F2_399_481_919473_peptide number 20 1941.1500000000003 0 ALINYLVRLGWGHGDQE I.claudius_F2_399_481_919473_peptide number 21 650.7238 0 IFSRE I.claudius_F2_399_481_919473_peptide number 22 147.1293 0 E I.claudius_F2_399_481_919473_peptide number 23 815.9328 0 MINYFE I.claudius_F2_399_481_919473_peptide number 24 1505.5851000000002 0 LDHVSKSASAFNTE I.claudius_F2_399_481_919473_peptide number 25 1627.8436 0 KLQWLNQHYIRE I.claudius_F2_399_481_919473_peptide number 26 454.5173000000001 0 LPPE I.claudius_F2_399_481_919473_peptide number 27 858.9808 0 YVAKHLE I.claudius_F2_399_481_919473_peptide number 28 2032.1267 0 WHYKDQGIDTSNGPALTE I.claudius_F2_399_481_919473_peptide number 29 775.9535000000001 0 IVTMLAE I.claudius_F2_399_481_919473_peptide number 30 877.0640000000001 0 RCKTLKE I.claudius_F2_399_481_919473_peptide number 31 1293.4504000000002 0 MARSSRYFFE I.claudius_F2_399_481_919473_peptide number 32 147.1293 0 E I.claudius_F2_399_481_919473_peptide number 33 294.30320000000006 0 FE I.claudius_F2_399_481_919473_peptide number 34 510.4945 0 TFDE I.claudius_F2_399_481_919473_peptide number 35 1342.5028 0 AAAKKHFKGNAAE I.claudius_F2_399_481_919473_peptide number 36 757.9184 0 ALAKVKE I.claudius_F2_399_481_919473_peptide number 37 1736.9216000000001 0 KLTALSSWDLHSIHE I.claudius_F2_399_481_919473_peptide number 38 331.36480000000006 0 AIE I.claudius_F2_399_481_919473_peptide number 39 518.5182 0 QTAAE I.claudius_F2_399_481_919473_peptide number 40 260.2869 0 LE I.claudius_F2_399_481_919473_peptide number 41 5347.209600000003 0 VGMGKVGMPLRVAVTGSGQSPSMDVTLVGIGRDRVLARIQRAIDFIHAQNA I.claudius_F2_400_78_922364_peptide number 1 278.32540000000006 0 ME I.claudius_F2_400_78_922364_peptide number 2 844.9094 0 LISANQAE I.claudius_F2_400_78_922364_peptide number 3 1310.5851 0 LAAVLIALNRKE I.claudius_F2_400_78_922364_peptide number 4 545.5899000000001 0 RGKGE I.claudius_F2_400_78_922364_peptide number 5 659.7289000000001 0 LSAIQE I.claudius_F2_400_78_922364_peptide number 6 246.2604 0 VE I.claudius_F2_400_78_922364_peptide number 7 2557.8923999999997 0 RDYQCQVLSIIDLDDLMQFIE I.claudius_F2_400_78_922364_peptide number 8 1328.3868 0 QDPRYSSHLPE I.claudius_F2_400_78_922364_peptide number 9 896.0259000000001 0 MRAYRAE I.claudius_F2_400_78_922364_peptide number 10 321.37160000000006 0 FGV I.claudius_F2_401_232_922847_peptide number 1 2176.4957 0 MQTSFAVLGHLSKSKGRVTE I.claudius_F2_401_232_922847_peptide number 2 147.1293 0 E I.claudius_F2_401_232_922847_peptide number 3 3556.0597000000002 0 DIQLANQLMIQLKLDDAGRKLAQDAFRRGKE I.claudius_F2_401_232_922847_peptide number 4 1359.53 0 SDFPIRQVIRE I.claudius_F2_401_232_922847_peptide number 5 3170.6228 0 FRIGCGQRADLLRMFLQVQVQAAFADSE I.claudius_F2_401_232_922847_peptide number 6 397.4262 0 LHE I.claudius_F2_401_232_922847_peptide number 7 261.2319 0 NE I.claudius_F2_401_232_922847_peptide number 8 275.3016 0 KE I.claudius_F2_401_232_922847_peptide number 9 805.9579000000001 0 VLYVIAE I.claudius_F2_401_232_922847_peptide number 10 147.1293 0 E I.claudius_F2_401_232_922847_peptide number 11 1080.258 0 LGLSRMQFE I.claudius_F2_401_232_922847_peptide number 12 721.8862 0 QMIAME I.claudius_F2_401_232_922847_peptide number 13 5828.2285 0 MAARAFTQGGFYQKYQQGAYQGGYQYQQQNSGGYQHASGPTLNDAYKVLGVTE I.claudius_F2_401_232_922847_peptide number 14 349.294 0 SDE I.claudius_F2_401_232_922847_peptide number 15 1752.0077000000003 0 QSTVKRAYRRLMNE I.claudius_F2_401_232_922847_peptide number 16 1537.761 0 HHPDKLVAKGLPPE I.claudius_F2_401_232_922847_peptide number 17 409.52150000000006 0 MME I.claudius_F2_401_232_922847_peptide number 18 477.5756 0 MAKE I.claudius_F2_401_232_922847_peptide number 19 2193.5673 0 KTQQIQAAYDLICKAKGWK I.claudius_F2_402_68_924271_peptide number 1 724.8238000000001 0 MPWYE I.claudius_F2_402_68_924271_peptide number 2 1446.6900000000003 0 IQKILQKYANVE I.claudius_F2_402_68_924271_peptide number 3 261.2319 0 NE I.claudius_F2_402_68_924271_peptide number 4 2687.0179000000007 0 YDSGFYHVARIKQWLRYLNKE I.claudius_F2_402_68_924271_peptide number 5 424.40520000000004 0 YNE I.claudius_F2_402_68_924271_peptide number 6 1695.8914000000004 0 ANQVFDKIKTCQTAE I.claudius_F2_402_68_924271_peptide number 7 1000.1501000000001 0 DLKLRLNE I.claudius_F2_402_68_924271_peptide number 8 146.1876 0 K I.claudius_F2_403_58_926828_peptide number 1 6465.4686 0 MVIDNSHSFALLFASVMNQSLVLVQAVNSLLVWLNGKWLKAHVTVHNHQKGLVQNWQ I.claudius_F2_404_119_928947_peptide number 1 909.0611000000001 0 MDRVFIE I.claudius_F2_404_119_928947_peptide number 2 147.1293 0 E I.claudius_F2_404_119_928947_peptide number 3 1540.7135 0 LTVFAQIGVYDWE I.claudius_F2_404_119_928947_peptide number 4 1488.7267000000002 0 QQIKQKLVFDLE I.claudius_F2_404_119_928947_peptide number 5 1152.3008 0 MAWDCKQAAE I.claudius_F2_404_119_928947_peptide number 6 1404.4977999999999 0 TDDVVYCLNYAE I.claudius_F2_404_119_928947_peptide number 7 1136.2518 0 VSQAIIDYVE I.claudius_F2_404_119_928947_peptide number 8 946.1408000000001 0 SKPFLLIE I.claudius_F2_404_119_928947_peptide number 9 636.6973 0 RVAYE I.claudius_F2_404_119_928947_peptide number 10 658.7409 0 VADLLE I.claudius_F2_404_119_928947_peptide number 11 3736.5253000000002 0 SRYQLQGLKIKLSKPKAVAQARNVGVLIVRGCLK I.claudius_F2_405_72_929802_peptide number 1 7457.1605 0 MSAFSMVVLVFALSPIVNAILAIFASLSIEPGAPLMITSFPVLPPVLIAVIFKSSLLFLPAIFVSPSVLKV I.claudius_F2_406_57_931937_peptide number 1 6552.554000000003 0 MPVYLSCWGFLINRHFISNCRNICLPNNYTATLWQIPCRGICRTSVSGQNDKRNYI I.claudius_F2_407_66_937053_peptide number 1 1620.8148999999999 0 MRRFTNSHCPSRE I.claudius_F2_407_66_937053_peptide number 2 1856.1715 0 RFSPNPILNFALIPKE I.claudius_F2_407_66_937053_peptide number 3 4083.629299999999 0 RIDARNAVCIFNSASNCLFFSCFQSDKTPFHPVFLS I.claudius_F2_408_242_937515_peptide number 1 2655.8515 0 MHQFQQDNQYFIFNFDRTFE I.claudius_F2_408_242_937515_peptide number 2 447.4403 0 QATE I.claudius_F2_408_242_937515_peptide number 3 640.6842 0 FFQAE I.claudius_F2_408_242_937515_peptide number 4 864.9438000000001 0 FWQKQE I.claudius_F2_408_242_937515_peptide number 5 1996.2702000000002 0 RVIGSAKGRGITYFLQTE I.claudius_F2_408_242_937515_peptide number 6 3892.3662000000004 0 DWFGVNCALRHYYRGGLWGKLNKDRYRFSALE I.claudius_F2_408_242_937515_peptide number 7 810.8519000000001 0 TTRSFAE I.claudius_F2_408_242_937515_peptide number 8 1218.4035000000001 0 FHLLQRLYE I.claudius_F2_408_242_937515_peptide number 9 3064.6431999999995 0 AGLPVPKPIAARIQKGKLGICYQADILTE I.claudius_F2_408_242_937515_peptide number 10 388.4592 0 KIE I.claudius_F2_408_242_937515_peptide number 11 1884.0923000000003 0 NAQDLTALLQTQTLPKE I.claudius_F2_408_242_937515_peptide number 12 3953.5535 0 TWMQIGRLIRKLHDLQICHTDLNAHNILLQQTE I.claudius_F2_408_242_937515_peptide number 13 1769.9945000000002 0 QGQKCWLLDFDKCGE I.claudius_F2_408_242_937515_peptide number 14 2366.6758999999997 0 KSADFWKVQNLNRLKRSFE I.claudius_F2_408_242_937515_peptide number 15 275.3016 0 KE I.claudius_F2_408_242_937515_peptide number 16 1194.3607 0 VGRMNIQFTE I.claudius_F2_408_242_937515_peptide number 17 1433.4808 0 QNWADLTSAYHQ I.claudius_F2_409_293_939030_peptide number 1 4984.785700000002 0 MNIIFSSDHYYAPYLAVSIFSIIKNTPKKINFYILDMKINQE I.claudius_F2_409_293_939030_peptide number 2 2575.0107 0 NKTIINNLASAYSCKVFFLPVCE I.claudius_F2_409_293_939030_peptide number 3 3681.1519000000008 0 SDFQNFPKTIDYISLATYARLNLTKYIKNIE I.claudius_F2_409_293_939030_peptide number 4 1910.0833 0 KAIYIDVDTLTNSSLQE I.claudius_F2_409_293_939030_peptide number 5 2891.2133000000003 0 LWNIDITNYYLAACRDTFIDVKNE I.claudius_F2_409_293_939030_peptide number 6 1022.1955 0 AYKKTIGLE I.claudius_F2_409_293_939030_peptide number 7 2243.5579000000002 0 GYSYFNAGILLINLNKWKE I.claudius_F2_409_293_939030_peptide number 8 147.1293 0 E I.claudius_F2_409_293_939030_peptide number 9 10940.847200000007 0 NIFQKSINWMNKYNNVMKYQDQDILNGICKGKVKFINNRFNFTPTDRDLIKKKNLLCVKMPIVISHYCGPNKFWHKKCSHLNCHIGNLLLKE I.claudius_F2_409_293_939030_peptide number 10 1996.1988999999999 0 MDKIIDIPSSWYDHFE I.claudius_F2_409_293_939030_peptide number 11 2279.8586 0 KIPFLIKIKRLRKRIKDN I.claudius_F2_410_77_942141_peptide number 1 8033.641899999998 0 MLFVTDITPSAPNFIASKPVASSPLKTIKFLPASCLILTIRLTSLVASLMPTIFSISAKRATVSGFISLPVRLGTL I.claudius_F2_411_156_942885_peptide number 1 2172.4173 0 MNPLSVGNQAPAFTLLNQQE I.claudius_F2_411_156_942885_peptide number 2 4356.0315 0 KFVSLSDFRGKKVLIYFYPKALTPGCTTQACGLRDSKSE I.claudius_F2_411_156_942885_peptide number 3 2536.0144 0 LDVLGLVVLGISPDAPKKLAQFIE I.claudius_F2_411_156_942885_peptide number 4 403.47390000000007 0 KKE I.claudius_F2_411_156_942885_peptide number 5 1698.8273000000002 0 LNFTLLSDPDHQVAE I.claudius_F2_411_156_942885_peptide number 6 821.876 0 QFGVWGE I.claudius_F2_411_156_942885_peptide number 7 2425.8060000000005 0 KKFMGRTYDGIHRISFLINE I.claudius_F2_411_156_942885_peptide number 8 3264.8169 0 SGTIMQVFDKFKIKDHHQMIIDYLRSL I.claudius_F2_412_50_943824_peptide number 1 3527.291800000001 0 MLHLSLALKATALGILVAIPSMVFYNGLGRKVE I.claudius_F2_412_50_943824_peptide number 2 1371.6268 0 VNRLKWKVLSE I.claudius_F2_412_50_943824_peptide number 3 646.6905 0 QKDKE I.claudius_F2_413_271_944430_peptide number 1 5444.156900000001 0 MQQTKRSLLGLLISLIAHGIVIGFILWNWNEPSDSANSAQGDISTSISME I.claudius_F2_413_271_944430_peptide number 2 902.1098 0 LLQGMVLE I.claudius_F2_413_271_944430_peptide number 3 767.7808 0 EPAPEPE I.claudius_F2_413_271_944430_peptide number 4 2501.6110000000003 0 DVQKEPEPEPEPGNVQKEPEPE I.claudius_F2_413_271_944430_peptide number 5 403.4308000000001 0 KQE I.claudius_F2_413_271_944430_peptide number 6 359.418 0 IVE I.claudius_F2_413_271_944430_peptide number 7 1749.0138 0 DPTIKPEPKKIKEPE I.claudius_F2_413_271_944430_peptide number 8 275.3016 0 KE I.claudius_F2_413_271_944430_peptide number 9 2142.6334999999995 0 KPKPKGKPKGKPKNKPKKE I.claudius_F2_413_271_944430_peptide number 10 1308.5693999999999 0 VKPQKKPINKE I.claudius_F2_413_271_944430_peptide number 11 657.7131 0 LPKGDE I.claudius_F2_413_271_944430_peptide number 12 3185.1525 0 NIDSSANVNDKASTTSAANSNAQVAGSGTDTSE I.claudius_F2_413_271_944430_peptide number 13 1305.4859000000001 0 IAAYRSAIRRE I.claudius_F2_413_271_944430_peptide number 14 260.2869 0 IE I.claudius_F2_413_271_944430_peptide number 15 4466.003300000001 0 SHKRYPTRAKIMRKQGKVSVSFNVGADGSLSGAKVTKSSGDE I.claudius_F2_413_271_944430_peptide number 16 3734.1749999999993 0 SLDKAALDAINVSRSVGTRPAGFPSSLSVQISFTLQ I.claudius_F2_414_944_946080_peptide number 1 278.32540000000006 0 ME I.claudius_F2_414_944_946080_peptide number 2 4982.652300000001 0 NIDIRGARTHNLKNINLTIPRNKLVVITGLSGSGKSSLAFDTLYAE I.claudius_F2_414_944_946080_peptide number 3 906.9856 0 GQRRYVE I.claudius_F2_414_944_946080_peptide number 4 1615.848 0 SLSAYARQFLSLME I.claudius_F2_414_944_946080_peptide number 5 901.9576000000001 0 KPDVDSIE I.claudius_F2_414_944_946080_peptide number 6 886.0011000000001 0 GLSPAISIE I.claudius_F2_414_944_946080_peptide number 7 1842.9611000000002 0 QKSTSHNPRSTVGTITE I.claudius_F2_414_944_946080_peptide number 8 4699.410199999999 0 IYDYLRLLFARVGEPRCPDHNVPLTAQTISQMVDKVLSLPE I.claudius_F2_414_944_946080_peptide number 9 1916.3132 0 DSKMMLLAPVVKNRKGE I.claudius_F2_414_944_946080_peptide number 10 737.8872000000001 0 HVKILE I.claudius_F2_414_944_946080_peptide number 11 1646.8023000000003 0 NIAAQGYIRARIDGE I.claudius_F2_414_944_946080_peptide number 12 2149.5099 0 ICDLSDPPKLALQKKHTIE I.claudius_F2_414_944_946080_peptide number 13 2074.384 0 VVVDRFKVRSDLATRLAE I.claudius_F2_414_944_946080_peptide number 14 381.3805 0 SFE I.claudius_F2_414_944_946080_peptide number 15 432.4687 0 TALE I.claudius_F2_414_944_946080_peptide number 16 917.0152 0 LSGGTAIVAE I.claudius_F2_414_944_946080_peptide number 17 803.8808000000001 0 MDNPKAE I.claudius_F2_414_944_946080_peptide number 18 147.1293 0 E I.claudius_F2_414_944_946080_peptide number 19 1941.19 0 LVFSANFACPHCGYSVPE I.claudius_F2_414_944_946080_peptide number 20 3189.4885999999997 0 LEPRLFSFNNPAGACPTCDGLGVQQYFDE I.claudius_F2_414_944_946080_peptide number 21 4947.5024 0 DRVVQNPTISLAGGAVKGWDRRNFYYYQMLTSLAKHYHFDVE I.claudius_F2_414_944_946080_peptide number 22 478.49570000000006 0 APYE I.claudius_F2_414_944_946080_peptide number 23 1903.2529 0 SLPKKIQHIIMHGSGKE I.claudius_F2_414_944_946080_peptide number 24 147.1293 0 E I.claudius_F2_414_944_946080_peptide number 25 260.2869 0 IE I.claudius_F2_414_944_946080_peptide number 26 2251.5224000000003 0 FQYMNDRGDVVIRKHPFE I.claudius_F2_414_944_946080_peptide number 27 1464.6919999999998 0 GILNNMARRYKE I.claudius_F2_414_944_946080_peptide number 28 248.23319999999998 0 TE I.claudius_F2_414_944_946080_peptide number 29 707.7968000000001 0 SMSVRE I.claudius_F2_414_944_946080_peptide number 30 147.1293 0 E I.claudius_F2_414_944_946080_peptide number 31 2299.6330000000003 0 LAKNISNRPCIDCGGSRLRPE I.claudius_F2_414_944_946080_peptide number 32 1800.0669 0 ARNVYIGRTNLPIIAE I.claudius_F2_414_944_946080_peptide number 33 532.5878 0 KSIGE I.claudius_F2_414_944_946080_peptide number 34 361.3908 0 TLE I.claudius_F2_414_944_946080_peptide number 35 1724.9507 0 FFTALSLTGQKAQIAE I.claudius_F2_414_944_946080_peptide number 36 629.7891000000001 0 KILKE I.claudius_F2_414_944_946080_peptide number 37 416.47260000000006 0 IRE I.claudius_F2_414_944_946080_peptide number 38 2279.5935999999997 0 RLQFLVNVGLNYLSLSRSAE I.claudius_F2_414_944_946080_peptide number 39 562.5707 0 TLSGGE I.claudius_F2_414_944_946080_peptide number 40 3707.1793000000002 0 AQRIRLASQIGAGLVGVMYVLDEPSIGLHQRDNE I.claudius_F2_414_944_946080_peptide number 41 2287.7034000000003 0 RLLNTLIHLRNLGNTVIVVE I.claudius_F2_414_944_946080_peptide number 42 399.356 0 HDE I.claudius_F2_414_944_946080_peptide number 43 3038.2448000000004 0 DAIRAADHIIDIGPGAGVHGGQVIAQGNADE I.claudius_F2_414_944_946080_peptide number 44 2148.4786999999997 0 IMLNPNSITGKFLSGADKIE I.claudius_F2_414_944_946080_peptide number 45 7179.306400000004 0 IPKKRTALDKKKWLKLKGASGNNLKNVNLDIPVGLFTCVTGVSGSGKSTLINDTLFPLAQNALNRAE I.claudius_F2_414_944_946080_peptide number 46 1314.3967 0 KTDYAPYQSIE I.claudius_F2_414_944_946080_peptide number 47 317.33820000000003 0 GLE I.claudius_F2_414_944_946080_peptide number 48 3742.1589000000004 0 HFDKVIDINQSPIGRTPRSNPATYTGLFTPIRE I.claudius_F2_414_944_946080_peptide number 49 731.8363 0 LFAGVPE I.claudius_F2_414_944_946080_peptide number 50 2370.6115999999997 0 ARARGYNPGRFSFNVRGGRCE I.claudius_F2_414_944_946080_peptide number 51 1118.2614 0 ACQGDGVLKVE I.claudius_F2_414_944_946080_peptide number 52 2699.0951 0 MHFLPDVYVPCDQCKGKRYNRE I.claudius_F2_414_944_946080_peptide number 53 361.3908 0 TLE I.claudius_F2_414_944_946080_peptide number 54 2031.3790000000004 0 IRYKGKTIHQVLDMTVE I.claudius_F2_414_944_946080_peptide number 55 147.1293 0 E I.claudius_F2_414_944_946080_peptide number 56 374.39290000000005 0 ARE I.claudius_F2_414_944_946080_peptide number 57 3917.5085 0 FFDAIPMIARKLQTLMDVGLSYIRLGQSSTTLSGGE I.claudius_F2_414_944_946080_peptide number 58 1015.1649 0 AQRVKLATE I.claudius_F2_414_944_946080_peptide number 59 3416.8732 0 LSKRDTGKTLYILDEPTTGLHFADIKQLLE I.claudius_F2_414_944_946080_peptide number 60 1862.1381000000001 0 VLHRLRDQGNTIVVIE I.claudius_F2_414_944_946080_peptide number 61 2035.2565000000002 0 HNLDVIKTADWIVDLGPE I.claudius_F2_414_944_946080_peptide number 62 1301.3596999999997 0 GGSGGGQIIATGTPE I.claudius_F2_414_944_946080_peptide number 63 2125.4704 0 QVAKVTSSHTARFLKPILE I.claudius_F2_414_944_946080_peptide number 64 243.30280000000002 0 KP I.claudius_F2_415_267_952658_peptide number 1 854.9243 0 MFSVQDE I.claudius_F2_415_267_952658_peptide number 2 7747.402999999999 0 LDRLFVDQAQSALWTNIAQDKRRYDSDAFRAYQQKTNLRQIGVQKALDNGRIGAVFSHSRSDNTFDE I.claudius_F2_415_267_952658_peptide number 3 4174.6937 0 QVKNHATLTMMSGFAQYQWGDLQFGVNVGAGISASKMAE I.claudius_F2_415_267_952658_peptide number 4 147.1293 0 E I.claudius_F2_415_267_952658_peptide number 5 4599.217799999999 0 QSRKIHRKAINYGVNASYQFRLGQLGIQPYLGVNRYFIE I.claudius_F2_415_267_952658_peptide number 6 303.31500000000005 0 RE I.claudius_F2_415_267_952658_peptide number 7 639.6116999999999 0 NYQSE I.claudius_F2_415_267_952658_peptide number 8 147.1293 0 E I.claudius_F2_415_267_952658_peptide number 9 7759.5929000000015 0 VKVQTPSLAFNRYNAGIRVDYTFTPTNNISVKPYFFVNYVDVSNANVQTTVNSTMLQQSFGRYWQKE I.claudius_F2_415_267_952658_peptide number 10 615.7195 0 VGLKAE I.claudius_F2_415_267_952658_peptide number 11 3619.1369000000004 0 ILHFQLSAFISKSQGSQLGKQQNVGVKLGYRW I.claudius_F2_416_297_954368_peptide number 1 1280.4963 0 MFGRKASGGKIE I.claudius_F2_416_297_954368_peptide number 2 458.54910000000007 0 VLVE I.claudius_F2_416_297_954368_peptide number 3 662.7561000000001 0 RMLDE I.claudius_F2_416_297_954368_peptide number 4 1793.0379999999998 0 HRFLAHIRSSKSPKE I.claudius_F2_416_297_954368_peptide number 5 275.2585 0 GAE I.claudius_F2_416_297_954368_peptide number 6 577.6697 0 LFLGE I.claudius_F2_416_297_954368_peptide number 7 560.5979000000001 0 DKLGE I.claudius_F2_416_297_954368_peptide number 8 1856.1567000000002 0 NNGIKAVMKARHGALFE I.claudius_F2_416_297_954368_peptide number 9 246.2604 0 VE I.claudius_F2_416_297_954368_peptide number 10 3235.6615000000006 0 LSDKSTALLDVLQTIGHMPLPPYIDRPDE I.claudius_F2_416_297_954368_peptide number 11 147.1293 0 E I.claudius_F2_416_297_954368_peptide number 12 461.4238 0 ADQE I.claudius_F2_416_297_954368_peptide number 13 2524.8015000000005 0 CYQTVYSKVPGAVAAPTAGLHFDE I.claudius_F2_416_297_954368_peptide number 14 487.5471 0 NLLE I.claudius_F2_416_297_954368_peptide number 15 1133.3406 0 KLKAKGVNFE I.claudius_F2_416_297_954368_peptide number 16 1857.1168000000002 0 FVTLHVGAGTFQPVRVE I.claudius_F2_416_297_954368_peptide number 17 374.3895 0 NIE I.claudius_F2_416_297_954368_peptide number 18 837.9004 0 DHVMHAE I.claudius_F2_416_297_954368_peptide number 19 409.43370000000004 0 YVE I.claudius_F2_416_297_954368_peptide number 20 461.4669 0 VSQE I.claudius_F2_416_297_954368_peptide number 21 2786.2984 0 VCNAIIATKKAGKRVIAVGTTSVRSIE I.claudius_F2_416_297_954368_peptide number 22 647.6752 0 SAALSAE I.claudius_F2_416_297_954368_peptide number 23 147.1293 0 E I.claudius_F2_416_297_954368_peptide number 24 4434.0305 0 FGNPDLIEPYFSDTSIFIYPGKKFRVVDCLITNFHLPE I.claudius_F2_416_297_954368_peptide number 25 2888.3637 0 STLIMLVSAFAGYKNTMNAYKHAVKE I.claudius_F2_416_297_954368_peptide number 26 2757.0863 0 KYRFFSYGDAMFINKNSNVRGLE I.claudius_F2_417_156_956283_peptide number 1 797.9656 0 MHRILE I.claudius_F2_417_156_956283_peptide number 2 2375.8070000000007 0 YICPQIPADKPRYLMGVGKPE I.claudius_F2_417_156_956283_peptide number 3 474.5054 0 DLVE I.claudius_F2_417_156_956283_peptide number 4 5348.023800000002 0 GVRRGIDMFDCVMPTRNARNGHLFVTDGIVKIRNAKYRDDTSPLDPE I.claudius_F2_417_156_956283_peptide number 5 2634.9799 0 CDCYTCKNYTKAYLYHLDKCGE I.claudius_F2_417_156_956283_peptide number 6 2545.9594 0 ILGARLNTIHNLRYYQRLMAE I.claudius_F2_417_156_956283_peptide number 7 728.8373 0 IRQAIE I.claudius_F2_417_156_956283_peptide number 8 1256.2746000000002 0 DDRFDDFVVE I.claudius_F2_417_156_956283_peptide number 9 2018.3817999999999 0 FYARMGKPVPPLQLADKS I.claudius_F2_418_76_957725_peptide number 1 1533.7972 0 MIYRPQAKRNKE I.claudius_F2_418_76_957725_peptide number 2 872.0442000000002 0 HKKLMSE I.claudius_F2_418_76_957725_peptide number 3 617.6923 0 LAKGTE I.claudius_F2_418_76_957725_peptide number 4 1585.8835000000001 0 VLTAGGVIGKITKVTE I.claudius_F2_418_76_957725_peptide number 5 1434.5022000000004 0 GSDSIVIALNDTTE I.claudius_F2_418_76_957725_peptide number 6 2215.6342 0 ITINRNYIVSVLPKGSLKSL I.claudius_F2_419_503_958364_peptide number 1 2526.011200000001 0 MFGANPMKWGLDLRGGVRFLME I.claudius_F2_419_503_958364_peptide number 2 1403.6042 0 VDMNATLVKRQE I.claudius_F2_419_503_958364_peptide number 3 1045.1046 0 QLQDSLRGE I.claudius_F2_419_503_958364_peptide number 4 544.6449 0 LRKE I.claudius_F2_419_503_958364_peptide number 5 1308.4799 0 KIQYTAIKNTE I.claudius_F2_419_503_958364_peptide number 6 1956.2063 0 HFGTLITLANVSQRAKAE I.claudius_F2_419_503_958364_peptide number 7 3387.7507000000005 0 RIIRQLHPTLDITEPDADSINLGLSTAALNE I.claudius_F2_419_503_958364_peptide number 8 786.8734000000001 0 ARDLAIE I.claudius_F2_419_503_958364_peptide number 9 1440.6905000000002 0 QNLTILRKRVAE I.claudius_F2_419_503_958364_peptide number 10 487.5472000000001 0 LGVAE I.claudius_F2_419_503_958364_peptide number 11 971.0692 0 AVIQRQGAE I.claudius_F2_419_503_958364_peptide number 12 628.7613 0 RIVIE I.claudius_F2_419_503_958364_peptide number 13 1284.4188000000001 0 LPGVQDTARAKE I.claudius_F2_419_503_958364_peptide number 14 888.0169999999999 0 ILGATATLE I.claudius_F2_419_503_958364_peptide number 15 2561.8249000000005 0 FRIVNQNVTADAISRNMLPADSE I.claudius_F2_419_503_958364_peptide number 16 2340.6818000000003 0 VKYDRQGHPVALFKRAVLGGE I.claudius_F2_419_503_958364_peptide number 17 2638.7517000000003 0 HIINSSSGLDQHSSTPQVSVTLDSE I.claudius_F2_419_503_958364_peptide number 18 261.2319 0 GGE I.claudius_F2_419_503_958364_peptide number 19 2423.8882 0 IMSQTTKKYYKKPMATLYVE I.claudius_F2_419_503_958364_peptide number 20 1096.1481999999999 0 YKDNGKKDE I.claudius_F2_419_503_958364_peptide number 21 773.8746000000001 0 NGKTILE I.claudius_F2_419_503_958364_peptide number 22 412.44090000000006 0 KHE I.claudius_F2_419_503_958364_peptide number 23 147.1293 0 E I.claudius_F2_419_503_958364_peptide number 24 2636.9096000000004 0 VINVATIQGRFGSNFQITGVDSIAE I.claudius_F2_419_503_958364_peptide number 25 2188.5657 0 AHNLSTLLKSGALIAPIQIVE I.claudius_F2_419_503_958364_peptide number 26 147.1293 0 E I.claudius_F2_419_503_958364_peptide number 27 1341.47 0 RTIGPSLGAQNVE I.claudius_F2_419_503_958364_peptide number 28 7890.5803000000005 0 QGINASLWGLVAVIAFMLFYYKMFGVIASFALVINIVLLVGLMSILPGATLSMPGIAGIVLTLGMSVDANVLIFE I.claudius_F2_419_503_958364_peptide number 29 544.6449 0 RIKE I.claudius_F2_419_503_958364_peptide number 30 147.1293 0 E I.claudius_F2_419_503_958364_peptide number 31 1498.6436 0 IRNGRSIQQAINE I.claudius_F2_419_503_958364_peptide number 32 7350.615800000004 0 GYNGAFTSIFDANLTTILTAIILYAVGTGPIQGFAITLSLGVAISMFTAITGTRALVNALYGGKQLKKLLI I.claudius_F2_420_117_962099_peptide number 1 1901.1742 0 MSVIIYHNPHCSKSRE I.claudius_F2_420_117_962099_peptide number 2 658.7839 0 TLALLE I.claudius_F2_420_117_962099_peptide number 3 1011.1727 0 NKGIQPIIE I.claudius_F2_420_117_962099_peptide number 4 1384.5328 0 LYLQKQYSVNE I.claudius_F2_420_117_962099_peptide number 5 2576.0023 0 LQSIAKKLGIDDVRQMMRTKDE I.claudius_F2_420_117_962099_peptide number 6 1836.0046000000002 0 LYKSLNLDNLDLSQAE I.claudius_F2_420_117_962099_peptide number 7 806.9459 0 LFKAISE I.claudius_F2_420_117_962099_peptide number 8 668.739 0 HSALIE I.claudius_F2_420_117_962099_peptide number 9 1860.1653 0 RPIVINGDKAKIGRPPE I.claudius_F2_420_117_962099_peptide number 10 460.5219000000001 0 TVLE I.claudius_F2_420_117_962099_peptide number 11 244.3305 0 IL I.claudius_F2_421_80_966000_peptide number 1 8357.869999999997 0 MSKVPVLVRAKIIAASKSSTSKKRRRASFLRTPCTYQQLWSISGAFSLFTLIFTSCGSFIKRFVIRRIGSGIVAE I.claudius_F2_421_80_966000_peptide number 2 416.4295 0 NNAV I.claudius_F2_422_51_969279_peptide number 1 5202.0431 0 MRYASPKRASAIAFTLLIKSVFGCGATQSQRGLPASFANSLIASTTTCCC I.claudius_F2_423_156_970803_peptide number 1 2271.7174 0 MIISSLTNPNFKVGLPKVIAE I.claudius_F2_423_156_970803_peptide number 2 1595.7688 0 VCDYLNTLDLNALE I.claudius_F2_423_156_970803_peptide number 3 2175.3583999999996 0 NGRHDINDQIYMNVMEPE I.claudius_F2_423_156_970803_peptide number 4 1047.1174 0 TAEPSSKKAE I.claudius_F2_423_156_970803_peptide number 5 534.5655 0 LHHE I.claudius_F2_423_156_970803_peptide number 6 1405.5951000000002 0 YLDVQVLIRGTE I.claudius_F2_423_156_970803_peptide number 7 374.3895 0 NIE I.claudius_F2_423_156_970803_peptide number 8 1341.4651000000001 0 VGATYPNLSKYE I.claudius_F2_423_156_970803_peptide number 9 539.4926 0 DYNE I.claudius_F2_423_156_970803_peptide number 10 4959.6725000000015 0 ADDYQLCADIDDKFTVTMKPKMFAVFYPYEPHKPCCVVNGKTE I.claudius_F2_423_156_970803_peptide number 11 1605.1468000000002 0 KIKKLVVKVPVKLI I.claudius_F2_424_285_973224_peptide number 1 14926.079100000017 0 MVIPAVVYWFIAKQDPSLANGWAIPMATDIAFALGIMALLSKQVPLPLKIFLLALAIIDDLGAIVVIALFFSHGLSVQALIFSAVAIIVLILLNRFRVSALCAYMVVGAILWASVLKSGVHATLAGVIIGFSIPLKGKKGE I.claudius_F2_424_285_973224_peptide number 2 890.9365 0 RPLDDFE I.claudius_F2_424_285_973224_peptide number 3 10784.714500000004 0 HILASWSSFVILPLFAFANAGVSFAGIDVNMISSPLLLAIASGLIIGKPVGIFGFSYISVKLGLAKLPDGINFKQIFAVAVLCGIGFTMSMFLASLAFDANAGE I.claudius_F2_424_285_973224_peptide number 4 3422.0220000000004 0 SVNTLSRLGILLGSTVSAILGYLFLKQTTKLN I.claudius_F2_425_182_975047_peptide number 1 1303.5709000000002 0 MAVLGWAWLKE I.claudius_F2_425_182_975047_peptide number 2 2121.5245 0 RLSFIQKIALLLAAAGVAHE I.claudius_F2_425_182_975047_peptide number 3 7559.816000000003 0 LWHTQSFSWTSLWVCTVYPFYYLSRKWMKIPALQGITLDIILISIPCFIYILSQSDTLSLVTQE I.claudius_F2_425_182_975047_peptide number 4 8648.168800000003 0 YRYWLLLPALGIVSAISLSANLKSSQQIPVSIFAVLSYIEPILLFLIAVFVLDNQITTSDYFTYVPIWLSLIVIGIE I.claudius_F2_425_182_975047_peptide number 5 1055.3181 0 GLLNKKKVR I.claudius_F2_426_59_976173_peptide number 1 3374.9143999999997 0 MCFTSFACCRFDYVRVNRTLCQPFHISE I.claudius_F2_426_59_976173_peptide number 2 971.1519000000001 0 FFRFIIE I.claudius_F2_426_59_976173_peptide number 3 560.5995 0 YIHE I.claudius_F2_426_59_976173_peptide number 4 2470.8068999999996 0 HFTDNFTFRFRIRYACKFT I.claudius_F2_427_65_976975_peptide number 1 2937.2836 0 MPNTGTPALNTYSGARGLFSSVVLSGLPE I.claudius_F2_427_65_976975_peptide number 2 3826.35 0 RMIPVGANSRICCSVTSQAQSSQYTPISRTRRAIS I.claudius_F2_428_67_977655_peptide number 1 1142.2862 0 MHDLDKVRE I.claudius_F2_428_67_977655_peptide number 2 3415.8255999999997 0 QIHGF-VRLHPKPKVRSTHRFHAHDAQSVE I.claudius_F2_428_67_977655_peptide number 3 2975.5896 0 CIVNQSRGLGFCDSGYLSFIMLLLLIV I.claudius_F2_429_77_980409_peptide number 1 377.4565 0 MVE I.claudius_F2_429_77_980409_peptide number 2 8871.477400000002 0 KFHYVRNNSNKSLTILTALFNKMFIFPSKDHFFKYFYKKVLARDLKISIMHRTQRRTVVKFFKFPSASLFFAL I.claudius_F2_430_78_982467_peptide number 1 5116.879000000001 0 MSPSSRGLGHRPFTAVTGVRIPVGTPIKDNFIRLSYCSLKNWKQAE I.claudius_F2_430_78_982467_peptide number 2 936.0268000000001 0 NKRFSRE I.claudius_F2_430_78_982467_peptide number 3 1275.412 0 SLSRQNSKVKE I.claudius_F2_430_78_982467_peptide number 4 404.4189 0 RTE I.claudius_F2_430_78_982467_peptide number 5 275.3016 0 KE I.claudius_F2_430_78_982467_peptide number 6 899.1292000000001 0 TLKTKPVL I.claudius_F2_431_196_986335_peptide number 1 862.0029000000001 0 MLKNLDE I.claudius_F2_431_196_986335_peptide number 2 1778.9104 0 ITSSIIADPQNKDFTE I.claudius_F2_431_196_986335_peptide number 3 2852.3363000000004 0 RGIFPLFSAPKTARINIVGQAPGLKAE I.claudius_F2_431_196_986335_peptide number 4 2023.1696000000002 0 QSRLYWNDKSGDRLRE I.claudius_F2_431_196_986335_peptide number 5 4717.181700000002 0 WLGVDYDYFYNSGIFAVLPMDFYYPGYGKSGDLPPRQGFAE I.claudius_F2_431_196_986335_peptide number 6 3584.1937000000003 0 RWHPMILGNLPNIQLTILIGQYAQKYYLPE I.claudius_F2_431_196_986335_peptide number 7 4894.530699999999 0 NKDNVTNTVKNYRQFLPHFMPLVHPSPRNQLWVTKNPWFE I.claudius_F2_431_196_986335_peptide number 8 147.1293 0 E I.claudius_F2_431_196_986335_peptide number 9 584.6624 0 QVIPE I.claudius_F2_431_196_986335_peptide number 10 1424.7273999999998 0 LQILVKQIINKD I.claudius_F2_432_64_987823_peptide number 1 2441.7608000000005 0 MRNQDCYHFIVKDTGMGISPE I.claudius_F2_432_64_987823_peptide number 2 147.1293 0 E I.claudius_F2_432_64_987823_peptide number 3 800.9016000000001 0 QKHIFE I.claudius_F2_432_64_987823_peptide number 4 960.1046000000001 0 MYYQVKE I.claudius_F2_432_64_987823_peptide number 5 2849.1865 0 SRQQSAGSGIGLAISKNLAQLMGRGFNS I.claudius_F2_433_155_988370_peptide number 1 493.53189999999995 0 MQSE I.claudius_F2_433_155_988370_peptide number 2 275.2585 0 QE I.claudius_F2_433_155_988370_peptide number 3 423.4602000000001 0 YLE I.claudius_F2_433_155_988370_peptide number 4 3129.6337999999996 0 MGMDGVLRKPISIKDLHHCLQQFFADE I.claudius_F2_433_155_988370_peptide number 5 234.2066 0 SE I.claudius_F2_433_155_988370_peptide number 6 460.5218 0 SIIE I.claudius_F2_433_155_988370_peptide number 7 736.7054 0 MNDDNE I.claudius_F2_433_155_988370_peptide number 8 347.3642 0 LSE I.claudius_F2_433_155_988370_peptide number 9 948.0705 0 QFDLALIE I.claudius_F2_433_155_988370_peptide number 10 988.1361 0 TLGKSQILE I.claudius_F2_433_155_988370_peptide number 11 2714.1212000000005 0 NLSLFKQTMPNYLAQLSKDNMKE I.claudius_F2_433_155_988370_peptide number 12 248.23319999999998 0 TE I.claudius_F2_433_155_988370_peptide number 13 2730.0411 0 DTAHKIKGAAASVGLNHLRQLADTLE I.claudius_F2_433_155_988370_peptide number 14 1341.4038 0 SAAKNSDVFNCGE I.claudius_F2_433_155_988370_peptide number 15 1313.5408000000002 0 LIDKIGNLWLE I.claudius_F2_433_155_988370_peptide number 16 361.3478 0 DVE I.claudius_F2_433_155_988370_peptide number 17 1013.2532000000001 0 DLLKFCKF I.claudius_F2_434_119_989320_peptide number 1 803.9669000000001 0 MVAKNIE I.claudius_F2_434_119_989320_peptide number 2 598.6508 0 WHKE I.claudius_F2_434_119_989320_peptide number 3 5459.352199999998 0 NGTYTASYIIGAIIVTVGILTLAGIWNATAGLAGGLLTFGMSIVTLSFLITTPE I.claudius_F2_434_119_989320_peptide number 4 4404.1138 0 AWVPNLGGDLPTPAYGFPYLSGVGRLVIKDIIMMAGGLTAAAE I.claudius_F2_434_119_989320_peptide number 5 1172.4478 0 CANRILARKK I.claudius_F2_435_90_991030_peptide number 1 3750.3511 0 MIDYLRHNSCQSSDCNHQWLLLKILLPYCLE I.claudius_F2_435_90_991030_peptide number 2 1182.2886 0 QWVQRSHLE I.claudius_F2_435_90_991030_peptide number 3 5960.018800000002 0 YRQSHLVLHWRQTKRLLQFLTDIPALPVNFVRFRNNVLLLLHCLPQTLH I.claudius_F2_436_113_995138_peptide number 1 9196.511100000002 0 MDFAKCGTSSLSANSLRICSICSSSKMWLLVADLNKPLASINWVCVWKAPKYSPQYWCQKRDLAQAQSPRPHSYYPPNIDE I.claudius_F2_436_113_995138_peptide number 2 3775.3328000000006 0 FFARHRHDKKYQGRKQSPRGLLLKDNLTHVK I.claudius_F2_437_324_999802_peptide number 1 1797.0829999999999 0 MLAHVSLLPHYAKSTE I.claudius_F2_437_324_999802_peptide number 2 1737.9096000000002 0 IFISNGAYQLQRQAE I.claudius_F2_437_324_999802_peptide number 3 1878.0478999999998 0 NQHILTTNPYYWAKE I.claudius_F2_437_324_999802_peptide number 4 5504.206100000001 0 KVIFQQVKYQKISVDADLSDFDVVMNPKKVNQNIQDYPQLCTYFYE I.claudius_F2_437_324_999802_peptide number 5 5158.947100000001 0 FNLSDPVLQKSAVRKAIVSMISTNNLVADIAHLYPNNTFLPKSMLGE I.claudius_F2_437_324_999802_peptide number 6 275.2585 0 QE I.claudius_F2_437_324_999802_peptide number 7 1015.1169 0 SVWEPVVAE I.claudius_F2_437_324_999802_peptide number 8 1193.2632 0 QLFSQNQISE I.claudius_F2_437_324_999802_peptide number 9 4307.933699999999 0 TRPLKLRIRYDDLSLNQTIAMRLNHQLSQSDLLRVE I.claudius_F2_437_324_999802_peptide number 10 979.0249 0 NQGMSWQE I.claudius_F2_437_324_999802_peptide number 11 5213.707400000001 0 LQTARTKGDFQLIRSGWCADFNDPAAFLNLFYSKSPDNKNGYKNAE I.claudius_F2_437_324_999802_peptide number 12 825.9078000000001 0 FDRLFE I.claudius_F2_437_324_999802_peptide number 13 838.9233 0 SAMTTISE I.claudius_F2_437_324_999802_peptide number 14 643.7760000000001 0 KVRLE I.claudius_F2_437_324_999802_peptide number 15 1390.5837000000001 0 NYAKLKGIVQQE I.claudius_F2_437_324_999802_peptide number 16 4762.5289 0 HLVLPIFQYSTPVYLVPSIMGAQVNSVGVIYSKDLWRKVQSQ I.claudius_F2_438_107_1002216_peptide number 1 1682.8958 0 MDAITPAWLVHHYE I.claudius_F2_438_107_1002216_peptide number 2 261.2319 0 NE I.claudius_F2_438_107_1002216_peptide number 3 10025.181300000006 0 TGYSFPSGHTIFAATWLMLAVGFTQLLGNRSFKAKLLVVGIAVWGLLMLISRVRLGMHYPIDLLVATLLAWLINSIIFAFLKKKAIFVMK I.claudius_F2_439_61_1009187_peptide number 1 1168.4492 0 MHTKLAILLE I.claudius_F2_439_61_1009187_peptide number 2 1947.3287 0 KYKIRRLFVYIYRE I.claudius_F2_439_61_1009187_peptide number 3 1343.5240000000001 0 KSKLYSQITFE I.claudius_F2_439_61_1009187_peptide number 4 294.30320000000006 0 FE I.claudius_F2_439_61_1009187_peptide number 5 1191.4626 0 NILLVIKHLE I.claudius_F2_439_61_1009187_peptide number 6 147.1293 0 E I.claudius_F2_439_61_1009187_peptide number 7 1410.4921 0 GYGNHSFISWRS I.claudius_F2_440_176_1009628_peptide number 1 278.32540000000006 0 ME I.claudius_F2_440_176_1009628_peptide number 2 653.6846 0 QQHIE I.claudius_F2_440_176_1009628_peptide number 3 2442.7670000000003 0 VVGKLGSTYGIRGWLRIYSSTE I.claudius_F2_440_176_1009628_peptide number 4 346.3364 0 QAE I.claudius_F2_440_176_1009628_peptide number 5 1871.1381 0 SIFDYQPWFLKIKGE I.claudius_F2_440_176_1009628_peptide number 6 661.7033000000001 0 WQSIE I.claudius_F2_440_176_1009628_peptide number 7 260.2869 0 LE I.claudius_F2_440_176_1009628_peptide number 8 1155.182 0 NWRYHNHE I.claudius_F2_440_176_1009628_peptide number 9 1384.6207 0 IIVKLKGVDDRE I.claudius_F2_440_176_1009628_peptide number 10 928.0411000000001 0 AAQILANVE I.claudius_F2_440_176_1009628_peptide number 11 1075.2118 0 IGVDLSVFPE I.claudius_F2_440_176_1009628_peptide number 12 260.2869 0 LE I.claudius_F2_440_176_1009628_peptide number 13 147.1293 0 E I.claudius_F2_440_176_1009628_peptide number 14 1997.1869000000006 0 GDYYWHDLIGCTVVNLE I.claudius_F2_440_176_1009628_peptide number 15 958.0441 0 GYTMGTVTE I.claudius_F2_440_176_1009628_peptide number 16 409.52150000000006 0 MME I.claudius_F2_440_176_1009628_peptide number 17 2221.4237000000003 0 TGSNDVLVVKANTKDAFGKQE I.claudius_F2_440_176_1009628_peptide number 18 1050.2502 0 RLIPFLYE I.claudius_F2_440_176_1009628_peptide number 19 1629.8964 0 QVVKRVDLTTKTIE I.claudius_F2_440_176_1009628_peptide number 20 808.8342 0 VDWDAGF I.claudius_F2_441_51_1010781_peptide number 1 696.7326 0 MSGHHE I.claudius_F2_441_51_1010781_peptide number 2 147.1293 0 E I.claudius_F2_441_51_1010781_peptide number 3 2551.0074000000004 0 IRKWRLKQSLQRTWLRRPE I.claudius_F2_441_51_1010781_peptide number 4 373.44450000000006 0 LLE I.claudius_F2_441_51_1010781_peptide number 5 717.7650000000001 0 GLALTDE I.claudius_F2_441_51_1010781_peptide number 6 914.104 0 QRKLLKE I.claudius_F2_441_51_1010781_peptide number 7 417.4143 0 AQAE I.claudius_F2_441_51_1010781_peptide number 8 356.3345 0 HNS I.claudius_F2_442_52_1012207_peptide number 1 5230.242300000001 0 MALVAAIRPKSKGSSTIGMKKSVVLIIAVPLPRSYTAASSAVSLPTIRFGS I.claudius_F2_443_79_1012911_peptide number 1 720.7938 0 MHFSAE I.claudius_F2_443_79_1012911_peptide number 2 8734.165099999997 0 TLACNRPKPIHQWITVWIIHRSHWHALSVQNNARRINRPAMWHHKNNILSFSFCLFDMFKTDKFAAFLQMFL I.claudius_F2_444_91_1013585_peptide number 1 5462.757300000002 0 MITTIGRIKVLPFVITILAPKFAPKMLPAIITKPTFQRICPPNKKSAKE I.claudius_F2_444_91_1013585_peptide number 2 521.5668000000001 0 ARFE I.claudius_F2_444_91_1013585_peptide number 3 3943.7232000000013 0 VKFITFACAAAFGRLNPSKVTQAKLMIEPVPGPKKPS I.claudius_F2_445_67_1014185_peptide number 1 6836.906000000004 0 MSNAGMVINPPPPAIASINDATKPTQNNIAKRSMPISILIYLNAILTILSDSVSSKSVGTKTAQAV I.claudius_F2_446_51_1018787_peptide number 1 2783.1816000000003 0 MNSLFLFVVINTDQAVHCDQVLFE I.claudius_F2_446_51_1018787_peptide number 2 1383.5298 0 CNHFAQFFAVAE I.claudius_F2_446_51_1018787_peptide number 3 1131.3611 0 LVLLDFVIAE I.claudius_F2_446_51_1018787_peptide number 4 542.5379 0 DFFD I.claudius_F2_447_87_1020454_peptide number 1 9171.526500000005 0 MKHKNHLLGNVIVHRNITNAKQYLALKRDIRVMKVTKIDYNQTSLSYIPLLHYPNVLGHYAQLLLVNLSSQTLASSSQDE I.claudius_F2_447_87_1020454_peptide number 2 805.9214000000001 0 KNRLFE I.claudius_F2_448_288_1021649_peptide number 1 8278.625300000003 0 MIFIFISLFAKIFFNYNDFFTNSHVKIMAKSLLNYQFHQVKQTINTPVLIFIHGLFGDMDNLGVIARAFSE I.claudius_F2_448_288_1021649_peptide number 2 2318.5087 0 HYSILRIDLRNHGHSFHSE I.claudius_F2_448_288_1021649_peptide number 3 1127.3344 0 KMNYQLMAE I.claudius_F2_448_288_1021649_peptide number 4 3730.5125000000007 0 DVIAVIRHLNLSKVILIGHSMGGKTAMKITALCPE I.claudius_F2_448_288_1021649_peptide number 5 359.418 0 LVE I.claudius_F2_448_288_1021649_peptide number 6 1535.8661 0 KLIVIDMSPMPYE I.claudius_F2_448_288_1021649_peptide number 7 2175.4444999999996 0 GFGHKDVFNGLFAVKNAKPE I.claudius_F2_448_288_1021649_peptide number 8 1452.6581 0 NRQQAKPILKQE I.claudius_F2_448_288_1021649_peptide number 9 489.4769 0 INDE I.claudius_F2_448_288_1021649_peptide number 10 4279.7828 0 DVVQFMLKSFDVNSADCFRFNLTALFNNYANIMDWE I.claudius_F2_448_288_1021649_peptide number 11 2497.9284 0 KVRVFTPTLFIKGGNSSYIKIE I.claudius_F2_448_288_1021649_peptide number 12 348.30920000000003 0 NSE I.claudius_F2_448_288_1021649_peptide number 13 501.6168 0 KILE I.claudius_F2_448_288_1021649_peptide number 14 2184.3253 0 QFPNATAFTINGSGHWVHAE I.claudius_F2_448_288_1021649_peptide number 15 1959.341 0 KPDFVIRAIKRFLNKN I.claudius_F2_449_53_1027397_peptide number 1 6015.225400000003 0 MMVHSAKRLMSFKLIPVFFKHCNKLNHCKSLSVKRRLPYSSRPTLGNKPSLS I.claudius_F2_450_379_1027740_peptide number 1 278.32540000000006 0 ME I.claudius_F2_450_379_1027740_peptide number 2 2837.277 0 IKQINSTIKSRAAVAFAPNQPLQIVE I.claudius_F2_450_379_1027740_peptide number 3 474.5054 0 IDVE I.claudius_F2_450_379_1027740_peptide number 4 716.8499 0 MPRKGE I.claudius_F2_450_379_1027740_peptide number 5 2570.7887 0 VLIRNTHTGVCHTDAFTLSGSDPE I.claudius_F2_450_379_1027740_peptide number 6 1053.2112 0 GVFPVVLGHE I.claudius_F2_450_379_1027740_peptide number 7 856.9634 0 GAGVVVAVGE I.claudius_F2_450_379_1027740_peptide number 8 1895.1598000000001 0 GVLSVKPGDHVIPLYTAE I.claudius_F2_450_379_1027740_peptide number 9 307.3235 0 CGE I.claudius_F2_450_379_1027740_peptide number 10 250.2722 0 CE I.claudius_F2_450_379_1027740_peptide number 11 5301.9686 0 FCRSGKTNLCVSVRDTQGKGLMPDCTTRFSYQGQPIYHYMGCSTFSE I.claudius_F2_450_379_1027740_peptide number 12 666.72 0 YSVVAE I.claudius_F2_450_379_1027740_peptide number 13 970.1208999999999 0 VSLAKINPE I.claudius_F2_450_379_1027740_peptide number 14 469.44910000000004 0 ANHE I.claudius_F2_450_379_1027740_peptide number 15 2398.7576 0 QVCLLGCGVTTGIGAVHNTAKVQE I.claudius_F2_450_379_1027740_peptide number 16 3882.4263000000014 0 GDSVAVFGLGAIGLAVVQGARQAKAGRIIAIDTNPAKFE I.claudius_F2_450_379_1027740_peptide number 17 4248.723999999999 0 LAKQFGATDCLNPNDYDKPIKDVLLDINKWGIDHTFE I.claudius_F2_450_379_1027740_peptide number 18 1446.6950000000002 0 CIGNVNVMRQALE I.claudius_F2_450_379_1027740_peptide number 19 1994.1713000000002 0 SAHRGWGQSIIIGVAGAGQE I.claudius_F2_450_379_1027740_peptide number 20 2921.3157000000006 0 ISTRPFQLVTGRVWKGSAFGGVKGRSE I.claudius_F2_450_379_1027740_peptide number 21 715.8585 0 LPQMVE I.claudius_F2_450_379_1027740_peptide number 22 2759.1156000000005 0 DSMKGDIQLEPFVTHTMPLDKINE I.claudius_F2_450_379_1027740_peptide number 23 365.38110000000006 0 AFE I.claudius_F2_450_379_1027740_peptide number 24 528.6223 0 LMHE I.claudius_F2_450_379_1027740_peptide number 25 1173.3646999999999 0 GKSIRTVIHY I.claudius_F2_451_52_1030053_peptide number 1 2062.4527000000003 0 MIAMTAITVSAKFHTTLPE I.claudius_F2_451_52_1030053_peptide number 2 3707.3549000000003 0 RTAPKYTKNSTIKRNNKTNQGLFLIKRMLLSA I.claudius_F2_452_71_1031253_peptide number 1 2550.8653 0 MVASHKGPSRCATIQVSTSSNIFE I.claudius_F2_452_71_1031253_peptide number 2 2412.7373000000002 0 NSNSIIIPQAINNLIVWLFNE I.claudius_F2_452_71_1031253_peptide number 3 1387.5416999999998 0 KARFFNNFSKE I.claudius_F2_452_71_1031253_peptide number 4 1725.9885000000002 0 RNTNKKKSNKFTIF I.claudius_F2_453_247_1033053_peptide number 1 5278.2103 0 MSGISAGACIALAFVFYTTTQTASAGAPWGLTKLVGGLVFSLGVIMVVILGSE I.claudius_F2_453_247_1033053_peptide number 2 8321.5954 0 LFTSSTLTLVARVGGRITTTQMIRNWIVVYLGNFVGGLFIAAVIWFSGQTMAANGQWGLTILATAQHKIHHTWFE I.claudius_F2_453_247_1033053_peptide number 3 4889.903499999999 0 AFNLGILCNIMVCVAVWMSYSGKTVTDKAFIMIMPIGLFVASGFE I.claudius_F2_453_247_1033053_peptide number 4 2447.9160000000006 0 HCVANMFMIPMGIITAHFSTPE I.claudius_F2_453_247_1033053_peptide number 5 5807.7855 0 FWQQIGVDPMKYADLDLYHFIVKNLIPVTLGNIVGGAICIGVFQRYLTKTH I.claudius_F2_454_535_1034535_peptide number 1 1902.988 0 MAASYGYDISNPATNAQE I.claudius_F2_454_535_1034535_peptide number 2 3949.5088000000005 0 AIQWMYFAYLAAIKSQNGAAMSFGRTATFIDVYIE I.claudius_F2_454_535_1034535_peptide number 3 1130.2953 0 RDLKAGKITE I.claudius_F2_454_535_1034535_peptide number 4 248.23319999999998 0 TE I.claudius_F2_454_535_1034535_peptide number 5 346.3364 0 AQE I.claudius_F2_454_535_1034535_peptide number 6 2353.8943000000004 0 LVDHLVMKLRMVRFLRTPE I.claudius_F2_454_535_1034535_peptide number 7 1659.7697000000003 0 YDQLFSGDPMWATE I.claudius_F2_454_535_1034535_peptide number 8 4563.215700000001 0 TIAGMGLDGRTLVTKNTFRILHTLYNMGTSPEPNLTILWSE I.claudius_F2_454_535_1034535_peptide number 9 485.5313 0 QLPE I.claudius_F2_454_535_1034535_peptide number 10 2222.4763000000003 0 NFKRFCAKVSIDTSSVQYE I.claudius_F2_454_535_1034535_peptide number 11 5741.490700000003 0 NDDLMRPDFNNDDYAIACCVSPMIVGKQMQFFGARANLAKTLLYAINGGIDE I.claudius_F2_454_535_1034535_peptide number 12 1684.9516000000003 0 KLGMQVGPKTAPITDE I.claudius_F2_454_535_1034535_peptide number 13 4778.419199999999 0 VLDFDTVMTRMDSFMDWLAKQYVTALNVIHYMHDKYSYE I.claudius_F2_454_535_1034535_peptide number 14 6436.355300000004 0 AALMALHDRDVYRTMACGIAGLSVAADSLSAIKYAKVKPVRGDIKDKDGNVVATNVAIDFE I.claudius_F2_454_535_1034535_peptide number 15 260.2869 0 IE I.claudius_F2_454_535_1034535_peptide number 16 204.1806 0 GE I.claudius_F2_454_535_1034535_peptide number 17 2313.4129 0 YPQYGNNDNRVDDIACDLVE I.claudius_F2_454_535_1034535_peptide number 18 10341.758700000008 0 RFMKKIQKLKTYRNAVPTQSVLTITSNVVYGKKTGNTPDGRRAGAPFGPGANPMHGRDQKGAVASLTSVAKLPFAYAKDGISYTFSIVPNALGKDAE I.claudius_F2_454_535_1034535_peptide number 19 2015.2154000000003 0 AQRRNLAGLMDGYFHHE I.claudius_F2_454_535_1034535_peptide number 20 418.44220000000007 0 ATVE I.claudius_F2_454_535_1034535_peptide number 21 1449.5713 0 GGQHLNVNVLNRE I.claudius_F2_454_535_1034535_peptide number 22 822.0020000000001 0 MLLDAME I.claudius_F2_454_535_1034535_peptide number 23 2897.2446 0 NPDKYPQLTIRVSGYAVRFNSLTKE I.claudius_F2_454_535_1034535_peptide number 24 1465.5643 0 QQQDVITRTFTE I.claudius_F2_454_535_1034535_peptide number 25 236.28869999999998 0 SM I.claudius_F2_455_325_1038500_peptide number 1 989.1441000000001 0 MPQITLSAE I.claudius_F2_455_325_1038500_peptide number 2 471.50480000000005 0 VQPE I.claudius_F2_455_325_1038500_peptide number 3 1389.5344 0 QMGQRLDQTLAE I.claudius_F2_455_325_1038500_peptide number 4 504.576 0 LFPE I.claudius_F2_455_325_1038500_peptide number 5 1438.6299 0 YSRSRLKTWIE I.claudius_F2_455_325_1038500_peptide number 6 1867.1115 0 ADLVKLNDRITNIPRE I.claudius_F2_455_325_1038500_peptide number 7 601.6929 0 KVLGGE I.claudius_F2_455_325_1038500_peptide number 8 416.47260000000006 0 RIE I.claudius_F2_455_325_1038500_peptide number 9 472.5756 0 IIVE I.claudius_F2_455_325_1038500_peptide number 10 246.2604 0 VE I.claudius_F2_455_325_1038500_peptide number 11 262.2167 0 DE I.claudius_F2_455_325_1038500_peptide number 12 551.5928 0 TRFE I.claudius_F2_455_325_1038500_peptide number 13 218.2072 0 AE I.claudius_F2_455_325_1038500_peptide number 14 1074.2269000000001 0 NIPLNIVYE I.claudius_F2_455_325_1038500_peptide number 15 4221.765 0 DDDIIVINKPKDLVVHPGAGNPNGTVLNALLYHYPPIVE I.claudius_F2_455_325_1038500_peptide number 16 4753.6202 0 VPRAGIVHRLDKDTTGLMVVAKTIPAQTKLVRDLQKRKITRE I.claudius_F2_455_325_1038500_peptide number 17 310.30260000000004 0 YE I.claudius_F2_455_325_1038500_peptide number 18 4748.603800000001 0 AVASGIMTKGGTVDQPMARHATKRTLMAVHPMGKPAVTHYRIME I.claudius_F2_455_325_1038500_peptide number 19 1767.0006 0 NYRNYTRLRLRLE I.claudius_F2_455_325_1038500_peptide number 20 4000.469600000001 0 TGRTHQIRVHMAHIAHPLLGDQTYGGRPRPPKNASE I.claudius_F2_455_325_1038500_peptide number 21 540.5867000000001 0 DFME I.claudius_F2_455_325_1038500_peptide number 22 2771.2934000000005 0 VLRNFKRQALHAVMLRLAHPITGE I.claudius_F2_455_325_1038500_peptide number 23 409.52150000000006 0 MME I.claudius_F2_455_325_1038500_peptide number 24 1351.4582 0 WYAPLPDDFVE I.claudius_F2_455_325_1038500_peptide number 25 1262.4511 0 LLNALKADYLE I.claudius_F2_455_325_1038500_peptide number 26 527.4852000000001 0 HQDE I.claudius_F2_455_325_1038500_peptide number 27 409.43360000000007 0 LDY I.claudius_F2_456_70_1042368_peptide number 1 6152.869300000002 0 MPTHAWRSANCSGVGCFSGRFSGPNPHKFTTGPTVTSNAPSVTLFKRIASANTLAKSAE I.claudius_F2_456_70_1042368_peptide number 2 1168.3829 0 ISIGVFTWVF I.claudius_F2_457_67_1043671_peptide number 1 1708.9050000000004 0 MWFSFDLDITTCTE I.claudius_F2_457_67_1043671_peptide number 2 4121.6839 0 RHFLAFRNSQFKLFDKGCFVIVRNNSTFPFFHAE I.claudius_F2_457_67_1043671_peptide number 3 2340.6301 0 DFFWKFNFHITFYINLTS I.claudius_F2_458_52_1046525_peptide number 1 2466.9674999999997 0 MRQAAMRVNTITAPPIKIARVE I.claudius_F2_458_52_1046525_peptide number 2 2892.3938000000007 0 TSPIEPGKLPTKASIQVIGAPVTVCCNAP I.claudius_F2_459_158_1049573_peptide number 1 2319.5950000000003 0 MNVNRTAVVSVTTKDSRAIQE I.claudius_F2_459_158_1049573_peptide number 2 1005.0822 0 IASYTKHGE I.claudius_F2_459_158_1049573_peptide number 3 5015.703799999999 0 LIKLNASPSVTQLFQQVMQQNLISKGFRVGQLNGSNAWVTVDVRE I.claudius_F2_459_158_1049573_peptide number 4 679.7187000000001 0 FGTQVE I.claudius_F2_459_158_1049573_peptide number 5 4073.4839000000006 0 QGNLRYKLNTKIQATVYVQGAKGSYNKSFNVTHSQE I.claudius_F2_459_158_1049573_peptide number 6 921.9074000000002 0 GVFNAGNDE I.claudius_F2_459_158_1049573_peptide number 7 2518.7320999999997 0 IHKVLSQTFNDIVNNIYQDQE I.claudius_F2_459_158_1049573_peptide number 8 1050.1227000000001 0 VAAAINQYSN I.claudius_F2_460_175_1052770_peptide number 1 3737.2866 0 MQKVKLPLTVDPIKDAQRRLDYVGYYAANQLE I.claudius_F2_460_175_1052770_peptide number 2 487.55050000000006 0 RLAE I.claudius_F2_460_175_1052770_peptide number 3 3977.5774000000006 0 SVVNVLSDAQVTLSFYVDPQKLVVMKGKVQIDVDLE I.claudius_F2_460_175_1052770_peptide number 4 1611.7981000000002 0 CQRCNEPYKQTLE I.claudius_F2_460_175_1052770_peptide number 5 250.2722 0 CE I.claudius_F2_460_175_1052770_peptide number 6 1968.0365 0 FTYSPVANWDQADDLPE I.claudius_F2_460_175_1052770_peptide number 7 762.8470000000002 0 IYEPIE I.claudius_F2_460_175_1052770_peptide number 8 408.4058 0 FNE I.claudius_F2_460_175_1052770_peptide number 9 351.35450000000003 0 FGE I.claudius_F2_460_175_1052770_peptide number 10 858.9757999999999 0 IDLIGTVE I.claudius_F2_460_175_1052770_peptide number 11 262.2167 0 DE I.claudius_F2_460_175_1052770_peptide number 12 1519.8466999999998 0 LILALPLVPMHSSE I.claudius_F2_460_175_1052770_peptide number 13 387.41150000000005 0 HCE I.claudius_F2_460_175_1052770_peptide number 14 532.5448 0 VSAQE I.claudius_F2_460_175_1052770_peptide number 15 888.0187000000001 0 QVFGVLPE I.claudius_F2_460_175_1052770_peptide number 16 147.1293 0 E I.claudius_F2_460_175_1052770_peptide number 17 1880.2808 0 LAKKPNPFAVLANLKQK I.claudius_F2_461_264_1053832_peptide number 1 482.55060000000003 0 MGFE I.claudius_F2_461_264_1053832_peptide number 2 715.7955000000001 0 AAKNAIE I.claudius_F2_461_264_1053832_peptide number 3 1098.1639 0 AAQINPQDIE I.claudius_F2_461_264_1053832_peptide number 4 7793.840800000001 0 LIIVATTSHSHAYPSAACQVQGLLNIDDAISFDLAAACTGFVYALSVADQFIRAGKVKKALVIGSDLNSRKLDE I.claudius_F2_461_264_1053832_peptide number 5 1920.1246000000006 0 TDRSTVVLFGDGAGAVILE I.claudius_F2_461_264_1053832_peptide number 6 305.2845 0 ASE I.claudius_F2_461_264_1053832_peptide number 7 275.2585 0 QE I.claudius_F2_461_264_1053832_peptide number 8 2399.6577 0 GIISTHLHASADKNNALVLAQPE I.claudius_F2_461_264_1053832_peptide number 9 473.5239 0 RGIE I.claudius_F2_461_264_1053832_peptide number 10 695.7611 0 KSGYIE I.claudius_F2_461_264_1053832_peptide number 11 577.6084999999999 0 MQGNE I.claudius_F2_461_264_1053832_peptide number 12 963.1317000000001 0 TFKLAVRE I.claudius_F2_461_264_1053832_peptide number 13 659.729 0 LSNVVE I.claudius_F2_461_264_1053832_peptide number 14 147.1293 0 E I.claudius_F2_461_264_1053832_peptide number 15 3757.3406000000004 0 TLLANNLDKKDLDWLVPHQANLRIITATAKKLE I.claudius_F2_461_264_1053832_peptide number 16 2882.2236 0 MDMSQVVVTLDKYANNSAATVPVALDE I.claudius_F2_461_264_1053832_peptide number 17 1851.1583000000003 0 AIRDGRIQRGQLLLLE I.claudius_F2_461_264_1053832_peptide number 18 1611.7994999999999 0 AFGGGWTWGSALVRF I.claudius_F2_462_192_1055614_peptide number 1 801.9079999999999 0 MQQAVPE I.claudius_F2_462_192_1055614_peptide number 2 1424.5750999999998 0 GTGAMYAIIGLDNE I.claudius_F2_462_192_1055614_peptide number 3 1060.2251999999999 0 AIINACKQAE I.claudius_F2_462_192_1055614_peptide number 4 147.1293 0 E I.claudius_F2_462_192_1055614_peptide number 5 204.1806 0 GE I.claudius_F2_462_192_1055614_peptide number 6 2227.516 0 VVSAVNFNSPGQVVIAGAKAAVE I.claudius_F2_462_192_1055614_peptide number 7 861.0215000000001 0 RAAALCKE I.claudius_F2_462_192_1055614_peptide number 8 2488.969700000001 0 AGAKRALPLAVSVPSHCALMKPAAE I.claudius_F2_462_192_1055614_peptide number 9 772.8866 0 QLAVTLE I.claudius_F2_462_192_1055614_peptide number 10 2182.4305 0 NIQINTPTISVLNNVDVKAE I.claudius_F2_462_192_1055614_peptide number 11 248.23319999999998 0 TE I.claudius_F2_462_192_1055614_peptide number 12 305.2845 0 GTE I.claudius_F2_462_192_1055614_peptide number 13 2088.4120000000003 0 IRTALVRQLYSPVRWTE I.claudius_F2_462_192_1055614_peptide number 14 347.36430000000007 0 TVE I.claudius_F2_462_192_1055614_peptide number 15 1273.4988 0 KMAQDGVLVLAE I.claudius_F2_462_192_1055614_peptide number 16 3381.8325000000004 0 VGPGKVLNGLTKRIVGDLQAISVNDVASFNAVE I.claudius_F2_462_192_1055614_peptide number 17 147.1293 0 E I.claudius_F2_462_192_1055614_peptide number 18 377.47790000000003 0 FLV I.claudius_F2_463_77_1057190_peptide number 1 478.5603 0 MSIE I.claudius_F2_463_77_1057190_peptide number 2 147.1293 0 E I.claudius_F2_463_77_1057190_peptide number 3 984.2370000000001 0 RVKKIIVE I.claudius_F2_463_77_1057190_peptide number 4 672.7708 0 QLGVKE I.claudius_F2_463_77_1057190_peptide number 5 147.1293 0 E I.claudius_F2_463_77_1057190_peptide number 6 586.6353 0 DVKPE I.claudius_F2_463_77_1057190_peptide number 7 551.5895 0 ASFVE I.claudius_F2_463_77_1057190_peptide number 8 1134.1482 0 DLGADSLDTVE I.claudius_F2_463_77_1057190_peptide number 9 674.8496 0 LVMALE I.claudius_F2_463_77_1057190_peptide number 10 147.1293 0 E I.claudius_F2_463_77_1057190_peptide number 11 147.1293 0 E I.claudius_F2_463_77_1057190_peptide number 12 522.5482000000001 0 FDIE I.claudius_F2_463_77_1057190_peptide number 13 472.4895 0 IPDE I.claudius_F2_463_77_1057190_peptide number 14 147.1293 0 E I.claudius_F2_463_77_1057190_peptide number 15 218.2072 0 AE I.claudius_F2_463_77_1057190_peptide number 16 1821.9815 0 KITTVQSAIDYVQNNQ I.claudius_F2_464_332_1057959_peptide number 1 1794.1668 0 MPIIGDVALKNKIRPE I.claudius_F2_464_332_1057959_peptide number 2 3784.4028000000003 0 RPMAASSVASQLAITSSPLSAAVVFYLGKITAMPAFE I.claudius_F2_464_332_1057959_peptide number 3 3443.0877000000005 0 HISLLDIICVTVPATLAGTIALSLYSMRRGKE I.claudius_F2_464_332_1057959_peptide number 4 260.2869 0 LE I.claudius_F2_464_332_1057959_peptide number 5 487.4611 0 QDPE I.claudius_F2_464_332_1057959_peptide number 6 1645.8193 0 YQRRLQDPVWRE I.claudius_F2_464_332_1057959_peptide number 7 1362.4859 0 RILNTTSTTLNE I.claudius_F2_464_332_1057959_peptide number 8 2998.7061000000003 0 TLPQGAKKSVYLFLLALVVIVAIAMIPE I.claudius_F2_464_332_1057959_peptide number 9 7693.250300000003 0 IRTIGSGKAISMSLIIQMMMLCFGGVILLATKTNPQIVQNGVVFKSGMVAAIAIYGIAWMSDTYFKYAMPE I.claudius_F2_464_332_1057959_peptide number 10 11951.014600000006 0 FKAAITDMVQTYPWTFALALFAVSVVINSQAATAVMLLPVGIGLGIPAPILVGLMPATYAYFFIPNYPSDIATVNFDVTGTTKIGKYYFNHSFMVPGLIGVVVACLVGVSVAE I.claudius_F2_464_332_1057959_peptide number 11 499.64730000000003 0 LVIR I.claudius_F2_465_256_1060296_peptide number 1 735.8035000000001 0 MLTQDE I.claudius_F2_465_256_1060296_peptide number 2 718.8625000000001 0 NMVKVE I.claudius_F2_465_256_1060296_peptide number 3 6079.7658 0 MTVQYRVQDPAKYLFSVTNADDSLNQATDSALRYVIGHMSMNDILTTGRSVVRE I.claudius_F2_465_256_1060296_peptide number 4 975.0561 0 NTWKALNE I.claudius_F2_465_256_1060296_peptide number 5 1168.3598 0 IIKSYDMGLE I.claudius_F2_465_256_1060296_peptide number 6 1471.6135 0 VIDVNFQSARPPE I.claudius_F2_465_256_1060296_peptide number 7 147.1293 0 E I.claudius_F2_465_256_1060296_peptide number 8 1449.5616000000002 0 VKDAFDDAIKAQE I.claudius_F2_465_256_1060296_peptide number 9 262.2167 0 DE I.claudius_F2_465_256_1060296_peptide number 10 847.9614 0 QRFIRE I.claudius_F2_465_256_1060296_peptide number 11 218.2072 0 AE I.claudius_F2_465_256_1060296_peptide number 12 608.6441000000001 0 AYARE I.claudius_F2_465_256_1060296_peptide number 13 1595.7987 0 KEPIARGDAQRILE I.claudius_F2_465_256_1060296_peptide number 14 147.1293 0 E I.claudius_F2_465_256_1060296_peptide number 15 1649.8429 0 ATAYKDRIVLDAKGE I.claudius_F2_465_256_1060296_peptide number 16 246.2604 0 VE I.claudius_F2_465_256_1060296_peptide number 17 1024.2178999999999 0 RLQRLLPE I.claudius_F2_465_256_1060296_peptide number 18 1159.3348 0 FKAAPDLLRE I.claudius_F2_465_256_1060296_peptide number 19 1053.2327 0 RLYIQTME I.claudius_F2_465_256_1060296_peptide number 20 2683.1089 0 KVMANTPKVMLDGNNGNNLTVLPLE I.claudius_F2_465_256_1060296_peptide number 21 2505.7983 0 QIMGKKSVTSAPSAVNSSPAFTAPE I.claudius_F2_465_256_1060296_peptide number 22 2458.6902 0 RQNSYQPQPTTVAPIRQGRFN I.claudius_F2_466_246_1063844_peptide number 1 6171.2885 0 MKVRLKNLMFFNRTFYYGINRFGTNVMICGKIVINTNVTKTGIKNGNTPLVTVE I.claudius_F2_466_246_1063844_peptide number 2 8473.038200000003 0 TDIFPTRATTKRAIPIGGVRIPTIIFNVVITPKKIKSILNCIAIGISIGNTKNCNARASMNIPRKSNSALIIINTVKGE I.claudius_F2_466_246_1063844_peptide number 3 6716.948000000005 0 SATATNTSATRIATCSRAIISPKKVTVIIIKATTPVIAIASMQLLNKLFKVNSLYTNLPIITE I.claudius_F2_466_246_1063844_peptide number 4 1637.8090000000002 0 YAAATMADSVGLNKPE I.claudius_F2_466_246_1063844_peptide number 5 3524.2497 0 KIPPIINNGVKIAQKDCLKLLQSCSLVAFGVRG I.claudius_F2_467_52_1066681_peptide number 1 2176.3746 0 MKFQHSYRISSHNQRQE I.claudius_F2_467_52_1066681_peptide number 2 3178.7507 0 QQKIRLKKWRWQGKVLSISSYSLLCE I.claudius_F2_467_52_1066681_peptide number 3 504.64060000000006 0 LMLE I.claudius_F2_467_52_1066681_peptide number 4 459.4973 0 RGID I.claudius_F2_468_105_1067514_peptide number 1 1357.5969000000002 0 MGCLAMADCSNLE I.claudius_F2_468_105_1067514_peptide number 2 147.1293 0 E I.claudius_F2_468_105_1067514_peptide number 3 2593.9247000000005 0 GLYCKALGFDIVGSTMSGYTGGAVPE I.claudius_F2_468_105_1067514_peptide number 4 2243.5551 0 EPDYQLVKDLKSAGCFVMAE I.claudius_F2_468_105_1067514_peptide number 5 835.8613 0 GRYNTPE I.claudius_F2_468_105_1067514_peptide number 6 742.9037000000001 0 LAKVAIE I.claudius_F2_468_105_1067514_peptide number 7 1604.8238000000001 0 IGADCVTVGSALTRLE I.claudius_F2_468_105_1067514_peptide number 8 1601.8065 0 HIVSWFANSVKSAR I.claudius_F2_469_300_1068736_peptide number 1 1216.4473000000003 0 MFYWISLKE I.claudius_F2_469_300_1068736_peptide number 2 2644.0082 0 QFMAKSGNVLNKIGSLYQSLTKSE I.claudius_F2_469_300_1068736_peptide number 3 2303.6318 0 KKIADTILRSPDLVSQCSLSE I.claudius_F2_469_300_1068736_peptide number 4 994.1456 0 IAKHLQVGE I.claudius_F2_469_300_1068736_peptide number 5 1932.2495000000001 0 ATLVRFCRTIGFKGFSE I.claudius_F2_469_300_1068736_peptide number 6 535.6331 0 FKLE I.claudius_F2_469_300_1068736_peptide number 7 460.5218 0 LSIE I.claudius_F2_469_300_1068736_peptide number 8 1033.0476 0 LATKDNQDE I.claudius_F2_469_300_1068736_peptide number 9 460.5218 0 SILE I.claudius_F2_469_300_1068736_peptide number 10 248.23319999999998 0 TE I.claudius_F2_469_300_1068736_peptide number 11 2475.8335000000006 0 IMPSDDSLTIAQKLQTAVANVME I.claudius_F2_469_300_1068736_peptide number 12 147.1293 0 E I.claudius_F2_469_300_1068736_peptide number 13 1299.5127000000002 0 TINLLDLKQLE I.claudius_F2_469_300_1068736_peptide number 14 147.1293 0 E I.claudius_F2_469_300_1068736_peptide number 15 2562.0619 0 VVKVLKKARRIFLFGVGSSGVTAE I.claudius_F2_469_300_1068736_peptide number 16 4947.4974 0 DAKNKLMRIGFQVDASGNNHFMYMQAALLTSSDVAIGLSHSGYSAE I.claudius_F2_469_300_1068736_peptide number 17 2946.3187000000003 0 TAHTIKIAKQNGATTVALTHSLRSPVTE I.claudius_F2_469_300_1068736_peptide number 18 4469.096 0 YADYVLVNGNKQGKLQGDSIGTKIAQLFVLDLIYALLVQGE I.claudius_F2_469_300_1068736_peptide number 19 147.1293 0 E I.claudius_F2_469_300_1068736_peptide number 20 1785.0474000000002 0 DIAAQTKQKTLNVILE I.claudius_F2_469_300_1068736_peptide number 21 543.6601 0 QRIK I.claudius_F2_470_271_1070813_peptide number 1 1134.3484999999998 0 MRFIPLQTE I.claudius_F2_470_271_1070813_peptide number 2 2669.9675 0 QQVSCWAAQHIINRINDFKPTAE I.claudius_F2_470_271_1070813_peptide number 3 2074.3788 0 RPFVLGLPTGGTPLKTYQE I.claudius_F2_470_271_1070813_peptide number 4 2596.0118 0 LIRLYQAGKVSFKHVVTFNMDE I.claudius_F2_470_271_1070813_peptide number 5 690.7844 0 YVALPE I.claudius_F2_470_271_1070813_peptide number 6 147.1293 0 E I.claudius_F2_470_271_1070813_peptide number 7 381.38380000000006 0 HPE I.claudius_F2_470_271_1070813_peptide number 8 2388.6101000000003 0 SYHSFMYNNFFNHIDILPE I.claudius_F2_470_271_1070813_peptide number 9 1653.6623000000002 0 NINILNGNTDDHNAE I.claudius_F2_470_271_1070813_peptide number 10 725.8169 0 CRRYE I.claudius_F2_470_271_1070813_peptide number 11 147.1293 0 E I.claudius_F2_470_271_1070813_peptide number 12 8025.071600000004 0 KIKSYGKIHLFMGGVGVDGHIAFNEPASSLSSRTRIKTLTQDTLIANSRFFNNDVTQVPKYALTIGVGTLLDAE I.claudius_F2_470_271_1070813_peptide number 13 147.1293 0 E I.claudius_F2_470_271_1070813_peptide number 14 1950.3062000000002 0 VMILATGHQKALAVQAAVE I.claudius_F2_470_271_1070813_peptide number 15 2807.2128 0 GSINHLWTVSALQMHRHFLLVCDE I.claudius_F2_470_271_1070813_peptide number 16 545.5435 0 AAQQE I.claudius_F2_470_271_1070813_peptide number 17 1355.621 0 LKVKTVKYFTE I.claudius_F2_470_271_1070813_peptide number 18 260.2869 0 LE I.claudius_F2_470_271_1070813_peptide number 19 1124.1583 0 GAVAGTDYQDK I.claudius_F2_471_61_1073613_peptide number 1 6829.218100000002 0 MLVSFVIFVVSSTISNFCNDVVCIIFCTNLNSIIDFTYTYFTSLIIRLLICIFCTLTLLC I.claudius_F2_472_241_1075136_peptide number 1 1062.1566 0 MNQLGAHYE I.claudius_F2_472_241_1075136_peptide number 2 670.778 0 GHCIIE I.claudius_F2_472_241_1075136_peptide number 3 487.5472000000001 0 IGAVE I.claudius_F2_472_241_1075136_peptide number 4 3732.1241999999997 0 LINRRYTGNN-HIYIKPDRP-DPDAIKVHGITDE I.claudius_F2_472_241_1075136_peptide number 5 802.9358 0 MLADKPE I.claudius_F2_472_241_1075136_peptide number 6 422.4755 0 FKE I.claudius_F2_472_241_1075136_peptide number 7 1454.5365000000002 0 VAQDFLDYINGAE I.claudius_F2_472_241_1075136_peptide number 8 1881.1115 0 LLIHNAPFDVGFMDYE I.claudius_F2_472_241_1075136_peptide number 9 6589.521700000002 0 FRKLNLNVKTDDICLVTDTLQMARQMYPGKRNNLDALCDRLGIDNSKRTLHGALLDAE I.claudius_F2_472_241_1075136_peptide number 10 2131.4251000000004 0 ILADVYLMMTGGQTNLFDE I.claudius_F2_472_241_1075136_peptide number 11 147.1293 0 E I.claudius_F2_472_241_1075136_peptide number 12 147.1293 0 E I.claudius_F2_472_241_1075136_peptide number 13 333.33770000000004 0 SVE I.claudius_F2_472_241_1075136_peptide number 14 1018.1887000000002 0 SGVIRVMQE I.claudius_F2_472_241_1075136_peptide number 15 447.4834000000001 0 KTAE I.claudius_F2_472_241_1075136_peptide number 16 147.1293 0 E I.claudius_F2_472_241_1075136_peptide number 17 2269.5094 0 IKSAVDFSHNLKLLQPTNDE I.claudius_F2_472_241_1075136_peptide number 18 709.7909 0 LQAHLE I.claudius_F2_472_241_1075136_peptide number 19 2996.4515000000006 0 FLKMMNKKSGNNCLWDKRFGNNNVH I.claudius_F2_473_349_1077017_peptide number 1 278.32540000000006 0 ME I.claudius_F2_473_349_1077017_peptide number 2 873.9921000000002 0 QVLAPFAE I.claudius_F2_473_349_1077017_peptide number 3 406.4977 0 KME I.claudius_F2_473_349_1077017_peptide number 4 447.3972 0 NADE I.claudius_F2_473_349_1077017_peptide number 5 720.6862000000001 0 NDRTSE I.claudius_F2_473_349_1077017_peptide number 6 147.1293 0 E I.claudius_F2_473_349_1077017_peptide number 7 147.1293 0 E I.claudius_F2_473_349_1077017_peptide number 8 390.34590000000003 0 QDE I.claudius_F2_473_349_1077017_peptide number 9 333.3392 0 WE I.claudius_F2_473_349_1077017_peptide number 10 275.2585 0 QE I.claudius_F2_473_349_1077017_peptide number 11 758.7292000000001 0 FDFDSE I.claudius_F2_473_349_1077017_peptide number 12 147.1293 0 E I.claudius_F2_473_349_1077017_peptide number 13 1190.2114000000001 0 DTALIDDALDE I.claudius_F2_473_349_1077017_peptide number 14 147.1293 0 E I.claudius_F2_473_349_1077017_peptide number 15 260.2869 0 LE I.claudius_F2_473_349_1077017_peptide number 16 147.1293 0 E I.claudius_F2_473_349_1077017_peptide number 17 147.1293 0 E I.claudius_F2_473_349_1077017_peptide number 18 2935.3819000000008 0 QDKNIKIAIVGRPNVGKSTLTNRILGE I.claudius_F2_473_349_1077017_peptide number 19 2441.7776000000003 0 DRVVVFDMPGTTRDSIYIPME I.claudius_F2_473_349_1077017_peptide number 20 2811.1604000000007 0 RDGQQYTLIDTAGVRKRGKVHLAVE I.claudius_F2_473_349_1077017_peptide number 21 2786.2270000000003 0 KFSVIKTLQAIQDANVVLLTIDARE I.claudius_F2_473_349_1077017_peptide number 22 4571.1069 0 NISDQDLSLLGFILNAGRSLVIVVNKWDGLDQDVKDRVKSE I.claudius_F2_473_349_1077017_peptide number 23 3746.1921000000007 0 LDRRLDFIDFARVHFISALHGSGVGNLFDSIKE I.claudius_F2_473_349_1077017_peptide number 24 2661.0803000000005 0 AYACATQKMTTSLLTRILQMATDE I.claudius_F2_473_349_1077017_peptide number 25 7564.797900000005 0 HQPPMIGGRRIKLKYAHPGGYNPPIIVVHGNQMDKLPDSYKRYLSNYYRKSLKIIGSPIRLLFQE I.claudius_F2_473_349_1077017_peptide number 26 3811.603500000001 0 GSNPFAGRKNKLTPNQLRKRKRLMKFIKKAKR I.claudius_F2_474_679_1083121_peptide number 1 4202.974999999999 0 MNAKKLSIMHSAYFWIILSLLAFALLPSNALDYGLFE I.claudius_F2_474_679_1083121_peptide number 2 537.4752 0 STSDE I.claudius_F2_474_679_1083121_peptide number 3 423.4602000000001 0 YLE I.claudius_F2_474_679_1083121_peptide number 4 4218.9165 0 AMGWASFNLTWAWFLPVIVYGALPLLRLPQQTQAKTE I.claudius_F2_474_679_1083121_peptide number 5 18815.606299999996 0 LFLTALSVLFMFISATVYKISMGYSVIVLLVGYTALATLSLAKLKVMQGDKFIIASLLCIILLIFFFIVYPTLAIFVSMFYDGDTFAPQQVMRILTQSYIVRVITNSLFLSGFVGIVSTVFGLAFALYTTRIARRTAFIGKIFSILPIVTPPFVVGLGVTLMLGRSGYVTE I.claudius_F2_474_679_1083121_peptide number 6 5243.984800000001 0 FLSTNFGFSSHNWLYGFNGIAIAQILAFAPISFMILDGALKSVHPSIE I.claudius_F2_474_679_1083121_peptide number 7 147.1293 0 E I.claudius_F2_474_679_1083121_peptide number 8 12556.317600000008 0 ASYTLRANRYQTFYQIIFPLLRPALANSFLIVFIQSLADFSNPLVLGGSFDVIATQIYFYIAGSQLDYASASTLGSMLLIFSLAIFIIQYIWIGNRSYVTVSGKSYRGDVQE I.claudius_F2_474_679_1083121_peptide number 9 11071.922200000008 0 LPNGLKYTIIGMLGFWVIFNMALYGSIFYGSFTVNWGVNYTLTLKNYAMLFGQGLSDGAWPSLINTLIYAGIAAPLTAFFGLLIAYIVVRKDFQGKKSLE I.claudius_F2_474_679_1083121_peptide number 10 6845.139800000004 0 FLTMLCFAVPGTVAGVSYILAFNNAPLYITGTGIIVIISMVMRDLPIGMRAAIAGLGQLDKSLDE I.claudius_F2_474_679_1083121_peptide number 11 11560.597300000005 0 ASLSLKGSSWKTLCFIVLPLLKPALLSALVTSFVRAMTTVSAIIFLVTADTRVYRIYFKSCGRRRIRHCDCIRFYFNCCDDGNYFVFRLDCRRYAYFPF I.claudius_F2_475_83_1088178_peptide number 1 940.0288 0 MKFVDDGE I.claudius_F2_475_83_1088178_peptide number 2 3687.050600000001 0 VDDKIVCVPADDRDTGNAYNSLADLPANLIKQIE I.claudius_F2_475_83_1088178_peptide number 3 2804.1213 0 FHFNNYKALKKPGSTKVTHWGDVE I.claudius_F2_475_83_1088178_peptide number 4 147.1293 0 E I.claudius_F2_475_83_1088178_peptide number 5 346.3795 0 AKE I.claudius_F2_475_83_1088178_peptide number 6 515.6037 0 VIRE I.claudius_F2_475_83_1088178_peptide number 7 932.0346999999999 0 SIKRWNE I.claudius_F2_475_83_1088178_peptide number 8 174.201 0 R I.claudius_F2_476_397_1089825_peptide number 1 4704.3041 0 MQTKYDLSTMFIHSGRQKRFSQGSVNPVLQRASSLLFDSIE I.claudius_F2_476_397_1089825_peptide number 2 1524.6845 0 DKKHATQRRAKGE I.claudius_F2_476_397_1089825_peptide number 3 2371.7354 0 LFYGRRGTLTHFALQDLMCE I.claudius_F2_476_397_1089825_peptide number 4 278.32540000000006 0 ME I.claudius_F2_476_397_1089825_peptide number 5 6813.779800000004 0 GGAGCYLYPCGTAAVTNSILSFVKTGDHVLMSGAAYEPTQYFCNIVLKKMQIDITYYDPLIGE I.claudius_F2_476_397_1089825_peptide number 6 1815.1147 0 DIATLIQPNTKVLFLE I.claudius_F2_476_397_1089825_peptide number 7 834.9346 0 APSSITME I.claudius_F2_476_397_1089825_peptide number 8 3948.6732 0 IPDIPTIVKAARKVNPNIVIMIDNTWSAGVLFKALE I.claudius_F2_476_397_1089825_peptide number 9 4096.5387 0 HDIDISIQAGTKYLVGHSDIMIGTAVANARTWDQLRE I.claudius_F2_476_397_1089825_peptide number 10 3734.185 0 HSYLMGQMVDADSAYTTARGIRTLGVRLKQHQE I.claudius_F2_476_397_1089825_peptide number 11 1247.4399 0 SSIKVAKWLSE I.claudius_F2_476_397_1089825_peptide number 12 372.3737 0 QPE I.claudius_F2_476_397_1089825_peptide number 13 1734.9722000000002 0 VKTVYHPALPSCPGHE I.claudius_F2_476_397_1089825_peptide number 14 1842.9989 0 FFLRDFSGSSGLFSFE I.claudius_F2_476_397_1089825_peptide number 15 947.0445000000001 0 LTQRLTSE I.claudius_F2_476_397_1089825_peptide number 16 2626.9594 0 QVSKFMDHFQLFAMAYSWGGFE I.claudius_F2_476_397_1089825_peptide number 17 1016.1692999999999 0 SLILCNQPE I.claudius_F2_476_397_1089825_peptide number 18 147.1293 0 E I.claudius_F2_476_397_1089825_peptide number 19 2755.2275999999997 0 IAHIRPNIKRNLTGSLIRVHIGFE I.claudius_F2_476_397_1089825_peptide number 20 475.45040000000006 0 NVDE I.claudius_F2_476_397_1089825_peptide number 21 1076.2428 0 LIADLKAGFE I.claudius_F2_476_397_1089825_peptide number 22 358.4365 0 RIA I.claudius_F2_477_89_1092495_peptide number 1 2841.3321 0 MKMGVHKDDIAPALGRADAVFMLQPE I.claudius_F2_477_89_1092495_peptide number 2 661.7033000000001 0 QLSWE I.claudius_F2_477_89_1092495_peptide number 3 6303.296800000003 0 VADIANQCVQPAYWNANLDRLVDMIVAKAQPTDHILVMSNGSFGGIHQKILDKLKLK I.claudius_F2_478_52_1093958_peptide number 1 5307.188000000002 0 MIVIMMFVVVFMLVFMIMIMVMVVFMIMFVFVLMVMIMIAIFME I.claudius_F2_478_52_1093958_peptide number 2 828.0513 0 MLMVSFT I.claudius_F2_479_55_1094415_peptide number 1 3123.940600000001 0 MALIFKSFFIFMFPYLLVVILKGKKE I.claudius_F2_479_55_1094415_peptide number 2 2140.4849 0 YAFLYKLQRFYSKKRE I.claudius_F2_479_55_1094415_peptide number 3 1374.5395 0 NFSFSKSIGFIQ I.claudius_F2_480_70_1095132_peptide number 1 7537.847500000002 0 MTSVFNLPIVPLIAGSWRLIFVTQISSISINVSSPMPDRAKASTTQEPTPPMPITQICAWRKRAKLSGV I.claudius_F2_481_546_1097396_peptide number 1 4547.44 0 MQVKRLYVKLSRRQLLMRSGWQVGSPLVDPMCGSGTLLIE I.claudius_F2_481_546_1097396_peptide number 2 548.6104 0 AAQME I.claudius_F2_481_546_1097396_peptide number 3 3200.5656000000004 0 AKIAPQLYRLHWGFDFWKAHNQSAWE I.claudius_F2_481_546_1097396_peptide number 4 616.7076000000001 0 KVKNE I.claudius_F2_481_546_1097396_peptide number 5 331.36480000000006 0 AIE I.claudius_F2_481_546_1097396_peptide number 6 331.36480000000006 0 LAE I.claudius_F2_481_546_1097396_peptide number 7 147.1293 0 E I.claudius_F2_481_546_1097396_peptide number 8 559.6165000000001 0 KQRE I.claudius_F2_481_546_1097396_peptide number 9 5509.203900000001 0 IQPHFYGFDLDHRVLKKAQKNAQNAGVSHLIKWQQADVAALKNPRLNE I.claudius_F2_481_546_1097396_peptide number 10 1248.4048 0 VGTVICNPPYGE I.claudius_F2_481_546_1097396_peptide number 11 2461.8995000000004 0 RLGTTPALIALYSVFGQRLKKE I.claudius_F2_481_546_1097396_peptide number 12 1361.4778999999999 0 FCGWNVSVFSSE I.claudius_F2_481_546_1097396_peptide number 13 3800.3507 0 STLLDCLRMRASRQFKAKNGPLDCVQKNYQVSE I.claudius_F2_481_546_1097396_peptide number 14 1034.0788 0 RKSDAITDE I.claudius_F2_481_546_1097396_peptide number 15 275.3016 0 KE I.claudius_F2_481_546_1097396_peptide number 16 260.2869 0 LE I.claudius_F2_481_546_1097396_peptide number 17 752.7727000000001 0 FNRTSE I.claudius_F2_481_546_1097396_peptide number 18 2841.2705999999994 0 VAPDFANRLQKNIKKISKWAKQQE I.claudius_F2_481_546_1097396_peptide number 19 1553.6676 0 LDAYRLYDADLPE I.claudius_F2_481_546_1097396_peptide number 20 1931.1058 0 YNLAVDRYADYIVVQE I.claudius_F2_481_546_1097396_peptide number 21 1020.0935000000001 0 YAAPKNIDE I.claudius_F2_481_546_1097396_peptide number 22 2283.5842000000002 0 NKARQRLLDAVTATLQVTGVE I.claudius_F2_481_546_1097396_peptide number 23 2289.6333000000004 0 TNKLILKVRQKQKGTNQYE I.claudius_F2_481_546_1097396_peptide number 24 758.8633000000001 0 KLANKGE I.claudius_F2_481_546_1097396_peptide number 25 833.8835000000001 0 YFYVNE I.claudius_F2_481_546_1097396_peptide number 26 3570.0366 0 YGTQLWVNLTDYLDTGLFLDHRLTRKMIGE I.claudius_F2_481_546_1097396_peptide number 27 4537.0245 0 LAKGKDFLNLFAYTGSATVHAALGGAKSTTTVDMSNTYLNWAE I.claudius_F2_481_546_1097396_peptide number 28 1071.1815 0 QNLILNDIE I.claudius_F2_481_546_1097396_peptide number 29 1910.2006000000003 0 GKQHKLIQADCLQWLE I.claudius_F2_481_546_1097396_peptide number 30 2746.082 0 KCDRQFDLIFADPPTFSNSKRME I.claudius_F2_481_546_1097396_peptide number 31 147.1293 0 E I.claudius_F2_481_546_1097396_peptide number 32 4929.687500000001 0 SWDVQRDHVKLMRNLKRVLSNNGTIVFSNNKRGFKMNLVALE I.claudius_F2_481_546_1097396_peptide number 33 147.1293 0 E I.claudius_F2_481_546_1097396_peptide number 34 701.8086000000001 0 LGLSAIE I.claudius_F2_481_546_1097396_peptide number 35 1299.4714 0 ISHKTLPLDFE I.claudius_F2_481_546_1097396_peptide number 36 1821.1372000000001 0 RNKQIHNCWMIQHI I.claudius_F2_482_78_1101304_peptide number 1 5116.879000000001 0 MSPSSRGLGHRPFTAVTGVRIPVGTPIKDNFIRLSYCSLKNWKQAE I.claudius_F2_482_78_1101304_peptide number 2 936.0268000000001 0 NKRFSRE I.claudius_F2_482_78_1101304_peptide number 3 1275.412 0 SLSRQNSKVKE I.claudius_F2_482_78_1101304_peptide number 4 404.4189 0 RTE I.claudius_F2_482_78_1101304_peptide number 5 275.3016 0 KE I.claudius_F2_482_78_1101304_peptide number 6 899.1292000000001 0 TLKTKPVL I.claudius_F2_483_138_1109368_peptide number 1 652.7811 0 MCALSE I.claudius_F2_483_138_1109368_peptide number 2 1821.0794 0 FSYRLLLYNVLAYGE I.claudius_F2_483_138_1109368_peptide number 3 10052.051000000005 0 LGNPTYLSKKKFLDKYFVQAPKLLNRKFCKNQSPYRLCKVKLYGMVNLIIAILFPHDLLILQVLPLIYLDQRFVPFLLYQIGAYE I.claudius_F2_483_138_1109368_peptide number 4 511.52880000000005 0 LNHE I.claudius_F2_483_138_1109368_peptide number 5 3256.7796999999996 0 YHDRKNLLQNGNMAYVRSFLLVILLHQ I.claudius_F2_484_98_1112392_peptide number 1 618.7433 0 MLGAVE I.claudius_F2_484_98_1112392_peptide number 2 9922.499500000004 0 VVKSPTISSKISSNVTSPLISPYSSTTKPIRSLFVRKFASCVFNGVLSGMKYTSSAARIKVSLVNSFFSRSKRNASRTRKMPSTCSSRLPL I.claudius_F2_485_463_1113685_peptide number 1 425.49930000000006 0 MFE I.claudius_F2_485_463_1113685_peptide number 2 2372.6805000000004 0 NLSDRLSKTLRNITGKGRLTE I.claudius_F2_485_463_1113685_peptide number 3 617.6492000000001 0 DNIKE I.claudius_F2_485_463_1113685_peptide number 4 517.5765 0 TLRE I.claudius_F2_485_463_1113685_peptide number 5 831.0353 0 VRMALLE I.claudius_F2_485_463_1113685_peptide number 6 1068.2243 0 ADVALPVVRE I.claudius_F2_485_463_1113685_peptide number 7 834.0144 0 FIAKVKE I.claudius_F2_485_463_1113685_peptide number 8 475.49340000000007 0 SALGE I.claudius_F2_485_463_1113685_peptide number 9 147.1293 0 E I.claudius_F2_485_463_1113685_peptide number 10 1072.1698 0 VNKSLTPGQE I.claudius_F2_485_463_1113685_peptide number 11 1032.2367 0 FLKIVQRE I.claudius_F2_485_463_1113685_peptide number 12 260.2869 0 LE I.claudius_F2_485_463_1113685_peptide number 13 534.6269000000001 0 KAMGE I.claudius_F2_485_463_1113685_peptide number 14 332.3098 0 ANE I.claudius_F2_485_463_1113685_peptide number 15 3582.2197000000006 0 SLNLATQPPAVILMAGLQGAGKTTSVGKLAKFLRE I.claudius_F2_485_463_1113685_peptide number 16 2649.1425000000004 0 RHKKKVLVVSADVYRPAAIKQLE I.claudius_F2_485_463_1113685_peptide number 17 5519.176200000001 0 TLAQSVGVDFFPSDVKQNPVDIAKSALADAKLKFYDVLIVDTAGRLHVDTE I.claudius_F2_485_463_1113685_peptide number 18 524.6089000000001 0 MMDE I.claudius_F2_485_463_1113685_peptide number 19 1332.5476 0 IKQVHAALNPIE I.claudius_F2_485_463_1113685_peptide number 20 2316.4998 0 TLFTVDAMTGQDAANTAKAFNE I.claudius_F2_485_463_1113685_peptide number 21 3933.597300000001 0 ALPLTGVILTKVDGDARGGAALSIRQITGKPIKFLGVGE I.claudius_F2_485_463_1113685_peptide number 22 376.4055000000001 0 KTE I.claudius_F2_485_463_1113685_peptide number 23 2736.15 0 ALEPFHPDRVASRILGMGDVLSLIE I.claudius_F2_485_463_1113685_peptide number 24 375.37430000000006 0 DLE I.claudius_F2_485_463_1113685_peptide number 25 760.7965 0 RSVDRE I.claudius_F2_485_463_1113685_peptide number 26 346.3795 0 KAE I.claudius_F2_485_463_1113685_peptide number 27 2319.5915 0 KMAQKFKKGDDFTLDDFRE I.claudius_F2_485_463_1113685_peptide number 28 501.57370000000003 0 QLIE I.claudius_F2_485_463_1113685_peptide number 29 1373.7919000000002 0 MKKMGGMMSMLE I.claudius_F2_485_463_1113685_peptide number 30 1056.2133999999999 0 KLPGAKNLSE I.claudius_F2_485_463_1113685_peptide number 31 1848.1515 0 HVKNQVDDKMFVKME I.claudius_F2_485_463_1113685_peptide number 32 1119.3322 0 AIINSMTLKE I.claudius_F2_485_463_1113685_peptide number 33 3980.4948000000004 0 RANPDIIKGSRRRRIALGSGTQVQDVNKLLKQFDE I.claudius_F2_485_463_1113685_peptide number 34 4264.388100000001 0 MQRMMKKMRKGGMAKMMRGMQGLMGGGLGGLGGLGGMFKR I.claudius_F2_486_417_1116831_peptide number 1 620.7592000000001 0 MLTKE I.claudius_F2_486_417_1116831_peptide number 2 540.4774000000001 0 YDDE I.claudius_F2_486_417_1116831_peptide number 3 332.35290000000003 0 GKE I.claudius_F2_486_417_1116831_peptide number 4 307.3235 0 CGE I.claudius_F2_486_417_1116831_peptide number 5 461.51150000000007 0 KWE I.claudius_F2_486_417_1116831_peptide number 6 2206.3691999999996 0 KINKSDALWTRSKNDVSDE I.claudius_F2_486_417_1116831_peptide number 7 147.1293 0 E I.claudius_F2_486_417_1116831_peptide number 8 2932.2489000000005 0 YKAFYKHLSHDFVDPVTWAHNKVE I.claudius_F2_486_417_1116831_peptide number 9 2653.94 0 GNQAYTSLLYVPAKAPWDLFNRE I.claudius_F2_486_417_1116831_peptide number 10 2299.6497000000004 0 HKHGLKLYVQRVFIMDDAE I.claudius_F2_486_417_1116831_peptide number 11 3108.5284 0 QFIPNYLRFMRGLIDSNDLPLNVSRE I.claudius_F2_486_417_1116831_peptide number 12 2755.2841 0 ILQDNKITAALRKALTKRSLQMLE I.claudius_F2_486_417_1116831_peptide number 13 888.9621000000001 0 KLAKDDAE I.claudius_F2_486_417_1116831_peptide number 14 1141.3178 0 KYLQFWKE I.claudius_F2_486_417_1116831_peptide number 15 804.9730999999999 0 FGLVLKE I.claudius_F2_486_417_1116831_peptide number 16 372.3737 0 GPAE I.claudius_F2_486_417_1116831_peptide number 17 722.7434000000001 0 DFANKE I.claudius_F2_486_417_1116831_peptide number 18 1846.0063 0 TVAKLLRFASTHNDGSE I.claudius_F2_486_417_1116831_peptide number 19 675.7284 0 QTVSLE I.claudius_F2_486_417_1116831_peptide number 20 1067.2593000000002 0 DYILRMKE I.claudius_F2_486_417_1116831_peptide number 21 2539.7927999999997 0 GQKAIYYITADSYVAAKNSPHLE I.claudius_F2_486_417_1116831_peptide number 22 948.1169000000001 0 LFNKKGIE I.claudius_F2_486_417_1116831_peptide number 23 1172.3286 0 VLLLSDRIDE I.claudius_F2_486_417_1116831_peptide number 24 1042.205 0 WMLSYLTE I.claudius_F2_486_417_1116831_peptide number 25 2520.7430999999997 0 FDGKQLQSITKADLDLGDLADKE I.claudius_F2_486_417_1116831_peptide number 26 234.2066 0 SE I.claudius_F2_486_417_1116831_peptide number 27 875.8805 0 TQKQQDE I.claudius_F2_486_417_1116831_peptide number 28 769.8412000000001 0 AFGSFIE I.claudius_F2_486_417_1116831_peptide number 29 928.0875 0 RVKNLLGE I.claudius_F2_486_417_1116831_peptide number 30 4554.125000000001 0 RVKTVRLTHNLTDTPAVVSTDNDQMTTQMAKLFAAAGQPVPE I.claudius_F2_486_417_1116831_peptide number 31 785.8838000000001 0 VKYTFE I.claudius_F2_486_417_1116831_peptide number 32 471.50470000000007 0 LNPE I.claudius_F2_486_417_1116831_peptide number 33 1474.6605000000004 0 HHLVKKVADIADE I.claudius_F2_486_417_1116831_peptide number 34 248.23319999999998 0 TE I.claudius_F2_486_417_1116831_peptide number 35 765.8095000000001 0 FADWVE I.claudius_F2_486_417_1116831_peptide number 36 486.60210000000006 0 LLLE I.claudius_F2_486_417_1116831_peptide number 37 661.768 0 QAMLAE I.claudius_F2_486_417_1116831_peptide number 38 560.6012000000001 0 RGSLE I.claudius_F2_486_417_1116831_peptide number 39 1554.8774 0 NPAAFIKRINKLLG I.claudius_F2_487_104_1119354_peptide number 1 391.48300000000006 0 MLE I.claudius_F2_487_104_1119354_peptide number 2 1200.39 0 KHNLKYRIE I.claudius_F2_487_104_1119354_peptide number 3 2616.0162 0 WNLSGKPFLTKPGKLLDSITSAIE I.claudius_F2_487_104_1119354_peptide number 4 147.1293 0 E I.claudius_F2_487_104_1119354_peptide number 5 929.0690000000002 0 TIGITPKAE I.claudius_F2_487_104_1119354_peptide number 6 1639.785 0 TGGGTSDGRFIALMGAE I.claudius_F2_487_104_1119354_peptide number 7 345.39150000000006 0 VVE I.claudius_F2_487_104_1119354_peptide number 8 1455.614 0 FGPLNSTIHKVNE I.claudius_F2_487_104_1119354_peptide number 9 535.6117 0 CVSVE I.claudius_F2_487_104_1119354_peptide number 10 720.7921 0 DLGKCGE I.claudius_F2_487_104_1119354_peptide number 11 1445.7251 0 IYHKMLVNLLDS I.claudius_F2_488_63_1120158_peptide number 1 2729.1408000000006 0 MNMQSNKKVGREPWHISYLPLAE I.claudius_F2_488_63_1120158_peptide number 2 1006.0669 0 LASQQFSPE I.claudius_F2_488_63_1120158_peptide number 3 1041.2003 0 ILPQAWKGE I.claudius_F2_488_63_1120158_peptide number 4 1397.596 0 NILGADCLISHLE I.claudius_F2_488_63_1120158_peptide number 5 622.6673 0 QIFSE I.claudius_F2_488_63_1120158_peptide number 6 393.47730000000007 0 YIV I.claudius_F2_489_76_1120986_peptide number 1 1655.0583000000001 0 MLRVVVVRLKVDVE I.claudius_F2_489_76_1120986_peptide number 2 5038.935899999999 0 SDPPVQKYPLVALFVQSAFFLRYFFLCRCLIRKQCCDRHLSE I.claudius_F2_489_76_1120986_peptide number 3 147.1293 0 E I.claudius_F2_489_76_1120986_peptide number 4 1929.1843999999999 0 KVRPLAPHNRDDVVALE I.claudius_F2_489_76_1120986_peptide number 5 133.1027 0 D I.claudius_F2_490_70_1123714_peptide number 1 2271.6795 0 MQSSLFSVQVVRLFVRFVE I.claudius_F2_490_70_1123714_peptide number 2 6128.420700000003 0 WFVLKLVLKALLQKDRQKSLFVQCRKHRLVFYRLLLLIDLQVAHFSRYLA I.claudius_F2_491_59_1124428_peptide number 1 6872.1696999999995 0 MQFIQIFYVAVIHISSTNILICAFYQCFYILSKAFRYVSFVIFKGINWIGRKINIDIT I.claudius_F2_492_93_1125619_peptide number 1 2633.0734 0 MRKAINVTVTPLTKDGWKGIFQE I.claudius_F2_492_93_1125619_peptide number 2 1315.345 0 SGFRNVDTFSGE I.claudius_F2_492_93_1125619_peptide number 3 1497.775 0 MTLLSPKGMIYDE I.claudius_F2_492_93_1125619_peptide number 4 1762.1248999999998 0 GIFGTLKIIRNAMKAE I.claudius_F2_492_93_1125619_peptide number 5 417.4176 0 NRE I.claudius_F2_492_93_1125619_peptide number 6 1687.9157000000002 0 QFKRMFKTFNDPE I.claudius_F2_492_93_1125619_peptide number 7 1410.6860000000001 0 HKLHFIAVCSQK I.claudius_F2_493_369_1126769_peptide number 1 6067.041700000001 0 MQLDKYTAKKIVKRAMKIIHHSVNVMDHDGVIIASGNSTRLNQRHTGAVLALRE I.claudius_F2_493_369_1126769_peptide number 2 615.6798 0 NRVVE I.claudius_F2_493_369_1126769_peptide number 3 1462.6048 0 IDQALAQKWNFE I.claudius_F2_493_369_1126769_peptide number 4 3491.9446000000003 0 AQPGINLPIHYLGKNIGVVGISGEPTQVKQYAE I.claudius_F2_493_369_1126769_peptide number 5 790.9682 0 LVKMTAE I.claudius_F2_493_369_1126769_peptide number 6 472.5756 0 LIVE I.claudius_F2_493_369_1126769_peptide number 7 700.7808 0 QQALLE I.claudius_F2_493_369_1126769_peptide number 8 275.2585 0 QE I.claudius_F2_493_369_1126769_peptide number 9 1161.2728000000002 0 SWHRRYKE I.claudius_F2_493_369_1126769_peptide number 10 147.1293 0 E I.claudius_F2_493_369_1126769_peptide number 11 1771.09 0 FILQLLHCNLNWKE I.claudius_F2_493_369_1126769_peptide number 12 278.32540000000006 0 ME I.claudius_F2_493_369_1126769_peptide number 13 4319.997200000001 0 QQAKFFSFDLNKSRVVVLIKLLNPALDNLQNLINYLE I.claudius_F2_493_369_1126769_peptide number 14 362.33580000000006 0 QSE I.claudius_F2_493_369_1126769_peptide number 15 6199.152800000001 0 FAQDVAILSLDQVVVLKTWQNSTVLSAQMKTLLPADYSKQDYKIAVGACLNLPLFE I.claudius_F2_493_369_1126769_peptide number 16 3447.8507 0 QLPLSFQSAQSTLSYGLKHHPRKGIYVFDE I.claudius_F2_493_369_1126769_peptide number 17 2014.2471 0 HRLPVLLAGLSHSWQGNE I.claudius_F2_493_369_1126769_peptide number 18 1243.4909 0 LIKPLSPLFSE I.claudius_F2_493_369_1126769_peptide number 19 147.1293 0 E I.claudius_F2_493_369_1126769_peptide number 20 2725.0758 0 NAILYKTLQQYFLSNCDLYLTAE I.claudius_F2_493_369_1126769_peptide number 21 2141.5175999999997 0 KLFVHPNTLRYRLNKIE I.claudius_F2_493_369_1126769_peptide number 22 2656.0767 0 QITGLFFNKIDDKLTLYLGTLLE I.claudius_F2_493_369_1126769_peptide number 23 155.1546 0 H I.claudius_F2_494_60_1129077_peptide number 1 3342.7401 0 MIHAGATVFDHMPHGSFFHATGGSVNMDIKE I.claudius_F2_494_60_1129077_peptide number 2 1031.2486 0 RLKLIPYE I.claudius_F2_494_60_1129077_peptide number 3 2161.6681 0 SAVGLMMTIVSTLIFGVFKF I.claudius_F2_495_127_1130021_peptide number 1 4274.0317 0 MGGGLLLLPSVQLKAGIQIVLDRLHLIDYVKDADVVITGE I.claudius_F2_495_127_1130021_peptide number 2 3811.4826000000003 0 GRIDAQSIMGKTPIGVARTAKQFNKPVIAIAGCLRE I.claudius_F2_495_127_1130021_peptide number 3 3469.8049 0 DYDVVFDHGIDAVFPIIHQLGDLSDILKQGE I.claudius_F2_495_127_1130021_peptide number 4 2157.4739 0 QNLISTAQNVARVLAFKFH I.claudius_F2_496_816_1131478_peptide number 1 1619.8830999999998 0 MRVLKFGGTSLANPE I.claudius_F2_496_816_1131478_peptide number 2 1162.3387 0 RFSQAAKLIE I.claudius_F2_496_816_1131478_peptide number 3 596.6333000000001 0 QAHLE I.claudius_F2_496_816_1131478_peptide number 4 147.1293 0 E I.claudius_F2_496_816_1131478_peptide number 5 2090.3798 0 QAAGVLSAPAKITNHLVALSE I.claudius_F2_496_816_1131478_peptide number 6 1575.6351 0 KAALNQSTDTHFNE I.claudius_F2_496_816_1131478_peptide number 7 331.36480000000006 0 AIE I.claudius_F2_496_816_1131478_peptide number 8 1433.6066000000003 0 IFYNIINGLHTE I.claudius_F2_496_816_1131478_peptide number 9 1762.8711 0 NNQFDLNGTKALIDAE I.claudius_F2_496_816_1131478_peptide number 10 1046.2599 0 FVQIKGLLE I.claudius_F2_496_816_1131478_peptide number 11 147.1293 0 E I.claudius_F2_496_816_1131478_peptide number 12 900.0344 0 IRQAGKVE I.claudius_F2_496_816_1131478_peptide number 13 1277.4047 0 DAVKATIDCRGE I.claudius_F2_496_816_1131478_peptide number 14 1454.7982000000002 0 KLSIAMMKAWFE I.claudius_F2_496_816_1131478_peptide number 15 2513.888 0 ARGYSVHIVDPVKQLLAKGGYLE I.claudius_F2_496_816_1131478_peptide number 16 420.4150000000001 0 SSVE I.claudius_F2_496_816_1131478_peptide number 17 260.2869 0 IE I.claudius_F2_496_816_1131478_peptide number 18 147.1293 0 E I.claudius_F2_496_816_1131478_peptide number 19 2707.0676000000008 0 STKRVDAANIAKDKVVLMAGFTAGNE I.claudius_F2_496_816_1131478_peptide number 20 332.35290000000003 0 KGE I.claudius_F2_496_816_1131478_peptide number 21 2556.9325 0 LVLLGRNGSDYSAACLAACLGASVCE I.claudius_F2_496_816_1131478_peptide number 22 3364.7805000000003 0 IWTDVDGVYTCDPRLVPDARLLPTLSYRE I.claudius_F2_496_816_1131478_peptide number 23 349.40330000000006 0 AME I.claudius_F2_496_816_1131478_peptide number 24 4814.520500000001 0 LSYFGAKVIHPRTIGPLLPQNIPCVIKNTGNPSAPGSIIDGNVKSE I.claudius_F2_496_816_1131478_peptide number 25 5391.204100000002 0 SLQVKGITNLDNLAMFNVSGPGMQGMVGMASRVFSAMSGAGISVILITQSSSE I.claudius_F2_496_816_1131478_peptide number 26 1429.6365 0 YSISFCVPVKSAE I.claudius_F2_496_816_1131478_peptide number 27 758.9032000000001 0 VAKTVLE I.claudius_F2_496_816_1131478_peptide number 28 248.23319999999998 0 TE I.claudius_F2_496_816_1131478_peptide number 29 479.4837 0 FANE I.claudius_F2_496_816_1131478_peptide number 30 374.3895 0 LNE I.claudius_F2_496_816_1131478_peptide number 31 864.9422000000001 0 HQLEPIE I.claudius_F2_496_816_1131478_peptide number 32 4576.275799999999 0 VIKDLSIISVVGDGMKQAKGIAARFFSALAQANISIVAIAQGSSE I.claudius_F2_496_816_1131478_peptide number 33 1511.7221 0 RSISAVVPQNKAIE I.claudius_F2_496_816_1131478_peptide number 34 2986.447100000001 0 AVKATHQALFNNKKVVDMFLVGVGGVGGE I.claudius_F2_496_816_1131478_peptide number 35 373.44450000000006 0 LIE I.claudius_F2_496_816_1131478_peptide number 36 915.0491 0 QVKRQKE I.claudius_F2_496_816_1131478_peptide number 37 964.1164000000001 0 YLAKKNVE I.claudius_F2_496_816_1131478_peptide number 38 1818.1269000000002 0 IRVCAIANSNRMLLDE I.claudius_F2_496_816_1131478_peptide number 39 658.701 0 NGLNLE I.claudius_F2_496_816_1131478_peptide number 40 918.9465000000001 0 DWKNDLE I.claudius_F2_496_816_1131478_peptide number 41 3543.9532000000004 0 NATQPSDFDVLLSFIKLHHVVNPVFVDCTSAE I.claudius_F2_496_816_1131478_peptide number 42 1277.4692 0 SVAGLYARALKE I.claudius_F2_496_816_1131478_peptide number 43 1697.8924 0 GFHVVTPNKKANTRE I.claudius_F2_496_816_1131478_peptide number 44 799.8672000000001 0 LVYYNE I.claudius_F2_496_816_1131478_peptide number 45 1833.0122999999999 0 LRQNAQASQHKFLYE I.claudius_F2_496_816_1131478_peptide number 46 1069.2089 0 TNVGAGLPVIE I.claudius_F2_496_816_1131478_peptide number 47 1157.231 0 NLQNLLAAGDE I.claudius_F2_496_816_1131478_peptide number 48 260.2869 0 LE I.claudius_F2_496_816_1131478_peptide number 49 457.4765000000001 0 YFE I.claudius_F2_496_816_1131478_peptide number 50 1567.8232 0 GILSGSLSFIFGKLE I.claudius_F2_496_816_1131478_peptide number 51 147.1293 0 E I.claudius_F2_496_816_1131478_peptide number 52 604.6504 0 GLSLSE I.claudius_F2_496_816_1131478_peptide number 53 758.8634000000001 0 VTALARE I.claudius_F2_496_816_1131478_peptide number 54 3040.3868000000007 0 KGFTEPDPRDDLSGQDVARKLLILARE I.claudius_F2_496_816_1131478_peptide number 55 388.41610000000003 0 AGIE I.claudius_F2_496_816_1131478_peptide number 56 260.2869 0 LE I.claudius_F2_496_816_1131478_peptide number 57 561.5827 0 LSDVE I.claudius_F2_496_816_1131478_peptide number 58 246.2604 0 VE I.claudius_F2_496_816_1131478_peptide number 59 1506.6129 0 GVLPKGFSDGKSADE I.claudius_F2_496_816_1131478_peptide number 60 1194.4203 0 FMAMLPQLDE I.claudius_F2_496_816_1131478_peptide number 61 147.1293 0 E I.claudius_F2_496_816_1131478_peptide number 62 1221.4061000000002 0 FKTRVATAKAE I.claudius_F2_496_816_1131478_peptide number 63 1348.5902 0 GKVLRYVGKISE I.claudius_F2_496_816_1131478_peptide number 64 2489.8849 0 GKCKVSIVAVDLNNPLYKVKDGE I.claudius_F2_496_816_1131478_peptide number 65 4511.145800000001 0 NALAFYTRYYQPIPLLLRGYGAGNAVTAAGIFADILRTLQH I.claudius_F2_497_86_1137903_peptide number 1 1138.2941 0 MLSFRLQDE I.claudius_F2_497_86_1137903_peptide number 2 1981.3366 0 AWVNTFLKSIKLITFAE I.claudius_F2_497_86_1137903_peptide number 3 562.5707 0 SLGGTE I.claudius_F2_497_86_1137903_peptide number 4 1851.041 0 SFITYPATQTHMDIPE I.claudius_F2_497_86_1137903_peptide number 5 234.2066 0 SE I.claudius_F2_497_86_1137903_peptide number 6 2002.3211 0 RVARGITNTLLRFSVGIE I.claudius_F2_497_86_1137903_peptide number 7 361.3478 0 DVE I.claudius_F2_497_86_1137903_peptide number 8 1559.8045 0 DIKADLLQAFANLK I.claudius_F2_498_220_1138509_peptide number 1 2232.5953000000004 0 MMTLNRRIHRAYQRTRE I.claudius_F2_498_220_1138509_peptide number 2 679.7186 0 ANFSLE I.claudius_F2_498_220_1138509_peptide number 3 5028.999000000001 0 GLIGFNMYGRTVGVIGTGKIGIAVMRILKGFGMNILAYDPFKNPVVE I.claudius_F2_498_220_1138509_peptide number 4 147.1293 0 E I.claudius_F2_498_220_1138509_peptide number 5 764.8231000000001 0 LGGQYVE I.claudius_F2_498_220_1138509_peptide number 6 375.37430000000006 0 LDE I.claudius_F2_498_220_1138509_peptide number 7 1880.1716000000004 0 LYAKSHVITLHCPATPE I.claudius_F2_498_220_1138509_peptide number 8 1005.1052 0 NYHLLNCE I.claudius_F2_498_220_1138509_peptide number 9 4627.3675 0 AFAKMKDGVMIVNTSRGSLIDTQAAIDALKQRKIGALGMDVYE I.claudius_F2_498_220_1138509_peptide number 10 261.2319 0 NE I.claudius_F2_498_220_1138509_peptide number 11 825.9078000000001 0 RDLFFE I.claudius_F2_498_220_1138509_peptide number 12 591.5689 0 DKSNE I.claudius_F2_498_220_1138509_peptide number 13 3113.5051999999996 0 VIQDDIFRRLSSCHNVLLTGHQAFLTE I.claudius_F2_498_220_1138509_peptide number 14 147.1293 0 E I.claudius_F2_498_220_1138509_peptide number 15 2480.8747 0 ALTNIADVTLSNIYKLKSGKVCE I.claudius_F2_498_220_1138509_peptide number 16 641.7567 0 NIVLPS I.claudius_F2_499_61_1141176_peptide number 1 719.8506 0 MRVSVE I.claudius_F2_499_61_1141176_peptide number 2 147.1293 0 E I.claudius_F2_499_61_1141176_peptide number 3 4978.602399999998 0 VHKYLYLNSIKNPLIIANQGIHRSMAFKNSSFDDDRSKALRSE I.claudius_F2_499_61_1141176_peptide number 4 1244.5205 0 VYTVFYLLVK I.claudius_F2_500_460_1142391_peptide number 1 1365.6405 0 MLKIFNTLTRE I.claudius_F2_500_460_1142391_peptide number 2 275.3016 0 KE I.claudius_F2_500_460_1142391_peptide number 3 883.0452 0 IFKPIHE I.claudius_F2_500_460_1142391_peptide number 4 6899.952000000002 0 NKVGMYVCGVTVYDLCHIGHGRTFVCFDVIARYLRSLGYDLTYVRNITDVDDKIIKRALE I.claudius_F2_500_460_1142391_peptide number 5 389.40420000000006 0 NKE I.claudius_F2_500_460_1142391_peptide number 6 1436.6109000000001 0 TCDQLVDRMVQE I.claudius_F2_500_460_1142391_peptide number 7 3012.3568000000005 0 MYKDFDALNVLRPDFEPRATHHIPE I.claudius_F2_500_460_1142391_peptide number 8 373.44450000000006 0 IIE I.claudius_F2_500_460_1142391_peptide number 9 359.418 0 IVE I.claudius_F2_500_460_1142391_peptide number 10 2377.6739000000007 0 KLIKRGHAYVADNGDVMFDVE I.claudius_F2_500_460_1142391_peptide number 11 509.55280000000005 0 SFKE I.claudius_F2_500_460_1142391_peptide number 12 1208.321 0 YGKLSRQDLE I.claudius_F2_500_460_1142391_peptide number 13 985.0957000000001 0 QLQAGARIE I.claudius_F2_500_460_1142391_peptide number 14 374.3895 0 INE I.claudius_F2_500_460_1142391_peptide number 15 1994.4233000000002 0 IKKNPMDFVLWKMSKE I.claudius_F2_500_460_1142391_peptide number 16 2134.2681000000002 0 NEPSWASPWGAGRPGWHIE I.claudius_F2_500_460_1142391_peptide number 17 1183.3794 0 CSAMNCKQLGE I.claudius_F2_500_460_1142391_peptide number 18 1959.1008000000002 0 YFDIHGGGSDLMFPHHE I.claudius_F2_500_460_1142391_peptide number 19 261.2319 0 NE I.claudius_F2_500_460_1142391_peptide number 20 3041.4624000000003 0 IAQSCCAHGGQYVNYWIHSGMIMVDKE I.claudius_F2_500_460_1142391_peptide number 21 2584.9029000000005 0 KMSKSLGNFFTIRDVLNHYNAE I.claudius_F2_500_460_1142391_peptide number 22 2331.5838 0 AVRYFLLTAHYRSQLNYSE I.claudius_F2_500_460_1142391_peptide number 23 147.1293 0 E I.claudius_F2_500_460_1142391_peptide number 24 1042.1435999999999 0 NLNLAQGALE I.claudius_F2_500_460_1142391_peptide number 25 2012.1835 0 RLYTALRGTDQSAVAFGGE I.claudius_F2_500_460_1142391_peptide number 26 983.0783 0 NFVATFRE I.claudius_F2_500_460_1142391_peptide number 27 1899.0391 0 AMDDDFNTPNALSVLFE I.claudius_F2_500_460_1142391_peptide number 28 505.58900000000006 0 MARE I.claudius_F2_500_460_1142391_peptide number 29 844.9956000000001 0 INKLKTE I.claudius_F2_500_460_1142391_peptide number 30 361.3478 0 DVE I.claudius_F2_500_460_1142391_peptide number 31 1198.3758 0 KANGLAARLRE I.claudius_F2_500_460_1142391_peptide number 32 1380.5854 0 LGAILGLLQQEPE I.claudius_F2_500_460_1142391_peptide number 33 1223.2462 0 KFLQAGSNDDE I.claudius_F2_500_460_1142391_peptide number 34 558.6682000000001 0 VAKIE I.claudius_F2_500_460_1142391_peptide number 35 971.1122 0 ALIKQRNE I.claudius_F2_500_460_1142391_peptide number 36 1748.8082999999997 0 ARTAKDWSAADSARNE I.claudius_F2_500_460_1142391_peptide number 37 946.1624000000002 0 LTAMGIVLE I.claudius_F2_500_460_1142391_peptide number 38 1259.328 0 DGPNGTTWRKQ I.claudius_F2_501_77_1147660_peptide number 1 436.4806000000001 0 MTGE I.claudius_F2_501_77_1147660_peptide number 2 6956.973000000003 0 NFIPYFLPNLVAIKFIGNIDRTCGFFNGINDTLNLKLRTRTIALDDPKVTHDIAPIYSVFE I.claudius_F2_501_77_1147660_peptide number 3 1391.7241000000001 0 MRIALYIDLKR I.claudius_F2_502_115_1148201_peptide number 1 2089.4116 0 MQPSIVQDTLIAGAIQKFE I.claudius_F2_502_115_1148201_peptide number 2 556.6076 0 FVYE I.claudius_F2_502_115_1148201_peptide number 3 3612.1396000000004 0 LSLKMMKRQLQQDAINTDDIGAYGFKDILRE I.claudius_F2_502_115_1148201_peptide number 4 3574.9968999999996 0 ALRFGLIGDMSKWVAYRDMRNITSHTYDQE I.claudius_F2_502_115_1148201_peptide number 5 1726.9865000000002 0 KAMAVYAQIDDFLIE I.claudius_F2_502_115_1148201_peptide number 6 694.773 0 SSFLLE I.claudius_F2_502_115_1148201_peptide number 7 1220.2952 0 QLRQRNQYD I.claudius_F2_503_52_1149035_peptide number 1 5264.4299 0 MLHRQLPQLPRQNAQRLKLILLRLVLHRQIRLLRFHLLYLLE I.claudius_F2_503_52_1149035_peptide number 2 1087.1908 0 WQGHALGYR I.claudius_F2_504_286_1149591_peptide number 1 4297.0417 0 MNHLYRSFKTIALVGKPRNDINLQMHKNLFHWLME I.claudius_F2_504_286_1149591_peptide number 2 963.0886 0 RGYQVLVE I.claudius_F2_504_286_1149591_peptide number 3 275.3016 0 KE I.claudius_F2_504_286_1149591_peptide number 4 644.7574000000001 0 VAITLE I.claudius_F2_504_286_1149591_peptide number 5 504.576 0 LPFE I.claudius_F2_504_286_1149591_peptide number 6 682.7656000000001 0 HLATLE I.claudius_F2_504_286_1149591_peptide number 7 147.1293 0 E I.claudius_F2_504_286_1149591_peptide number 8 5919.771100000003 0 IGHRAQLAIVIGGDGNMLGRARVLAKYDIPLIGINRGNLGFLTDIDPKNAYSQLE I.claudius_F2_504_286_1149591_peptide number 9 434.5077 0 ACLE I.claudius_F2_504_286_1149591_peptide number 10 360.3663 0 RGE I.claudius_F2_504_286_1149591_peptide number 11 540.6082 0 FFVE I.claudius_F2_504_286_1149591_peptide number 12 147.1293 0 E I.claudius_F2_504_286_1149591_peptide number 13 676.8041000000001 0 RFLLE I.claudius_F2_504_286_1149591_peptide number 14 459.5371 0 AKIE I.claudius_F2_504_286_1149591_peptide number 15 461.4702 0 RASE I.claudius_F2_504_286_1149591_peptide number 16 1033.0907 0 IVSTSNAVNE I.claudius_F2_504_286_1149591_peptide number 17 9319.634100000003 0 AVIHPAKIAHMIDFHVYINDKFAFSQRSDGLIVSTPTGSTAYSLSAGGPILTPNLNAIALVPMFPHTLTSRPLVVDGDSKISIRFAE I.claudius_F2_504_286_1149591_peptide number 18 827.8392 0 HNTSQLE I.claudius_F2_504_286_1149591_peptide number 19 2528.7885 0 VGCDSQITLPFTPDDVVHIQKSE I.claudius_F2_504_286_1149591_peptide number 20 1945.5279000000003 0 HKLRLLHLKIIIITMC I.claudius_F2_505_212_1151633_peptide number 1 504.64060000000006 0 MLIE I.claudius_F2_505_212_1151633_peptide number 2 275.2585 0 QE I.claudius_F2_505_212_1151633_peptide number 3 649.7391 0 KRAFE I.claudius_F2_505_212_1151633_peptide number 4 3677.1304000000005 0 QMQATATALTASRQQSATRLAQNVTQSIKQLAME I.claudius_F2_505_212_1151633_peptide number 5 332.3098 0 NAE I.claudius_F2_505_212_1151633_peptide number 6 556.6076 0 FYVE I.claudius_F2_505_212_1151633_peptide number 7 4053.4460000000004 0 LNTDLDKVSANGADNVIFTLRSNLGQQPQPLAKIASGGE I.claudius_F2_505_212_1151633_peptide number 8 2731.102 0 LSRISLAIQVLTSDQSAIPTLIFDE I.claudius_F2_505_212_1151633_peptide number 9 2256.5986000000003 0 VDVGISGKTASVVGKLLRQLSE I.claudius_F2_505_212_1151633_peptide number 10 2756.1529 0 RCQVLCVTHLPQVACHGHHQFNVE I.claudius_F2_505_212_1151633_peptide number 11 1081.1766999999998 0 KFTVDNKTE I.claudius_F2_505_212_1151633_peptide number 12 1079.2254 0 TKMTALSQAE I.claudius_F2_505_212_1151633_peptide number 13 1338.5555000000002 0 RVPALARLLGGSE I.claudius_F2_505_212_1151633_peptide number 14 361.3908 0 ITE I.claudius_F2_505_212_1151633_peptide number 15 828.91 0 LALANAQE I.claudius_F2_505_212_1151633_peptide number 16 726.8844000000001 0 MLDLVH I.claudius_F2_506_69_1156946_peptide number 1 8391.443899999998 0 MIWKHWCVRKVRLILLWFFMILWRKAILPRSCTIRTNAVIRLGLTHRIFFVIFYRTLVCMPINLFLIV I.claudius_F2_507_52_1157613_peptide number 1 852.9514000000001 0 MTSSIWE I.claudius_F2_507_52_1157613_peptide number 2 4641.470400000001 0 NSVLSVRKNFRRAGVLKKRLATSTVVPTGCDAGLIVVSISRPCA I.claudius_F2_508_94_1157970_peptide number 1 5423.1844 0 MRIKFAPPFSISIWILFAPASRLFSTNSFTTDAGRSTTSPAAIWLASCGE I.claudius_F2_508_94_1157970_peptide number 2 4795.770299999999 0 RILIGIYFSLNFIFCPVITLPFFKCGFRLNSIFTGMLYSLE I.claudius_F2_508_94_1157970_peptide number 3 202.2508 0 IA I.claudius_F2_509_51_1160634_peptide number 1 5430.346300000001 0 MVSPPSISARIANKSKPARNFGCSMVRIGADPVRFNNCSCKNQMSRMTAV I.claudius_F2_510_67_1161037_peptide number 1 4331.2006 0 MRLMQGKVVQINHIGVITDRFLPLVPPAIILSFRQISE I.claudius_F2_510_67_1161037_peptide number 2 331.36480000000006 0 LAE I.claudius_F2_510_67_1161037_peptide number 3 1247.4415000000001 0 YFLIKAQVHE I.claudius_F2_510_67_1161037_peptide number 4 1705.9939000000002 0 LVVRSVFQGTYQVLP I.claudius_F2_511_789_1162788_peptide number 1 10461.606999999998 0 MKLNLITLVVLLIVADLTLLFLPQPLLLPWQVALVIALVLIFLFIFLRRNFLVSLAFFVASLGYFHYSALSLSQQAQNITAQKQVVTFKIQE I.claudius_F2_511_789_1162788_peptide number 2 1958.1724000000004 0 ILHQQDYQTLIATATLE I.claudius_F2_511_789_1162788_peptide number 3 616.6213 0 NNLQE I.claudius_F2_511_789_1162788_peptide number 4 1432.6683 0 QRIFLNWKAKE I.claudius_F2_511_789_1162788_peptide number 5 671.7397000000001 0 VPQLSE I.claudius_F2_511_789_1162788_peptide number 6 645.7039000000001 0 IWQAE I.claudius_F2_511_789_1162788_peptide number 7 5131.800900000001 0 ISLRSLSARLNFGGFDRQQWYFSKGITAVGTVKSAVKIADVSSLRAE I.claudius_F2_511_789_1162788_peptide number 8 1229.4263999999998 0 KLQQVKKQTE I.claudius_F2_511_789_1162788_peptide number 9 1501.765 0 GLSLQGLLIALAFGE I.claudius_F2_511_789_1162788_peptide number 10 26234.145399999994 0 RAWLDKTTWSIYQQTNTAHLIAISGLHIGLAMGIGFCLARVVQVFFPTRFIHPYFPLVFGVLFALIYAYLAGFSVPTFRAISALVFVLFIQIMRRHYSPIQFFTLVVGFLLFCDPLMPLSVSFWLSCGAVGCLLLWYRYVPFSLFQWKNRPFSPKVRWIFSLFHLQFGLLLFFTPLQLFLFNGLSLSGFLANFMAVPIYSFLLVPLILFAVFTNGTMFSWQLANKLAE I.claudius_F2_511_789_1162788_peptide number 11 4856.7025 0 GITGLISVFQGNWLTVSFNLALGLTALCAGIFMLIIWNIYREPE I.claudius_F2_511_789_1162788_peptide number 12 3063.5507000000007 0 ISSSNWQIKRAKFFTLNLSKPLLKNE I.claudius_F2_511_789_1162788_peptide number 13 7244.460700000003 0 RINVLRCSFGIILLCFTILLFKQLSKPTWQVDTLDVGQGLATLIVKNGKGILYDTGSSWRGGSMAE I.claudius_F2_511_789_1162788_peptide number 14 260.2869 0 LE I.claudius_F2_511_789_1162788_peptide number 15 1031.2055 0 ILPYLQRE I.claudius_F2_511_789_1162788_peptide number 16 529.6269000000001 0 GIVLE I.claudius_F2_511_789_1162788_peptide number 17 2779.0223 0 KLILSHDDNDHAGGASTILKAYPNVE I.claudius_F2_511_789_1162788_peptide number 18 1277.4261 0 LITPSRKNYGE I.claudius_F2_511_789_1162788_peptide number 19 6195.786000000002 0 NYRTFCTAGRDWHWQGLHFQILSPHNVVTRADNSHSCVILVDDGKNSVLLTGDAE I.claudius_F2_511_789_1162788_peptide number 20 460.48210000000006 0 AKNE I.claudius_F2_511_789_1162788_peptide number 21 2810.1259000000005 0 QIFARTLGKIDVLQVGHHGSKTSTSE I.claudius_F2_511_789_1162788_peptide number 22 3577.0756000000006 0 YLLSQVRPDVAIISSGRWNPWKFPHYSVME I.claudius_F2_511_789_1162788_peptide number 23 1258.4295000000002 0 RLHRYKSAVE I.claudius_F2_511_789_1162788_peptide number 24 2080.2608 0 NTAVSGQVRVNFFQDRLE I.claudius_F2_511_789_1162788_peptide number 25 2478.8455 0 IQQARTKFSPWYARVIGLSKE I.claudius_F2_512_129_1167643_peptide number 1 1783.1027 0 MRLVPHFAINLKTNE I.claudius_F2_512_129_1167643_peptide number 2 786.8767 0 KRQLNE I.claudius_F2_512_129_1167643_peptide number 3 2283.6038 0 FQSGVAIAGIGNPQRFFTMLE I.claudius_F2_512_129_1167643_peptide number 4 2296.5396000000005 0 KLGIQLKQTQAFQDHQHFE I.claudius_F2_512_129_1167643_peptide number 5 546.5713000000001 0 ASQLE I.claudius_F2_512_129_1167643_peptide number 6 459.5371 0 KLAE I.claudius_F2_512_129_1167643_peptide number 7 979.1078 0 NQPLFMTE I.claudius_F2_512_129_1167643_peptide number 8 2599.8696000000004 0 KDAVKCQSFAKDNWWYVPVDAE I.claudius_F2_512_129_1167643_peptide number 9 373.44450000000006 0 IIE I.claudius_F2_512_129_1167643_peptide number 10 218.2072 0 AE I.claudius_F2_512_129_1167643_peptide number 11 559.6165000000001 0 KQRE I.claudius_F2_512_129_1167643_peptide number 12 1709.9840000000002 0 NLPHFWAKIDKLVE I.claudius_F2_512_129_1167643_peptide number 13 636.6573999999999 0 QYRNG I.claudius_F2_513_610_1168866_peptide number 1 6406.306300000001 0 MFDAKKFLTDVSHEPGVYRMYDDKDQVIYVGKAKDLKKRLSSYFRKNLSSKKTE I.claudius_F2_513_610_1168866_peptide number 2 1794.9562 0 ALVASIHHIDTTLTSSE I.claudius_F2_513_610_1168866_peptide number 3 248.23319999999998 0 TE I.claudius_F2_513_610_1168866_peptide number 4 557.6800000000001 0 ALLLE I.claudius_F2_513_610_1168866_peptide number 5 3625.1797000000006 0 HNFIKLYQPRYNVLLRDDKSYPFILLTKE I.claudius_F2_513_610_1168866_peptide number 6 2021.2433 0 RHQRITSYRGSKKFAGE I.claudius_F2_513_610_1168866_peptide number 7 1463.5947 0 YFGPYPHAGAVRE I.claudius_F2_513_610_1168866_peptide number 8 1775.1204000000002 0 TLSLLQKLFPVRQCE I.claudius_F2_513_610_1168866_peptide number 9 3480.8211 0 NSVYSNRSRPCLQYQIGRCSAPCVQGYVSDE I.claudius_F2_513_610_1168866_peptide number 10 147.1293 0 E I.claudius_F2_513_610_1168866_peptide number 11 779.7946999999999 0 YNQQVE I.claudius_F2_513_610_1168866_peptide number 12 2579.0225000000005 0 LARLFLQGKDQQVLDYLIGKME I.claudius_F2_513_610_1168866_peptide number 13 1079.1209 0 QASRNLDFE I.claudius_F2_513_610_1168866_peptide number 14 2003.2231000000002 0 QAARYRDQIQAVRSVIE I.claudius_F2_513_610_1168866_peptide number 15 850.9157 0 KQFVSNE I.claudius_F2_513_610_1168866_peptide number 16 5329.119700000001 0 RLDDMDIMSIAYQHGLACVQVMFIRQGKVLGNRSYFPKVPANTDLSE I.claudius_F2_513_610_1168866_peptide number 17 361.3908 0 LTE I.claudius_F2_513_610_1168866_peptide number 18 3174.5236 0 TFVGQFYLQGHQGRSIPNSIIVDRQLAE I.claudius_F2_513_610_1168866_peptide number 19 362.37890000000004 0 KSE I.claudius_F2_513_610_1168866_peptide number 20 260.2869 0 LE I.claudius_F2_513_610_1168866_peptide number 21 588.651 0 QLLSE I.claudius_F2_513_610_1168866_peptide number 22 1129.2675 0 QAGRKVTIQE I.claudius_F2_513_610_1168866_peptide number 23 3621.1284000000005 0 SVKGDKSKYLQLAQVNAKAALNVQLKQSSRMSE I.claudius_F2_513_610_1168866_peptide number 24 2204.6579 0 RYQALCDLLNLPKIKRME I.claudius_F2_513_610_1168866_peptide number 25 2430.7349000000004 0 CFDISHTMGNQTVASCVVFNKE I.claudius_F2_513_610_1168866_peptide number 26 1594.7692000000002 0 GPLKSDYRRFNIE I.claudius_F2_513_610_1168866_peptide number 27 1199.2447000000002 0 GITGGDDYAAME I.claudius_F2_513_610_1168866_peptide number 28 1063.2077 0 QVLQKRYE I.claudius_F2_513_610_1168866_peptide number 29 531.5600000000001 0 RDLE I.claudius_F2_513_610_1168866_peptide number 30 147.1293 0 E I.claudius_F2_513_610_1168866_peptide number 31 5762.546200000002 0 DKIPDIIFIDGGKGQLNRALNVFQHLQVKWDKNRPHLIGVAKGVDRRAGQE I.claudius_F2_513_610_1168866_peptide number 32 1200.3851 0 VLIISKQDRE I.claudius_F2_513_610_1168866_peptide number 33 2235.4979000000003 0 IHLPDDSLALHLIQHIRDE I.claudius_F2_513_610_1168866_peptide number 34 2617.8797999999997 0 SHNHAISGHRKKRQKAFTQSGLE I.claudius_F2_513_610_1168866_peptide number 35 361.3908 0 TIE I.claudius_F2_513_610_1168866_peptide number 36 2870.3533 0 GVGAKRRQALLKYLGGLQGVKKATLDE I.claudius_F2_513_610_1168866_peptide number 37 1281.4976000000001 0 IASVPGISPKLAE I.claudius_F2_513_610_1168866_peptide number 38 563.6465000000001 0 RIFE I.claudius_F2_513_610_1168866_peptide number 39 589.6391000000001 0 TLKND I.claudius_F2_514_268_1173906_peptide number 1 3699.2452999999996 0 MSDGVRVGDRVIVDPYVCCGQCYPCSIGRTNCCE I.claudius_F2_514_268_1173906_peptide number 2 1582.8198000000004 0 SLKVIGVHIDGGMQE I.claudius_F2_514_268_1173906_peptide number 3 4762.560199999999 0 VIRHPAHLLTKVPDNLPIHQLPLAEPLTIALHALHRTTLKSGE I.claudius_F2_514_268_1173906_peptide number 4 3186.8472 0 HIVIIGAGAIGLMAALAAVQYGAIPILVDILE I.claudius_F2_514_268_1173906_peptide number 5 544.6018 0 QRLE I.claudius_F2_514_268_1173906_peptide number 6 879.9966000000001 0 YAKSLGIE I.claudius_F2_514_268_1173906_peptide number 7 973.0867000000001 0 HIVNPHKE I.claudius_F2_514_268_1173906_peptide number 8 1016.1496 0 DDIKRIKE I.claudius_F2_514_268_1173906_peptide number 9 863.9791 0 ITSGRMAE I.claudius_F2_514_268_1173906_peptide number 10 476.58760000000007 0 VVME I.claudius_F2_514_268_1173906_peptide number 11 3175.5514000000003 0 ASGANISIKNTLHYASFAGRIALTGWPKTE I.claudius_F2_514_268_1173906_peptide number 12 1373.593 0 TPLPTNLITFKE I.claudius_F2_514_268_1173906_peptide number 13 1324.4395000000002 0 LNIYGSRTSKGE I.claudius_F2_514_268_1173906_peptide number 14 294.30320000000006 0 FE I.claudius_F2_514_268_1173906_peptide number 15 147.1293 0 E I.claudius_F2_514_268_1173906_peptide number 16 2575.0553999999997 0 ALDMLATNKINASHIITKCIKFE I.claudius_F2_514_268_1173906_peptide number 17 147.1293 0 E I.claudius_F2_514_268_1173906_peptide number 18 1456.5524 0 IPSFISDLSDHPE I.claudius_F2_514_268_1173906_peptide number 19 1081.2642 0 NYLKINAVF I.claudius_F2_515_136_1175851_peptide number 1 2690.0749 0 MISLVFFNSVLRYFFDSGIAFSE I.claudius_F2_515_136_1175851_peptide number 2 147.1293 0 E I.claudius_F2_515_136_1175851_peptide number 3 3934.750900000001 0 FSRICFVYMISFGIILVAKDKAHLTVDIIIPALPE I.claudius_F2_515_136_1175851_peptide number 4 8114.730999999999 0 QYRKIVLIVANICVLIAMIFIAYGALQLMSLTYTQQMPATGISSSFLYLAAVISAVSYFFIVMFSMIKDYKE I.claudius_F2_515_136_1175851_peptide number 5 435.4296 0 SSDK I.claudius_F2_516_270_1176729_peptide number 1 5044.991700000001 0 MIIYGITAGASITKLFMGGTVPGLLMVVGLWVTWKILYRNNDTSLE I.claudius_F2_516_270_1176729_peptide number 2 845.944 0 RKQTGKE I.claudius_F2_516_270_1176729_peptide number 3 3553.3305000000005 0 RWVAFKKAFWPLLLPIIIIVGLRGGIFTPTE I.claudius_F2_516_270_1176729_peptide number 4 6186.346500000002 0 AGVVAAIYAGIVSIAYKGLTFSKLKDVFIGTIKTTSMVMFVAASAMISAFAITVAQIPTE I.claudius_F2_516_270_1176729_peptide number 5 12431.372000000005 0 LVQTIKGLTDSPTILMFIIMLFLLLVGCVMDLIPAVLIFVPVLLPVLRAYNIDIAYFGIMMVINLSIGLITPPVGTVLYVGSGISKLGIGALSKGIAPFLFVYAIIMMLIVFFPE I.claudius_F2_516_270_1176729_peptide number 6 1171.4514 0 IVIVPMNWLS I.claudius_F2_517_286_1178502_peptide number 1 278.32540000000006 0 ME I.claudius_F2_517_286_1178502_peptide number 2 1374.5213 0 FTMNIAANHNLE I.claudius_F2_517_286_1178502_peptide number 3 3837.5278000000003 0 NKLIIITGAGGVLCSFLAKQLAYTKANIALLDLNFE I.claudius_F2_517_286_1178502_peptide number 4 830.9261000000001 0 AADKVAKE I.claudius_F2_517_286_1178502_peptide number 5 1821.0398 0 INQSGGKAKAYKTNVLE I.claudius_F2_517_286_1178502_peptide number 6 260.2869 0 LE I.claudius_F2_517_286_1178502_peptide number 7 502.56180000000006 0 NIKE I.claudius_F2_517_286_1178502_peptide number 8 757.8355 0 VRNQIE I.claudius_F2_517_286_1178502_peptide number 9 2538.6556 0 TDFGTCDILINGAGGNNPKATTDNE I.claudius_F2_517_286_1178502_peptide number 10 1049.0932 0 FHQFDLNE I.claudius_F2_517_286_1178502_peptide number 11 1629.7654 0 TTRTFFDLDKSGIE I.claudius_F2_517_286_1178502_peptide number 12 10092.626000000006 0 FVFNLNYLGSLLPTQVFAKDMLGKQGANIINISSMNAFTPLTKIPAYSGAKAAISNFTQWLAVYFSKVGIRCNAIAPGFLVSNQNLALLFDTE I.claudius_F2_517_286_1178502_peptide number 13 2303.597 0 GKPTDRANKILTNTPMGRFGE I.claudius_F2_517_286_1178502_peptide number 14 234.2066 0 SE I.claudius_F2_517_286_1178502_peptide number 15 147.1293 0 E I.claudius_F2_517_286_1178502_peptide number 16 1216.4654 0 LLGALLFLIDE I.claudius_F2_517_286_1178502_peptide number 17 2319.5235000000002 0 NYSAFVNGVVLPVDGGFSAYSGV I.claudius_F2_518_106_1180735_peptide number 1 4780.4814000000015 0 MIDVIKASHFNPVKYQTTTIINADDAIVGTGMFVKNGAKKGKQE I.claudius_F2_518_106_1180735_peptide number 2 4480.0842999999995 0 NPHSQVVLDDKSAVKNAWGLNSKDSAIIVLDKTGKVKFVKE I.claudius_F2_518_106_1180735_peptide number 3 2088.3590000000004 0 GKLSDSDIQTVISLVNGLTK I.claudius_F2_519_221_1181379_peptide number 1 1417.6307 0 MQSRLIVDAQKE I.claudius_F2_519_221_1181379_peptide number 2 9954.844900000002 0 SLLSTHKVLRNTYFLLGLTMAFSAVVAFISMSLNLPYPNIIVLLVGFYGLLFLTNKLADRPAGILAAFAFTGFMGYTIGPILNMYVARGME I.claudius_F2_519_221_1181379_peptide number 3 8278.970299999999 0 DLIMLAFAGTAIVFFACSAYVLTTKKDMSFLSSAMFALFIVLLLGMVASFFFQIPALSVAISALFVVFSTMTILYE I.claudius_F2_519_221_1181379_peptide number 4 926.9702 0 TSNIIHGGE I.claudius_F2_519_221_1181379_peptide number 5 3739.2739999999994 0 TNYIRATVNIYVSIYNLFLSLLRLLSIFSSDE I.claudius_F2_520_148_1182722_peptide number 1 420.48120000000006 0 MAAE I.claudius_F2_520_148_1182722_peptide number 2 3489.2024000000006 0 SAVIVAISPLAVVDMFFIAWRNLRLMNKIAE I.claudius_F2_520_148_1182722_peptide number 3 593.6691000000001 0 IYGIE I.claudius_F2_520_148_1182722_peptide number 4 2721.2694000000006 0 LGYFPRIRLLRMVLVNIAFAGATE I.claudius_F2_520_148_1182722_peptide number 5 4313.9947 0 VAQDIGMDWLSQDVTAKLSTRIAQGIGVGLLTARLGVKAME I.claudius_F2_520_148_1182722_peptide number 6 1303.5294999999999 0 LCRPLAFQLNE I.claudius_F2_520_148_1182722_peptide number 7 1207.3793 0 KPKLSHIQQE I.claudius_F2_520_148_1182722_peptide number 8 2175.6101999999996 0 LLSSVKDIVLGKNKIYKKE I.claudius_F2_520_148_1182722_peptide number 9 259.3021 0 QI I.claudius_F2_521_73_1183621_peptide number 1 1980.2426 0 MKSLGSPILGDGLYGKNTE I.claudius_F2_521_73_1183621_peptide number 2 1587.7750000000003 0 KIDRTYLHATQLE I.claudius_F2_521_73_1183621_peptide number 3 3194.6110000000003 0 FDYLNNFISVTCLPSQGQFWIKPTVFE I.claudius_F2_521_73_1183621_peptide number 4 1564.8657999999998 0 QIQVYLTKPFLSK I.claudius_F2_522_120_1184331_peptide number 1 1879.0277999999998 0 MGDMNISPSDLDIGIGDE I.claudius_F2_522_120_1184331_peptide number 2 1991.3232 0 NRKRWLRTGKCSFLPE I.claudius_F2_522_120_1184331_peptide number 3 147.1293 0 E I.claudius_F2_522_120_1184331_peptide number 4 1732.8915000000002 0 RAWYQRLYDYGLE I.claudius_F2_522_120_1184331_peptide number 5 5101.604200000001 0 DSFRKLNPTANDKFSWFDYRSKGFDDNRGLRIDHILVSQKLAE I.claudius_F2_522_120_1184331_peptide number 6 1660.9566 0 RCVDVGIALDIRAME I.claudius_F2_522_120_1184331_peptide number 7 1250.3593 0 KPSDHAPIWAE I.claudius_F2_522_120_1184331_peptide number 8 293.36150000000004 0 FK I.claudius_F2_523_84_1188511_peptide number 1 887.1185000000003 0 MPPLVCVE I.claudius_F2_523_84_1188511_peptide number 2 1466.6815000000001 0 LIVQTPNAVVRQE I.claudius_F2_523_84_1188511_peptide number 3 275.3016 0 KE I.claudius_F2_523_84_1188511_peptide number 4 6956.369400000002 0 YASSLVLFLIVQPNVLVVLYLIFLQLVYVKYCQRYLDKLMLTLNFLVAHTAFVTRKADCA I.claudius_F2_524_552_1190319_peptide number 1 6852.055700000003 0 MSDIAITISLLALVAVIGLWIGHWKIRGVGLGIGGVLFGGIIVAHFTNQYGLKLDAHTLHFVQE I.claudius_F2_524_552_1190319_peptide number 2 8379.912900000003 0 FGLILFVYTIGIQVGPGFFSSLRKSGLKLNAFAILIILLGSIAVVLVHKIADVPLDIALGIYSGAVTNTPALGAGQQILAE I.claudius_F2_524_552_1190319_peptide number 3 4781.6779 0 LGVPQTTVTMGVSYAMAYPFGICGILLAMWLIRLFFNVKVDDE I.claudius_F2_524_552_1190319_peptide number 4 777.8252 0 AARFNAE I.claudius_F2_524_552_1190319_peptide number 5 692.6728 0 SSQDKE I.claudius_F2_524_552_1190319_peptide number 6 3067.4052 0 SLHNISLKVTNQNLDGLTLIQIPGFSDE I.claudius_F2_524_552_1190319_peptide number 7 147.1293 0 E I.claudius_F2_524_552_1190319_peptide number 8 1450.6839 0 VVCSRLKRDDME I.claudius_F2_524_552_1190319_peptide number 9 843.9646 0 IVPKASTE I.claudius_F2_524_552_1190319_peptide number 10 2935.3585999999996 0 IRTNDILQLVGDDNSLAKMRLIIGHE I.claudius_F2_524_552_1190319_peptide number 11 1108.1557 0 VDAPTVAYSGE I.claudius_F2_524_552_1190319_peptide number 12 503.5499 0 IRSE I.claudius_F2_524_552_1190319_peptide number 13 815.9148 0 RVVVTNE I.claudius_F2_524_552_1190319_peptide number 14 3217.8548 0 KVLGKKIRALGIHQKYGVVISRLNRAGIE I.claudius_F2_524_552_1190319_peptide number 15 11376.533500000005 0 LVPTGNTTLQFGDVLHMVGRSDVLNQAISVIGNAQQKLLQVQMLPVFIGIGLGVLVGSIPFYIPGFPVALKLGLAGGPLVVALILARIGTIGKLYWFMPPSANLALRE I.claudius_F2_524_552_1190319_peptide number 16 2910.3624000000004 0 IGIVLFLAVVGLKSGGSFFDTLVNGSGLE I.claudius_F2_524_552_1190319_peptide number 17 5407.413300000003 0 WMGYGIFITFVPLIIVGTIARLYGKLNYLTICGLLAGSMTDPPALAFANE I.claudius_F2_524_552_1190319_peptide number 18 388.4592 0 IKE I.claudius_F2_524_552_1190319_peptide number 19 3680.3824000000004 0 DNGAAALSYATVYPLVMFLRIMSPQLLAVLLWAA I.claudius_F2_525_359_1193828_peptide number 1 2075.2096 0 MVSTPSYDNNLFVDGISSE I.claudius_F2_525_359_1193828_peptide number 2 4293.834499999999 0 DYKRLLNDLARPLYSRATQGAYPPASTVKPFIAVAAQTE I.claudius_F2_525_359_1193828_peptide number 3 4948.462300000002 0 NVITPNTTIFDPGYWVLPNSTKRFRDWKKTGHGDTDLNKAITE I.claudius_F2_525_359_1193828_peptide number 4 3942.3656 0 SSDTYFYQVAYNMGIDRLSNWMKDFGFGMPTGIE I.claudius_F2_525_359_1193828_peptide number 5 388.41610000000003 0 IQE I.claudius_F2_525_359_1193828_peptide number 6 147.1293 0 E I.claudius_F2_525_359_1193828_peptide number 7 972.054 0 TAANIPTRE I.claudius_F2_525_359_1193828_peptide number 8 6194.131300000002 0 WKQKRYKRPWVQGDTISVGIGQGYWTATPLQVAKATTILVNNGKVNTPHLMKAIE I.claudius_F2_525_359_1193828_peptide number 9 876.9497000000001 0 GAVLEPYE I.claudius_F2_525_359_1193828_peptide number 10 1942.1714000000002 0 DPLLYPDINTPKVAAWE I.claudius_F2_525_359_1193828_peptide number 11 4390.895100000001 0 AAKRGMYNVVNAANGTGRKAFADANYRVAGKSGTAQVFSLKE I.claudius_F2_525_359_1193828_peptide number 12 261.2319 0 NE I.claudius_F2_525_359_1193828_peptide number 13 1151.3128 0 KYNTAGLKKE I.claudius_F2_525_359_1193828_peptide number 14 2913.2835999999998 0 LHDHAWFTAYAPYDNPKLVVTVILE I.claudius_F2_525_359_1193828_peptide number 15 3120.4548 0 NAGGGSSNAAPLARKVMDYYLNQRLPQVE I.claudius_F2_525_359_1193828_peptide number 16 1818.0359 0 KYNVPIQQKKDLSQE I.claudius_F2_525_359_1193828_peptide number 17 234.2066 0 SE I.claudius_F2_525_359_1193828_peptide number 18 586.6417 0 QINGR I.claudius_F2_526_273_1196106_peptide number 1 5325.962000000001 0 MISVAFPAQADTQKMYGIRGDNLSIATQMPAPRTYSVKGQTYTTKSGNE I.claudius_F2_526_273_1196106_peptide number 2 837.96 0 AKSYIKE I.claudius_F2_526_273_1196106_peptide number 3 8415.414000000002 0 GLASYYHLKFDGRKTASGDVYNSKQFTAAHKTLPINSYALVTNLHNNRKVIVRINDRGPFSDKRLIDLSHAAAKE I.claudius_F2_526_273_1196106_peptide number 4 1510.7802 0 IGLISRGIGQVRIE I.claudius_F2_526_273_1196106_peptide number 5 2650.9843 0 ALHVAKNGNLSGAATKTLAKQAKTQE I.claudius_F2_526_273_1196106_peptide number 6 2907.2361 0 AADRLVLKSNTLFDNTSKSINALKGTE I.claudius_F2_526_273_1196106_peptide number 7 1046.3029999999999 0 FYCLKMLE I.claudius_F2_526_273_1196106_peptide number 8 2413.7257 0 LTSRSQANKLITQLALANIQTE I.claudius_F2_526_273_1196106_peptide number 9 1066.1254999999999 0 VNRSGNKYE I.claudius_F2_526_273_1196106_peptide number 10 4131.861200000001 0 IYIGPFDDKTKMAQVRTKLQKMANNKPLIVYTYKN I.claudius_F2_527_192_1198520_peptide number 1 1327.3772999999999 0 MQDFTDTRNAE I.claudius_F2_527_192_1198520_peptide number 2 491.4498 0 TQDE I.claudius_F2_527_192_1198520_peptide number 3 2198.4778000000006 0 IWLVQHYPVFTQGQAGKPE I.claudius_F2_527_192_1198520_peptide number 4 881.9760000000001 0 HLLQRSE I.claudius_F2_527_192_1198520_peptide number 5 4983.7946 0 IPVVQSVRGGQITYHAPGQQVMYVLIDIKRHKNLNVRQLVTALE I.claudius_F2_527_192_1198520_peptide number 6 988.1363 0 QTVVKTLAE I.claudius_F2_527_192_1198520_peptide number 7 480.51150000000007 0 YGIE I.claudius_F2_527_192_1198520_peptide number 8 6153.059200000001 0 SYPKPDAPGVYVDGKKICSLGLRIRRGCSFHGLALNINMDLNPFHYINPCGYAGLE I.claudius_F2_527_192_1198520_peptide number 9 4128.706300000001 0 MCQLADFVNQDKADCDNVSAKLIKHFANLLGYNITTL I.claudius_F2_528_88_1199848_peptide number 1 604.7167000000001 0 MVGLGE I.claudius_F2_528_88_1199848_peptide number 2 362.33580000000006 0 TNE I.claudius_F2_528_88_1199848_peptide number 3 147.1293 0 E I.claudius_F2_528_88_1199848_peptide number 4 4488.1559 0 ILQVMQDLRDNGVTMLTLGQYLQPSRHHLPVARYVPPTE I.claudius_F2_528_88_1199848_peptide number 5 409.39060000000006 0 FDE I.claudius_F2_528_88_1199848_peptide number 6 878.9291000000001 0 FRDKANE I.claudius_F2_528_88_1199848_peptide number 7 482.55060000000003 0 MGFE I.claudius_F2_528_88_1199848_peptide number 8 2471.7486000000004 0 HAACGPFVRSSYHADLQASGGLVK I.claudius_F2_529_146_1200932_peptide number 1 4606.125999999999 0 MIQQGIFDLSNITLHSGSDYIISRATFPNYFLKDQLITDE I.claudius_F2_529_146_1200932_peptide number 2 544.5538 0 SYFE I.claudius_F2_529_146_1200932_peptide number 3 2749.2165000000005 0 IDLKLFRLHIAQALGITHRFVGTE I.claudius_F2_529_146_1200932_peptide number 4 845.9605 0 LNCPVTAE I.claudius_F2_529_146_1200932_peptide number 5 1756.9576999999997 0 YNRQMHYWLMDAE I.claudius_F2_529_146_1200932_peptide number 6 1128.3423 0 MNAPKINVIE I.claudius_F2_529_146_1200932_peptide number 7 2429.7765999999997 0 IPRKTASNHIISASTVRKHLAE I.claudius_F2_529_146_1200932_peptide number 8 959.0567000000001 0 KNWAQLAE I.claudius_F2_529_146_1200932_peptide number 9 1918.2858 0 FVPMTTLNYLQKCGRF I.claudius_F2_530_267_1203283_peptide number 1 847.9367000000001 0 MTTNPRE I.claudius_F2_530_267_1203283_peptide number 2 1016.2588000000001 0 LLIARKCAE I.claudius_F2_530_267_1203283_peptide number 3 3110.4732000000004 0 VIFASGYFKDGFSLQTGSGGAALAVTRFLE I.claudius_F2_530_267_1203283_peptide number 4 147.1293 0 E I.claudius_F2_530_267_1203283_peptide number 5 718.8691000000001 0 KMRRE I.claudius_F2_530_267_1203283_peptide number 6 2031.2894000000001 0 NITADFALGGITASMVALHE I.claudius_F2_530_267_1203283_peptide number 7 2004.284 0 AGLIKKLLDVQSFDSVAAE I.claudius_F2_530_267_1203283_peptide number 8 1150.2451 0 SLARNPNHIE I.claudius_F2_530_267_1203283_peptide number 9 1774.8390000000002 0 VSANQYANYSSKGASVE I.claudius_F2_530_267_1203283_peptide number 10 1259.5152000000003 0 RLDMVILSALE I.claudius_F2_530_267_1203283_peptide number 11 5046.7164999999995 0 IDTKFNVNVLTGSDGVIRGASGGHCDTAASAQVAIIVAPLVRGRIPTVVE I.claudius_F2_530_267_1203283_peptide number 12 1032.1689 0 NVITCVTPGE I.claudius_F2_530_267_1203283_peptide number 13 2414.7123 0 NVDILVTDHGVAVNPKRPDLIE I.claudius_F2_530_267_1203283_peptide number 14 1447.6715000000002 0 ALSKTDIPLFTIE I.claudius_F2_530_267_1203283_peptide number 15 491.5590000000001 0 QLCE I.claudius_F2_530_267_1203283_peptide number 16 1249.4161 0 RAYSITGKPKE I.claudius_F2_530_267_1203283_peptide number 17 260.2869 0 IE I.claudius_F2_530_267_1203283_peptide number 18 2870.2195 0 FTNKPVAVVRYRDGSVIDTVYQVKD I.claudius_F2_531_226_1204984_peptide number 1 919.0775000000001 0 MMTAHLSE I.claudius_F2_531_226_1204984_peptide number 2 702.7536000000001 0 NQILSE I.claudius_F2_531_226_1204984_peptide number 3 981.1898000000001 0 IRPLGLLAE I.claudius_F2_531_226_1204984_peptide number 4 6632.682500000002 0 KAMFKVTDGVNTHKGAIFSFGLVCTAIGRLLAQKSLVQSAVDFDVKLICSLVAQFTQGLTDE I.claudius_F2_531_226_1204984_peptide number 5 762.8503000000001 0 LKNYPE I.claudius_F2_531_226_1204984_peptide number 6 2386.7071 0 HLPSTAGVRLFQKYGLTGVRGE I.claudius_F2_531_226_1204984_peptide number 7 218.2072 0 AE I.claudius_F2_531_226_1204984_peptide number 8 1748.9288999999999 0 NGFNLIQTLLPQFDE I.claudius_F2_531_226_1204984_peptide number 9 688.7287 0 YHQLE I.claudius_F2_531_226_1204984_peptide number 10 333.3392 0 WE I.claudius_F2_531_226_1204984_peptide number 11 7122.208600000001 0 HRLLILLLNLMAINSDTNVVHRGGLAGLYFIQQTAQDLLTDQHLVTDKTALTQALMKFDTACIE I.claudius_F2_531_226_1204984_peptide number 12 2556.8694000000005 0 RNLSSGGSADLLALTIFFLSFRGN I.claudius_F2_532_212_1206467_peptide number 1 668.7623000000001 0 MSFRE I.claudius_F2_532_212_1206467_peptide number 2 7649.169000000003 0 KALSVLFVIALFGWIFSNSLHINATIVAIIVMVLCIVLSIVTWDDILKSKGAWNTLVWYGGIIGMSGLLE I.claudius_F2_532_212_1206467_peptide number 3 2230.5593000000003 0 KSGFFKWLANTLSTILQFE I.claudius_F2_532_212_1206467_peptide number 4 4763.601700000002 0 GHGMMALIVILTLSVSVRYLFASGGAYVAAMVPVFATVGHVTGAPTE I.claudius_F2_532_212_1206467_peptide number 5 7423.654200000004 0 LLALGLVFANSYGGSVTHYGGGPGPIAFGAGYNDIKSWWITGAIIAFGSLIIHLTIGMAWWKLLMSLGWL I.claudius_F2_533_322_1207980_peptide number 1 278.32540000000006 0 ME I.claudius_F2_533_322_1207980_peptide number 2 1940.2269000000001 0 GCNKYCTFCVVPYTRGE I.claudius_F2_533_322_1207980_peptide number 3 147.1293 0 E I.claudius_F2_533_322_1207980_peptide number 4 1275.4071000000001 0 VSRPVDDVLFE I.claudius_F2_533_322_1207980_peptide number 5 643.7295 0 IAQLAE I.claudius_F2_533_322_1207980_peptide number 6 587.6266 0 QGVRE I.claudius_F2_533_322_1207980_peptide number 7 2703.9391 0 VNLLGQNVNAYRGPTHDGQICSFAE I.claudius_F2_533_322_1207980_peptide number 8 2623.0155000000004 0 LLRLVASIDGIDRLRFTTSHPIE I.claudius_F2_533_322_1207980_peptide number 9 1698.7811 0 FTDDIIDVYRDTPE I.claudius_F2_533_322_1207980_peptide number 10 3121.678200000001 0 LVSFLHLPVQAGSDRVLTMMKRAHTALE I.claudius_F2_533_322_1207980_peptide number 11 3205.7067 0 YKSIIRKLRAVRPDIQISSDFIVGFPGE I.claudius_F2_533_322_1207980_peptide number 12 319.3111 0 TAE I.claudius_F2_533_322_1207980_peptide number 13 409.39060000000006 0 DFE I.claudius_F2_533_322_1207980_peptide number 14 3967.372100000001 0 QTMNLIAQVNFDMSFSFVYSARPGTPAADMPDDVTE I.claudius_F2_533_322_1207980_peptide number 15 262.2167 0 DE I.claudius_F2_533_322_1207980_peptide number 16 1304.5376 0 KKQRLYVLQE I.claudius_F2_533_322_1207980_peptide number 17 2006.2501000000002 0 RINQQAAQFSRRMLGTE I.claudius_F2_533_322_1207980_peptide number 18 742.864 0 QRVLVE I.claudius_F2_533_322_1207980_peptide number 19 1004.1588 0 GPSKKDIME I.claudius_F2_533_322_1207980_peptide number 20 675.7317 0 LTGRTE I.claudius_F2_533_322_1207980_peptide number 21 1361.4596999999999 0 TNRIVNFQGSPE I.claudius_F2_533_322_1207980_peptide number 22 2385.7341 0 MIGKFVDVKITDVYTNSLRGE I.claudius_F2_533_322_1207980_peptide number 23 602.6811 0 VVRTE I.claudius_F2_533_322_1207980_peptide number 24 262.2167 0 DE I.claudius_F2_533_322_1207980_peptide number 25 1229.4064 0 MGLRIAQSPQE I.claudius_F2_533_322_1207980_peptide number 26 1033.2067 0 VMNRTRKE I.claudius_F2_533_322_1207980_peptide number 27 262.2167 0 DE I.claudius_F2_533_322_1207980_peptide number 28 857.9562 0 LGVGRYHG I.claudius_F2_534_128_1209932_peptide number 1 2835.1912999999995 0 MIKGIQITQAANDNLLNSFWLLDSE I.claudius_F2_534_128_1209932_peptide number 2 389.40420000000006 0 KNE I.claudius_F2_534_128_1209932_peptide number 3 950.1378000000001 0 ARCLCAKGE I.claudius_F2_534_128_1209932_peptide number 4 365.38110000000006 0 FAE I.claudius_F2_534_128_1209932_peptide number 5 845.8944000000002 0 DQVVAVSE I.claudius_F2_534_128_1209932_peptide number 6 558.625 0 LGQIE I.claudius_F2_534_128_1209932_peptide number 7 466.4883000000001 0 YRE I.claudius_F2_534_128_1209932_peptide number 8 1265.4984 0 LPVNVAPTVKVE I.claudius_F2_534_128_1209932_peptide number 9 1491.6544000000001 0 GGQHLNVNVLRRE I.claudius_F2_534_128_1209932_peptide number 10 361.3908 0 TLE I.claudius_F2_534_128_1209932_peptide number 11 3265.5865000000013 0 DAVNNPDKYPQLTIRVSGYAVRFNSLTPE I.claudius_F2_534_128_1209932_peptide number 12 1493.6208000000001 0 QQRDVITRTFTE I.claudius_F2_534_128_1209932_peptide number 13 218.25019999999998 0 SL I.claudius_F2_535_478_1210846_peptide number 1 506.57040000000006 0 MDLE I.claudius_F2_535_478_1210846_peptide number 2 1703.9730000000002 0 VVPILNKIDLPAADPE I.claudius_F2_535_478_1210846_peptide number 3 473.524 0 RVAE I.claudius_F2_535_478_1210846_peptide number 4 147.1293 0 E I.claudius_F2_535_478_1210846_peptide number 5 260.2869 0 IE I.claudius_F2_535_478_1210846_peptide number 6 962.0757000000001 0 DIVGIDAME I.claudius_F2_535_478_1210846_peptide number 7 1290.4896 0 AVRCSAKTGVGIE I.claudius_F2_535_478_1210846_peptide number 8 474.5054 0 DVLE I.claudius_F2_535_478_1210846_peptide number 9 147.1293 0 E I.claudius_F2_535_478_1210846_peptide number 10 937.1341 0 IVAKIPAPE I.claudius_F2_535_478_1210846_peptide number 11 6790.756300000001 0 GDPNAPLQALIIDSWFDNYLGVVSLVRIKNGVLRKGDKIKVMSTGQTYNVDRLGIFTPKQE I.claudius_F2_535_478_1210846_peptide number 12 676.7132000000001 0 DTTVLE I.claudius_F2_535_478_1210846_peptide number 13 307.3235 0 CGE I.claudius_F2_535_478_1210846_peptide number 14 3032.3861999999995 0 VGWVVCAIKDILGAPVGDTLTHQHNSATE I.claudius_F2_535_478_1210846_peptide number 15 2784.1648999999998 0 VLPGFKKVKPQVYAGLFPVSSDDYE I.claudius_F2_535_478_1210846_peptide number 16 2356.585 0 AFRDALGKLSLNDASLFYEPE I.claudius_F2_535_478_1210846_peptide number 17 2157.5136 0 TSTALGFGFRCGFLGLLHME I.claudius_F2_535_478_1210846_peptide number 18 501.57370000000003 0 IIQE I.claudius_F2_535_478_1210846_peptide number 19 416.47260000000006 0 RLE I.claudius_F2_535_478_1210846_peptide number 20 303.31500000000005 0 RE I.claudius_F2_535_478_1210846_peptide number 21 1726.9170000000001 0 YDLDLITTAPTVIYE I.claudius_F2_535_478_1210846_peptide number 22 246.2604 0 VE I.claudius_F2_535_478_1210846_peptide number 23 550.5832 0 MTNGE I.claudius_F2_535_478_1210846_peptide number 24 1939.2123 0 VVYVDSPAKLPPLNNIAE I.claudius_F2_535_478_1210846_peptide number 25 826.9373 0 IREPIAE I.claudius_F2_535_478_1210846_peptide number 26 933.1039999999999 0 CNMLVPQE I.claudius_F2_535_478_1210846_peptide number 27 1223.4383 0 YLGNVITLCVE I.claudius_F2_535_478_1210846_peptide number 28 2322.5986000000003 0 KRGVQTNMVYHGNQIALTYE I.claudius_F2_535_478_1210846_peptide number 29 545.6495000000001 0 IPMGE I.claudius_F2_535_478_1210846_peptide number 30 4762.381699999998 0 VVLDFFDRLKSTSRGYASLDYGFKRFQAADMVRVDIMINSE I.claudius_F2_535_478_1210846_peptide number 31 2340.5973 0 RVDALALIVHKDNSQYRGRE I.claudius_F2_535_478_1210846_peptide number 32 359.418 0 LVE I.claudius_F2_535_478_1210846_peptide number 33 562.6834 0 KMRE I.claudius_F2_535_478_1210846_peptide number 34 6016.079100000002 0 LIPRQQFDIAIQAAIGNHIIARSTVKQLRKNVLAKCYGGDVSRKKKLLQKQKE I.claudius_F2_535_478_1210846_peptide number 35 1346.5992 0 GKKRMKSLGNVE I.claudius_F2_535_478_1210846_peptide number 36 471.50480000000005 0 VPQE I.claudius_F2_535_478_1210846_peptide number 37 1311.5715000000002 0 AFLAILHVGKDK I.claudius_F2_536_224_1214256_peptide number 1 3132.3728000000006 0 MNRAASSAIGDVDLIIFVVDGTHWNADDE I.claudius_F2_536_224_1214256_peptide number 2 6482.472900000001 0 MVLNKLRNAKAPVVLAINKVDNIKNKDDLLPFITDLSSKFNFAHIVPISAQRGNNVHE I.claudius_F2_536_224_1214256_peptide number 3 260.2869 0 LE I.claudius_F2_536_224_1214256_peptide number 4 1128.3258 0 KIVRQSLRE I.claudius_F2_536_224_1214256_peptide number 5 821.8794 0 GVHHFPE I.claudius_F2_536_224_1214256_peptide number 6 1704.8155 0 DYVTDRSQRFMASE I.claudius_F2_536_224_1214256_peptide number 7 529.6302000000001 0 IIRE I.claudius_F2_536_224_1214256_peptide number 8 981.1701 0 KLMRFTGE I.claudius_F2_536_224_1214256_peptide number 9 147.1293 0 E I.claudius_F2_536_224_1214256_peptide number 10 907.0188 0 LPYSVTVE I.claudius_F2_536_224_1214256_peptide number 11 260.2869 0 IE I.claudius_F2_536_224_1214256_peptide number 12 763.8384000000001 0 QFKVNE I.claudius_F2_536_224_1214256_peptide number 13 624.6435 0 RGTYE I.claudius_F2_536_224_1214256_peptide number 14 870.0447000000001 0 INGLILVE I.claudius_F2_536_224_1214256_peptide number 15 303.31500000000005 0 RE I.claudius_F2_536_224_1214256_peptide number 16 2074.5113 0 GQKKMVIGAGGQKIKTIGME I.claudius_F2_536_224_1214256_peptide number 17 691.7543000000001 0 ARADME I.claudius_F2_536_224_1214256_peptide number 18 1270.4368000000002 0 RLFDNKVHLE I.claudius_F2_536_224_1214256_peptide number 19 1532.6948000000002 0 LWVKVKSGWADDE I.claudius_F2_536_224_1214256_peptide number 20 1310.4792000000002 0 RALRSLGYMDE I.claudius_F2_537_59_1215863_peptide number 1 1139.4312 0 MSILRLMFE I.claudius_F2_537_59_1215863_peptide number 2 147.1293 0 E I.claudius_F2_537_59_1215863_peptide number 3 3500.120600000001 0 NYQKYRQQIIPIYHQKMKYGVLKLGFLE I.claudius_F2_537_59_1215863_peptide number 4 665.7385 0 KSRFE I.claudius_F2_537_59_1215863_peptide number 5 1684.9563999999996 0 SCGLLVKITHHFSKD I.claudius_F2_538_59_1216317_peptide number 1 278.32540000000006 0 ME I.claudius_F2_538_59_1216317_peptide number 2 1535.8079 0 CKQPIRYWLLSE I.claudius_F2_538_59_1216317_peptide number 3 1865.0294 0 NSDQIDRTLPFCKQAE I.claudius_F2_538_59_1216317_peptide number 4 3468.7951000000003 0 QVYRSPSWQQFQSNHQAKRALWQQIQQP I.claudius_F2_539_222_1223106_peptide number 1 1038.2196999999999 0 MMCSPNNLE I.claudius_F2_539_222_1223106_peptide number 2 1099.1901 0 DFALGFSLTE I.claudius_F2_539_222_1223106_peptide number 3 769.8859 0 GIINKPE I.claudius_F2_539_222_1223106_peptide number 4 1022.1061000000002 0 DIYGIDVVE I.claudius_F2_539_222_1223106_peptide number 5 633.7148000000001 0 VCNGIE I.claudius_F2_539_222_1223106_peptide number 6 487.5472000000001 0 VQIE I.claudius_F2_539_222_1223106_peptide number 7 1309.5773000000002 0 LSSRKFMALKE I.claudius_F2_539_222_1223106_peptide number 8 1831.0462000000005 0 HRRNLTGRTGCGICGTE I.claudius_F2_539_222_1223106_peptide number 9 6825.8365 0 QLNQVYKTFPKLDCTFQFDLNLLDSCLIDLQKNQLLGCKTGATHACAFFDLYGSMLAIYE I.claudius_F2_539_222_1223106_peptide number 10 3723.2052000000012 0 DVGRHVALDKLLGWHAKSGKPRGFILASSRASYE I.claudius_F2_539_222_1223106_peptide number 11 1164.3962000000001 0 MVQKTVACGVE I.claudius_F2_539_222_1223106_peptide number 12 1737.0445000000002 0 MLVTISAATDLAVTMAE I.claudius_F2_539_222_1223106_peptide number 13 1398.6090000000002 0 KHNLTLIGFARE I.claudius_F2_539_222_1223106_peptide number 14 1565.7344 0 GKGNIYSGHLRLHN I.claudius_F2_540_81_1225058_peptide number 1 1661.9232000000002 0 MHKSATKGSAVRFLE I.claudius_F2_540_81_1225058_peptide number 2 1072.0819999999999 0 DYFGVQTNE I.claudius_F2_540_81_1225058_peptide number 3 1712.8737 0 VIAFGDNFNDLDMLE I.claudius_F2_540_81_1225058_peptide number 4 1365.5145999999997 0 HVGLGVAMGNAPNE I.claudius_F2_540_81_1225058_peptide number 5 1472.5999 0 IKQAANVVTATNNE I.claudius_F2_540_81_1225058_peptide number 6 842.9763 0 DGLALILE I.claudius_F2_540_81_1225058_peptide number 7 147.1293 0 E I.claudius_F2_540_81_1225058_peptide number 8 519.5907000000001 0 KFPE I.claudius_F2_541_57_1225571_peptide number 1 765.9171000000001 0 MIFNIE I.claudius_F2_541_57_1225571_peptide number 2 6146.0401 0 LFSVFFQTIKARHNKRGYIFFRISDDRNLFDKFIFTDFAFDILWCDIFAV
WARNING: some intermediate output was truncated. WARNING: some intermediate output was truncated. WARNING: some intermediate output was truncated.
l1=[1,2,3,4,5] for i in l1: print(i)
1 2 3 4 5