script for convert .t3pa files to .t3pa_cls
.t3pa file example:
Index $\quad$ Matrix $\quad$ Index $\quad$ ToA $\quad$ ToT $\quad$ FToA $\quad$ Overflow
0 $\quad$ 4574 $\quad$ 832 $\quad$ 29 $\quad$ 6 $\quad$ 0
1 $\quad$ 4831 $\quad$ 832 $\quad$ 35 $\quad$ 7 $\quad$ 0
2 $\quad$ 4575 $\quad$ 832 $\quad$ 100 $\quad$ 8 $\quad$ 0
3 $\quad$ 31031 $\quad$ 1745 $\quad$ 22 $\quad$ 11 $\quad$ 0
.
.
.
.t3pa_cls file example:
% Index $\quad$ Matrix Index $\quad$ [ RowNo, ClmNo ] $\quad$ ToA $\quad$ FToA $\quad$ ( ToA_in_ns ) $\quad$ ToT ( ToT_in_keV ) $\quad$ Overflow
# 1, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 2.0787500000000000e+04 ns, $\quad$ Tlast = 2.0790625000000000e+04 ns, $\quad$ dT = 3.125000 ns, $\quad$ Etot = 64.428148 keV
2 $\quad$ 4575 $\quad$ [ 17, 223 ] $\quad$ 832 $\quad$ 8 $\quad$ ( 2.0787500000000000e+04 ns ) $\quad$ 100 $\quad$ ( 37.867914 keV ) $\quad$ 0
1 $\quad$ 4831 $\quad$ [ 18, 223 ] $\quad$ 832 $\quad$ 7 $\quad$ ( 2.0789062500000000e+04 ns ) $\quad$ 35 $\quad$ ( 14.733453 keV ) $\quad$ 0
0 $\quad$ 4574 $\quad$ [ 17, 222 ] $\quad$ 832 $\quad$ 6 $\quad$ ( 2.0790625000000000e+04 ns ) $\quad$ 29 $\quad$ ( 11.826781 keV ) $\quad$ 0
# 2, $\quad$ Nunmasked = 3, $\quad$ Nmasked = 0, $\quad$ Ntot = 3 # Tfirst = 4.3601562500000000e+04 ns, $\quad$ Tlast = 4.3607812500000000e+04 ns, $\quad$ dT = 6.250000 ns, $\quad$ Etot = 63.577435 keV
5 $\quad$ 30775 $\quad$ [ 120, 55 ] $\quad$ 1745 $\quad$ 15 $\quad$ ( 4.3601562500000000e+04 ns ) $\quad$ 99 $\quad$ ( 37.617059 keV ) $\quad$ 0
4 $\quad$ 30776 $\quad$ [ 120, 56 ] $\quad$ 1745 $\quad$ 13 $\quad$ ( 4.3604687500000000e+04 ns ) $\quad$ 44 $\quad$ ( 14.715446 keV ) $\quad$ 0
3 $\quad$ 31031 $\quad$ [ 121, 55 ] $\quad$ 1745 $\quad$ 11 $\quad$ ( 4.3607812500000000e+04 ns ) $\quad$2 2 $\quad$ ( 11.244929 keV ) $\quad$ 0
.
.
.
import numpy as np
import math
#import pandas as pd
import matplotlib.pyplot as plt
from urllib.error import HTTPError # recognise the error stemming from missing data
#import urllib
import urllib.request
t3pa2cls_XII - upravena fce energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo) - nyni je se pocita i s pripadem "nan"
#Define an exception which will be raised if the data is missing and stop the notebook execution
class StopExecution(Exception):
def _render_traceback_(self):
pass
#shot_no = 36529 #test discharge for which the notebook will definitely work
shot_no = 44339
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
calib[i][j]=float(word[j]) #i = radek, j = sloupec0
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
RowNo.append(int(int(matrix_index[i]))//int(256))
ClmNo.append(int(int(matrix_index[i]))%int(256))
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
i=i+1
t3pa_cls.close
return T_first, E_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
plt.plot(T_hit, count)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
ax.hist(Etot, bins = xle)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1)
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
ax[1].hist(y2, bins = x2)
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls='H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist='H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist='H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot = file_t3pa_cls_new(t3pa_cls,T)
<ipython-input-1-fe971fb7f7b0>:25: RuntimeWarning: invalid value encountered in scalar divide e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(sqrt)))) <ipython-input-1-fe971fb7f7b0>:26: RuntimeWarning: invalid value encountered in scalar divide e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(sqrt))))
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([3320014.0625, 3320071.875, 3470543.75, 3500029.6875, 3509479.6875, 3530793.75, 3582790.625, 3727829.6875, 3732206.25, 3737350.0, 3737415.625, 3745681.25, 3750485.9375, 3785318.75, 3793321.875, 3811614.0625, 3820096.875, 3820150.0, 3820178.125, 3820254.6875, 3821976.5625, 3825656.25, 3829550.0, 3833659.375, 3890692.1875, 3892259.375, 3897000.0, 3915145.3125, 3917445.3125, 3921250.0, 3922739.0625, 3931440.625, 3940132.8125, 3942593.75, 3950332.8125, 3959414.0625, 3966140.625, 3966170.3125, 4009420.3125, 4047034.375, 4047039.0625, 4049443.75, 4052475.0, 4062260.9375, 4062262.5, 4064512.5, 4066084.375, 4069042.1875, 4092479.6875, 4093110.9375, 4108157.8125, 4108165.625, 4109620.3125, 4110006.25, 4139353.125, 4142982.8125, 4142985.9375, 4158860.9375, 4167173.4375, 4173679.6875, 4179942.1875, 4200171.875, 4207907.8125, 4220053.125, 4223598.4375, 4229293.75, 4279015.625, 4291470.3125, 4295284.375, 4307503.125, 4309431.25, 4311631.25, 4314937.5, 4317367.1875, 4318946.875, 4340085.9375, 4345575.0, 4356879.6875, 4374048.4375, 4383634.375, 4393596.875, 4394167.1875, 4394212.5, 4397279.6875, 4407864.0625, 4410504.6875, 4422154.6875, 4424634.375, 4425010.9375, 4426564.0625, 4429151.5625, 4433881.25, 4438354.6875, 4456778.125, 4475331.25, 4480496.875, 4519773.4375, 4561518.75, 4631065.625, 4782676.5625, 4815476.5625, 5573884.375, 5584846.875, 5620737.5, 5631168.75, 5635701.5625, 5656142.1875, 5671925.0, 5678367.1875, 5686545.3125, 5687568.75, 5732729.6875, 5732737.5, 5757243.75, 5757839.0625, 5780910.9375, 5820996.875, 5825996.875, 5873629.6875, 5897429.6875, 5924320.3125, 6055512.5, 6055998.4375, 6090609.375, 6098968.75, 6117973.4375, 6148089.0625, 6156796.875, 6191532.8125, 6198542.1875, 6200551.5625, 6202168.75, 6202171.875, 6203557.8125, 6208604.6875, 6226718.75, 6229951.5625, 6229959.375, 6232856.25, 6239232.8125, 6260507.8125, 6281689.0625, 6304560.9375, 6305317.1875, 6308090.625, 6309842.1875, 6340637.5, 6347065.625, 6351137.5, 6358240.625, 6358262.5, 6362654.6875, 6363171.875, 6365481.25, 6370879.6875, 6372585.9375, 6374654.6875, 6378351.5625, 6385396.875, 6386465.625, 6391070.3125, 6396821.875, 6400207.8125, 6408589.0625, 6410687.5, 6434051.5625, 6439150.0, 6443412.5, 6456960.9375, 6462621.875, 6463053.125, 6465764.0625, 6482239.0625, 6496901.5625, 6499843.75, 6499860.9375, 6504868.75, 6505251.5625, 6508975.0, 6520545.3125, 6524006.25, 6545912.5, 6568395.3125, 6572307.8125, 6582195.3125, 6584560.9375, 6587940.625, 6594906.25, 6624320.3125, 6719329.6875, 6728064.0625, 6750293.75, 6766432.8125, 6775531.25, 6785298.4375, 6808446.875, 6809440.625, 6831815.625, 6835089.0625, 6848498.4375, 6886896.875, 6898029.6875, 6900834.375, 6903632.8125, 6916323.4375, 6921395.3125, 6927190.625, 6957959.375, 6958353.125, 6959279.6875, 6961756.25, 6962785.9375, 6970859.375, 6989070.3125, 6989167.1875, 6989182.8125, 6993026.5625, 6993207.8125, 6994726.5625, 6995848.4375, 7005092.1875, 7011637.5, 7012971.875, 7015985.9375, 7024473.4375, 7024520.3125, 7026876.5625, 7026892.1875, 7034271.875, 7036262.5, 7037993.75, 7040064.0625, 7046237.5, 7053179.6875, 7070653.125, 7072865.625, 7073929.6875, 7089029.6875, 7105715.625, 7106006.25, 7106350.0, 7110253.125, 7117798.4375, 7119048.4375, 7120373.4375, 7125640.625, 7132789.0625, 7138862.5, 7152353.125, 7164807.8125, 7165328.125, 7165954.6875, 7166243.75, 7166548.4375, 7167201.5625, 7167720.3125, 7169796.875, 7170478.125, 7171440.625, 7172346.875, 7173276.5625, 7179845.3125, 7189481.25, 7190482.8125, 7190739.0625, 7191012.5, 7191032.8125, 7191243.75, 7196462.5, 7199156.25, 7203796.875, 7205607.8125, 7209626.5625, 7210720.3125, 7212934.375, 7218521.875, 7220440.625, 7221615.625, 7226854.6875, 7227548.4375, 7230278.125, 7231031.25, 7233765.625, 7235310.9375, 7235828.125, 7239520.3125, 7240589.0625, 7241721.875, 7243060.9375, 7249020.3125, 7249509.375, 7253278.125, 7253760.9375, 7259517.1875, 7260923.4375, 7260931.25, 7262218.75, 7262228.125, 7267187.5, 7268564.0625, 7269384.375, 7271918.75, 7273089.0625, 7275568.75, 7275776.5625, 7276989.0625, 7277070.3125, 7280328.125, 7294956.25, 7295029.6875, 7298087.5, 7298948.4375, 7302773.4375, 7350807.8125, 7359781.25, 7376435.9375, 7436437.5, 7438081.25, 7443340.625, 7467009.375, 7485751.5625, 7489529.6875, 7515628.125, 7525596.875, 7598510.9375, 7647332.8125, 7693668.75, 7738207.8125, 7742089.0625, 7747659.375, 7768146.875, 7773092.1875, 7774503.125, 7775567.1875, 7778182.8125, 7782579.6875, 7816596.875, 7818934.375, 7824681.25, 7830928.125, 7837140.625, 7853610.9375, 7879818.75, 7897392.1875, 7897698.4375, 7900876.5625, 7915846.875, 7915848.4375, 7924278.125, 7983818.75, 7994040.625, 8005684.375, 8076031.25, 8097882.8125, 8105764.0625, 8106529.6875, 8108434.375, 8113151.5625, 8116412.5, 8118598.4375, 8119756.25, 8155170.3125, 8156998.4375, 8157075.0, 8161265.625, 8161393.75, 8162151.5625, 8163146.875, 8163571.875, 8172873.4375, 8173017.1875, 8194860.9375, 8210192.1875, 8213590.625, 8233626.5625, 8234979.6875, 8235954.6875, 8241042.1875, 8249603.125, 8250767.1875, 8269235.9375, 8276279.6875, 8310140.625, 8313637.5, 8316529.6875, 8321625.0, 8327878.125, 8336934.375, 8365246.875, 8372225.0, 8372893.75, 8401562.5, 8403312.5, 8435984.375, 8436598.4375, 8436659.375, 8454381.25, 8489334.375, 8494821.875, 8496781.25, 8516793.75, 8518621.875, 8521717.1875, 8526470.3125, 8570718.75, 8596968.75, 8597056.25, 8603125.0, 8614170.3125, 8627306.25, 8642465.625, 8691417.1875, 8742632.8125, 8788046.875, 8795965.625, 8825039.0625, 8825984.375, 8850209.375, 8872931.25, 8884695.3125, 8885620.3125, 8885689.0625, 8905743.75, 8908864.0625, 8912832.8125, 8918392.1875, 8918462.5, 8932720.3125, 8934875.0, 8936034.375, 8937243.75, 8940773.4375, 8943539.0625, 8945382.8125, 8946234.375, 8946975.0, 8947046.875, 8947145.3125, 8948093.75, 8949501.5625, 8949862.5, 8950278.125, 8951823.4375, 8951879.6875, 8956809.375, 8956814.0625, 8958462.5, 8959125.0, 8980506.25, 8984982.8125, 8987598.4375, 8990357.8125, 9028267.1875, 9041073.4375, 9047946.875, 9050181.25, 9066870.3125, 9070454.6875, 9077276.5625, 9116620.3125, 9154115.625, 9184660.9375, 9211489.0625, 9211525.0, 9239498.4375, 9268014.0625, 9298192.1875, 9300673.4375, 9303690.625, 9305793.75, 9317245.3125, 9329725.0, 9332962.5, 9336860.9375, 9343900.0, 9344607.8125, 9355479.6875, 9355687.5, 9379393.75, 9390085.9375, 9409798.4375, 9417487.5, 9431943.75, 9437793.75, 9438520.3125, 9439000.0, 9439007.8125, 9442462.5, 9443131.25, 9444390.625, 9456579.6875, 9456614.0625, 9456634.375, 9460385.9375, 9466395.3125, 9467628.125, 9469118.75, 9471143.75, 9484625.0, 9484657.8125, 9524039.0625, 9526218.75, 9527339.0625, 9528195.3125, 9533821.875, 9534934.375, 9538835.9375, 9579114.0625, 9580662.5, 9608423.4375, 9613885.9375, 9776093.75, 9835717.1875, 9856656.25, 9884090.625, 9893990.625, 9911248.4375, 9912162.5, 9912203.125, 9912240.625, 9923970.3125, 9958448.4375, 9968298.4375, 9974881.25, 9979660.9375, 9998784.375, 10000145.3125, 10136760.9375, 10159881.25, 10182345.3125, 10202801.5625, 10202882.8125, 10261878.125, 10273307.8125, 10294518.75, 10325285.9375, 10350150.0, 10370443.75, 10406854.6875, 10498148.4375, 10543751.5625, 10591715.625, 10602790.625, 10815954.6875, 10928225.0, 10938193.75, 10954296.875, 11020267.1875, 11032114.0625, 11051521.875, 11069509.375, 11291956.25, 11291984.375, 11321290.625, 11361665.625, 11388150.0, 11390084.375, 11966595.3125, 12133571.875, 12244632.8125, 12246890.625, 12567035.9375, 12597135.9375, 12731673.4375, 12769028.125, 12769651.5625, 12780790.625, 12854437.5, 12869095.3125, 12905868.75, 12929142.1875, 12936017.1875, 12974584.375, 13001400.0, 13010212.5, 13010479.6875, 13010731.25, 13010935.9375, 13011164.0625, 13011487.5, 13012029.6875, 13014545.3125, 13014681.25, 13015651.5625, 13015937.5, 13016020.3125, 13016053.125, 13016132.8125, 13016423.4375, 13016478.125, 13016490.625, 13016559.375, 13016692.1875, 13016812.5, 13016903.125, 13016968.75, 13017068.75, 13017084.375, 13017267.1875, 13017279.6875, 13017496.875, 13017504.6875, 13017509.375, 13017717.1875, 13017832.8125, 13018204.6875, 13018232.8125, 13018401.5625, 13018648.4375, 13018668.75, 13019021.875, 13019273.4375, 13019421.875, 13019423.4375, 13019542.1875, 13019565.625, 13019867.1875, 13019993.75, 13020525.0, 13020804.6875, 13021303.125, 13021660.9375, 13021678.125, 13021750.0, 13021753.125, 13022260.9375, 13022534.375, 13023134.375, 13023282.8125, 13023345.3125, 13024090.625, 13024200.0, 13024648.4375, 13024760.9375, 13024884.375, 13025115.625, 13025678.125, 13026417.1875, 13028489.0625, 13028571.875, 13028859.375, 13028859.375, 13028895.3125, 13029368.75, 13029500.0, 13029593.75, 13029676.5625, 13029692.1875, 13029740.625, 13029795.3125, 13029835.9375, 13029912.5, 13030006.25, 13030053.125, 13030078.125, 13030082.8125, 13030107.8125, 13030131.25, 13030139.0625, 13030145.3125, 13030156.25, 13030162.5, 13030173.4375, 13030184.375, 13030339.0625, 13030339.0625, 13030354.6875, 13030376.5625, 13030376.5625, 13030432.8125, 13030437.5, 13030443.75, 13030446.875, 13030467.1875, 13030467.1875, 13030481.25, 13030512.5, 13030532.8125, 13030604.6875, 13030618.75, 13030623.4375, 13030623.4375, 13030698.4375, 13030703.125, 13030710.9375, 13030726.5625, 13030740.625, 13030764.0625, 13030785.9375, 13030795.3125, 13030804.6875, 13030859.375, 13030867.1875, 13030878.125, 13030890.625, 13030895.3125, 13030923.4375, 13030946.875, 13030985.9375, 13030993.75, 13030998.4375, 13031012.5, 13031037.5, 13031056.25, 13031060.9375, 13031095.3125, 13031137.5, 13031156.25, 13031160.9375, 13031217.1875, 13031226.5625, 13031251.5625, 13031281.25, 13031281.25, 13031287.5, 13031287.5, 13031318.75, 13031325.0, 13031325.0, 13031379.6875, 13031389.0625, 13031403.125, 13031415.625, 13031440.625, 13031467.1875, 13031479.6875, 13031481.25, 13031503.125, 13031510.9375, 13031514.0625, 13031565.625, 13031592.1875, 13031635.9375, 13031643.75, 13031664.0625, 13031671.875, 13031703.125, 13031715.625, 13031735.9375, 13031754.6875, 13031754.6875, 13031793.75, 13031804.6875, 13031842.1875, 13031887.5, 13031934.375, 13031940.625, 13031956.25, 13031973.4375, 13032039.0625, 13032082.8125, 13032101.5625, 13032160.9375, 13032176.5625, 13032190.625, 13032193.75, 13032196.875, 13032276.5625, 13032310.9375, 13032331.25, 13032373.4375, 13032375.0, 13032376.5625, 13032389.0625, 13032390.625, 13032392.1875, 13032401.5625, 13032414.0625, 13032423.4375, 13032451.5625, 13032523.4375, 13032529.6875, 13032551.5625, 13032553.125, 13032557.8125, 13032568.75, 13032570.3125, 13032585.9375, 13032657.8125, 13032675.0, 13032684.375, 13032695.3125, 13032706.25, 13032740.625, 13032748.4375, 13032757.8125, 13032757.8125, 13032781.25, 13032796.875, 13032825.0, 13032832.8125, 13032834.375, 13032835.9375, 13032865.625, 13032878.125, 13032882.8125, 13032896.875, 13032914.0625, 13032923.4375, 13032943.75, 13032965.625, 13032968.75, 13033025.0, 13033076.5625, 13033078.125, 13033081.25, 13033081.25, 13033106.25, 13033154.6875, 13033165.625, 13033168.75, 13033173.4375, 13033173.4375, 13033185.9375, 13033189.0625, 13033193.75, 13033220.3125, 13033221.875, 13033248.4375, 13033250.0, 13033257.8125, 13033315.625, 13033321.875, 13033326.5625, 13033337.5, 13033340.625, 13033356.25, 13033356.25, 13033376.5625, 13033400.0, 13033407.8125, 13033417.1875, 13033437.5, 13033454.6875, 13033478.125, 13033479.6875, 13033484.375, 13033503.125, 13033515.625, 13033526.5625, 13033543.75, 13033568.75, 13033643.75, 13033653.125, 13033667.1875, 13033667.1875, 13033676.5625, 13033743.75, 13033820.3125, 13033845.3125, 13033857.8125, 13033890.625, 13033892.1875, 13033906.25, 13033926.5625, 13034006.25, 13034021.875, 13034026.5625, 13034039.0625, 13034070.3125, 13034084.375, 13034093.75, 13034146.875, 13034157.8125, 13034160.9375, 13034242.1875, 13034248.4375, 13034268.75, 13034290.625, 13034332.8125, 13034354.6875, 13034365.625, 13034379.6875, 13034382.8125, 13034439.0625, 13034448.4375, 13034448.4375, 13034450.0, 13034473.4375, 13034476.5625, 13034490.625, 13034507.8125, 13034521.875, 13034523.4375, 13034526.5625, 13034531.25, 13034535.9375, 13034545.3125, 13034582.8125, 13034606.25, 13034609.375, 13034645.3125, 13034670.3125, 13034671.875, 13034681.25, 13034687.5, 13034729.6875, 13034740.625, 13034745.3125, 13034751.5625, 13034751.5625, 13034775.0, 13034787.5, 13034789.0625, 13034807.8125, 13034853.125, 13034889.0625, 13034967.1875, 13035012.5, 13035014.0625, 13035028.125, 13035031.25, 13035054.6875, 13035101.5625, 13035157.8125, 13035162.5, 13035200.0, 13035215.625, 13035223.4375, 13035225.0, 13035232.8125, 13035248.4375, 13035262.5, 13035271.875, 13035285.9375, 13035335.9375, 13035365.625, 13035389.0625, 13035390.625, 13035398.4375, 13035400.0, 13035401.5625, 13035406.25, 13035476.5625, 13035490.625, 13035526.5625, 13035543.75, 13035564.0625, 13035575.0, 13035579.6875, 13035610.9375, 13035743.75, 13035765.625, 13035767.1875, 13035778.125, 13035779.6875, 13035787.5, 13035789.0625, 13035792.1875, 13035796.875, 13035800.0, 13035817.1875, 13035846.875, 13035859.375, 13035895.3125, 13035943.75, 13035954.6875, 13035968.75, 13035971.875, 13036000.0, 13036004.6875, 13036021.875, 13036032.8125, 13036046.875, 13036051.5625, 13036059.375, 13036065.625, 13036123.4375, 13036129.6875, 13036135.9375, 13036142.1875, 13036185.9375, 13036223.4375, 13036250.0, 13036298.4375, 13036353.125, 13036404.6875, 13036421.875, 13036440.625, 13036453.125, 13036553.125, 13036562.5, 13036589.0625, 13036701.5625, 13036707.8125, 13036707.8125, 13036712.5, 13036717.1875, 13036873.4375, 13036904.6875, 13036959.375, 13036993.75, 13037009.375, 13037010.9375, 13037068.75, 13037070.3125, 13037084.375, 13037145.3125, 13037239.0625, 13037250.0, ...], [68.28447868820756, 5.057891214779658, 74.47127560452267, 87.21355507159103, 5.264908461040693, 56.727952783823426, 106.99936884540391, 60.107156968634186, 24.785268847561987, 72.43023146842361, 76.9993059316505, 7.158498323338275, 79.76728218101923, 17.895596337944756, 24.811461535585586, 20.190799215671632, 38.22437547528842, 16.564474247027324, 12.270855073002732, 5.569958378904241, 33.060227896096656, 115.03021964383137, 6.190322031808559, 81.03554715125196, 11.733255524752103, 14.813527405244352, 23.011234366340744, 5.061229170147126, 76.52930792866329, 40.12575398159609, 66.22699152653622, 13.71397277234071, 13.719481330396622, 78.70350405173455, 47.30067588022863, 31.350718033828986, 89.83815221141268, 5.9585569090504205, 9.176465908404504, 7.415520661377558, 30.684412518795405, 12.78853766733409, 11.699687467754975, 13.2422129152376, 11.49505491536067, 24.621186805876278, 23.38587597155494, 30.245994791224184, 35.66478992473546, 12.9313150670988, 38.95700438253476, 22.383289666528615, 46.92944295885433, 27.11575762541058, 104.21035697045832, 40.85334142774698, 25.21346941901305, 16.164001885412652, 8.13585843356877, 6.546486775723151, 16.511068849424195, 11.976853062461762, 48.84939979445164, 73.62971645709167, 19.74777124400719, 12.92993921600816, 62.77603839666667, 8.160159785219737, 13.261668568998571, 72.23111715441794, 11.135712035492435, 9.768883150609424, 42.319844487384856, 14.68924302191232, 29.887265363691686, 34.7291169311021, 92.20339033053376, 82.6978686329857, 21.181888348728506, 28.069427731719273, 18.421639431801303, 30.865682309477222, 8.547975419885649, 76.73630674727522, 10.444806822271435, 37.76856811499295, 77.93771605554672, 140.59435618274023, 12.094814886524574, 128.59820296701128, 15.51692402853501, 93.4071289736153, 32.92779071238124, 28.096501945615216, 21.898428386434087, 68.31872384221131, 13.302061881598274, 66.00758322330665, 15.502167546016803, 10.359918204784725, 23.321273294341626, 44.86964631341489, 32.22361576390995, 14.925729208875511, 24.623322147860105, 29.80716800821626, 9.242848365221752, 11.731918626325154, 24.738914933701537, 10.743870333068996, 6.948180725848203, 22.97896006610474, 14.63514975257404, 30.73022796168711, 11.804590041464479, 72.43337611697211, 9.688374809974231, 22.319426693186923, 17.836634538958076, 20.69913945215361, 42.44802234127759, 20.971619645553936, 35.687869607960195, 18.27043597506045, 96.05447592322805, 118.98060384139175, 140.94852495068972, 14.547733836042124, 5.9893622153665165, 45.88971139560765, 78.13329431797902, 63.641960740817154, 10.123672216815507, 115.77376078953462, 68.84145701211045, 7.4995768335396, 66.68561481393846, 13.793799601417987, 35.53623664446987, 49.977758849245475, 8.889589944455448, 40.42638765516153, 133.01768825599538, 82.46404814212053, 7.42235904839765, 99.27124817290273, 66.94849361933741, 45.70283235973292, 5.914367136190409, 23.806393129172783, 135.02495924130778, 76.78817407946997, 145.22954298577105, 15.349090706323352, 93.64694904928905, 103.30016303942351, 37.1420302759052, 43.15288904562096, 6.032131578890615, 54.23013735225789, 27.664538104671948, 92.62778269480964, 194.57715612512402, 90.6576713208122, 98.84045839569666, 70.49888557007834, 97.43367651497884, 42.30035742768592, 118.9046450113894, 9.275623210743412, 23.580875948476734, 141.3565293043281, 21.041643234821823, 73.71085839434974, 30.012210226734474, 18.49483664529607, 11.680455534677275, 50.58280252769431, 96.70335358756691, 15.973577488978233, 8.555278126946021, 6.848651613336096, 14.970075240508795, 65.15481369055763, 70.29491966026826, 220.6791835610203, 51.08357991376103, 178.2949810879095, 29.618935142719675, 27.414982872133336, 64.74820839826282, 9.956809471161685, 8.370201952836702, 36.27630934844855, 24.197873284831893, 11.095698863947707, 41.95498853015583, 8.074683733810282, 12.001391136334027, 94.83062101258533, 6.17570803208812, 63.1869258472376, 68.75760698454818, 63.92125523714768, 10.128149330286647, 68.54111013457089, 64.29529947357945, 5.5228082982417135, 29.564744333757886, 23.75504980747482, 108.63371650066841, 11.691244222704968, 122.48637960280212, 81.86123177583951, 5.036369864224272, 188.11394116500807, 141.30013175202845, 6.160493197758381, 15.041544395606582, 21.295970256274174, 47.47762110247747, 73.85424150485068, 12.28976290078093, 36.76535745586087, 50.91663947416917, 9.804526042403738, 194.93648883018494, 48.86857000587475, 22.97214883509215, 31.394718977641755, 67.63688713214216, 52.883317385746466, 10.660049680528703, 23.20954376142045, 100.33056718681956, 7.274619209213702, 12.826865184037635, 99.36456475523259, 32.28522578932518, 25.96059917113638, 10.025930910766977, 21.883526123490576, 96.05395528390102, 10.747207244367646, 19.08513201596534, 17.54301139498292, 199.12712825918624, 37.43539064615955, 55.73510262718206, 36.57713245500352, 33.321539061465565, 155.25055269909922, 73.18703209435517, 32.70072118720327, 16.352353955055577, 22.867805619608045, 38.92964807858546, 32.52145894898811, 32.79272078440922, 22.872300206061432, 5.819469129209257, 28.57119219953246, 53.454924530483, 116.46720092634493, 54.92056895377441, 20.916451816265845, 8.009994661886697, 8.383798436697685, 21.938087792245828, 20.60461813606111, 7.949402707020791, 23.371288025365907, 11.104707921212416, 10.327073970554599, 15.09147011868436, 153.42847692413213, 21.991686539268578, 31.456007493443863, 34.73341204156151, 14.819507792851386, 48.24811471783576, 90.50798239457554, 40.09378275158956, 74.50263096771432, 56.58165643804837, 128.38958128188744, 57.12260746512202, 46.84979059136316, 33.714072596669546, 56.348189792009876, 55.263810728417084, 133.41952719912996, 34.19163406943907, 103.15393113722368, 73.06657335593083, 24.21568618544599, 69.31338690227429, 65.51931107947553, 6.695858366537207, 6.010523528660596, 25.984439686956, 97.06392699991468, 64.32340451301475, 82.39743645737556, 52.38522383668609, 68.99139977667616, 5.08346696428525, 32.65153874851311, 58.27063056851419, 47.90167316075913, 107.02967171659134, 26.52025956671074, 117.08607416270537, 18.166703210049327, 37.29027629177429, 62.69005552778744, 110.77005736129586, 18.254607826862525, 70.64090605377574, 12.811057111498547, 30.87098122691069, 41.65533969806023, 42.064583883082065, 7.68710347656667, 194.51689641175886, 7.722889004364037, 134.80464245227725, 30.803978436730816, 82.4601390180934, 17.666810662199797, 18.61299217346331, 8.909949887462702, 19.207296707570865, 65.28119163334736, 46.25103239202576, 18.283271464473202, 70.17586701412381, 11.535918626158132, 131.16120098215083, 21.27588315347868, 8.89003278799647, 12.309283862017748, 44.20038498261146, 27.503690639919565, 135.15053187189653, 168.22147973755125, 9.091467923264178, 131.19166421639844, 18.98552601596088, 28.68018838804793, 45.51299702046748, 66.03655691188484, 9.761634038584457, 67.18632374145689, 8.302453570423014, 142.93418859172448, 16.822444650434583, 21.829051695706926, 98.70483459167642, 35.13933946156159, 40.368427251872546, 33.23895987204691, 30.652539684544013, 5.457218363653226, 171.2398572345685, 18.601144864899346, 39.32678544632877, 16.83903629329123, 20.92966255216315, 18.215362737847997, 39.07064879646236, 49.36500172543624, 30.205521585126213, 68.15069496318948, 11.48870359731118, 41.38103584198845, 11.4559653319853, 64.51834668819266, 22.421426993882225, 20.859168085711886, 87.48133837424366, 22.336165512348064, 58.888360432714606, 38.33270632348321, 14.866171031361706, 27.41193632365874, 7.46377527793782, 14.018108058174406, 51.595827994117386, 15.312236572090548, 18.744297227186728, 54.07966316983247, 16.145088873372288, 8.00230095882066, 175.77205348557334, 5.3432698591003644, 50.739771635483685, 16.052941844721474, 94.84770487741825, 127.95499736849581, 7.046067268560365, 39.79584834640935, 55.458869164462506, 194.62601547739362, 6.86127578449436, 8.846754144596312, 22.408767516594935, 119.25814031652541, 41.693528511286665, 35.20465844481696, 179.7940136947973, 23.97642937064204, 8.475706324502235, 13.26335207642761, 22.818362623304324, 7.052060997673832, 10.882190262935671, 28.79621690976559, 8.635493685857343, 100.65829371934281, 93.81245691547656, 5.8113410687776055, 170.93593536975706, 97.52433851602258, 26.23928974083178, 7.137767748712154, 63.84473620269536, 53.98602391053627, 43.86812284202667, 201.84824935202454, 41.96695264899317, 18.079901920210133, 192.34091808715908, 36.2034255779114, 19.65750972165247, 67.3873337472354, 217.52624001157295, 81.04042289043527, 27.737250651193296, 17.82629919250905, 86.53007973021855, 77.02981255871352, 119.54342108349977, 5.056594653960327, 234.77070624380596, 38.852431538163884, 10.097702785026556, 108.42965188772307, 99.56204194126641, 40.3121174008805, 127.90038860869227, 6.4723083217599715, 23.3998352797377, 13.199322678214816, 6.8037649586901265, 142.8832734236973, 7.199147413109589, 84.58857542742768, 22.964399722891365, 64.11843973271024, 30.01880963274242, 80.06084120884532, 22.031222944905767, 16.362855280843572, 38.997932844269975, 28.124614057880066, 19.860116848954476, 38.82335997133073, 17.23115705723884, 16.743785743456034, 56.10457462253217, 436.77394268690296, 15.60709344093682, 25.710698884245694, 38.257652776760565, 71.85009874556447, 58.10070531422843, 39.041403752419924, 17.708764141896488, 111.91966510407016, 130.23263163779885, 46.37405407111737, 103.12469474863505, 90.31228720909422, 25.775528565750328, 10.981716129884585, 49.631865365271594, 119.62056284394205, 60.46946300177789, 33.5799660553441, 429.13827450715263, 147.67919106426632, 5.698034539913776, 63.11505243597888, 14.150608581803949, 14.199013949306455, 102.72052184769994, 15.48823151718347, 370.04713808048905, 30.33700346949992, 17.477250934413497, 31.891189086335313, 57.93371318242529, 19.515515523925377, 18.022396510895522, 73.86332849671773, 12.959419562786984, 31.03871982570384, 7.507531468307548, 18.478101876543462, 12.13963769747915, 32.732646788085475, 98.53596848441212, 38.061442982015144, 31.450599052765988, 9.835849690304928, 35.1302809161064, 43.133941784660486, 74.31395552413788, 8.765079115276212, 123.60985320757213, 27.239005306715782, 5.103651563248576, 71.23555165643938, 227.37212791141823, 69.2413831714737, 9.180250993982927, 151.40019792178566, 89.42168305987221, 34.77758883764857, 45.711182185958286, 6.190668211904208, 15.152459632594853, 124.33233976998343, 98.3821617181016, 26.682410945827748, 24.410075100154362, 33.04615289260267, 80.41098665376028, 24.613496624983288, 20.196543648922734, 6.685135734417104, 40.96024550218082, 5.907647100098545, 39.96101800679797, 25.332837768045326, 69.16712293722014, 10.076124020775898, 73.87655294635016, 16.191484375223077, 13.158454615545308, 38.366892624262206, 40.87245003685546, 46.84036724740566, 22.64656293551859, 13.380848958394415, 43.29658462360264, 12.303824181363508, 13.127806489919509, 67.33692515799086, 28.75658135975155, 17.155303115528856, 12.125912855201962, 53.328438382251676, 49.78065288731709, 9.457229267129584, 17.36474723797901, 42.267183126075466, 30.54097167984309, 5.972099922607927, 23.380803920187834, 39.32572849785979, 52.12959942263951, 88.8801482532319, 20.414179748586694, 40.557603616648414, 172.6899673728645, 21.41812664495041, 73.75487580476027, 16.838273974409724, 69.91498124190609, 76.61711739938775, 46.87028772986041, 10.198439754996796, 40.1630742450254, 38.055068945724614, 27.195849245066213, 22.126369356404386, 162.85771410975116, 43.022430149150566, 27.453066912419036, 92.6813905654494, 5.90154901818083, 153.01273425793377, 167.0416248254238, 25.872198256305758, 48.610353899359566, 31.47889570013438, 103.32251064010266, 43.38249454239655, 151.1444242856056, 19.55647792315222, 53.70460409806016, 54.83764927295695, 60.83912202870452, 18.575201319420813, 81.2980672413283, 76.30233030383489, 5.344019440804279, 20.36690430939675, 16.3694479934919, 32.42727971334702, 20.467366939216195, 9.704009774491432, 14.622841674891493, 12.594740824006335, 20.585678102782726, 117.49661490678753, 15.388510028816478, 35.75975883786999, 16.305550102610518, 71.13590927478, 60.99681928989793, 8.038065710282197, 40.32932253468202, 7.915442835447025, 6.837102208566613, 135.03862165317733, 27.492817344208696, 64.18254855627163, 12.59406726528341, 89.66524881514816, 51.486783139191964, 82.03278883151943, 62.74295745024382, 58.631630173788494, 5.194294901130843, 63.75093756205651, 115.84425259539793, 61.69654035589842, 15.788574517311078, 33.11622653096311, 11.191062204433731, 74.46467752760869, 38.986690015125426, 83.73840143954541, 6.3177587108326865, 61.04244377706303, 68.71145620736857, 106.61052104104321, 65.22382183465488, 17.510865919184297, 52.11569062905699, 31.7936089374823, 72.31445484500554, 30.701755911723726, 59.67081855652449, 33.42705227924488, 20.950983607921472, 34.18881625048232, 64.14496806622196, 38.09243954102179, 115.43165278674, 21.434796863930877, 70.75820431552175, 151.65535718057257, 42.885385951029306, 174.4127524672736, 72.7351367584423, 70.58925399168692, 66.73029631609731, 44.544374549122786, 37.00108060272311, 13.187902962327406, 67.1857901230546, 57.515301377184045, 72.38048156791665, 85.64555619974085, 28.339857212551905, 5.569381279287721, 58.89549271211506, 63.20265328565644, 94.42463352217979, 43.75669538681592, 81.11563374152612, 5.708195731646915, 7.030005727428354, 36.96865557401597, 54.134686084525086, 9.896730041973747, 9.087246154537558, 42.00983015787102, 36.633782236880634, 18.45049927630242, 49.784430947180205, 29.138367907697553, 14.2104723480275, 6.281401157363344, 72.62722618112349, 23.68564374606538, 39.19245912357348, 8.335966214340877, 9.828214855220926, 8.480804153750393, 14.662210904536602, 50.88725880042948, 41.2639378284221, 23.37751166899608, 20.520803990937505, 34.10064371145434, 54.88743433262315, 7.266322690293648, 11.370573438038992, 54.335352968080805, 12.439020709426572, 24.534716415206095, 192.29723038524537, 22.19363912744923, 87.00889042408272, 7.1794044173524085, 35.18719942981149, 57.026693022962164, 22.69697033681885, 33.98380724685031, 37.88022064182589, 66.45020337977682, 11.394535148580687, 32.40114648066526, 33.22863321318774, 44.84834306967128, 27.551069441171045, 38.13610647023065, 67.54660119267835, 90.77406125097433, 40.15774299462067, 60.16331851993336, 127.56677643251199, 30.268928731123204, 24.462630531487818, 5.028435933665785, 61.639101769027974, 33.521283243547074, 34.23251245873026, 21.6008296851167, 19.264720772349023, 24.528186688833085, 25.23484585422507, 24.84095358458851, 6.965986408941395, 46.70353443739066, 65.06985184966655, 36.507222386799654, 32.12747516633419, 55.25516611753731, 10.534089172623442, 16.815873665327004, 19.03750592242706, 128.59422807234395, 99.49946096003671, 135.76886888328312, 58.743421384697044, 43.99952162652475, 68.86873800517144, 19.69007918392741, 26.378763320658777, 22.088961080955684, 90.61569778442316, 59.44905357316944, 68.91041577055363, 21.311796668729777, 40.90567929114408, 8.910268335695404, 5.036623100786614, 16.188140801537763, 51.15762455043088, 60.51822427383075, 53.70486414412323, 15.704780009203304, 63.82643023362433, 31.603110074609674, 126.41554961428322, 54.74779822063406, 27.76551804787672, 28.31688022497992, 10.392282280221457, 15.190060393620445, 95.01017362304628, 51.08672534967397, 85.51733301471194, 7.845072879876235, 14.529773562423243, 10.39621380674943, 9.565941087053753, 120.51493564530412, 77.76663041308801, 12.651587519569746, 47.66579847930494, 13.856194475679988, 43.43972221298385, 6.629135533560218, 5.857852430588425, 50.591545799829376, 13.85521255047623, 49.34733751649501, 39.557820769050835, 14.056635952648866, 27.49106123461075, 36.617725540787205, 67.34284196074736, 67.84789627427317, 56.58537168475458, 22.69432000947185, 48.883128545996996, 9.608034501782901, 86.12833209815014, 23.657248657701864, 18.603156043357743, 59.76981293520563, 39.18777840173992, 19.540093081927957, 12.53888859833334, 5.912773023135081, 93.00368706964, 23.658029865548322, 11.309339300645425, 64.88393419243745, 22.490331887184166, 30.482800097500608, 16.096346410562298, 22.563541744487747, 28.870590582904896, 73.00041801022226, 51.64172250455143, 7.9260800535586675, 24.681965250391567, 100.67863416995847, 11.45238282893507, 24.897667269323847, 15.376685362545745, 16.043300243531853, 22.173934584102927, 27.641163444083183, 12.332704830716214, 18.523922709015345, 55.254928470524625, 116.38214572134902, 64.25211130389086, 5.055701354177014, 5.61761616794419, 13.332925549499949, 21.24927655197914, 29.109912651932195, 20.943315321709086, 22.71557182489616, 5.874038026985803, 30.671024133175976, 19.267834743962023, 18.862673533734316, 6.280232276621025, 20.20033023618923, 78.4199495251031, 16.663174276950038, 32.12445947421998, 15.021609547946614, 12.272011381609225, 44.0104348498904, 30.38744572296427, 47.63014415732887, 10.345057823918479, 9.339003589084083, 71.15533804081856, 17.14876555327145, 26.511325957711705, 90.89419644640822, 74.6778467230078, 53.01713057177576, 65.08753018154195, 74.50767012915854, 37.72468226121895, 14.977713611294185, 12.36163980677249, 40.89374266828015, 5.284141909949036, 21.504396994634803, 49.29030120502733, 61.67675224331568, 7.335107897570799, 16.87294893983716, 131.3339191522415, 81.77784679000273, 39.484933773131246, 9.596668724588385, 27.745420787605145, 96.88101927646247, 60.06353137844954, 43.26734178765496, 149.5764899254885, 123.9328192019048, 18.79884214730678, 50.517502445921366, 64.77204935622942, 45.162799980971656, 88.44362024451993, 44.791879497007194, 254.16564766103596, 92.11871892095891, 21.75007821794645, 15.430359511996247, 10.827504704855052, 47.341447448967934, 90.57140096284516, 100.91313632834466, 64.8986163694189, 72.06836911517217, 60.856330261289145, 85.17398707869779, 108.79666652459224, 12.498900935385274, 47.92221975070207, 5.9274987513283985, 14.515688730318175, 47.71273615556625, 14.696689037791876, 22.780690063035177, 12.818698898953045, 47.81029592832043, 61.07319051232399, 24.94468300445135, 16.340157805875023, 9.819015016451464, 79.55865327178165, 6.727162483691686, 74.86871303431946, 80.53508215585302, 119.15394185297498, 85.47588955673656, 41.77686215190268, 36.09744736781679, 11.0692759713398, 114.7007807488376, 22.904274096610667, 29.27419133925292, 16.328264984187175, 5.575519506597931, 6.419842903327191, 22.50070712876737, 12.576039601527262, 124.43068860382976, 7.485524585099918, 16.778148707960096, 10.250369902581793, 13.649437809247486, 17.053418041196075, 28.155372384566366, 13.723943531473124, 13.30938732455127, 89.81675025672138, 67.51866254734936, 9.37851669028832, 31.967186647834783, 58.41415354491201, 71.82789082926905, 58.029533489151795, 16.75837055998509, 131.10972312089527, 6.039979546795697, 26.85149369631571, 85.54668572789394, 31.463313774037537, 329.7942996746047, 9.775382840786774, 14.76463243789665, 11.657159805218168, 22.906414569901415, 61.960097223335225, 21.559901969475874, 56.3307293221556, 19.025362030715126, 80.439028345657, 25.4817140111694, 5.084360817060702, 16.992154721036293, 25.105284795014928, 119.69133640887645, 17.694733284150747, 67.75091242309452, 9.897130970602749, 69.45662100299323, 28.564511865124402, 106.35228846468313, 5.064658150539516, 144.4408591784959, 40.44496219253615, 42.99078566354638, 20.779896263948846, 11.001992172826379, 96.3911302005796, 12.121173348206879, 14.464443446347694, 5.204225758857672, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([3320014.0625, 3320071.875, 3470543.75, 3500029.6875, 3509479.6875, 3530793.75, 3582790.625, 3727829.6875, 3732206.25, 3737350.0, 3737415.625, 3745681.25, 3750485.9375, 3785318.75, 3793321.875, 3811614.0625, 3820096.875, 3820150.0, 3820178.125, 3820254.6875, 3821976.5625, 3825656.25, 3829550.0, 3833659.375, 3890692.1875, 3892259.375, 3897000.0, 3915145.3125, 3917445.3125, 3921250.0, 3922739.0625, 3931440.625, 3940132.8125, 3942593.75, 3950332.8125, 3959414.0625, 3966140.625, 3966170.3125, 4009420.3125, 4047034.375, 4047039.0625, 4049443.75, 4052475.0, 4062260.9375, 4062262.5, 4064512.5, 4066084.375, 4069042.1875, 4092479.6875, 4093110.9375, 4108157.8125, 4108165.625, 4109620.3125, 4110006.25, 4139353.125, 4142982.8125, 4142985.9375, 4158860.9375, 4167173.4375, 4173679.6875, 4179942.1875, 4200171.875, 4207907.8125, 4220053.125, 4223598.4375, 4229293.75, 4279015.625, 4291470.3125, 4295284.375, 4307503.125, 4309431.25, 4311631.25, 4314937.5, 4317367.1875, 4318946.875, 4340085.9375, 4345575.0, 4356879.6875, 4374048.4375, 4383634.375, 4393596.875, 4394167.1875, 4394212.5, 4397279.6875, 4407864.0625, 4410504.6875, 4422154.6875, 4424634.375, 4425010.9375, 4426564.0625, 4429151.5625, 4433881.25, 4438354.6875, 4456778.125, 4475331.25, 4480496.875, 4519773.4375, 4561518.75, 4631065.625, 4782676.5625, 4815476.5625, 5573884.375, 5584846.875, 5620737.5, 5631168.75, 5635701.5625, 5656142.1875, 5671925.0, 5678367.1875, 5686545.3125, 5687568.75, 5732729.6875, 5732737.5, 5757243.75, 5757839.0625, 5780910.9375, 5820996.875, 5825996.875, 5873629.6875, 5897429.6875, 5924320.3125, 6055512.5, 6055998.4375, 6090609.375, 6098968.75, 6117973.4375, 6148089.0625, 6156796.875, 6191532.8125, 6198542.1875, 6200551.5625, 6202168.75, 6202171.875, 6203557.8125, 6208604.6875, 6226718.75, 6229951.5625, 6229959.375, 6232856.25, 6239232.8125, 6260507.8125, 6281689.0625, 6304560.9375, 6305317.1875, 6308090.625, 6309842.1875, 6340637.5, 6347065.625, 6351137.5, 6358240.625, 6358262.5, 6362654.6875, 6363171.875, 6365481.25, 6370879.6875, 6372585.9375, 6374654.6875, 6378351.5625, 6385396.875, 6386465.625, 6391070.3125, 6396821.875, 6400207.8125, 6408589.0625, 6410687.5, 6434051.5625, 6439150.0, 6443412.5, 6456960.9375, 6462621.875, 6463053.125, 6465764.0625, 6482239.0625, 6496901.5625, 6499843.75, 6499860.9375, 6504868.75, 6505251.5625, 6508975.0, 6520545.3125, 6524006.25, 6545912.5, 6568395.3125, 6572307.8125, 6582195.3125, 6584560.9375, 6587940.625, 6594906.25, 6624320.3125, 6719329.6875, 6728064.0625, 6750293.75, 6766432.8125, 6775531.25, 6785298.4375, 6808446.875, 6809440.625, 6831815.625, 6835089.0625, 6848498.4375, 6886896.875, 6898029.6875, 6900834.375, 6903632.8125, 6916323.4375, 6921395.3125, 6927190.625, 6957959.375, 6958353.125, 6959279.6875, 6961756.25, 6962785.9375, 6970859.375, 6989070.3125, 6989167.1875, 6989182.8125, 6993026.5625, 6993207.8125, 6994726.5625, 6995848.4375, 7005092.1875, 7011637.5, 7012971.875, 7015985.9375, 7024473.4375, 7024520.3125, 7026876.5625, 7026892.1875, 7034271.875, 7036262.5, 7037993.75, 7040064.0625, 7046237.5, 7053179.6875, 7070653.125, 7072865.625, 7073929.6875, 7089029.6875, 7105715.625, 7106006.25, 7106350.0, 7110253.125, 7117798.4375, 7119048.4375, 7120373.4375, 7125640.625, 7132789.0625, 7138862.5, 7152353.125, 7164807.8125, 7165328.125, 7165954.6875, 7166243.75, 7166548.4375, 7167201.5625, 7167720.3125, 7169796.875, 7170478.125, 7171440.625, 7172346.875, 7173276.5625, 7179845.3125, 7189481.25, 7190482.8125, 7190739.0625, 7191012.5, 7191032.8125, 7191243.75, 7196462.5, 7199156.25, 7203796.875, 7205607.8125, 7209626.5625, 7210720.3125, 7212934.375, 7218521.875, 7220440.625, 7221615.625, 7226854.6875, 7227548.4375, 7230278.125, 7231031.25, 7233765.625, 7235310.9375, 7235828.125, 7239520.3125, 7240589.0625, 7241721.875, 7243060.9375, 7249020.3125, 7249509.375, 7253278.125, 7253760.9375, 7259517.1875, 7260923.4375, 7260931.25, 7262218.75, 7262228.125, 7267187.5, 7268564.0625, 7269384.375, 7271918.75, 7273089.0625, 7275568.75, 7275776.5625, 7276989.0625, 7277070.3125, 7280328.125, 7294956.25, 7295029.6875, 7298087.5, 7298948.4375, 7302773.4375, 7350807.8125, 7359781.25, 7376435.9375, 7436437.5, 7438081.25, 7443340.625, 7467009.375, 7485751.5625, 7489529.6875, 7515628.125, 7525596.875, 7598510.9375, 7647332.8125, 7693668.75, 7738207.8125, 7742089.0625, 7747659.375, 7768146.875, 7773092.1875, 7774503.125, 7775567.1875, 7778182.8125, 7782579.6875, 7816596.875, 7818934.375, 7824681.25, 7830928.125, 7837140.625, 7853610.9375, 7879818.75, 7897392.1875, 7897698.4375, 7900876.5625, 7915846.875, 7915848.4375, 7924278.125, 7983818.75, 7994040.625, 8005684.375, 8076031.25, 8097882.8125, 8105764.0625, 8106529.6875, 8108434.375, 8113151.5625, 8116412.5, 8118598.4375, 8119756.25, 8155170.3125, 8156998.4375, 8157075.0, 8161265.625, 8161393.75, 8162151.5625, 8163146.875, 8163571.875, 8172873.4375, 8173017.1875, 8194860.9375, 8210192.1875, 8213590.625, 8233626.5625, 8234979.6875, 8235954.6875, 8241042.1875, 8249603.125, 8250767.1875, 8269235.9375, 8276279.6875, 8310140.625, 8313637.5, 8316529.6875, 8321625.0, 8327878.125, 8336934.375, 8365246.875, 8372225.0, 8372893.75, 8401562.5, 8403312.5, 8435984.375, 8436598.4375, 8436659.375, 8454381.25, 8489334.375, 8494821.875, 8496781.25, 8516793.75, 8518621.875, 8521717.1875, 8526470.3125, 8570718.75, 8596968.75, 8597056.25, 8603125.0, 8614170.3125, 8627306.25, 8642465.625, 8691417.1875, 8742632.8125, 8788046.875, 8795965.625, 8825039.0625, 8825984.375, 8850209.375, 8872931.25, 8884695.3125, 8885620.3125, 8885689.0625, 8905743.75, 8908864.0625, 8912832.8125, 8918392.1875, 8918462.5, 8932720.3125, 8934875.0, 8936034.375, 8937243.75, 8940773.4375, 8943539.0625, 8945382.8125, 8946234.375, 8946975.0, 8947046.875, 8947145.3125, 8948093.75, 8949501.5625, 8949862.5, 8950278.125, 8951823.4375, 8951879.6875, 8956809.375, 8956814.0625, 8958462.5, 8959125.0, 8980506.25, 8984982.8125, 8987598.4375, 8990357.8125, 9028267.1875, 9041073.4375, 9047946.875, 9050181.25, 9066870.3125, 9070454.6875, 9077276.5625, 9116620.3125, 9154115.625, 9184660.9375, 9211489.0625, 9211525.0, 9239498.4375, 9268014.0625, 9298192.1875, 9300673.4375, 9303690.625, 9305793.75, 9317245.3125, 9329725.0, 9332962.5, 9336860.9375, 9343900.0, 9344607.8125, 9355479.6875, 9355687.5, 9379393.75, 9390085.9375, 9409798.4375, 9417487.5, 9431943.75, 9437793.75, 9438520.3125, 9439000.0, 9439007.8125, 9442462.5, 9443131.25, 9444390.625, 9456579.6875, 9456614.0625, 9456634.375, 9460385.9375, 9466395.3125, 9467628.125, 9469118.75, 9471143.75, 9484625.0, 9484657.8125, 9524039.0625, 9526218.75, 9527339.0625, 9528195.3125, 9533821.875, 9534934.375, 9538835.9375, 9579114.0625, 9580662.5, 9608423.4375, 9613885.9375, 9776093.75, 9835717.1875, 9856656.25, 9884090.625, 9893990.625, 9911248.4375, 9912162.5, 9912203.125, 9912240.625, 9923970.3125, 9958448.4375, 9968298.4375, 9974881.25, 9979660.9375, 9998784.375, 10000145.3125, 10136760.9375, 10159881.25, 10182345.3125, 10202801.5625, 10202882.8125, 10261878.125, 10273307.8125, 10294518.75, 10325285.9375, 10350150.0, 10370443.75, 10406854.6875, 10498148.4375, 10543751.5625, 10591715.625, 10602790.625, 10815954.6875, 10928225.0, 10938193.75, 10954296.875, 11020267.1875, 11032114.0625, 11051521.875, 11069509.375, 11291956.25, 11291984.375, 11321290.625, 11361665.625, 11388150.0, 11390084.375, 11966595.3125, 12133571.875, 12244632.8125, 12246890.625, 12567035.9375, 12597135.9375, 12731673.4375, 12769028.125, 12769651.5625, 12780790.625, 12854437.5, 12869095.3125, 12905868.75, 12929142.1875, 12936017.1875, 12974584.375, 13001400.0, 13010212.5, 13010479.6875, 13010731.25, 13010935.9375, 13011164.0625, 13011487.5, 13012029.6875, 13014545.3125, 13014681.25, 13015651.5625, 13015937.5, 13016020.3125, 13016053.125, 13016132.8125, 13016423.4375, 13016478.125, 13016490.625, 13016559.375, 13016692.1875, 13016812.5, 13016903.125, 13016968.75, 13017068.75, 13017084.375, 13017267.1875, 13017279.6875, 13017496.875, 13017504.6875, 13017509.375, 13017717.1875, 13017832.8125, 13018204.6875, 13018232.8125, 13018401.5625, 13018648.4375, 13018668.75, 13019021.875, 13019273.4375, 13019421.875, 13019423.4375, 13019542.1875, 13019565.625, 13019867.1875, 13019993.75, 13020525.0, 13020804.6875, 13021303.125, 13021660.9375, 13021678.125, 13021750.0, 13021753.125, 13022260.9375, 13022534.375, 13023134.375, 13023282.8125, 13023345.3125, 13024090.625, 13024200.0, 13024648.4375, 13024760.9375, 13024884.375, 13025115.625, 13025678.125, 13026417.1875, 13028489.0625, 13028571.875, 13028859.375, 13028859.375, 13028895.3125, 13029368.75, 13029500.0, 13029593.75, 13029676.5625, 13029692.1875, 13029740.625, 13029795.3125, 13029835.9375, 13029912.5, 13030006.25, 13030053.125, 13030078.125, 13030082.8125, 13030107.8125, 13030131.25, 13030139.0625, 13030145.3125, 13030156.25, 13030162.5, 13030173.4375, 13030184.375, 13030339.0625, 13030339.0625, 13030354.6875, 13030376.5625, 13030376.5625, 13030432.8125, 13030437.5, 13030443.75, 13030446.875, 13030467.1875, 13030467.1875, 13030481.25, 13030512.5, 13030532.8125, 13030604.6875, 13030618.75, 13030623.4375, 13030623.4375, 13030698.4375, 13030703.125, 13030710.9375, 13030726.5625, 13030740.625, 13030764.0625, 13030785.9375, 13030795.3125, 13030804.6875, 13030859.375, 13030867.1875, 13030878.125, 13030890.625, 13030895.3125, 13030923.4375, 13030946.875, 13030985.9375, 13030993.75, 13030998.4375, 13031012.5, 13031037.5, 13031056.25, 13031060.9375, 13031095.3125, 13031137.5, 13031156.25, 13031160.9375, 13031217.1875, 13031226.5625, 13031251.5625, 13031281.25, 13031281.25, 13031287.5, 13031287.5, 13031318.75, 13031325.0, 13031325.0, 13031379.6875, 13031389.0625, 13031403.125, 13031415.625, 13031440.625, 13031467.1875, 13031479.6875, 13031481.25, 13031503.125, 13031510.9375, 13031514.0625, 13031565.625, 13031592.1875, 13031635.9375, 13031643.75, 13031664.0625, 13031671.875, 13031703.125, 13031715.625, 13031735.9375, 13031754.6875, 13031754.6875, 13031793.75, 13031804.6875, 13031842.1875, 13031887.5, 13031934.375, 13031940.625, 13031956.25, 13031973.4375, 13032039.0625, 13032082.8125, 13032101.5625, 13032160.9375, 13032176.5625, 13032190.625, 13032193.75, 13032196.875, 13032276.5625, 13032310.9375, 13032331.25, 13032373.4375, 13032375.0, 13032376.5625, 13032389.0625, 13032390.625, 13032392.1875, 13032401.5625, 13032414.0625, 13032423.4375, 13032451.5625, 13032523.4375, 13032529.6875, 13032551.5625, 13032553.125, 13032557.8125, 13032568.75, 13032570.3125, 13032585.9375, 13032657.8125, 13032675.0, 13032684.375, 13032695.3125, 13032706.25, 13032740.625, 13032748.4375, 13032757.8125, 13032757.8125, 13032781.25, 13032796.875, 13032825.0, 13032832.8125, 13032834.375, 13032835.9375, 13032865.625, 13032878.125, 13032882.8125, 13032896.875, 13032914.0625, 13032923.4375, 13032943.75, 13032965.625, 13032968.75, 13033025.0, 13033076.5625, 13033078.125, 13033081.25, 13033081.25, 13033106.25, 13033154.6875, 13033165.625, 13033168.75, 13033173.4375, 13033173.4375, 13033185.9375, 13033189.0625, 13033193.75, 13033220.3125, 13033221.875, 13033248.4375, 13033250.0, 13033257.8125, 13033315.625, 13033321.875, 13033326.5625, 13033337.5, 13033340.625, 13033356.25, 13033356.25, 13033376.5625, 13033400.0, 13033407.8125, 13033417.1875, 13033437.5, 13033454.6875, 13033478.125, 13033479.6875, 13033484.375, 13033503.125, 13033515.625, 13033526.5625, 13033543.75, 13033568.75, 13033643.75, 13033653.125, 13033667.1875, 13033667.1875, 13033676.5625, 13033743.75, 13033820.3125, 13033845.3125, 13033857.8125, 13033890.625, 13033892.1875, 13033906.25, 13033926.5625, 13034006.25, 13034021.875, 13034026.5625, 13034039.0625, 13034070.3125, 13034084.375, 13034093.75, 13034146.875, 13034157.8125, 13034160.9375, 13034242.1875, 13034248.4375, 13034268.75, 13034290.625, 13034332.8125, 13034354.6875, 13034365.625, 13034379.6875, 13034382.8125, 13034439.0625, 13034448.4375, 13034448.4375, 13034450.0, 13034473.4375, 13034476.5625, 13034490.625, 13034507.8125, 13034521.875, 13034523.4375, 13034526.5625, 13034531.25, 13034535.9375, 13034545.3125, 13034582.8125, 13034606.25, 13034609.375, 13034645.3125, 13034670.3125, 13034671.875, 13034681.25, 13034687.5, 13034729.6875, 13034740.625, 13034745.3125, 13034751.5625, 13034751.5625, 13034775.0, 13034787.5, 13034789.0625, 13034807.8125, 13034853.125, 13034889.0625, 13034967.1875, 13035012.5, 13035014.0625, 13035028.125, 13035031.25, 13035054.6875, 13035101.5625, 13035157.8125, 13035162.5, 13035200.0, 13035215.625, 13035223.4375, 13035225.0, 13035232.8125, 13035248.4375, 13035262.5, 13035271.875, 13035285.9375, 13035335.9375, 13035365.625, 13035389.0625, 13035390.625, 13035398.4375, 13035400.0, 13035401.5625, 13035406.25, 13035476.5625, 13035490.625, 13035526.5625, 13035543.75, 13035564.0625, 13035575.0, 13035579.6875, 13035610.9375, 13035743.75, 13035765.625, 13035767.1875, 13035778.125, 13035779.6875, 13035787.5, 13035789.0625, 13035792.1875, 13035796.875, 13035800.0, 13035817.1875, 13035846.875, 13035859.375, 13035895.3125, 13035943.75, 13035954.6875, 13035968.75, 13035971.875, 13036000.0, 13036004.6875, 13036021.875, 13036032.8125, 13036046.875, 13036051.5625, 13036059.375, 13036065.625, 13036123.4375, 13036129.6875, 13036135.9375, 13036142.1875, 13036185.9375, 13036223.4375, 13036250.0, 13036298.4375, 13036353.125, 13036404.6875, 13036421.875, 13036440.625, 13036453.125, 13036553.125, 13036562.5, 13036589.0625, 13036701.5625, 13036707.8125, 13036707.8125, 13036712.5, 13036717.1875, 13036873.4375, 13036904.6875, 13036959.375, 13036993.75, 13037009.375, 13037010.9375, 13037068.75, 13037070.3125, 13037084.375, 13037145.3125, 13037239.0625, 13037250.0, ...], [68.28447868820756, 5.057891214779658, 74.47127560452267, 87.21355507159103, 5.264908461040693, 56.727952783823426, 106.99936884540391, 60.107156968634186, 24.785268847561987, 72.43023146842361, 76.9993059316505, 7.158498323338275, 79.76728218101923, 17.895596337944756, 24.811461535585586, 20.190799215671632, 38.22437547528842, 16.564474247027324, 12.270855073002732, 5.569958378904241, 33.060227896096656, 115.03021964383137, 6.190322031808559, 81.03554715125196, 11.733255524752103, 14.813527405244352, 23.011234366340744, 5.061229170147126, 76.52930792866329, 40.12575398159609, 66.22699152653622, 13.71397277234071, 13.719481330396622, 78.70350405173455, 47.30067588022863, 31.350718033828986, 89.83815221141268, 5.9585569090504205, 9.176465908404504, 7.415520661377558, 30.684412518795405, 12.78853766733409, 11.699687467754975, 13.2422129152376, 11.49505491536067, 24.621186805876278, 23.38587597155494, 30.245994791224184, 35.66478992473546, 12.9313150670988, 38.95700438253476, 22.383289666528615, 46.92944295885433, 27.11575762541058, 104.21035697045832, 40.85334142774698, 25.21346941901305, 16.164001885412652, 8.13585843356877, 6.546486775723151, 16.511068849424195, 11.976853062461762, 48.84939979445164, 73.62971645709167, 19.74777124400719, 12.92993921600816, 62.77603839666667, 8.160159785219737, 13.261668568998571, 72.23111715441794, 11.135712035492435, 9.768883150609424, 42.319844487384856, 14.68924302191232, 29.887265363691686, 34.7291169311021, 92.20339033053376, 82.6978686329857, 21.181888348728506, 28.069427731719273, 18.421639431801303, 30.865682309477222, 8.547975419885649, 76.73630674727522, 10.444806822271435, 37.76856811499295, 77.93771605554672, 140.59435618274023, 12.094814886524574, 128.59820296701128, 15.51692402853501, 93.4071289736153, 32.92779071238124, 28.096501945615216, 21.898428386434087, 68.31872384221131, 13.302061881598274, 66.00758322330665, 15.502167546016803, 10.359918204784725, 23.321273294341626, 44.86964631341489, 32.22361576390995, 14.925729208875511, 24.623322147860105, 29.80716800821626, 9.242848365221752, 11.731918626325154, 24.738914933701537, 10.743870333068996, 6.948180725848203, 22.97896006610474, 14.63514975257404, 30.73022796168711, 11.804590041464479, 72.43337611697211, 9.688374809974231, 22.319426693186923, 17.836634538958076, 20.69913945215361, 42.44802234127759, 20.971619645553936, 35.687869607960195, 18.27043597506045, 96.05447592322805, 118.98060384139175, 140.94852495068972, 14.547733836042124, 5.9893622153665165, 45.88971139560765, 78.13329431797902, 63.641960740817154, 10.123672216815507, 115.77376078953462, 68.84145701211045, 7.4995768335396, 66.68561481393846, 13.793799601417987, 35.53623664446987, 49.977758849245475, 8.889589944455448, 40.42638765516153, 133.01768825599538, 82.46404814212053, 7.42235904839765, 99.27124817290273, 66.94849361933741, 45.70283235973292, 5.914367136190409, 23.806393129172783, 135.02495924130778, 76.78817407946997, 145.22954298577105, 15.349090706323352, 93.64694904928905, 103.30016303942351, 37.1420302759052, 43.15288904562096, 6.032131578890615, 54.23013735225789, 27.664538104671948, 92.62778269480964, 194.57715612512402, 90.6576713208122, 98.84045839569666, 70.49888557007834, 97.43367651497884, 42.30035742768592, 118.9046450113894, 9.275623210743412, 23.580875948476734, 141.3565293043281, 21.041643234821823, 73.71085839434974, 30.012210226734474, 18.49483664529607, 11.680455534677275, 50.58280252769431, 96.70335358756691, 15.973577488978233, 8.555278126946021, 6.848651613336096, 14.970075240508795, 65.15481369055763, 70.29491966026826, 220.6791835610203, 51.08357991376103, 178.2949810879095, 29.618935142719675, 27.414982872133336, 64.74820839826282, 9.956809471161685, 8.370201952836702, 36.27630934844855, 24.197873284831893, 11.095698863947707, 41.95498853015583, 8.074683733810282, 12.001391136334027, 94.83062101258533, 6.17570803208812, 63.1869258472376, 68.75760698454818, 63.92125523714768, 10.128149330286647, 68.54111013457089, 64.29529947357945, 5.5228082982417135, 29.564744333757886, 23.75504980747482, 108.63371650066841, 11.691244222704968, 122.48637960280212, 81.86123177583951, 5.036369864224272, 188.11394116500807, 141.30013175202845, 6.160493197758381, 15.041544395606582, 21.295970256274174, 47.47762110247747, 73.85424150485068, 12.28976290078093, 36.76535745586087, 50.91663947416917, 9.804526042403738, 194.93648883018494, 48.86857000587475, 22.97214883509215, 31.394718977641755, 67.63688713214216, 52.883317385746466, 10.660049680528703, 23.20954376142045, 100.33056718681956, 7.274619209213702, 12.826865184037635, 99.36456475523259, 32.28522578932518, 25.96059917113638, 10.025930910766977, 21.883526123490576, 96.05395528390102, 10.747207244367646, 19.08513201596534, 17.54301139498292, 199.12712825918624, 37.43539064615955, 55.73510262718206, 36.57713245500352, 33.321539061465565, 155.25055269909922, 73.18703209435517, 32.70072118720327, 16.352353955055577, 22.867805619608045, 38.92964807858546, 32.52145894898811, 32.79272078440922, 22.872300206061432, 5.819469129209257, 28.57119219953246, 53.454924530483, 116.46720092634493, 54.92056895377441, 20.916451816265845, 8.009994661886697, 8.383798436697685, 21.938087792245828, 20.60461813606111, 7.949402707020791, 23.371288025365907, 11.104707921212416, 10.327073970554599, 15.09147011868436, 153.42847692413213, 21.991686539268578, 31.456007493443863, 34.73341204156151, 14.819507792851386, 48.24811471783576, 90.50798239457554, 40.09378275158956, 74.50263096771432, 56.58165643804837, 128.38958128188744, 57.12260746512202, 46.84979059136316, 33.714072596669546, 56.348189792009876, 55.263810728417084, 133.41952719912996, 34.19163406943907, 103.15393113722368, 73.06657335593083, 24.21568618544599, 69.31338690227429, 65.51931107947553, 6.695858366537207, 6.010523528660596, 25.984439686956, 97.06392699991468, 64.32340451301475, 82.39743645737556, 52.38522383668609, 68.99139977667616, 5.08346696428525, 32.65153874851311, 58.27063056851419, 47.90167316075913, 107.02967171659134, 26.52025956671074, 117.08607416270537, 18.166703210049327, 37.29027629177429, 62.69005552778744, 110.77005736129586, 18.254607826862525, 70.64090605377574, 12.811057111498547, 30.87098122691069, 41.65533969806023, 42.064583883082065, 7.68710347656667, 194.51689641175886, 7.722889004364037, 134.80464245227725, 30.803978436730816, 82.4601390180934, 17.666810662199797, 18.61299217346331, 8.909949887462702, 19.207296707570865, 65.28119163334736, 46.25103239202576, 18.283271464473202, 70.17586701412381, 11.535918626158132, 131.16120098215083, 21.27588315347868, 8.89003278799647, 12.309283862017748, 44.20038498261146, 27.503690639919565, 135.15053187189653, 168.22147973755125, 9.091467923264178, 131.19166421639844, 18.98552601596088, 28.68018838804793, 45.51299702046748, 66.03655691188484, 9.761634038584457, 67.18632374145689, 8.302453570423014, 142.93418859172448, 16.822444650434583, 21.829051695706926, 98.70483459167642, 35.13933946156159, 40.368427251872546, 33.23895987204691, 30.652539684544013, 5.457218363653226, 171.2398572345685, 18.601144864899346, 39.32678544632877, 16.83903629329123, 20.92966255216315, 18.215362737847997, 39.07064879646236, 49.36500172543624, 30.205521585126213, 68.15069496318948, 11.48870359731118, 41.38103584198845, 11.4559653319853, 64.51834668819266, 22.421426993882225, 20.859168085711886, 87.48133837424366, 22.336165512348064, 58.888360432714606, 38.33270632348321, 14.866171031361706, 27.41193632365874, 7.46377527793782, 14.018108058174406, 51.595827994117386, 15.312236572090548, 18.744297227186728, 54.07966316983247, 16.145088873372288, 8.00230095882066, 175.77205348557334, 5.3432698591003644, 50.739771635483685, 16.052941844721474, 94.84770487741825, 127.95499736849581, 7.046067268560365, 39.79584834640935, 55.458869164462506, 194.62601547739362, 6.86127578449436, 8.846754144596312, 22.408767516594935, 119.25814031652541, 41.693528511286665, 35.20465844481696, 179.7940136947973, 23.97642937064204, 8.475706324502235, 13.26335207642761, 22.818362623304324, 7.052060997673832, 10.882190262935671, 28.79621690976559, 8.635493685857343, 100.65829371934281, 93.81245691547656, 5.8113410687776055, 170.93593536975706, 97.52433851602258, 26.23928974083178, 7.137767748712154, 63.84473620269536, 53.98602391053627, 43.86812284202667, 201.84824935202454, 41.96695264899317, 18.079901920210133, 192.34091808715908, 36.2034255779114, 19.65750972165247, 67.3873337472354, 217.52624001157295, 81.04042289043527, 27.737250651193296, 17.82629919250905, 86.53007973021855, 77.02981255871352, 119.54342108349977, 5.056594653960327, 234.77070624380596, 38.852431538163884, 10.097702785026556, 108.42965188772307, 99.56204194126641, 40.3121174008805, 127.90038860869227, 6.4723083217599715, 23.3998352797377, 13.199322678214816, 6.8037649586901265, 142.8832734236973, 7.199147413109589, 84.58857542742768, 22.964399722891365, 64.11843973271024, 30.01880963274242, 80.06084120884532, 22.031222944905767, 16.362855280843572, 38.997932844269975, 28.124614057880066, 19.860116848954476, 38.82335997133073, 17.23115705723884, 16.743785743456034, 56.10457462253217, 436.77394268690296, 15.60709344093682, 25.710698884245694, 38.257652776760565, 71.85009874556447, 58.10070531422843, 39.041403752419924, 17.708764141896488, 111.91966510407016, 130.23263163779885, 46.37405407111737, 103.12469474863505, 90.31228720909422, 25.775528565750328, 10.981716129884585, 49.631865365271594, 119.62056284394205, 60.46946300177789, 33.5799660553441, 429.13827450715263, 147.67919106426632, 5.698034539913776, 63.11505243597888, 14.150608581803949, 14.199013949306455, 102.72052184769994, 15.48823151718347, 370.04713808048905, 30.33700346949992, 17.477250934413497, 31.891189086335313, 57.93371318242529, 19.515515523925377, 18.022396510895522, 73.86332849671773, 12.959419562786984, 31.03871982570384, 7.507531468307548, 18.478101876543462, 12.13963769747915, 32.732646788085475, 98.53596848441212, 38.061442982015144, 31.450599052765988, 9.835849690304928, 35.1302809161064, 43.133941784660486, 74.31395552413788, 8.765079115276212, 123.60985320757213, 27.239005306715782, 5.103651563248576, 71.23555165643938, 227.37212791141823, 69.2413831714737, 9.180250993982927, 151.40019792178566, 89.42168305987221, 34.77758883764857, 45.711182185958286, 6.190668211904208, 15.152459632594853, 124.33233976998343, 98.3821617181016, 26.682410945827748, 24.410075100154362, 33.04615289260267, 80.41098665376028, 24.613496624983288, 20.196543648922734, 6.685135734417104, 40.96024550218082, 5.907647100098545, 39.96101800679797, 25.332837768045326, 69.16712293722014, 10.076124020775898, 73.87655294635016, 16.191484375223077, 13.158454615545308, 38.366892624262206, 40.87245003685546, 46.84036724740566, 22.64656293551859, 13.380848958394415, 43.29658462360264, 12.303824181363508, 13.127806489919509, 67.33692515799086, 28.75658135975155, 17.155303115528856, 12.125912855201962, 53.328438382251676, 49.78065288731709, 9.457229267129584, 17.36474723797901, 42.267183126075466, 30.54097167984309, 5.972099922607927, 23.380803920187834, 39.32572849785979, 52.12959942263951, 88.8801482532319, 20.414179748586694, 40.557603616648414, 172.6899673728645, 21.41812664495041, 73.75487580476027, 16.838273974409724, 69.91498124190609, 76.61711739938775, 46.87028772986041, 10.198439754996796, 40.1630742450254, 38.055068945724614, 27.195849245066213, 22.126369356404386, 162.85771410975116, 43.022430149150566, 27.453066912419036, 92.6813905654494, 5.90154901818083, 153.01273425793377, 167.0416248254238, 25.872198256305758, 48.610353899359566, 31.47889570013438, 103.32251064010266, 43.38249454239655, 151.1444242856056, 19.55647792315222, 53.70460409806016, 54.83764927295695, 60.83912202870452, 18.575201319420813, 81.2980672413283, 76.30233030383489, 5.344019440804279, 20.36690430939675, 16.3694479934919, 32.42727971334702, 20.467366939216195, 9.704009774491432, 14.622841674891493, 12.594740824006335, 20.585678102782726, 117.49661490678753, 15.388510028816478, 35.75975883786999, 16.305550102610518, 71.13590927478, 60.99681928989793, 8.038065710282197, 40.32932253468202, 7.915442835447025, 6.837102208566613, 135.03862165317733, 27.492817344208696, 64.18254855627163, 12.59406726528341, 89.66524881514816, 51.486783139191964, 82.03278883151943, 62.74295745024382, 58.631630173788494, 5.194294901130843, 63.75093756205651, 115.84425259539793, 61.69654035589842, 15.788574517311078, 33.11622653096311, 11.191062204433731, 74.46467752760869, 38.986690015125426, 83.73840143954541, 6.3177587108326865, 61.04244377706303, 68.71145620736857, 106.61052104104321, 65.22382183465488, 17.510865919184297, 52.11569062905699, 31.7936089374823, 72.31445484500554, 30.701755911723726, 59.67081855652449, 33.42705227924488, 20.950983607921472, 34.18881625048232, 64.14496806622196, 38.09243954102179, 115.43165278674, 21.434796863930877, 70.75820431552175, 151.65535718057257, 42.885385951029306, 174.4127524672736, 72.7351367584423, 70.58925399168692, 66.73029631609731, 44.544374549122786, 37.00108060272311, 13.187902962327406, 67.1857901230546, 57.515301377184045, 72.38048156791665, 85.64555619974085, 28.339857212551905, 5.569381279287721, 58.89549271211506, 63.20265328565644, 94.42463352217979, 43.75669538681592, 81.11563374152612, 5.708195731646915, 7.030005727428354, 36.96865557401597, 54.134686084525086, 9.896730041973747, 9.087246154537558, 42.00983015787102, 36.633782236880634, 18.45049927630242, 49.784430947180205, 29.138367907697553, 14.2104723480275, 6.281401157363344, 72.62722618112349, 23.68564374606538, 39.19245912357348, 8.335966214340877, 9.828214855220926, 8.480804153750393, 14.662210904536602, 50.88725880042948, 41.2639378284221, 23.37751166899608, 20.520803990937505, 34.10064371145434, 54.88743433262315, 7.266322690293648, 11.370573438038992, 54.335352968080805, 12.439020709426572, 24.534716415206095, 192.29723038524537, 22.19363912744923, 87.00889042408272, 7.1794044173524085, 35.18719942981149, 57.026693022962164, 22.69697033681885, 33.98380724685031, 37.88022064182589, 66.45020337977682, 11.394535148580687, 32.40114648066526, 33.22863321318774, 44.84834306967128, 27.551069441171045, 38.13610647023065, 67.54660119267835, 90.77406125097433, 40.15774299462067, 60.16331851993336, 127.56677643251199, 30.268928731123204, 24.462630531487818, 5.028435933665785, 61.639101769027974, 33.521283243547074, 34.23251245873026, 21.6008296851167, 19.264720772349023, 24.528186688833085, 25.23484585422507, 24.84095358458851, 6.965986408941395, 46.70353443739066, 65.06985184966655, 36.507222386799654, 32.12747516633419, 55.25516611753731, 10.534089172623442, 16.815873665327004, 19.03750592242706, 128.59422807234395, 99.49946096003671, 135.76886888328312, 58.743421384697044, 43.99952162652475, 68.86873800517144, 19.69007918392741, 26.378763320658777, 22.088961080955684, 90.61569778442316, 59.44905357316944, 68.91041577055363, 21.311796668729777, 40.90567929114408, 8.910268335695404, 5.036623100786614, 16.188140801537763, 51.15762455043088, 60.51822427383075, 53.70486414412323, 15.704780009203304, 63.82643023362433, 31.603110074609674, 126.41554961428322, 54.74779822063406, 27.76551804787672, 28.31688022497992, 10.392282280221457, 15.190060393620445, 95.01017362304628, 51.08672534967397, 85.51733301471194, 7.845072879876235, 14.529773562423243, 10.39621380674943, 9.565941087053753, 120.51493564530412, 77.76663041308801, 12.651587519569746, 47.66579847930494, 13.856194475679988, 43.43972221298385, 6.629135533560218, 5.857852430588425, 50.591545799829376, 13.85521255047623, 49.34733751649501, 39.557820769050835, 14.056635952648866, 27.49106123461075, 36.617725540787205, 67.34284196074736, 67.84789627427317, 56.58537168475458, 22.69432000947185, 48.883128545996996, 9.608034501782901, 86.12833209815014, 23.657248657701864, 18.603156043357743, 59.76981293520563, 39.18777840173992, 19.540093081927957, 12.53888859833334, 5.912773023135081, 93.00368706964, 23.658029865548322, 11.309339300645425, 64.88393419243745, 22.490331887184166, 30.482800097500608, 16.096346410562298, 22.563541744487747, 28.870590582904896, 73.00041801022226, 51.64172250455143, 7.9260800535586675, 24.681965250391567, 100.67863416995847, 11.45238282893507, 24.897667269323847, 15.376685362545745, 16.043300243531853, 22.173934584102927, 27.641163444083183, 12.332704830716214, 18.523922709015345, 55.254928470524625, 116.38214572134902, 64.25211130389086, 5.055701354177014, 5.61761616794419, 13.332925549499949, 21.24927655197914, 29.109912651932195, 20.943315321709086, 22.71557182489616, 5.874038026985803, 30.671024133175976, 19.267834743962023, 18.862673533734316, 6.280232276621025, 20.20033023618923, 78.4199495251031, 16.663174276950038, 32.12445947421998, 15.021609547946614, 12.272011381609225, 44.0104348498904, 30.38744572296427, 47.63014415732887, 10.345057823918479, 9.339003589084083, 71.15533804081856, 17.14876555327145, 26.511325957711705, 90.89419644640822, 74.6778467230078, 53.01713057177576, 65.08753018154195, 74.50767012915854, 37.72468226121895, 14.977713611294185, 12.36163980677249, 40.89374266828015, 5.284141909949036, 21.504396994634803, 49.29030120502733, 61.67675224331568, 7.335107897570799, 16.87294893983716, 131.3339191522415, 81.77784679000273, 39.484933773131246, 9.596668724588385, 27.745420787605145, 96.88101927646247, 60.06353137844954, 43.26734178765496, 149.5764899254885, 123.9328192019048, 18.79884214730678, 50.517502445921366, 64.77204935622942, 45.162799980971656, 88.44362024451993, 44.791879497007194, 254.16564766103596, 92.11871892095891, 21.75007821794645, 15.430359511996247, 10.827504704855052, 47.341447448967934, 90.57140096284516, 100.91313632834466, 64.8986163694189, 72.06836911517217, 60.856330261289145, 85.17398707869779, 108.79666652459224, 12.498900935385274, 47.92221975070207, 5.9274987513283985, 14.515688730318175, 47.71273615556625, 14.696689037791876, 22.780690063035177, 12.818698898953045, 47.81029592832043, 61.07319051232399, 24.94468300445135, 16.340157805875023, 9.819015016451464, 79.55865327178165, 6.727162483691686, 74.86871303431946, 80.53508215585302, 119.15394185297498, 85.47588955673656, 41.77686215190268, 36.09744736781679, 11.0692759713398, 114.7007807488376, 22.904274096610667, 29.27419133925292, 16.328264984187175, 5.575519506597931, 6.419842903327191, 22.50070712876737, 12.576039601527262, 124.43068860382976, 7.485524585099918, 16.778148707960096, 10.250369902581793, 13.649437809247486, 17.053418041196075, 28.155372384566366, 13.723943531473124, 13.30938732455127, 89.81675025672138, 67.51866254734936, 9.37851669028832, 31.967186647834783, 58.41415354491201, 71.82789082926905, 58.029533489151795, 16.75837055998509, 131.10972312089527, 6.039979546795697, 26.85149369631571, 85.54668572789394, 31.463313774037537, 329.7942996746047, 9.775382840786774, 14.76463243789665, 11.657159805218168, 22.906414569901415, 61.960097223335225, 21.559901969475874, 56.3307293221556, 19.025362030715126, 80.439028345657, 25.4817140111694, 5.084360817060702, 16.992154721036293, 25.105284795014928, 119.69133640887645, 17.694733284150747, 67.75091242309452, 9.897130970602749, 69.45662100299323, 28.564511865124402, 106.35228846468313, 5.064658150539516, 144.4408591784959, 40.44496219253615, 42.99078566354638, 20.779896263948846, 11.001992172826379, 96.3911302005796, 12.121173348206879, 14.464443446347694, 5.204225758857672, ...])
caption, T_hit,count = hits_in_time_hist_new(T_pom, dt, t_plasma_start, t_plasma_end, is_plasma, figure_count_in_time_hist)
hist_file(count_in_time_hist, T_hit, count, caption);
([3320014.0625, 3320071.875, 3470543.75, 3500029.6875, 3509479.6875, 3530793.75, 3582790.625, 3727829.6875, 3732206.25, 3737350.0, 3737415.625, 3745681.25, 3750485.9375, 3785318.75, 3793321.875, 3811614.0625, 3820096.875, 3820150.0, 3820178.125, 3820254.6875, 3821976.5625, 3825656.25, 3829550.0, 3833659.375, 3890692.1875, 3892259.375, 3897000.0, 3915145.3125, 3917445.3125, 3921250.0, 3922739.0625, 3931440.625, 3940132.8125, 3942593.75, 3950332.8125, 3959414.0625, 3966140.625, 3966170.3125, 4009420.3125, 4047034.375, 4047039.0625, 4049443.75, 4052475.0, 4062260.9375, 4062262.5, 4064512.5, 4066084.375, 4069042.1875, 4092479.6875, 4093110.9375, 4108157.8125, 4108165.625, 4109620.3125, 4110006.25, 4139353.125, 4142982.8125, 4142985.9375, 4158860.9375, 4167173.4375, 4173679.6875, 4179942.1875, 4200171.875, 4207907.8125, 4220053.125, 4223598.4375, 4229293.75, 4279015.625, 4291470.3125, 4295284.375, 4307503.125, 4309431.25, 4311631.25, 4314937.5, 4317367.1875, 4318946.875, 4340085.9375, 4345575.0, 4356879.6875, 4374048.4375, 4383634.375, 4393596.875, 4394167.1875, 4394212.5, 4397279.6875, 4407864.0625, 4410504.6875, 4422154.6875, 4424634.375, 4425010.9375, 4426564.0625, 4429151.5625, 4433881.25, 4438354.6875, 4456778.125, 4475331.25, 4480496.875, 4519773.4375, 4561518.75, 4631065.625, 4782676.5625, 4815476.5625, 5573884.375, 5584846.875, 5620737.5, 5631168.75, 5635701.5625, 5656142.1875, 5671925.0, 5678367.1875, 5686545.3125, 5687568.75, 5732729.6875, 5732737.5, 5757243.75, 5757839.0625, 5780910.9375, 5820996.875, 5825996.875, 5873629.6875, 5897429.6875, 5924320.3125, 6055512.5, 6055998.4375, 6090609.375, 6098968.75, 6117973.4375, 6148089.0625, 6156796.875, 6191532.8125, 6198542.1875, 6200551.5625, 6202168.75, 6202171.875, 6203557.8125, 6208604.6875, 6226718.75, 6229951.5625, 6229959.375, 6232856.25, 6239232.8125, 6260507.8125, 6281689.0625, 6304560.9375, 6305317.1875, 6308090.625, 6309842.1875, 6340637.5, 6347065.625, 6351137.5, 6358240.625, 6358262.5, 6362654.6875, 6363171.875, 6365481.25, 6370879.6875, 6372585.9375, 6374654.6875, 6378351.5625, 6385396.875, 6386465.625, 6391070.3125, 6396821.875, 6400207.8125, 6408589.0625, 6410687.5, 6434051.5625, 6439150.0, 6443412.5, 6456960.9375, 6462621.875, 6463053.125, 6465764.0625, 6482239.0625, 6496901.5625, 6499843.75, 6499860.9375, 6504868.75, 6505251.5625, 6508975.0, 6520545.3125, 6524006.25, 6545912.5, 6568395.3125, 6572307.8125, 6582195.3125, 6584560.9375, 6587940.625, 6594906.25, 6624320.3125, 6719329.6875, 6728064.0625, 6750293.75, 6766432.8125, 6775531.25, 6785298.4375, 6808446.875, 6809440.625, 6831815.625, 6835089.0625, 6848498.4375, 6886896.875, 6898029.6875, 6900834.375, 6903632.8125, 6916323.4375, 6921395.3125, 6927190.625, 6957959.375, 6958353.125, 6959279.6875, 6961756.25, 6962785.9375, 6970859.375, 6989070.3125, 6989167.1875, 6989182.8125, 6993026.5625, 6993207.8125, 6994726.5625, 6995848.4375, 7005092.1875, 7011637.5, 7012971.875, 7015985.9375, 7024473.4375, 7024520.3125, 7026876.5625, 7026892.1875, 7034271.875, 7036262.5, 7037993.75, 7040064.0625, 7046237.5, 7053179.6875, 7070653.125, 7072865.625, 7073929.6875, 7089029.6875, 7105715.625, 7106006.25, 7106350.0, 7110253.125, 7117798.4375, 7119048.4375, 7120373.4375, 7125640.625, 7132789.0625, 7138862.5, 7152353.125, 7164807.8125, 7165328.125, 7165954.6875, 7166243.75, 7166548.4375, 7167201.5625, 7167720.3125, 7169796.875, 7170478.125, 7171440.625, 7172346.875, 7173276.5625, 7179845.3125, 7189481.25, 7190482.8125, 7190739.0625, 7191012.5, 7191032.8125, 7191243.75, 7196462.5, 7199156.25, 7203796.875, 7205607.8125, 7209626.5625, 7210720.3125, 7212934.375, 7218521.875, 7220440.625, 7221615.625, 7226854.6875, 7227548.4375, 7230278.125, 7231031.25, 7233765.625, 7235310.9375, 7235828.125, 7239520.3125, 7240589.0625, 7241721.875, 7243060.9375, 7249020.3125, 7249509.375, 7253278.125, 7253760.9375, 7259517.1875, 7260923.4375, 7260931.25, 7262218.75, 7262228.125, 7267187.5, 7268564.0625, 7269384.375, 7271918.75, 7273089.0625, 7275568.75, 7275776.5625, 7276989.0625, 7277070.3125, 7280328.125, 7294956.25, 7295029.6875, 7298087.5, 7298948.4375, 7302773.4375, 7350807.8125, 7359781.25, 7376435.9375, 7436437.5, 7438081.25, 7443340.625, 7467009.375, 7485751.5625, 7489529.6875, 7515628.125, 7525596.875, 7598510.9375, 7647332.8125, 7693668.75, 7738207.8125, 7742089.0625, 7747659.375, 7768146.875, 7773092.1875, 7774503.125, 7775567.1875, 7778182.8125, 7782579.6875, 7816596.875, 7818934.375, 7824681.25, 7830928.125, 7837140.625, 7853610.9375, 7879818.75, 7897392.1875, 7897698.4375, 7900876.5625, 7915846.875, 7915848.4375, 7924278.125, 7983818.75, 7994040.625, 8005684.375, 8076031.25, 8097882.8125, 8105764.0625, 8106529.6875, 8108434.375, 8113151.5625, 8116412.5, 8118598.4375, 8119756.25, 8155170.3125, 8156998.4375, 8157075.0, 8161265.625, 8161393.75, 8162151.5625, 8163146.875, 8163571.875, 8172873.4375, 8173017.1875, 8194860.9375, 8210192.1875, 8213590.625, 8233626.5625, 8234979.6875, 8235954.6875, 8241042.1875, 8249603.125, 8250767.1875, 8269235.9375, 8276279.6875, 8310140.625, 8313637.5, 8316529.6875, 8321625.0, 8327878.125, 8336934.375, 8365246.875, 8372225.0, 8372893.75, 8401562.5, 8403312.5, 8435984.375, 8436598.4375, 8436659.375, 8454381.25, 8489334.375, 8494821.875, 8496781.25, 8516793.75, 8518621.875, 8521717.1875, 8526470.3125, 8570718.75, 8596968.75, 8597056.25, 8603125.0, 8614170.3125, 8627306.25, 8642465.625, 8691417.1875, 8742632.8125, 8788046.875, 8795965.625, 8825039.0625, 8825984.375, 8850209.375, 8872931.25, 8884695.3125, 8885620.3125, 8885689.0625, 8905743.75, 8908864.0625, 8912832.8125, 8918392.1875, 8918462.5, 8932720.3125, 8934875.0, 8936034.375, 8937243.75, 8940773.4375, 8943539.0625, 8945382.8125, 8946234.375, 8946975.0, 8947046.875, 8947145.3125, 8948093.75, 8949501.5625, 8949862.5, 8950278.125, 8951823.4375, 8951879.6875, 8956809.375, 8956814.0625, 8958462.5, 8959125.0, 8980506.25, 8984982.8125, 8987598.4375, 8990357.8125, 9028267.1875, 9041073.4375, 9047946.875, 9050181.25, 9066870.3125, 9070454.6875, 9077276.5625, 9116620.3125, 9154115.625, 9184660.9375, 9211489.0625, 9211525.0, 9239498.4375, 9268014.0625, 9298192.1875, 9300673.4375, 9303690.625, 9305793.75, 9317245.3125, 9329725.0, 9332962.5, 9336860.9375, 9343900.0, 9344607.8125, 9355479.6875, 9355687.5, 9379393.75, 9390085.9375, 9409798.4375, 9417487.5, 9431943.75, 9437793.75, 9438520.3125, 9439000.0, 9439007.8125, 9442462.5, 9443131.25, 9444390.625, 9456579.6875, 9456614.0625, 9456634.375, 9460385.9375, 9466395.3125, 9467628.125, 9469118.75, 9471143.75, 9484625.0, 9484657.8125, 9524039.0625, 9526218.75, 9527339.0625, 9528195.3125, 9533821.875, 9534934.375, 9538835.9375, 9579114.0625, 9580662.5, 9608423.4375, 9613885.9375, 9776093.75, 9835717.1875, 9856656.25, 9884090.625, 9893990.625, 9911248.4375, 9912162.5, 9912203.125, 9912240.625, 9923970.3125, 9958448.4375, 9968298.4375, 9974881.25, 9979660.9375, 9998784.375, 10000145.3125, 10136760.9375, 10159881.25, 10182345.3125, 10202801.5625, 10202882.8125, 10261878.125, 10273307.8125, 10294518.75, 10325285.9375, 10350150.0, 10370443.75, 10406854.6875, 10498148.4375, 10543751.5625, 10591715.625, 10602790.625, 10815954.6875, 10928225.0, 10938193.75, 10954296.875, 11020267.1875, 11032114.0625, 11051521.875, 11069509.375, 11291956.25, 11291984.375, 11321290.625, 11361665.625, 11388150.0, 11390084.375, 11966595.3125, 12133571.875, 12244632.8125, 12246890.625, 12567035.9375, 12597135.9375, 12731673.4375, 12769028.125, 12769651.5625, 12780790.625, 12854437.5, 12869095.3125, 12905868.75, 12929142.1875, 12936017.1875, 12974584.375, 13001400.0, 13010212.5, 13010479.6875, 13010731.25, 13010935.9375, 13011164.0625, 13011487.5, 13012029.6875, 13014545.3125, 13014681.25, 13015651.5625, 13015937.5, 13016020.3125, 13016053.125, 13016132.8125, 13016423.4375, 13016478.125, 13016490.625, 13016559.375, 13016692.1875, 13016812.5, 13016903.125, 13016968.75, 13017068.75, 13017084.375, 13017267.1875, 13017279.6875, 13017496.875, 13017504.6875, 13017509.375, 13017717.1875, 13017832.8125, 13018204.6875, 13018232.8125, 13018401.5625, 13018648.4375, 13018668.75, 13019021.875, 13019273.4375, 13019421.875, 13019423.4375, 13019542.1875, 13019565.625, 13019867.1875, 13019993.75, 13020525.0, 13020804.6875, 13021303.125, 13021660.9375, 13021678.125, 13021750.0, 13021753.125, 13022260.9375, 13022534.375, 13023134.375, 13023282.8125, 13023345.3125, 13024090.625, 13024200.0, 13024648.4375, 13024760.9375, 13024884.375, 13025115.625, 13025678.125, 13026417.1875, 13028489.0625, 13028571.875, 13028859.375, 13028859.375, 13028895.3125, 13029368.75, 13029500.0, 13029593.75, 13029676.5625, 13029692.1875, 13029740.625, 13029795.3125, 13029835.9375, 13029912.5, 13030006.25, 13030053.125, 13030078.125, 13030082.8125, 13030107.8125, 13030131.25, 13030139.0625, 13030145.3125, 13030156.25, 13030162.5, 13030173.4375, 13030184.375, 13030339.0625, 13030339.0625, 13030354.6875, 13030376.5625, 13030376.5625, 13030432.8125, 13030437.5, 13030443.75, 13030446.875, 13030467.1875, 13030467.1875, 13030481.25, 13030512.5, 13030532.8125, 13030604.6875, 13030618.75, 13030623.4375, 13030623.4375, 13030698.4375, 13030703.125, 13030710.9375, 13030726.5625, 13030740.625, 13030764.0625, 13030785.9375, 13030795.3125, 13030804.6875, 13030859.375, 13030867.1875, 13030878.125, 13030890.625, 13030895.3125, 13030923.4375, 13030946.875, 13030985.9375, 13030993.75, 13030998.4375, 13031012.5, 13031037.5, 13031056.25, 13031060.9375, 13031095.3125, 13031137.5, 13031156.25, 13031160.9375, 13031217.1875, 13031226.5625, 13031251.5625, 13031281.25, 13031281.25, 13031287.5, 13031287.5, 13031318.75, 13031325.0, 13031325.0, 13031379.6875, 13031389.0625, 13031403.125, 13031415.625, 13031440.625, 13031467.1875, 13031479.6875, 13031481.25, 13031503.125, 13031510.9375, 13031514.0625, 13031565.625, 13031592.1875, 13031635.9375, 13031643.75, 13031664.0625, 13031671.875, 13031703.125, 13031715.625, 13031735.9375, 13031754.6875, 13031754.6875, 13031793.75, 13031804.6875, 13031842.1875, 13031887.5, 13031934.375, 13031940.625, 13031956.25, 13031973.4375, 13032039.0625, 13032082.8125, 13032101.5625, 13032160.9375, 13032176.5625, 13032190.625, 13032193.75, 13032196.875, 13032276.5625, 13032310.9375, 13032331.25, 13032373.4375, 13032375.0, 13032376.5625, 13032389.0625, 13032390.625, 13032392.1875, 13032401.5625, 13032414.0625, 13032423.4375, 13032451.5625, 13032523.4375, 13032529.6875, 13032551.5625, 13032553.125, 13032557.8125, 13032568.75, 13032570.3125, 13032585.9375, 13032657.8125, 13032675.0, 13032684.375, 13032695.3125, 13032706.25, 13032740.625, 13032748.4375, 13032757.8125, 13032757.8125, 13032781.25, 13032796.875, 13032825.0, 13032832.8125, 13032834.375, 13032835.9375, 13032865.625, 13032878.125, 13032882.8125, 13032896.875, 13032914.0625, 13032923.4375, 13032943.75, 13032965.625, 13032968.75, 13033025.0, 13033076.5625, 13033078.125, 13033081.25, 13033081.25, 13033106.25, 13033154.6875, 13033165.625, 13033168.75, 13033173.4375, 13033173.4375, 13033185.9375, 13033189.0625, 13033193.75, 13033220.3125, 13033221.875, 13033248.4375, 13033250.0, 13033257.8125, 13033315.625, 13033321.875, 13033326.5625, 13033337.5, 13033340.625, 13033356.25, 13033356.25, 13033376.5625, 13033400.0, 13033407.8125, 13033417.1875, 13033437.5, 13033454.6875, 13033478.125, 13033479.6875, 13033484.375, 13033503.125, 13033515.625, 13033526.5625, 13033543.75, 13033568.75, 13033643.75, 13033653.125, 13033667.1875, 13033667.1875, 13033676.5625, 13033743.75, 13033820.3125, 13033845.3125, 13033857.8125, 13033890.625, 13033892.1875, 13033906.25, 13033926.5625, 13034006.25, 13034021.875, 13034026.5625, 13034039.0625, 13034070.3125, 13034084.375, 13034093.75, 13034146.875, 13034157.8125, 13034160.9375, 13034242.1875, 13034248.4375, 13034268.75, 13034290.625, 13034332.8125, 13034354.6875, 13034365.625, 13034379.6875, 13034382.8125, 13034439.0625, 13034448.4375, 13034448.4375, 13034450.0, 13034473.4375, 13034476.5625, 13034490.625, 13034507.8125, 13034521.875, 13034523.4375, 13034526.5625, 13034531.25, 13034535.9375, 13034545.3125, 13034582.8125, 13034606.25, 13034609.375, 13034645.3125, 13034670.3125, 13034671.875, 13034681.25, 13034687.5, 13034729.6875, 13034740.625, 13034745.3125, 13034751.5625, 13034751.5625, 13034775.0, 13034787.5, 13034789.0625, 13034807.8125, 13034853.125, 13034889.0625, 13034967.1875, 13035012.5, 13035014.0625, 13035028.125, 13035031.25, 13035054.6875, 13035101.5625, 13035157.8125, 13035162.5, 13035200.0, 13035215.625, 13035223.4375, 13035225.0, 13035232.8125, 13035248.4375, 13035262.5, 13035271.875, 13035285.9375, 13035335.9375, 13035365.625, 13035389.0625, 13035390.625, 13035398.4375, 13035400.0, 13035401.5625, 13035406.25, 13035476.5625, 13035490.625, 13035526.5625, 13035543.75, 13035564.0625, 13035575.0, 13035579.6875, 13035610.9375, 13035743.75, 13035765.625, 13035767.1875, 13035778.125, 13035779.6875, 13035787.5, 13035789.0625, 13035792.1875, 13035796.875, 13035800.0, 13035817.1875, 13035846.875, 13035859.375, 13035895.3125, 13035943.75, 13035954.6875, 13035968.75, 13035971.875, 13036000.0, 13036004.6875, 13036021.875, 13036032.8125, 13036046.875, 13036051.5625, 13036059.375, 13036065.625, 13036123.4375, 13036129.6875, 13036135.9375, 13036142.1875, 13036185.9375, 13036223.4375, 13036250.0, 13036298.4375, 13036353.125, 13036404.6875, 13036421.875, 13036440.625, 13036453.125, 13036553.125, 13036562.5, 13036589.0625, 13036701.5625, 13036707.8125, 13036707.8125, 13036712.5, 13036717.1875, 13036873.4375, 13036904.6875, 13036959.375, 13036993.75, 13037009.375, 13037010.9375, 13037068.75, 13037070.3125, 13037084.375, 13037145.3125, 13037239.0625, 13037250.0, ...], [68.28447868820756, 5.057891214779658, 74.47127560452267, 87.21355507159103, 5.264908461040693, 56.727952783823426, 106.99936884540391, 60.107156968634186, 24.785268847561987, 72.43023146842361, 76.9993059316505, 7.158498323338275, 79.76728218101923, 17.895596337944756, 24.811461535585586, 20.190799215671632, 38.22437547528842, 16.564474247027324, 12.270855073002732, 5.569958378904241, 33.060227896096656, 115.03021964383137, 6.190322031808559, 81.03554715125196, 11.733255524752103, 14.813527405244352, 23.011234366340744, 5.061229170147126, 76.52930792866329, 40.12575398159609, 66.22699152653622, 13.71397277234071, 13.719481330396622, 78.70350405173455, 47.30067588022863, 31.350718033828986, 89.83815221141268, 5.9585569090504205, 9.176465908404504, 7.415520661377558, 30.684412518795405, 12.78853766733409, 11.699687467754975, 13.2422129152376, 11.49505491536067, 24.621186805876278, 23.38587597155494, 30.245994791224184, 35.66478992473546, 12.9313150670988, 38.95700438253476, 22.383289666528615, 46.92944295885433, 27.11575762541058, 104.21035697045832, 40.85334142774698, 25.21346941901305, 16.164001885412652, 8.13585843356877, 6.546486775723151, 16.511068849424195, 11.976853062461762, 48.84939979445164, 73.62971645709167, 19.74777124400719, 12.92993921600816, 62.77603839666667, 8.160159785219737, 13.261668568998571, 72.23111715441794, 11.135712035492435, 9.768883150609424, 42.319844487384856, 14.68924302191232, 29.887265363691686, 34.7291169311021, 92.20339033053376, 82.6978686329857, 21.181888348728506, 28.069427731719273, 18.421639431801303, 30.865682309477222, 8.547975419885649, 76.73630674727522, 10.444806822271435, 37.76856811499295, 77.93771605554672, 140.59435618274023, 12.094814886524574, 128.59820296701128, 15.51692402853501, 93.4071289736153, 32.92779071238124, 28.096501945615216, 21.898428386434087, 68.31872384221131, 13.302061881598274, 66.00758322330665, 15.502167546016803, 10.359918204784725, 23.321273294341626, 44.86964631341489, 32.22361576390995, 14.925729208875511, 24.623322147860105, 29.80716800821626, 9.242848365221752, 11.731918626325154, 24.738914933701537, 10.743870333068996, 6.948180725848203, 22.97896006610474, 14.63514975257404, 30.73022796168711, 11.804590041464479, 72.43337611697211, 9.688374809974231, 22.319426693186923, 17.836634538958076, 20.69913945215361, 42.44802234127759, 20.971619645553936, 35.687869607960195, 18.27043597506045, 96.05447592322805, 118.98060384139175, 140.94852495068972, 14.547733836042124, 5.9893622153665165, 45.88971139560765, 78.13329431797902, 63.641960740817154, 10.123672216815507, 115.77376078953462, 68.84145701211045, 7.4995768335396, 66.68561481393846, 13.793799601417987, 35.53623664446987, 49.977758849245475, 8.889589944455448, 40.42638765516153, 133.01768825599538, 82.46404814212053, 7.42235904839765, 99.27124817290273, 66.94849361933741, 45.70283235973292, 5.914367136190409, 23.806393129172783, 135.02495924130778, 76.78817407946997, 145.22954298577105, 15.349090706323352, 93.64694904928905, 103.30016303942351, 37.1420302759052, 43.15288904562096, 6.032131578890615, 54.23013735225789, 27.664538104671948, 92.62778269480964, 194.57715612512402, 90.6576713208122, 98.84045839569666, 70.49888557007834, 97.43367651497884, 42.30035742768592, 118.9046450113894, 9.275623210743412, 23.580875948476734, 141.3565293043281, 21.041643234821823, 73.71085839434974, 30.012210226734474, 18.49483664529607, 11.680455534677275, 50.58280252769431, 96.70335358756691, 15.973577488978233, 8.555278126946021, 6.848651613336096, 14.970075240508795, 65.15481369055763, 70.29491966026826, 220.6791835610203, 51.08357991376103, 178.2949810879095, 29.618935142719675, 27.414982872133336, 64.74820839826282, 9.956809471161685, 8.370201952836702, 36.27630934844855, 24.197873284831893, 11.095698863947707, 41.95498853015583, 8.074683733810282, 12.001391136334027, 94.83062101258533, 6.17570803208812, 63.1869258472376, 68.75760698454818, 63.92125523714768, 10.128149330286647, 68.54111013457089, 64.29529947357945, 5.5228082982417135, 29.564744333757886, 23.75504980747482, 108.63371650066841, 11.691244222704968, 122.48637960280212, 81.86123177583951, 5.036369864224272, 188.11394116500807, 141.30013175202845, 6.160493197758381, 15.041544395606582, 21.295970256274174, 47.47762110247747, 73.85424150485068, 12.28976290078093, 36.76535745586087, 50.91663947416917, 9.804526042403738, 194.93648883018494, 48.86857000587475, 22.97214883509215, 31.394718977641755, 67.63688713214216, 52.883317385746466, 10.660049680528703, 23.20954376142045, 100.33056718681956, 7.274619209213702, 12.826865184037635, 99.36456475523259, 32.28522578932518, 25.96059917113638, 10.025930910766977, 21.883526123490576, 96.05395528390102, 10.747207244367646, 19.08513201596534, 17.54301139498292, 199.12712825918624, 37.43539064615955, 55.73510262718206, 36.57713245500352, 33.321539061465565, 155.25055269909922, 73.18703209435517, 32.70072118720327, 16.352353955055577, 22.867805619608045, 38.92964807858546, 32.52145894898811, 32.79272078440922, 22.872300206061432, 5.819469129209257, 28.57119219953246, 53.454924530483, 116.46720092634493, 54.92056895377441, 20.916451816265845, 8.009994661886697, 8.383798436697685, 21.938087792245828, 20.60461813606111, 7.949402707020791, 23.371288025365907, 11.104707921212416, 10.327073970554599, 15.09147011868436, 153.42847692413213, 21.991686539268578, 31.456007493443863, 34.73341204156151, 14.819507792851386, 48.24811471783576, 90.50798239457554, 40.09378275158956, 74.50263096771432, 56.58165643804837, 128.38958128188744, 57.12260746512202, 46.84979059136316, 33.714072596669546, 56.348189792009876, 55.263810728417084, 133.41952719912996, 34.19163406943907, 103.15393113722368, 73.06657335593083, 24.21568618544599, 69.31338690227429, 65.51931107947553, 6.695858366537207, 6.010523528660596, 25.984439686956, 97.06392699991468, 64.32340451301475, 82.39743645737556, 52.38522383668609, 68.99139977667616, 5.08346696428525, 32.65153874851311, 58.27063056851419, 47.90167316075913, 107.02967171659134, 26.52025956671074, 117.08607416270537, 18.166703210049327, 37.29027629177429, 62.69005552778744, 110.77005736129586, 18.254607826862525, 70.64090605377574, 12.811057111498547, 30.87098122691069, 41.65533969806023, 42.064583883082065, 7.68710347656667, 194.51689641175886, 7.722889004364037, 134.80464245227725, 30.803978436730816, 82.4601390180934, 17.666810662199797, 18.61299217346331, 8.909949887462702, 19.207296707570865, 65.28119163334736, 46.25103239202576, 18.283271464473202, 70.17586701412381, 11.535918626158132, 131.16120098215083, 21.27588315347868, 8.89003278799647, 12.309283862017748, 44.20038498261146, 27.503690639919565, 135.15053187189653, 168.22147973755125, 9.091467923264178, 131.19166421639844, 18.98552601596088, 28.68018838804793, 45.51299702046748, 66.03655691188484, 9.761634038584457, 67.18632374145689, 8.302453570423014, 142.93418859172448, 16.822444650434583, 21.829051695706926, 98.70483459167642, 35.13933946156159, 40.368427251872546, 33.23895987204691, 30.652539684544013, 5.457218363653226, 171.2398572345685, 18.601144864899346, 39.32678544632877, 16.83903629329123, 20.92966255216315, 18.215362737847997, 39.07064879646236, 49.36500172543624, 30.205521585126213, 68.15069496318948, 11.48870359731118, 41.38103584198845, 11.4559653319853, 64.51834668819266, 22.421426993882225, 20.859168085711886, 87.48133837424366, 22.336165512348064, 58.888360432714606, 38.33270632348321, 14.866171031361706, 27.41193632365874, 7.46377527793782, 14.018108058174406, 51.595827994117386, 15.312236572090548, 18.744297227186728, 54.07966316983247, 16.145088873372288, 8.00230095882066, 175.77205348557334, 5.3432698591003644, 50.739771635483685, 16.052941844721474, 94.84770487741825, 127.95499736849581, 7.046067268560365, 39.79584834640935, 55.458869164462506, 194.62601547739362, 6.86127578449436, 8.846754144596312, 22.408767516594935, 119.25814031652541, 41.693528511286665, 35.20465844481696, 179.7940136947973, 23.97642937064204, 8.475706324502235, 13.26335207642761, 22.818362623304324, 7.052060997673832, 10.882190262935671, 28.79621690976559, 8.635493685857343, 100.65829371934281, 93.81245691547656, 5.8113410687776055, 170.93593536975706, 97.52433851602258, 26.23928974083178, 7.137767748712154, 63.84473620269536, 53.98602391053627, 43.86812284202667, 201.84824935202454, 41.96695264899317, 18.079901920210133, 192.34091808715908, 36.2034255779114, 19.65750972165247, 67.3873337472354, 217.52624001157295, 81.04042289043527, 27.737250651193296, 17.82629919250905, 86.53007973021855, 77.02981255871352, 119.54342108349977, 5.056594653960327, 234.77070624380596, 38.852431538163884, 10.097702785026556, 108.42965188772307, 99.56204194126641, 40.3121174008805, 127.90038860869227, 6.4723083217599715, 23.3998352797377, 13.199322678214816, 6.8037649586901265, 142.8832734236973, 7.199147413109589, 84.58857542742768, 22.964399722891365, 64.11843973271024, 30.01880963274242, 80.06084120884532, 22.031222944905767, 16.362855280843572, 38.997932844269975, 28.124614057880066, 19.860116848954476, 38.82335997133073, 17.23115705723884, 16.743785743456034, 56.10457462253217, 436.77394268690296, 15.60709344093682, 25.710698884245694, 38.257652776760565, 71.85009874556447, 58.10070531422843, 39.041403752419924, 17.708764141896488, 111.91966510407016, 130.23263163779885, 46.37405407111737, 103.12469474863505, 90.31228720909422, 25.775528565750328, 10.981716129884585, 49.631865365271594, 119.62056284394205, 60.46946300177789, 33.5799660553441, 429.13827450715263, 147.67919106426632, 5.698034539913776, 63.11505243597888, 14.150608581803949, 14.199013949306455, 102.72052184769994, 15.48823151718347, 370.04713808048905, 30.33700346949992, 17.477250934413497, 31.891189086335313, 57.93371318242529, 19.515515523925377, 18.022396510895522, 73.86332849671773, 12.959419562786984, 31.03871982570384, 7.507531468307548, 18.478101876543462, 12.13963769747915, 32.732646788085475, 98.53596848441212, 38.061442982015144, 31.450599052765988, 9.835849690304928, 35.1302809161064, 43.133941784660486, 74.31395552413788, 8.765079115276212, 123.60985320757213, 27.239005306715782, 5.103651563248576, 71.23555165643938, 227.37212791141823, 69.2413831714737, 9.180250993982927, 151.40019792178566, 89.42168305987221, 34.77758883764857, 45.711182185958286, 6.190668211904208, 15.152459632594853, 124.33233976998343, 98.3821617181016, 26.682410945827748, 24.410075100154362, 33.04615289260267, 80.41098665376028, 24.613496624983288, 20.196543648922734, 6.685135734417104, 40.96024550218082, 5.907647100098545, 39.96101800679797, 25.332837768045326, 69.16712293722014, 10.076124020775898, 73.87655294635016, 16.191484375223077, 13.158454615545308, 38.366892624262206, 40.87245003685546, 46.84036724740566, 22.64656293551859, 13.380848958394415, 43.29658462360264, 12.303824181363508, 13.127806489919509, 67.33692515799086, 28.75658135975155, 17.155303115528856, 12.125912855201962, 53.328438382251676, 49.78065288731709, 9.457229267129584, 17.36474723797901, 42.267183126075466, 30.54097167984309, 5.972099922607927, 23.380803920187834, 39.32572849785979, 52.12959942263951, 88.8801482532319, 20.414179748586694, 40.557603616648414, 172.6899673728645, 21.41812664495041, 73.75487580476027, 16.838273974409724, 69.91498124190609, 76.61711739938775, 46.87028772986041, 10.198439754996796, 40.1630742450254, 38.055068945724614, 27.195849245066213, 22.126369356404386, 162.85771410975116, 43.022430149150566, 27.453066912419036, 92.6813905654494, 5.90154901818083, 153.01273425793377, 167.0416248254238, 25.872198256305758, 48.610353899359566, 31.47889570013438, 103.32251064010266, 43.38249454239655, 151.1444242856056, 19.55647792315222, 53.70460409806016, 54.83764927295695, 60.83912202870452, 18.575201319420813, 81.2980672413283, 76.30233030383489, 5.344019440804279, 20.36690430939675, 16.3694479934919, 32.42727971334702, 20.467366939216195, 9.704009774491432, 14.622841674891493, 12.594740824006335, 20.585678102782726, 117.49661490678753, 15.388510028816478, 35.75975883786999, 16.305550102610518, 71.13590927478, 60.99681928989793, 8.038065710282197, 40.32932253468202, 7.915442835447025, 6.837102208566613, 135.03862165317733, 27.492817344208696, 64.18254855627163, 12.59406726528341, 89.66524881514816, 51.486783139191964, 82.03278883151943, 62.74295745024382, 58.631630173788494, 5.194294901130843, 63.75093756205651, 115.84425259539793, 61.69654035589842, 15.788574517311078, 33.11622653096311, 11.191062204433731, 74.46467752760869, 38.986690015125426, 83.73840143954541, 6.3177587108326865, 61.04244377706303, 68.71145620736857, 106.61052104104321, 65.22382183465488, 17.510865919184297, 52.11569062905699, 31.7936089374823, 72.31445484500554, 30.701755911723726, 59.67081855652449, 33.42705227924488, 20.950983607921472, 34.18881625048232, 64.14496806622196, 38.09243954102179, 115.43165278674, 21.434796863930877, 70.75820431552175, 151.65535718057257, 42.885385951029306, 174.4127524672736, 72.7351367584423, 70.58925399168692, 66.73029631609731, 44.544374549122786, 37.00108060272311, 13.187902962327406, 67.1857901230546, 57.515301377184045, 72.38048156791665, 85.64555619974085, 28.339857212551905, 5.569381279287721, 58.89549271211506, 63.20265328565644, 94.42463352217979, 43.75669538681592, 81.11563374152612, 5.708195731646915, 7.030005727428354, 36.96865557401597, 54.134686084525086, 9.896730041973747, 9.087246154537558, 42.00983015787102, 36.633782236880634, 18.45049927630242, 49.784430947180205, 29.138367907697553, 14.2104723480275, 6.281401157363344, 72.62722618112349, 23.68564374606538, 39.19245912357348, 8.335966214340877, 9.828214855220926, 8.480804153750393, 14.662210904536602, 50.88725880042948, 41.2639378284221, 23.37751166899608, 20.520803990937505, 34.10064371145434, 54.88743433262315, 7.266322690293648, 11.370573438038992, 54.335352968080805, 12.439020709426572, 24.534716415206095, 192.29723038524537, 22.19363912744923, 87.00889042408272, 7.1794044173524085, 35.18719942981149, 57.026693022962164, 22.69697033681885, 33.98380724685031, 37.88022064182589, 66.45020337977682, 11.394535148580687, 32.40114648066526, 33.22863321318774, 44.84834306967128, 27.551069441171045, 38.13610647023065, 67.54660119267835, 90.77406125097433, 40.15774299462067, 60.16331851993336, 127.56677643251199, 30.268928731123204, 24.462630531487818, 5.028435933665785, 61.639101769027974, 33.521283243547074, 34.23251245873026, 21.6008296851167, 19.264720772349023, 24.528186688833085, 25.23484585422507, 24.84095358458851, 6.965986408941395, 46.70353443739066, 65.06985184966655, 36.507222386799654, 32.12747516633419, 55.25516611753731, 10.534089172623442, 16.815873665327004, 19.03750592242706, 128.59422807234395, 99.49946096003671, 135.76886888328312, 58.743421384697044, 43.99952162652475, 68.86873800517144, 19.69007918392741, 26.378763320658777, 22.088961080955684, 90.61569778442316, 59.44905357316944, 68.91041577055363, 21.311796668729777, 40.90567929114408, 8.910268335695404, 5.036623100786614, 16.188140801537763, 51.15762455043088, 60.51822427383075, 53.70486414412323, 15.704780009203304, 63.82643023362433, 31.603110074609674, 126.41554961428322, 54.74779822063406, 27.76551804787672, 28.31688022497992, 10.392282280221457, 15.190060393620445, 95.01017362304628, 51.08672534967397, 85.51733301471194, 7.845072879876235, 14.529773562423243, 10.39621380674943, 9.565941087053753, 120.51493564530412, 77.76663041308801, 12.651587519569746, 47.66579847930494, 13.856194475679988, 43.43972221298385, 6.629135533560218, 5.857852430588425, 50.591545799829376, 13.85521255047623, 49.34733751649501, 39.557820769050835, 14.056635952648866, 27.49106123461075, 36.617725540787205, 67.34284196074736, 67.84789627427317, 56.58537168475458, 22.69432000947185, 48.883128545996996, 9.608034501782901, 86.12833209815014, 23.657248657701864, 18.603156043357743, 59.76981293520563, 39.18777840173992, 19.540093081927957, 12.53888859833334, 5.912773023135081, 93.00368706964, 23.658029865548322, 11.309339300645425, 64.88393419243745, 22.490331887184166, 30.482800097500608, 16.096346410562298, 22.563541744487747, 28.870590582904896, 73.00041801022226, 51.64172250455143, 7.9260800535586675, 24.681965250391567, 100.67863416995847, 11.45238282893507, 24.897667269323847, 15.376685362545745, 16.043300243531853, 22.173934584102927, 27.641163444083183, 12.332704830716214, 18.523922709015345, 55.254928470524625, 116.38214572134902, 64.25211130389086, 5.055701354177014, 5.61761616794419, 13.332925549499949, 21.24927655197914, 29.109912651932195, 20.943315321709086, 22.71557182489616, 5.874038026985803, 30.671024133175976, 19.267834743962023, 18.862673533734316, 6.280232276621025, 20.20033023618923, 78.4199495251031, 16.663174276950038, 32.12445947421998, 15.021609547946614, 12.272011381609225, 44.0104348498904, 30.38744572296427, 47.63014415732887, 10.345057823918479, 9.339003589084083, 71.15533804081856, 17.14876555327145, 26.511325957711705, 90.89419644640822, 74.6778467230078, 53.01713057177576, 65.08753018154195, 74.50767012915854, 37.72468226121895, 14.977713611294185, 12.36163980677249, 40.89374266828015, 5.284141909949036, 21.504396994634803, 49.29030120502733, 61.67675224331568, 7.335107897570799, 16.87294893983716, 131.3339191522415, 81.77784679000273, 39.484933773131246, 9.596668724588385, 27.745420787605145, 96.88101927646247, 60.06353137844954, 43.26734178765496, 149.5764899254885, 123.9328192019048, 18.79884214730678, 50.517502445921366, 64.77204935622942, 45.162799980971656, 88.44362024451993, 44.791879497007194, 254.16564766103596, 92.11871892095891, 21.75007821794645, 15.430359511996247, 10.827504704855052, 47.341447448967934, 90.57140096284516, 100.91313632834466, 64.8986163694189, 72.06836911517217, 60.856330261289145, 85.17398707869779, 108.79666652459224, 12.498900935385274, 47.92221975070207, 5.9274987513283985, 14.515688730318175, 47.71273615556625, 14.696689037791876, 22.780690063035177, 12.818698898953045, 47.81029592832043, 61.07319051232399, 24.94468300445135, 16.340157805875023, 9.819015016451464, 79.55865327178165, 6.727162483691686, 74.86871303431946, 80.53508215585302, 119.15394185297498, 85.47588955673656, 41.77686215190268, 36.09744736781679, 11.0692759713398, 114.7007807488376, 22.904274096610667, 29.27419133925292, 16.328264984187175, 5.575519506597931, 6.419842903327191, 22.50070712876737, 12.576039601527262, 124.43068860382976, 7.485524585099918, 16.778148707960096, 10.250369902581793, 13.649437809247486, 17.053418041196075, 28.155372384566366, 13.723943531473124, 13.30938732455127, 89.81675025672138, 67.51866254734936, 9.37851669028832, 31.967186647834783, 58.41415354491201, 71.82789082926905, 58.029533489151795, 16.75837055998509, 131.10972312089527, 6.039979546795697, 26.85149369631571, 85.54668572789394, 31.463313774037537, 329.7942996746047, 9.775382840786774, 14.76463243789665, 11.657159805218168, 22.906414569901415, 61.960097223335225, 21.559901969475874, 56.3307293221556, 19.025362030715126, 80.439028345657, 25.4817140111694, 5.084360817060702, 16.992154721036293, 25.105284795014928, 119.69133640887645, 17.694733284150747, 67.75091242309452, 9.897130970602749, 69.45662100299323, 28.564511865124402, 106.35228846468313, 5.064658150539516, 144.4408591784959, 40.44496219253615, 42.99078566354638, 20.779896263948846, 11.001992172826379, 96.3911302005796, 12.121173348206879, 14.464443446347694, 5.204225758857672, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xle,Etot)