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
import matplotlib.cm as cm
#from matplotlib.mlab import griddata
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" t3pa2cls_XV_pc - zkousim vyzobat vysoke energie (jednotlive interakce) - funkce single_interaction. Dale delam prumernou velikost stopy stopy interakce pro danou energii - funkce size_of_interactions_average. Dale delam spektra 2 casti vyboje podle zadaneho casu - primarne pro double breakdown, tj. funkce energy_spectra_doublebreakdown
#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 = 44395 #test discharge for which the notebook will definitely work
shot_no = 47235
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
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
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))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
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 Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,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=[]
N_tot=[]
eventNo=0 #for high_energy_event function
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))
N_tot.append(len(TCl)) #new in ver. XV
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')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_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, drawstyle='steps-mid')
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.plot(T_hit, count, drawstyle='steps-mid')
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.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
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, drawstyle='steps-mid')
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].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
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
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
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=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
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.append(0)
nop.append(0)
nop_mean.append(0)
sigma.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
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
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])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
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_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.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])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, 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'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.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'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#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)
E,T=Timewalk(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, Ntot = file_t3pa_cls_new(t3pa_cls,T)
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);
([6567935.9375, 6603729.040526591, 6700776.551310956, 6750562.2365370905, 6750566.358527818, 6791721.030022081, 6792529.139535234, 6792557.65890233, 6891091.863169248, 6921982.63455866, 6942849.365002669, 6943475.477244546, 7034087.234456691, 7046545.3125, 7046705.566141555, 7046726.5625, 7087350.6537132785, 7087514.189134162, 7122872.516812878, 7124335.9375, 7125493.571811582, 7129350.0, 7143824.959765955, 7166346.610025612, 7181679.6875, 7184257.996665243, 7201141.714954239, 7222617.1875, 7225293.234986652, 7243513.879287436, 7249026.5625, 7290954.609392907, 7295355.101272951, 7319960.515266821, 7330224.98334304, 7347428.125, 7354400.0, 7360923.245117468, 7364279.485805633, 7364394.096323547, 7408303.0772614125, 7413803.5665409835, 7416445.836257186, 7419170.2981245, 7425810.596708227, 7445805.493507582, 7452553.709314995, 7469930.794283535, 7480757.715299258, 7486720.508309918, 7499598.233136468, 7499836.211714539, 7502926.226415586, 7524362.995260503, 7527206.462241953, 7529956.498015098, 7532881.6531260535, 7533659.375, 7536344.821012506, 7564049.280602819, 7564663.304197972, 7569524.388118803, 7578018.822877174, 7581862.1151341135, 7602312.274874777, 7604740.625, 7614036.818247284, 7622443.660835969, 7624376.101477257, 7684692.284976187, 7700007.043368239, 7712030.046568516, 7712748.4375, 7712809.924974035, 7712834.894507198, 7722269.775077848, 7723664.0625, 7736524.43622495, 7736838.041287075, 7760017.045429302, 7771951.5625, 7778057.752902221, 7779527.171236354, 7779925.693352276, 7782853.125, 7784558.328628717, 7785936.88219507, 7787898.087318743, 7814928.125, 7815309.375, 7825763.445055969, 7828708.557647902, 7829426.5625, 7830092.009400382, 7830693.9109866815, 7831728.552857401, 7831732.385688361, 7831885.247454032, 7831890.423539067, 7832565.578986691, 7834142.385589213, 7854429.6875, 7856226.104706271, 7864070.437715546, 7876966.259704989, 7880589.6189093, 7882148.4375, 7890989.011055049, 7896009.487700189, 7907358.981006985, 7911147.151185868, 7930704.050536358, 7937167.736464492, 7981101.53574811, 7982905.510400909, 7982911.601099473, 7991009.116386167, 7994882.815945058, 7995526.562500235, 7996968.75, 7997132.8125, 7997259.375, 7997528.894126841, 7999382.8125, 7999451.406572739, 8000521.598960914, 8001340.54655351, 8002493.641160484, 8004900.0, 8019863.257749396, 8050490.940376254, 8052502.516922933, 8052912.5, 8054577.573175202, 8056743.557008362, 8060862.3403448425, 8061218.638620612, 8062325.306785103, 8063143.75, 8064779.6875, 8065125.0, 8065707.8125, 8066831.25, 8069738.530140576, 8070018.1417916175, 8071065.625, 8071520.3125, 8075276.580128423, 8078269.879897586, 8080035.888694011, 8083697.732866599, 8084192.439767607, 8087635.7415430825, 8091363.642960823, 8093490.625, 8093511.505719955, 8093791.69203423, 8094124.77149621, 8094393.645368194, 8098614.151480549, 8100490.671449341, 8103347.36612775, 8106309.335040522, 8106524.207645784, 8106646.728165065, 8107553.99288423, 8107750.0, 8108568.074897826, 8108574.875575419, 8109445.3125, 8109917.1875, 8118988.061656679, 8126371.397182524, 8127037.5, 8137360.9375, 8138276.549868541, 8138546.875, 8146358.510128388, 8150812.641901381, 8150846.875, 8151134.656565969, 8151212.388081385, 8151368.75, 8151409.522551366, 8153255.126600416, 8153789.0625, 8153817.966163793, 8155898.026830442, 8156446.875, 8157243.75, 8157706.25, 8158243.453447301, 8158482.778226582, 8158973.325792379, 8159107.6934412755, 8159481.25, 8159875.0, 8160792.1875, 8161235.9375, 8161384.375, 8162765.435585038, 8162804.2275791075, 8162896.875, 8163873.4375, 8168106.25, 8169467.996099765, 8171236.080162597, 8174185.9375, 8177878.839530178, 8184637.293587447, 8186917.039602848, 8187486.119018609, 8187854.301589645, 8197430.908278247, 8200591.184419226, 8200687.5, 8202550.638564734, 8202787.808209642, 8204406.159284584, 8216409.375, 8216628.784291426, 8217099.010637187, 8217834.375, 8218059.375, 8218607.747409047, 8218975.054384135, 8219456.25, 8222623.433893314, 8228887.415000228, 8231350.444251694, 8232056.616932879, 8232085.9375, 8232166.070237056, 8232388.858043398, 8234298.4375, 8234339.0625, 8246771.875, 8246845.428018444, 8247053.102660169, 8247271.294336062, 8247606.957635918, 8247761.93571892, 8248145.931009307, 8248941.4732929235, 8249613.943854833, 8250464.840366453, 8250501.5625, 8251035.833440218, 8251727.983529237, 8252790.625, 8257232.165607202, 8257315.625, 8258550.0, 8259034.971116523, 8260445.730849909, 8261399.791149003, 8262066.549135099, 8263109.329242556, 8263116.653681101, 8263398.157903202, 8263411.525058741, 8263413.7349666115, 8263556.25, 8263623.1837643, 8264440.625, 8264448.658912616, 8264795.098374059, 8265389.0625, 8266489.0625, 8268416.767129256, 8269734.8880296685, 8269783.627159615, 8269857.254171709, 8270508.721896533, 8271274.839985591, 8271657.451295152, 8272498.598559784, 8272782.8125, 8272794.571145129, 8272818.275918345, 8273362.320826494, 8273473.751858408, 8275090.661709854, 8275831.813681829, 8278726.5625, 8279520.195077073, 8279640.625, 8280071.875, 8280198.727264249, 8280370.943557678, 8280726.453304997, 8281184.428281843, 8282260.871722144, 8282263.490463549, 8282317.73271139, 8282760.467585788, 8283062.878226407, 8283104.6556768995, 8283318.730256382, 8283406.25, 8284891.499134099, 8285182.636484118, 8285190.625, 8286909.536178242, 8287057.8125, 8287104.611788207, 8287705.714873812, 8288602.508177699, 8291387.5, 8292977.104065166, 8294512.5, 8295037.5, 8297166.564880393, 8297364.295575461, 8297421.094930058, 8297605.750544262, 8297907.8125, 8298004.525905476, 8298749.571136801, 8298912.5, 8298926.135349781, 8298938.564717693, 8299160.048890307, 8299419.258028322, 8299887.328162285, 8300007.0489433305, 8300640.625, 8302241.734032829, 8304465.625, 8304481.25, 8307273.1785590695, 8307992.740785825, 8309253.695209827, 8309729.6875, 8314463.155353357, 8314490.5302910125, 8316917.1875, 8317023.4375, 8322086.142949926, 8323117.811969689, 8323783.87184644, 8324908.68852121, 8325252.447856231, 8326037.222196745, 8326489.423794781, 8327878.845347271, 8336361.455836712, 8336774.505310053, 8337006.25, 8337038.91180952, 8337365.625, 8337370.414417942, 8337491.596905706, 8337600.0, 8337941.607558024, 8338282.510192309, 8339383.201819736, 8339468.75, 8339771.868639715, 8340240.497937211, 8340296.618068266, 8340404.6875, 8340444.114001682, 8340558.545630045, 8340652.743784736, 8340954.59508563, 8341013.754947747, 8341129.11477904, 8341692.124675065, 8342169.54047766, 8342231.076931097, 8342445.303891564, 8342563.389723048, 8342574.03017159, 8342579.6875, 8342918.866544131, 8343395.854739269, 8343669.451389819, 8343728.125, 8343928.00714226, 8343989.0625, 8344757.262931291, 8345452.418069685, 8346917.812310553, 8413900.0, 8414124.733998675, 8414473.9369231, 8414475.823618433, 8414806.25, 8414826.355632165, 8415645.30275076, 8415745.3125, 8415915.187811678, 8416425.0, 8417462.933841534, 8417542.1875, 8417576.277004827, 8417656.18705861, 8418535.25136882, 8419485.533044416, 8423298.122069867, 8423898.676591627, 8424127.421914335, 8424289.0625, 8424596.875, 8425052.734304857, 8426215.938868882, 8426236.138714196, 8426513.13115436, 8426689.228452154, 8427631.960757703, 8427655.900217544, 8427732.808655757, 8427736.990788572, 8427746.875, 8427747.985967817, 8428020.665868144, 8435320.387205917, 8436942.941605471, 8440320.3125, 8440533.479604132, 8441175.538988424, 8441814.178066725, 8441989.82420289, 8442784.02024606, 8442787.433597198, 8442817.1875, 8443678.125, 8444004.546441417, 8444418.75, 8444682.063657941, 8445362.217057072, 8445685.474633183, 8445714.0625, 8446106.25, 8447416.652851494, 8447620.288263246, 8447757.025966352, 8447859.339791013, 8448101.529748864, 8448637.085761532, 8448700.848289685, 8449142.1875, 8449855.986089349, 8450806.465489067, 8450812.5, 8450846.040032646, 8450864.0625, 8450864.0625, 8450877.254460627, 8451141.22399415, 8451178.125, 8451481.016759798, 8451510.869977897, 8451518.75, 8456322.623876642, 8456923.4375, 8457161.58035939, 8457185.9375, 8459140.625, 8460256.152673585, 8460281.25, 8460917.1875, 8460984.375, 8461600.0, 8461665.625, 8461801.5625, 8461834.18914509, 8461860.430311183, 8461967.150868332, 8462109.820199708, 8462113.304992616, 8462610.789462801, 8462710.9375, 8463444.72953157, 8464042.060282039, 8464043.75, 8464305.541488584, 8464357.795112262, 8464378.396131683, 8464507.671751328, 8464635.082298504, 8464653.9325544, 8465427.848010825, 8465518.75, 8465930.421526529, 8466073.524728647, 8466338.844615694, 8468233.645880139, 8469210.077873008, 8469335.259299176, 8469517.914630614, 8469735.36645816, 8469857.362977397, 8470051.514063532, 8470551.915391447, 8470854.452921541, 8471123.4375, 8472218.75, 8472383.567117795, 8472756.530452764, 8472884.375, 8473461.798154015, 8473545.3125, 8473747.917897413, 8473804.6875, 8474132.8125, 8474396.875, 8474533.525362596, 8474580.977351222, 8474589.012351243, 8474790.87113796, 8475664.0625, 8477247.936545776, 8478050.0, 8478106.25, 8478535.9375, 8479129.39786535, 8479568.57577915, 8479754.504586035, 8479793.668787036, 8481265.625, 8481381.25, 8500484.375, 8503016.77448112, 8517795.906423109, 8519293.75, 8527522.24340854, 8529113.445879865, 8530183.871958395, 8530881.117093308, 8532055.26739129, 8535925.0, 8541411.12660578, 8556406.215822406, 8557820.836879417, 8561910.807454752, 8581055.220470265, 8590142.1875, 8590839.832336055, 8591042.1875, 8591085.9375, 8591234.42111901, 8591346.875, 8591470.374001242, 8591593.776637651, 8592051.940009525, 8592226.5625, 8592633.213701703, 8592823.4375, 8593003.125, 8593090.481404869, 8593534.957443276, 8593988.681260154, 8594926.807933353, 8594941.854184024, 8595714.0625, 8597445.016942557, 8599712.687649617, 8599881.801867971, 8602375.413874583, 8604407.8125, 8606852.859432373, 8607445.593807464, 8612194.393772425, 8612930.128034467, 8616356.52205615, 8616435.222158216, 8616829.750797061, 8617131.385632208, 8617190.425072141, 8617383.865453202, 8617638.983406309, 8617666.703979224, 8617765.625, 8617889.594031133, 8617921.58839932, 8618263.875118017, 8619053.125, 8623540.003407644, 8623606.25, 8623649.26448201, 8623654.698115202, 8623812.289189316, 8624126.450950865, 8624475.0, 8625162.964937646, 8626244.473942496, 8630300.0, 8631873.87901697, 8633828.629446536, 8633909.375, 8633986.802954061, 8634879.42994245, 8634999.728191463, 8635067.033941198, 8635248.4375, 8635255.459151035, 8635324.497346694, 8635629.6875, 8635798.644502355, 8636345.3125, 8636446.875, 8636475.0, 8636524.418705832, 8636603.061609415, 8636680.772197928, 8636853.082097191, 8636997.433432288, 8637009.00450336, 8637389.891632441, 8637461.899847135, 8637489.922237806, 8639369.426599104, 8639389.896832343, 8639671.875, 8639753.989037449, 8639829.6875, 8639901.5625, 8640129.840625018, 8647425.728018576, 8650245.840113215, 8651910.585815094, 8655673.4375, 8655712.872036094, 8655910.492830297, 8659395.117971877, 8659685.9375, 8659721.155025791, 8661130.554708252, 8661365.429543456, 8661497.307849767, 8663014.0625, 8663257.67532046, 8664071.000974542, 8664368.75, 8664541.980308732, 8664696.20441992, 8665040.625, 8665805.629865952, 8666002.630472176, 8666542.142649386, 8666603.581085036, 8667179.425435964, 8682177.769075684, 8704278.125, 8726159.375, 8732735.9375, 8749470.490966268, 8756373.4375, 8756503.125, 8770212.793365048, 8771860.9375, 8772005.770467633, 8772823.4375, 8773334.118977385, 8773466.663493447, 8774026.5625, 8774693.75, 8774940.625, 8775643.62151286, 8775737.82517646, 8776334.443319965, 8776484.375, 8776567.1875, 8777302.155349672, 8777704.970393656, 8778124.881292675, 8779081.425418455, 8779846.425755657, 8781757.8125, 8781768.75, 8781883.584300617, 8787730.714724155, 8798507.483211882, 8805427.984417342, 8811730.213266417, 8811769.993357124, 8812203.49799166, 8813081.25, 8814104.741788123, 8814516.126507157, 8814716.91053632, 8814897.720670735, 8815107.633148627, 8815124.92960963, 8815465.16783723, 8815763.923061287, 8815938.486973515, 8816482.44150974, 8816873.395805875, 8816909.767061817, 8817796.875, 8818222.813868407, 8818269.74367298, 8818295.3125, 8818366.333033811, 8818423.4375, 8818489.696423078, 8818555.582047468, 8818726.5625, 8818739.443251953, 8818790.625, 8818879.6875, 8818897.127757918, 8819180.205837397, 8819210.498484751, 8819251.5625, 8819390.625, 8819404.6875, 8819715.625, 8819763.936842646, 8819914.0625, 8820734.375, 8820753.125, 8820951.17867835, 8821333.517920423, 8821376.02132064, 8821449.53314563, 8821546.289112998, 8821728.125, 8821854.6875, 8821989.999953942, 8822165.28266895, 8822446.202468801, 8822856.25, 8822989.0625, 8823338.041131755, 8823438.065397538, 8823654.6875, 8823840.085935228, 8823843.75, 8823940.313901931, 8824208.782960083, 8824373.4375, 8824419.773218008, 8824473.860241467, 8825037.105441632, 8825113.53891756, 8825123.4375, 8825286.540623438, 8825563.815359436, 8825593.594978007, 8825775.137836989, 8825942.1875, 8825977.316045819, 8826012.12689353, 8826077.7123481, 8826453.125, 8826668.592163332, 8827131.25, 8827229.61374873, 8827248.4375, 8827265.263177922, 8827272.28729259, 8827301.5625, 8827318.75, 8827334.271113098, 8827335.121098513, 8827403.125, 8827454.6875, 8827495.07888189, 8827521.77719464, 8827652.541855028, 8828107.337561453, 8828164.338448873, 8828514.73250841, 8828673.248873234, 8828806.25, 8828878.550224427, 8829028.125, 8829509.015893769, 8829514.595481256, 8829657.555299852, 8830246.875, 8830289.794978842, 8830765.83290301, 8830803.125, 8830832.930801151, 8830857.994359002, 8830874.939123858, 8830914.270219538, 8830967.264090935, 8831693.75, 8831836.923721805, 8831945.859277682, 8832408.134531558, 8833311.67614407, 8834070.3125, 8837692.1213367, 8838402.888217114, 8838622.149594203, 8838959.375, 8839829.6875, 8839861.074136076, 8839868.779197833, 8840873.4375, 8841582.433823071, 8841603.067297803, 8841880.819405576, 8841890.969919516, 8841978.640038716, 8842133.998427028, 8842208.3384602, 8842220.3125, 8842300.976292804, 8842382.8125, 8842412.22185558, 8842666.023898637, 8843316.042711727, 8843501.469352119, 8843536.063622402, 8843939.821750073, 8843954.61850643, 8844239.0625, 8844304.80260955, 8844658.368443355, 8844743.852435824, 8846129.6875, 8861859.517861735, 8873036.221597586, 8876247.05065702, 8877593.470230496, 8878989.497363338, 8879015.475558426, 8879323.4375, 8879515.00003486, 8880193.780753901, 8880460.9375, 8880500.0, 8880689.0625, 8880863.585018205, 8881034.375, 8881367.768755669, 8881418.210130787, 8882512.250741353, 8882663.533072311, 8882877.841923604, 8883032.8125, 8883460.618470838, 8883935.017009666, 8884371.702423591, 8885445.892758548, 8885898.349520937, 8886584.375, 8886719.239197139, 8888687.951321745, 8889531.829066379, 8894087.5, 8900455.810135629, 8900464.524920683, 8901837.310845066, 8902645.3125, 8905254.072809488, 8905600.557436423, 8905984.375, 8908082.151887065, 8908209.375, 8909790.77870789, 8910506.25, 8910732.8125, 8922906.25, 8929903.125, 8933087.5, 8933350.099319946, 8933542.1875, 8933808.000779588, 8933882.246222308, 8934065.625, 8934078.109357022, 8934416.333172537, 8934802.429889763, 8934827.251768481, 8934919.081968995, 8935658.24695988, 8936317.676814808, 8936323.4375, 8936639.0625, 8936655.831123993, 8936658.405067906, 8936664.563518144, 8936701.5625, 8936831.25, 8937642.1875, 8938349.758472808, 8938564.839255022, 8939282.082847927, 8939402.700535124, 8940666.270240996, 8940754.6875, 8942154.43141553, 8942709.477480493, 8942729.63209121, 8943281.938128466, 8943453.965365127, 8943838.735861463, 8943890.027682904, 8944454.484528866, 8944544.676296094, 8944615.034757165, 8944818.75, 8944912.51920092, 8944969.317297447, 8945313.46316323, 8945588.43810236, 8946076.5625, 8946078.125, 8946083.57030156, 8946874.621544845, 8947326.333058748, 8947332.13417558, 8947528.62659343, 8947852.348831804, 8948467.1875, 8948537.5, 8948639.0625, 8949090.625, 8949451.071375059, 8949510.125463523, 8950077.423443718, 8950313.88869268, 8950948.257429043, 8951559.375, 8951639.0625, 8951862.284240523, 8951967.1875, 8952036.525056917, 8952201.99442324, 8952215.89324077, 8952548.531795098, 8952604.682783674, 8952801.5625, 8953154.78159797, 8953261.852854803, 8953687.5, 8953980.585853688, 8954015.625, 8954124.487125307, 8954142.83619035, 8954785.880729632, 8954794.007454518, 8954883.703745794, 8955054.6875, 8955061.765566068, 8955112.856950192, 8955322.96594634, 8955834.375, 8956169.988215694, 8956607.109310387, 8957472.233402513, 8957639.545122698, 8959406.25, 8968752.5561686, 8970096.79259407, 8976360.9375, 8978289.0625, 8978765.625, 8979391.079877036, 8979400.130046953, 8979709.016847389, 8979884.320416795, 8980949.813025445, 8982126.476752507, 8982440.625, 8983131.093898904, 8983212.252981847, 8988332.8125, 8994726.191232558, 9000841.894532226, 9001075.0, 9004196.871098632, 9004267.1875, 9004970.216718804, 9006307.8125, 9007013.684860095, 9009175.0, 9014438.865113346, 9015346.714601345, 9015509.220946483, 9016518.777505074, 9017580.808155214, 9019331.213805601, 9019627.62194041, 9019784.375, 9019814.89718, 9019851.282771714, 9021252.88799304, 9023212.110682327, 9023313.238116745, 9023701.5625, 9024735.19230535, 9026871.068655754, 9028732.866497444, 9028981.979855353, 9029826.037889145, 9030385.244131196, 9030850.636023726, 9030973.168426583, 9030976.572122581, 9030993.75, ...], [80.6227434592103, 20.142388047725174, 14.899032838330918, 24.228948210633867, 12.507142227213519, 5.493429873353301, 13.842570103380806, 6.463280024835945, 88.8730019532846, 73.85510169881415, 20.244440070071658, 98.22414510496183, 34.00573627799418, 52.99934290085128, 19.83614577540483, 41.46153396033414, 79.52840879438895, 6.507127174807035, 27.72159871329285, 90.37075109687274, 25.44228556362277, 44.44018140285856, 14.790342009586745, 10.737341400339966, 32.82716592568082, 39.44124844523117, 7.4408229742657435, 100.58615729613076, 67.48004451377429, 138.08602118764716, 37.387713675014986, 27.069656894537406, 16.78604584372385, 55.394680366784755, 7.597224234421178, 68.62705003410247, 41.22132715810148, 50.836213301835414, 90.8241980119889, 6.834674722133688, 66.81954393307805, 25.5471759514051, 92.876824967418, 114.00679131781033, 41.73172747066822, 26.51771284304433, 5.309484136916638, 64.72393082839223, 78.12724498086189, 6.803238430638208, 7.530958251053448, 35.92296335825365, 46.61893265374371, 12.001423265313779, 15.817280816731339, 61.528933142007766, 6.5521977675091065, 34.27529908566991, 104.61380989996931, 75.09127376181596, 76.32754963323151, 20.445193767146414, 31.028725986297303, 6.689028821220802, 28.882048398368333, 143.99238499131457, 12.854385057733404, 96.87348831773063, 61.49178298048489, 15.326531626196548, 31.895428420838336, 6.544891064992448, 135.606135544653, 5.56038145592697, 5.216862558867843, 8.021453878596322, 28.769983854626616, 5.032169573261715, 5.2174351529597445, 31.24082939320106, 83.69701958917908, 14.57420053260788, 17.911512269634287, 22.45721616870242, 66.89959867371849, 17.35678079213207, 20.393267408609802, 54.09150609507431, 55.677802521774154, 81.63753127201079, 5.887379891080527, 108.19430382145806, 57.1546864206609, 25.443626203172904, 62.855013539469454, 64.91785839566468, 59.703724818043995, 18.69528703961456, 22.095138690930778, 134.91181475511604, 15.75440623213162, 58.89638105794319, 30.40356812733085, 8.353922283160605, 6.156687305776541, 17.592394560317, 30.607218724480642, 27.54641765785304, 177.1090113015387, 22.620036595216565, 93.12971079980892, 10.25938805071941, 9.843138473421293, 77.91062041645992, 19.395229125972403, 9.963522449660594, 24.294190671187845, 29.568296572412535, 17.356101716390953, 48.49495303655256, 89.83179141294515, 47.699340901293134, 10.079090428337299, 30.83682182518227, 86.69691318835561, 29.37741919793904, 118.78888425562262, 26.543850920540923, 178.59684686037085, 38.36897418178742, 7.206897947953812, 146.78556153722297, 66.45553239237633, 38.95342931975209, 10.838877725446217, 5.925621348948986, 26.50148191525319, 11.643662456800861, 31.28479441814407, 98.55214966705415, 112.90778838956834, 65.31719662466908, 44.92556084052376, 13.238286372398735, 60.37837479689176, 72.16898665374296, 32.4730627567573, 73.10883171609723, 5.382189618695119, 27.59469627819643, 7.3668266869507395, 11.546322492862801, 38.640978074980936, 31.597075376306393, 55.89504826786613, 17.66310408705445, 54.82235785616889, 77.43668103386133, 10.968006409699049, 45.35558492073598, 27.895054497140272, 22.779243281408352, 68.44533475960286, 51.86779691486251, 51.785904068507406, 36.11505459406882, 36.18743671134962, 29.938414642418646, 65.44444675166186, 66.344492451765, 29.977601838965857, 40.531130618254394, 8.0490905164253, 130.1617852340275, 36.49486994780612, 28.277333880876864, 34.70847281678894, 12.426718462777817, 11.356996252643711, 81.13199239892248, 9.581398736239768, 34.07669685306363, 34.21477163727883, 9.459362275440663, 19.315665243065347, 36.77551336004898, 27.288965169176006, 22.433039415888945, 50.224823711111675, 57.25869334609388, 75.48154872668582, 95.95336525559122, 14.812464780145561, 51.5925550585911, 7.090502527636772, 69.0226261987929, 54.20883322886325, 50.525540966738745, 49.5455548012941, 31.01323432607239, 24.572554641954188, 80.60727389211789, 40.19460965350637, 54.14841487600363, 73.34993595076142, 24.897376200217852, 108.26904099331827, 77.53314924395355, 32.973419786537306, 25.024632172181214, 7.55060757849065, 80.10680500340177, 24.064895445093086, 5.789121165317098, 94.02852365265755, 156.41066570211055, 54.97655060081135, 11.646241193218133, 44.99339620924646, 46.35480197913222, 6.902676111776427, 110.72817492801465, 76.13732460844237, 71.78059499775776, 7.104445703860406, 49.208432652692295, 42.28810480035326, 6.762786734999605, 32.97814654264757, 6.3250068261878365, 11.754150800136609, 55.78303315250389, 115.0610355370442, 69.8127043945092, 95.25125014485413, 42.45058537201799, 92.98854461789585, 5.94952909963535, 14.857038668341877, 57.42455509363987, 12.448978256568969, 20.874965183194586, 34.70273978233688, 167.79789167510808, 78.19823753850824, 6.01013576877599, 37.99912307810661, 64.50374461099307, 35.77247345996895, 50.2832616057757, 8.838405001055474, 36.58559256591904, 32.06410309684569, 15.842248912842454, 7.761896243632423, 65.12260412167596, 26.201172377447264, 27.65071867751508, 32.09088254003101, 24.014910560717755, 12.189714321753986, 23.405298638468363, 30.278779733268856, 66.24267088196157, 57.935931609388874, 30.161628160219426, 10.808733926041079, 30.624983549745178, 122.65137146034631, 67.99474123198434, 17.338999998354982, 10.130434605119122, 8.900071814016679, 55.86495627871737, 38.66317874334579, 22.999198783940653, 14.93314946795649, 116.99100807792657, 12.710307404616806, 25.033934305188893, 90.82684446080408, 40.14880213625432, 15.083300946134559, 17.635845596019774, 45.45602234198573, 90.18467061024488, 32.69299715117594, 80.8630549397913, 16.174345792648637, 18.05236281680173, 10.96121231218403, 6.495476189154178, 68.94813573874106, 8.890416651704948, 105.24869030141033, 56.320171207621925, 114.92375369769033, 139.18883836372055, 24.102365645091588, 49.2250587347494, 19.799533878873095, 76.03524078790764, 38.399025195373625, 15.593621041217826, 34.89615761666992, 12.749787493515157, 53.38278337858783, 13.017093116169747, 60.843450313081824, 22.961047304736542, 115.47976432631381, 36.54875910470265, 28.223708152369298, 138.39277893892472, 5.147583865505021, 10.427514388418718, 40.88523997781872, 5.0659695209906745, 22.233345405588807, 35.801125121447, 27.302704237168584, 21.515251473951214, 9.9745873390839, 87.9293386076473, 25.538596281355307, 6.175319078985166, 28.689257260353227, 20.490276261077412, 65.31426949949513, 127.89586081036477, 138.54380275861837, 5.30848939091473, 12.15361929551458, 41.27072573818401, 6.594976947714893, 9.252585018012429, 49.07981952078259, 44.21454878125623, 51.14018609364875, 40.55910898280737, 75.51609790488685, 29.65570803778341, 27.82371703931741, 21.178018153807344, 11.743652187025672, 18.646288656282834, 41.22576348945761, 33.830549860738245, 30.9793158954271, 9.20715529027342, 54.129139265331894, 15.344743246745258, 8.877410583621279, 113.0908710802509, 46.7384732944211, 5.3316683324633996, 16.666825846525537, 33.46065636144242, 17.229893722125144, 19.625600317347285, 100.8229650799652, 62.86054555186548, 16.537738149111448, 18.735550749114882, 13.663584506207393, 26.821807571185865, 32.885842129441855, 43.132642605174, 27.340501366448752, 7.916560737430086, 72.92320488580253, 5.130318254883999, 12.876513026327194, 27.425514844880553, 44.359978307083274, 88.19197727440032, 76.3551639056493, 10.004369945348486, 29.270237198997002, 30.863344410260478, 85.63093023152113, 21.012477958151432, 6.630129083848133, 25.509110957796803, 33.29068033182357, 24.194964590318097, 93.65599835468637, 12.716189178806728, 70.49370441588435, 5.523124123372722, 88.35062322448962, 74.02311095062176, 22.143430939887388, 42.69252592234533, 6.134407593502862, 60.56856840322145, 8.141160470873626, 27.33841304803344, 6.633843644479978, 16.132930383319096, 13.86165712565314, 282.5828776725248, 178.8646779443496, 45.68060164135695, 62.66672388104821, 153.36884921523938, 43.875724113893824, 7.677671586618371, 8.651145872608705, 8.376329547885852, 203.32878134365615, 5.909512400441994, 8.284545471816122, 39.88367110518204, 72.883442297011, 29.769402299740015, 117.03845016621489, 13.589620477789694, 41.417003857575374, 50.359119947125656, 18.577022538034008, 16.406986993091166, 5.949533357559017, 12.61492645979159, 13.742258284840535, 6.081221023955844, 69.36001421297068, 54.74323372788567, 86.75805693772034, 68.00723093082837, 16.182606517696378, 13.962608849709444, 23.35061614768373, 65.19790356317569, 55.041912392501374, 6.987660329065251, 28.05400934141215, 16.474026522145483, 27.846665185567467, 27.892795910858723, 22.39351636003613, 12.775315462484965, 36.76914991778537, 24.222945518866183, 68.93911744475628, 41.78156636902415, 18.69632743636316, 71.60753053833983, 57.940227238304985, 44.19078976091832, 17.850940433883604, 139.09520934255963, 10.78171098578586, 14.690244427211814, 62.25665259728454, 14.162537481537235, 164.33835475070532, 263.55317487859656, 41.42560086941908, 79.00902217189989, 196.22153903077464, 61.218834827957494, 73.2459293019295, 57.07025565652378, 51.813987310839714, 118.8466620251768, 47.862032013498755, 198.24125408079578, 10.417806522565234, 45.86743108625057, 11.903025928072546, 12.672097158247878, 25.907495565187443, 93.66375557085205, 20.70353516656614, 7.557864187783279, 53.75832941327521, 88.41018607133537, 28.185300550929437, 112.54726964099254, 14.430872342601885, 18.556303442086367, 12.67813400624271, 80.79038164041938, 60.39842440468112, 8.717042395711928, 50.8415091339409, 54.247009515653914, 5.029467332552646, 11.49901906007123, 10.210762880140027, 18.693518465266937, 59.754460805622685, 8.978184639337135, 7.108777127235512, 62.701128882713846, 24.62399963897157, 130.00280301329812, 120.42002858373505, 103.58768980471834, 18.6839520855098, 35.28162684153131, 10.183239941134614, 30.454970116948154, 58.63731909734514, 96.9271354062512, 226.29908831270555, 89.4009728143746, 31.986826901443635, 185.3119164849257, 161.33007712232276, 13.996931465171356, 63.588610101694066, 20.85140113838211, 92.78656055326138, 69.33998011429173, 60.106203549684345, 34.65647257372143, 19.49328110576059, 25.371186768682136, 7.574126091492366, 36.976377307762704, 51.78258681474345, 69.34865350231243, 173.1894611568428, 19.391155260741048, 79.07901423966689, 16.560012503768718, 37.26922779878091, 161.31231002971097, 31.97790655238017, 12.17372090024863, 34.575384084027064, 18.627179227476468, 14.81282119391562, 5.7409639290352805, 9.223811112599089, 31.850023240760592, 85.1038404058743, 25.208080899899677, 30.72083027582615, 46.02669916199413, 33.19589448045201, 46.327024184414036, 11.22521745141505, 9.354028834882934, 87.46759668296056, 123.41615737841644, 21.94673151784219, 44.16459987154694, 47.783033294626385, 5.803431308002094, 6.58244219765065, 22.765668768149393, 24.54195750775783, 13.806976691101614, 37.53082241231001, 180.94323840209762, 55.949495261089126, 219.40364023694107, 11.842729361837197, 29.353280966362025, 10.736517772506973, 5.253087317997877, 64.32922149998959, 80.43099647024292, 138.16043083486431, 72.58687003131774, 174.30736898743703, 15.484967745726431, 14.230563092276233, 8.934765009908633, 48.44150708094368, 19.91283714555081, 57.1121280701359, 95.30921957630352, 135.086380298882, 20.485843873063516, 114.23559231381779, 20.360242594541027, 33.250857236295225, 52.384100424877595, 12.252124798021653, 9.159292774361289, 26.49865602604835, 118.95194026220508, 102.85484385380794, 6.005031810036032, 76.3959937452162, 8.534726026473077, 57.30931855920185, 93.28758278952827, 47.14744766799672, 9.12272207696104, 5.794138820258728, 25.820773749995208, 52.70460892013447, 19.01140608207845, 21.466672859747455, 125.41786976918084, 15.793922956868373, 103.97647191873536, 48.60468113157142, 58.68806927419452, 6.652751359366797, 60.56758473595613, 29.82814227251953, 37.241147808380425, 17.604452732131747, 10.59409857825857, 12.72933185642546, 10.303478865060198, 19.683749409673858, 9.977507124790531, 47.152021901932166, 30.013303082403173, 215.05997636499384, 33.46675557629148, 30.254078796256206, 15.55914089496112, 13.648672995403619, 5.078618035485895, 31.112963198075732, 35.745476884901336, 5.138533707620276, 24.590563385246845, 30.815537131069828, 119.28125013939814, 19.547574671298182, 10.190843195757738, 25.184778290008147, 5.638447806670092, 75.42822341824069, 41.469386089164196, 74.3430913506418, 43.074153985590755, 23.888768464800187, 10.21968871528357, 93.2667579166506, 10.279464896556979, 13.341058062415602, 91.6539180955323, 17.87968668867299, 6.7122915073628375, 65.85981744385022, 33.97364052002432, 130.86199983093277, 30.24567656414325, 27.4400906027032, 34.641188331492344, 28.603657132863137, 97.80470498232638, 87.83677774224584, 42.210612193431785, 45.275471693517375, 24.329230271894446, 83.97922618631915, 61.19770859809286, 81.6421949842854, 80.97113436346757, 5.9282936546338165, 11.677095480666074, 6.7772232015538405, 72.14067833980124, 104.71805735248901, 45.29706645619697, 16.14180557131571, 68.18163950879092, 15.655112360665708, 147.19661479903286, 37.05658883973705, 32.426065020078624, 27.674438515183915, 48.01563539829709, 91.47334470062637, 6.073600857167196, 12.06264929310341, 30.316186561101127, 67.74536696028538, 89.41145061966922, 7.135795853038922, 9.794795478233327, 38.88613319201963, 10.16593252111778, 82.64871161734959, 58.168094595202604, 45.67399001308769, 10.916532278105166, 16.6214175509378, 22.884404146220078, 41.054887365380964, 222.9974993314048, 32.99835359534685, 6.645078320763906, 58.82360905691458, 57.245830461864635, 25.777797292398866, 37.453765387211014, 35.054291447453636, 118.39849647309036, 106.27327081168907, 6.316532766371843, 30.3982111559038, 35.649383309923806, 40.22270980825495, 23.616389631373938, 5.6793761851294455, 52.37740779065618, 70.40676756302085, 67.89272681344642, 80.12644696377498, 26.26628028076348, 55.168201351279464, 90.93493611904087, 43.78946946039316, 6.689224713213583, 8.6985170879477, 8.01972556921533, 73.37732320163168, 5.582433390017065, 55.22415270968269, 38.40668002769969, 10.273591067668091, 30.798114816841185, 7.960306534682348, 51.20747914915166, 81.04405823622768, 15.47588350485427, 6.148937620777043, 59.04565462902272, 13.220315160988562, 84.93392498412032, 32.93026389261156, 131.97951817384902, 78.10038119941997, 6.201386344728845, 6.322128168380764, 29.061944409260164, 21.261034819926373, 102.50144298494953, 7.836985276919561, 14.076370002193652, 14.381821538872165, 9.450736534312448, 55.355603464256816, 18.88044687478613, 73.98786474734008, 13.571812043891212, 33.21794450946403, 8.204837794170434, 66.3985767992489, 11.014352925871869, 87.68861119877135, 22.99191595995918, 38.013186969543064, 100.82642361806369, 36.111314884292774, 7.094408123175718, 85.0715448318206, 92.11847136032176, 49.6209705663238, 24.63740398257133, 36.26982909535324, 20.701932592586772, 34.86810298350271, 6.1172733945636315, 18.305276445452602, 33.52797790110424, 98.32266546374684, 87.41006848741964, 56.60913301917651, 6.693870708862972, 17.454329885915726, 24.313291916380983, 47.755677938346444, 8.716036087698813, 142.02335979370642, 173.00901028578335, 5.403015912962168, 7.670364519807886, 6.259537622351688, 75.49388879861147, 24.730530532389512, 66.22936337536537, 13.121882510388584, 109.96122345668182, 6.538785865820837, 38.53222606437176, 61.92345340710382, 7.579481563232784, 20.287522038014053, 16.10273581390162, 44.442596263041466, 93.32352214671502, 15.489197826924784, 9.356214221008791, 85.60736516437497, 34.61695990016543, 27.43274128192944, 36.20657119067326, 11.713327877639822, 12.041007374472358, 92.81045676050502, 88.16385766622264, 35.79553098860598, 84.45653463112734, 51.637466647599084, 6.709219214942955, 9.693119554813938, 8.520554122922798, 26.809246270604564, 100.47150955857532, 64.04973922342332, 8.250426272519784, 64.82616859596769, 32.613690012464836, 145.9348744619159, 29.20072292179389, 29.94243080414317, 110.13403811423782, 9.583760057067202, 158.26983445520418, 24.012644289537533, 18.171053978084387, 14.400942001376425, 34.714419710268025, 35.020208948251714, 58.26266126124862, 139.918490198669, 73.35118787810366, 29.42685999293475, 10.45526971750667, 108.87261934590178, 17.742028913531332, 5.507440370554194, 99.1421112982979, 102.50418494888766, 23.969351450055207, 84.31267398992807, 86.09732905120819, 7.301102639102124, 54.66561034620394, 30.091313923900085, 26.89806179244221, 125.17851790114744, 17.203866713538336, 11.914923344199996, 7.8270229981043595, 37.6836840123603, 6.043521243576157, 17.055353038389857, 18.009510749919045, 76.45389099059419, 32.0497758683308, 9.85185872962046, 57.344759712797945, 27.67847046999057, 103.52171251105094, 15.561629388498634, 66.36574925311818, 102.91802324820814, 68.19468989396626, 34.57681418783153, 63.95254308144558, 9.416819893247208, 54.853154782426614, 5.955971490997529, 80.63926609216277, 33.373336029136276, 105.57024026564991, 6.164974839960788, 19.74507474958446, 229.37079651256107, 6.83164210872221, 7.768314652612656, 59.17821778503982, 44.83546810548869, 51.973877415188355, 76.17375548137969, 12.200198163453315, 17.27054032687646, 39.55147936090389, 49.144933692244216, 62.30073991946644, 24.02444740782951, 8.745008271566933, 19.47206327074636, 22.281216534549863, 98.2762008071374, 40.905253803399475, 10.749709247468992, 23.55712497404387, 5.530397407368404, 18.4261392832687, 104.09546386279655, 23.416332349363937, 10.3069027093654, 36.27385087424243, 8.845759022766757, 54.057447488600715, 50.06917057968032, 21.519792835532662, 7.822169987294624, 20.556272254723595, 20.33586910803129, 70.99288540222916, 227.15132822420298, 88.14501789038032, 81.35978738885794, 10.78706380156947, 6.953870014275477, 8.57092169141575, 26.61951368030355, 59.30226171397661, 28.97782723391189, 50.54100663044627, 72.5276743259207, 21.5820929188146, 60.82421579191374, 54.062881595937114, 25.508632617401304, 148.9675090583015, 91.78025069844172, 42.52984320534781, 24.889938531632197, 124.49483276506376, 5.14326112526763, 7.239816539093344, 16.07300128354109, 11.278365791503445, 12.49526054050386, 68.70573201231338, 49.993740000884976, 115.5125267723389, 111.87931572297545, 74.28802386011176, 93.4319405784697, 81.7906982764578, 53.28902738106285, 33.434362316642165, 11.555471853528, 6.955512655185427, 133.20576250040503, 111.27412418300554, 15.947842830126131, 47.38223145871324, 77.42718208160923, 73.95530544479001, 19.68033832343636, 5.138236519271526, 19.493803727261092, 29.783927617110155, 156.25500396131142, 11.00129852118782, 61.9146092413505, 35.26617192103457, 39.764617681024546, 9.748114793501339, 11.337250417119932, 23.035296474738157, 23.59728448028161, 10.84751128968538, 5.16336937977337, 115.4779008605282, 67.30809862648132, 6.449053814612591, 36.760499587469965, 22.881173029844632, 33.64233247211417, 56.79184829876387, 49.856674919038696, 80.37409800016948, 107.5089589136651, 38.660967603142744, 42.7229469722224, 101.13958223655455, 43.01679587389953, 25.71430966303957, 25.813037810201543, 22.265899737084226, 22.093532246374096, 27.828220941822263, 21.46263340028953, 33.298450084432844, 216.43217666820618, 6.059485107386946, 29.05372197808356, 10.569220713647468, 30.8396265468783, 220.50655308182294, 6.013888514735898, 8.731481573078437, 11.213170406057896, 18.71257764030911, 40.647176223532206, 66.06508603016408, 91.89692462664055, 5.450334920600549, 14.978313474968157, 212.24238327595722, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([6567935.9375, 6603729.040526591, 6700776.551310956, 6750562.2365370905, 6750566.358527818, 6791721.030022081, 6792529.139535234, 6792557.65890233, 6891091.863169248, 6921982.63455866, 6942849.365002669, 6943475.477244546, 7034087.234456691, 7046545.3125, 7046705.566141555, 7046726.5625, 7087350.6537132785, 7087514.189134162, 7122872.516812878, 7124335.9375, 7125493.571811582, 7129350.0, 7143824.959765955, 7166346.610025612, 7181679.6875, 7184257.996665243, 7201141.714954239, 7222617.1875, 7225293.234986652, 7243513.879287436, 7249026.5625, 7290954.609392907, 7295355.101272951, 7319960.515266821, 7330224.98334304, 7347428.125, 7354400.0, 7360923.245117468, 7364279.485805633, 7364394.096323547, 7408303.0772614125, 7413803.5665409835, 7416445.836257186, 7419170.2981245, 7425810.596708227, 7445805.493507582, 7452553.709314995, 7469930.794283535, 7480757.715299258, 7486720.508309918, 7499598.233136468, 7499836.211714539, 7502926.226415586, 7524362.995260503, 7527206.462241953, 7529956.498015098, 7532881.6531260535, 7533659.375, 7536344.821012506, 7564049.280602819, 7564663.304197972, 7569524.388118803, 7578018.822877174, 7581862.1151341135, 7602312.274874777, 7604740.625, 7614036.818247284, 7622443.660835969, 7624376.101477257, 7684692.284976187, 7700007.043368239, 7712030.046568516, 7712748.4375, 7712809.924974035, 7712834.894507198, 7722269.775077848, 7723664.0625, 7736524.43622495, 7736838.041287075, 7760017.045429302, 7771951.5625, 7778057.752902221, 7779527.171236354, 7779925.693352276, 7782853.125, 7784558.328628717, 7785936.88219507, 7787898.087318743, 7814928.125, 7815309.375, 7825763.445055969, 7828708.557647902, 7829426.5625, 7830092.009400382, 7830693.9109866815, 7831728.552857401, 7831732.385688361, 7831885.247454032, 7831890.423539067, 7832565.578986691, 7834142.385589213, 7854429.6875, 7856226.104706271, 7864070.437715546, 7876966.259704989, 7880589.6189093, 7882148.4375, 7890989.011055049, 7896009.487700189, 7907358.981006985, 7911147.151185868, 7930704.050536358, 7937167.736464492, 7981101.53574811, 7982905.510400909, 7982911.601099473, 7991009.116386167, 7994882.815945058, 7995526.562500235, 7996968.75, 7997132.8125, 7997259.375, 7997528.894126841, 7999382.8125, 7999451.406572739, 8000521.598960914, 8001340.54655351, 8002493.641160484, 8004900.0, 8019863.257749396, 8050490.940376254, 8052502.516922933, 8052912.5, 8054577.573175202, 8056743.557008362, 8060862.3403448425, 8061218.638620612, 8062325.306785103, 8063143.75, 8064779.6875, 8065125.0, 8065707.8125, 8066831.25, 8069738.530140576, 8070018.1417916175, 8071065.625, 8071520.3125, 8075276.580128423, 8078269.879897586, 8080035.888694011, 8083697.732866599, 8084192.439767607, 8087635.7415430825, 8091363.642960823, 8093490.625, 8093511.505719955, 8093791.69203423, 8094124.77149621, 8094393.645368194, 8098614.151480549, 8100490.671449341, 8103347.36612775, 8106309.335040522, 8106524.207645784, 8106646.728165065, 8107553.99288423, 8107750.0, 8108568.074897826, 8108574.875575419, 8109445.3125, 8109917.1875, 8118988.061656679, 8126371.397182524, 8127037.5, 8137360.9375, 8138276.549868541, 8138546.875, 8146358.510128388, 8150812.641901381, 8150846.875, 8151134.656565969, 8151212.388081385, 8151368.75, 8151409.522551366, 8153255.126600416, 8153789.0625, 8153817.966163793, 8155898.026830442, 8156446.875, 8157243.75, 8157706.25, 8158243.453447301, 8158482.778226582, 8158973.325792379, 8159107.6934412755, 8159481.25, 8159875.0, 8160792.1875, 8161235.9375, 8161384.375, 8162765.435585038, 8162804.2275791075, 8162896.875, 8163873.4375, 8168106.25, 8169467.996099765, 8171236.080162597, 8174185.9375, 8177878.839530178, 8184637.293587447, 8186917.039602848, 8187486.119018609, 8187854.301589645, 8197430.908278247, 8200591.184419226, 8200687.5, 8202550.638564734, 8202787.808209642, 8204406.159284584, 8216409.375, 8216628.784291426, 8217099.010637187, 8217834.375, 8218059.375, 8218607.747409047, 8218975.054384135, 8219456.25, 8222623.433893314, 8228887.415000228, 8231350.444251694, 8232056.616932879, 8232085.9375, 8232166.070237056, 8232388.858043398, 8234298.4375, 8234339.0625, 8246771.875, 8246845.428018444, 8247053.102660169, 8247271.294336062, 8247606.957635918, 8247761.93571892, 8248145.931009307, 8248941.4732929235, 8249613.943854833, 8250464.840366453, 8250501.5625, 8251035.833440218, 8251727.983529237, 8252790.625, 8257232.165607202, 8257315.625, 8258550.0, 8259034.971116523, 8260445.730849909, 8261399.791149003, 8262066.549135099, 8263109.329242556, 8263116.653681101, 8263398.157903202, 8263411.525058741, 8263413.7349666115, 8263556.25, 8263623.1837643, 8264440.625, 8264448.658912616, 8264795.098374059, 8265389.0625, 8266489.0625, 8268416.767129256, 8269734.8880296685, 8269783.627159615, 8269857.254171709, 8270508.721896533, 8271274.839985591, 8271657.451295152, 8272498.598559784, 8272782.8125, 8272794.571145129, 8272818.275918345, 8273362.320826494, 8273473.751858408, 8275090.661709854, 8275831.813681829, 8278726.5625, 8279520.195077073, 8279640.625, 8280071.875, 8280198.727264249, 8280370.943557678, 8280726.453304997, 8281184.428281843, 8282260.871722144, 8282263.490463549, 8282317.73271139, 8282760.467585788, 8283062.878226407, 8283104.6556768995, 8283318.730256382, 8283406.25, 8284891.499134099, 8285182.636484118, 8285190.625, 8286909.536178242, 8287057.8125, 8287104.611788207, 8287705.714873812, 8288602.508177699, 8291387.5, 8292977.104065166, 8294512.5, 8295037.5, 8297166.564880393, 8297364.295575461, 8297421.094930058, 8297605.750544262, 8297907.8125, 8298004.525905476, 8298749.571136801, 8298912.5, 8298926.135349781, 8298938.564717693, 8299160.048890307, 8299419.258028322, 8299887.328162285, 8300007.0489433305, 8300640.625, 8302241.734032829, 8304465.625, 8304481.25, 8307273.1785590695, 8307992.740785825, 8309253.695209827, 8309729.6875, 8314463.155353357, 8314490.5302910125, 8316917.1875, 8317023.4375, 8322086.142949926, 8323117.811969689, 8323783.87184644, 8324908.68852121, 8325252.447856231, 8326037.222196745, 8326489.423794781, 8327878.845347271, 8336361.455836712, 8336774.505310053, 8337006.25, 8337038.91180952, 8337365.625, 8337370.414417942, 8337491.596905706, 8337600.0, 8337941.607558024, 8338282.510192309, 8339383.201819736, 8339468.75, 8339771.868639715, 8340240.497937211, 8340296.618068266, 8340404.6875, 8340444.114001682, 8340558.545630045, 8340652.743784736, 8340954.59508563, 8341013.754947747, 8341129.11477904, 8341692.124675065, 8342169.54047766, 8342231.076931097, 8342445.303891564, 8342563.389723048, 8342574.03017159, 8342579.6875, 8342918.866544131, 8343395.854739269, 8343669.451389819, 8343728.125, 8343928.00714226, 8343989.0625, 8344757.262931291, 8345452.418069685, 8346917.812310553, 8413900.0, 8414124.733998675, 8414473.9369231, 8414475.823618433, 8414806.25, 8414826.355632165, 8415645.30275076, 8415745.3125, 8415915.187811678, 8416425.0, 8417462.933841534, 8417542.1875, 8417576.277004827, 8417656.18705861, 8418535.25136882, 8419485.533044416, 8423298.122069867, 8423898.676591627, 8424127.421914335, 8424289.0625, 8424596.875, 8425052.734304857, 8426215.938868882, 8426236.138714196, 8426513.13115436, 8426689.228452154, 8427631.960757703, 8427655.900217544, 8427732.808655757, 8427736.990788572, 8427746.875, 8427747.985967817, 8428020.665868144, 8435320.387205917, 8436942.941605471, 8440320.3125, 8440533.479604132, 8441175.538988424, 8441814.178066725, 8441989.82420289, 8442784.02024606, 8442787.433597198, 8442817.1875, 8443678.125, 8444004.546441417, 8444418.75, 8444682.063657941, 8445362.217057072, 8445685.474633183, 8445714.0625, 8446106.25, 8447416.652851494, 8447620.288263246, 8447757.025966352, 8447859.339791013, 8448101.529748864, 8448637.085761532, 8448700.848289685, 8449142.1875, 8449855.986089349, 8450806.465489067, 8450812.5, 8450846.040032646, 8450864.0625, 8450864.0625, 8450877.254460627, 8451141.22399415, 8451178.125, 8451481.016759798, 8451510.869977897, 8451518.75, 8456322.623876642, 8456923.4375, 8457161.58035939, 8457185.9375, 8459140.625, 8460256.152673585, 8460281.25, 8460917.1875, 8460984.375, 8461600.0, 8461665.625, 8461801.5625, 8461834.18914509, 8461860.430311183, 8461967.150868332, 8462109.820199708, 8462113.304992616, 8462610.789462801, 8462710.9375, 8463444.72953157, 8464042.060282039, 8464043.75, 8464305.541488584, 8464357.795112262, 8464378.396131683, 8464507.671751328, 8464635.082298504, 8464653.9325544, 8465427.848010825, 8465518.75, 8465930.421526529, 8466073.524728647, 8466338.844615694, 8468233.645880139, 8469210.077873008, 8469335.259299176, 8469517.914630614, 8469735.36645816, 8469857.362977397, 8470051.514063532, 8470551.915391447, 8470854.452921541, 8471123.4375, 8472218.75, 8472383.567117795, 8472756.530452764, 8472884.375, 8473461.798154015, 8473545.3125, 8473747.917897413, 8473804.6875, 8474132.8125, 8474396.875, 8474533.525362596, 8474580.977351222, 8474589.012351243, 8474790.87113796, 8475664.0625, 8477247.936545776, 8478050.0, 8478106.25, 8478535.9375, 8479129.39786535, 8479568.57577915, 8479754.504586035, 8479793.668787036, 8481265.625, 8481381.25, 8500484.375, 8503016.77448112, 8517795.906423109, 8519293.75, 8527522.24340854, 8529113.445879865, 8530183.871958395, 8530881.117093308, 8532055.26739129, 8535925.0, 8541411.12660578, 8556406.215822406, 8557820.836879417, 8561910.807454752, 8581055.220470265, 8590142.1875, 8590839.832336055, 8591042.1875, 8591085.9375, 8591234.42111901, 8591346.875, 8591470.374001242, 8591593.776637651, 8592051.940009525, 8592226.5625, 8592633.213701703, 8592823.4375, 8593003.125, 8593090.481404869, 8593534.957443276, 8593988.681260154, 8594926.807933353, 8594941.854184024, 8595714.0625, 8597445.016942557, 8599712.687649617, 8599881.801867971, 8602375.413874583, 8604407.8125, 8606852.859432373, 8607445.593807464, 8612194.393772425, 8612930.128034467, 8616356.52205615, 8616435.222158216, 8616829.750797061, 8617131.385632208, 8617190.425072141, 8617383.865453202, 8617638.983406309, 8617666.703979224, 8617765.625, 8617889.594031133, 8617921.58839932, 8618263.875118017, 8619053.125, 8623540.003407644, 8623606.25, 8623649.26448201, 8623654.698115202, 8623812.289189316, 8624126.450950865, 8624475.0, 8625162.964937646, 8626244.473942496, 8630300.0, 8631873.87901697, 8633828.629446536, 8633909.375, 8633986.802954061, 8634879.42994245, 8634999.728191463, 8635067.033941198, 8635248.4375, 8635255.459151035, 8635324.497346694, 8635629.6875, 8635798.644502355, 8636345.3125, 8636446.875, 8636475.0, 8636524.418705832, 8636603.061609415, 8636680.772197928, 8636853.082097191, 8636997.433432288, 8637009.00450336, 8637389.891632441, 8637461.899847135, 8637489.922237806, 8639369.426599104, 8639389.896832343, 8639671.875, 8639753.989037449, 8639829.6875, 8639901.5625, 8640129.840625018, 8647425.728018576, 8650245.840113215, 8651910.585815094, 8655673.4375, 8655712.872036094, 8655910.492830297, 8659395.117971877, 8659685.9375, 8659721.155025791, 8661130.554708252, 8661365.429543456, 8661497.307849767, 8663014.0625, 8663257.67532046, 8664071.000974542, 8664368.75, 8664541.980308732, 8664696.20441992, 8665040.625, 8665805.629865952, 8666002.630472176, 8666542.142649386, 8666603.581085036, 8667179.425435964, 8682177.769075684, 8704278.125, 8726159.375, 8732735.9375, 8749470.490966268, 8756373.4375, 8756503.125, 8770212.793365048, 8771860.9375, 8772005.770467633, 8772823.4375, 8773334.118977385, 8773466.663493447, 8774026.5625, 8774693.75, 8774940.625, 8775643.62151286, 8775737.82517646, 8776334.443319965, 8776484.375, 8776567.1875, 8777302.155349672, 8777704.970393656, 8778124.881292675, 8779081.425418455, 8779846.425755657, 8781757.8125, 8781768.75, 8781883.584300617, 8787730.714724155, 8798507.483211882, 8805427.984417342, 8811730.213266417, 8811769.993357124, 8812203.49799166, 8813081.25, 8814104.741788123, 8814516.126507157, 8814716.91053632, 8814897.720670735, 8815107.633148627, 8815124.92960963, 8815465.16783723, 8815763.923061287, 8815938.486973515, 8816482.44150974, 8816873.395805875, 8816909.767061817, 8817796.875, 8818222.813868407, 8818269.74367298, 8818295.3125, 8818366.333033811, 8818423.4375, 8818489.696423078, 8818555.582047468, 8818726.5625, 8818739.443251953, 8818790.625, 8818879.6875, 8818897.127757918, 8819180.205837397, 8819210.498484751, 8819251.5625, 8819390.625, 8819404.6875, 8819715.625, 8819763.936842646, 8819914.0625, 8820734.375, 8820753.125, 8820951.17867835, 8821333.517920423, 8821376.02132064, 8821449.53314563, 8821546.289112998, 8821728.125, 8821854.6875, 8821989.999953942, 8822165.28266895, 8822446.202468801, 8822856.25, 8822989.0625, 8823338.041131755, 8823438.065397538, 8823654.6875, 8823840.085935228, 8823843.75, 8823940.313901931, 8824208.782960083, 8824373.4375, 8824419.773218008, 8824473.860241467, 8825037.105441632, 8825113.53891756, 8825123.4375, 8825286.540623438, 8825563.815359436, 8825593.594978007, 8825775.137836989, 8825942.1875, 8825977.316045819, 8826012.12689353, 8826077.7123481, 8826453.125, 8826668.592163332, 8827131.25, 8827229.61374873, 8827248.4375, 8827265.263177922, 8827272.28729259, 8827301.5625, 8827318.75, 8827334.271113098, 8827335.121098513, 8827403.125, 8827454.6875, 8827495.07888189, 8827521.77719464, 8827652.541855028, 8828107.337561453, 8828164.338448873, 8828514.73250841, 8828673.248873234, 8828806.25, 8828878.550224427, 8829028.125, 8829509.015893769, 8829514.595481256, 8829657.555299852, 8830246.875, 8830289.794978842, 8830765.83290301, 8830803.125, 8830832.930801151, 8830857.994359002, 8830874.939123858, 8830914.270219538, 8830967.264090935, 8831693.75, 8831836.923721805, 8831945.859277682, 8832408.134531558, 8833311.67614407, 8834070.3125, 8837692.1213367, 8838402.888217114, 8838622.149594203, 8838959.375, 8839829.6875, 8839861.074136076, 8839868.779197833, 8840873.4375, 8841582.433823071, 8841603.067297803, 8841880.819405576, 8841890.969919516, 8841978.640038716, 8842133.998427028, 8842208.3384602, 8842220.3125, 8842300.976292804, 8842382.8125, 8842412.22185558, 8842666.023898637, 8843316.042711727, 8843501.469352119, 8843536.063622402, 8843939.821750073, 8843954.61850643, 8844239.0625, 8844304.80260955, 8844658.368443355, 8844743.852435824, 8846129.6875, 8861859.517861735, 8873036.221597586, 8876247.05065702, 8877593.470230496, 8878989.497363338, 8879015.475558426, 8879323.4375, 8879515.00003486, 8880193.780753901, 8880460.9375, 8880500.0, 8880689.0625, 8880863.585018205, 8881034.375, 8881367.768755669, 8881418.210130787, 8882512.250741353, 8882663.533072311, 8882877.841923604, 8883032.8125, 8883460.618470838, 8883935.017009666, 8884371.702423591, 8885445.892758548, 8885898.349520937, 8886584.375, 8886719.239197139, 8888687.951321745, 8889531.829066379, 8894087.5, 8900455.810135629, 8900464.524920683, 8901837.310845066, 8902645.3125, 8905254.072809488, 8905600.557436423, 8905984.375, 8908082.151887065, 8908209.375, 8909790.77870789, 8910506.25, 8910732.8125, 8922906.25, 8929903.125, 8933087.5, 8933350.099319946, 8933542.1875, 8933808.000779588, 8933882.246222308, 8934065.625, 8934078.109357022, 8934416.333172537, 8934802.429889763, 8934827.251768481, 8934919.081968995, 8935658.24695988, 8936317.676814808, 8936323.4375, 8936639.0625, 8936655.831123993, 8936658.405067906, 8936664.563518144, 8936701.5625, 8936831.25, 8937642.1875, 8938349.758472808, 8938564.839255022, 8939282.082847927, 8939402.700535124, 8940666.270240996, 8940754.6875, 8942154.43141553, 8942709.477480493, 8942729.63209121, 8943281.938128466, 8943453.965365127, 8943838.735861463, 8943890.027682904, 8944454.484528866, 8944544.676296094, 8944615.034757165, 8944818.75, 8944912.51920092, 8944969.317297447, 8945313.46316323, 8945588.43810236, 8946076.5625, 8946078.125, 8946083.57030156, 8946874.621544845, 8947326.333058748, 8947332.13417558, 8947528.62659343, 8947852.348831804, 8948467.1875, 8948537.5, 8948639.0625, 8949090.625, 8949451.071375059, 8949510.125463523, 8950077.423443718, 8950313.88869268, 8950948.257429043, 8951559.375, 8951639.0625, 8951862.284240523, 8951967.1875, 8952036.525056917, 8952201.99442324, 8952215.89324077, 8952548.531795098, 8952604.682783674, 8952801.5625, 8953154.78159797, 8953261.852854803, 8953687.5, 8953980.585853688, 8954015.625, 8954124.487125307, 8954142.83619035, 8954785.880729632, 8954794.007454518, 8954883.703745794, 8955054.6875, 8955061.765566068, 8955112.856950192, 8955322.96594634, 8955834.375, 8956169.988215694, 8956607.109310387, 8957472.233402513, 8957639.545122698, 8959406.25, 8968752.5561686, 8970096.79259407, 8976360.9375, 8978289.0625, 8978765.625, 8979391.079877036, 8979400.130046953, 8979709.016847389, 8979884.320416795, 8980949.813025445, 8982126.476752507, 8982440.625, 8983131.093898904, 8983212.252981847, 8988332.8125, 8994726.191232558, 9000841.894532226, 9001075.0, 9004196.871098632, 9004267.1875, 9004970.216718804, 9006307.8125, 9007013.684860095, 9009175.0, 9014438.865113346, 9015346.714601345, 9015509.220946483, 9016518.777505074, 9017580.808155214, 9019331.213805601, 9019627.62194041, 9019784.375, 9019814.89718, 9019851.282771714, 9021252.88799304, 9023212.110682327, 9023313.238116745, 9023701.5625, 9024735.19230535, 9026871.068655754, 9028732.866497444, 9028981.979855353, 9029826.037889145, 9030385.244131196, 9030850.636023726, 9030973.168426583, 9030976.572122581, 9030993.75, ...], [80.6227434592103, 20.142388047725174, 14.899032838330918, 24.228948210633867, 12.507142227213519, 5.493429873353301, 13.842570103380806, 6.463280024835945, 88.8730019532846, 73.85510169881415, 20.244440070071658, 98.22414510496183, 34.00573627799418, 52.99934290085128, 19.83614577540483, 41.46153396033414, 79.52840879438895, 6.507127174807035, 27.72159871329285, 90.37075109687274, 25.44228556362277, 44.44018140285856, 14.790342009586745, 10.737341400339966, 32.82716592568082, 39.44124844523117, 7.4408229742657435, 100.58615729613076, 67.48004451377429, 138.08602118764716, 37.387713675014986, 27.069656894537406, 16.78604584372385, 55.394680366784755, 7.597224234421178, 68.62705003410247, 41.22132715810148, 50.836213301835414, 90.8241980119889, 6.834674722133688, 66.81954393307805, 25.5471759514051, 92.876824967418, 114.00679131781033, 41.73172747066822, 26.51771284304433, 5.309484136916638, 64.72393082839223, 78.12724498086189, 6.803238430638208, 7.530958251053448, 35.92296335825365, 46.61893265374371, 12.001423265313779, 15.817280816731339, 61.528933142007766, 6.5521977675091065, 34.27529908566991, 104.61380989996931, 75.09127376181596, 76.32754963323151, 20.445193767146414, 31.028725986297303, 6.689028821220802, 28.882048398368333, 143.99238499131457, 12.854385057733404, 96.87348831773063, 61.49178298048489, 15.326531626196548, 31.895428420838336, 6.544891064992448, 135.606135544653, 5.56038145592697, 5.216862558867843, 8.021453878596322, 28.769983854626616, 5.032169573261715, 5.2174351529597445, 31.24082939320106, 83.69701958917908, 14.57420053260788, 17.911512269634287, 22.45721616870242, 66.89959867371849, 17.35678079213207, 20.393267408609802, 54.09150609507431, 55.677802521774154, 81.63753127201079, 5.887379891080527, 108.19430382145806, 57.1546864206609, 25.443626203172904, 62.855013539469454, 64.91785839566468, 59.703724818043995, 18.69528703961456, 22.095138690930778, 134.91181475511604, 15.75440623213162, 58.89638105794319, 30.40356812733085, 8.353922283160605, 6.156687305776541, 17.592394560317, 30.607218724480642, 27.54641765785304, 177.1090113015387, 22.620036595216565, 93.12971079980892, 10.25938805071941, 9.843138473421293, 77.91062041645992, 19.395229125972403, 9.963522449660594, 24.294190671187845, 29.568296572412535, 17.356101716390953, 48.49495303655256, 89.83179141294515, 47.699340901293134, 10.079090428337299, 30.83682182518227, 86.69691318835561, 29.37741919793904, 118.78888425562262, 26.543850920540923, 178.59684686037085, 38.36897418178742, 7.206897947953812, 146.78556153722297, 66.45553239237633, 38.95342931975209, 10.838877725446217, 5.925621348948986, 26.50148191525319, 11.643662456800861, 31.28479441814407, 98.55214966705415, 112.90778838956834, 65.31719662466908, 44.92556084052376, 13.238286372398735, 60.37837479689176, 72.16898665374296, 32.4730627567573, 73.10883171609723, 5.382189618695119, 27.59469627819643, 7.3668266869507395, 11.546322492862801, 38.640978074980936, 31.597075376306393, 55.89504826786613, 17.66310408705445, 54.82235785616889, 77.43668103386133, 10.968006409699049, 45.35558492073598, 27.895054497140272, 22.779243281408352, 68.44533475960286, 51.86779691486251, 51.785904068507406, 36.11505459406882, 36.18743671134962, 29.938414642418646, 65.44444675166186, 66.344492451765, 29.977601838965857, 40.531130618254394, 8.0490905164253, 130.1617852340275, 36.49486994780612, 28.277333880876864, 34.70847281678894, 12.426718462777817, 11.356996252643711, 81.13199239892248, 9.581398736239768, 34.07669685306363, 34.21477163727883, 9.459362275440663, 19.315665243065347, 36.77551336004898, 27.288965169176006, 22.433039415888945, 50.224823711111675, 57.25869334609388, 75.48154872668582, 95.95336525559122, 14.812464780145561, 51.5925550585911, 7.090502527636772, 69.0226261987929, 54.20883322886325, 50.525540966738745, 49.5455548012941, 31.01323432607239, 24.572554641954188, 80.60727389211789, 40.19460965350637, 54.14841487600363, 73.34993595076142, 24.897376200217852, 108.26904099331827, 77.53314924395355, 32.973419786537306, 25.024632172181214, 7.55060757849065, 80.10680500340177, 24.064895445093086, 5.789121165317098, 94.02852365265755, 156.41066570211055, 54.97655060081135, 11.646241193218133, 44.99339620924646, 46.35480197913222, 6.902676111776427, 110.72817492801465, 76.13732460844237, 71.78059499775776, 7.104445703860406, 49.208432652692295, 42.28810480035326, 6.762786734999605, 32.97814654264757, 6.3250068261878365, 11.754150800136609, 55.78303315250389, 115.0610355370442, 69.8127043945092, 95.25125014485413, 42.45058537201799, 92.98854461789585, 5.94952909963535, 14.857038668341877, 57.42455509363987, 12.448978256568969, 20.874965183194586, 34.70273978233688, 167.79789167510808, 78.19823753850824, 6.01013576877599, 37.99912307810661, 64.50374461099307, 35.77247345996895, 50.2832616057757, 8.838405001055474, 36.58559256591904, 32.06410309684569, 15.842248912842454, 7.761896243632423, 65.12260412167596, 26.201172377447264, 27.65071867751508, 32.09088254003101, 24.014910560717755, 12.189714321753986, 23.405298638468363, 30.278779733268856, 66.24267088196157, 57.935931609388874, 30.161628160219426, 10.808733926041079, 30.624983549745178, 122.65137146034631, 67.99474123198434, 17.338999998354982, 10.130434605119122, 8.900071814016679, 55.86495627871737, 38.66317874334579, 22.999198783940653, 14.93314946795649, 116.99100807792657, 12.710307404616806, 25.033934305188893, 90.82684446080408, 40.14880213625432, 15.083300946134559, 17.635845596019774, 45.45602234198573, 90.18467061024488, 32.69299715117594, 80.8630549397913, 16.174345792648637, 18.05236281680173, 10.96121231218403, 6.495476189154178, 68.94813573874106, 8.890416651704948, 105.24869030141033, 56.320171207621925, 114.92375369769033, 139.18883836372055, 24.102365645091588, 49.2250587347494, 19.799533878873095, 76.03524078790764, 38.399025195373625, 15.593621041217826, 34.89615761666992, 12.749787493515157, 53.38278337858783, 13.017093116169747, 60.843450313081824, 22.961047304736542, 115.47976432631381, 36.54875910470265, 28.223708152369298, 138.39277893892472, 5.147583865505021, 10.427514388418718, 40.88523997781872, 5.0659695209906745, 22.233345405588807, 35.801125121447, 27.302704237168584, 21.515251473951214, 9.9745873390839, 87.9293386076473, 25.538596281355307, 6.175319078985166, 28.689257260353227, 20.490276261077412, 65.31426949949513, 127.89586081036477, 138.54380275861837, 5.30848939091473, 12.15361929551458, 41.27072573818401, 6.594976947714893, 9.252585018012429, 49.07981952078259, 44.21454878125623, 51.14018609364875, 40.55910898280737, 75.51609790488685, 29.65570803778341, 27.82371703931741, 21.178018153807344, 11.743652187025672, 18.646288656282834, 41.22576348945761, 33.830549860738245, 30.9793158954271, 9.20715529027342, 54.129139265331894, 15.344743246745258, 8.877410583621279, 113.0908710802509, 46.7384732944211, 5.3316683324633996, 16.666825846525537, 33.46065636144242, 17.229893722125144, 19.625600317347285, 100.8229650799652, 62.86054555186548, 16.537738149111448, 18.735550749114882, 13.663584506207393, 26.821807571185865, 32.885842129441855, 43.132642605174, 27.340501366448752, 7.916560737430086, 72.92320488580253, 5.130318254883999, 12.876513026327194, 27.425514844880553, 44.359978307083274, 88.19197727440032, 76.3551639056493, 10.004369945348486, 29.270237198997002, 30.863344410260478, 85.63093023152113, 21.012477958151432, 6.630129083848133, 25.509110957796803, 33.29068033182357, 24.194964590318097, 93.65599835468637, 12.716189178806728, 70.49370441588435, 5.523124123372722, 88.35062322448962, 74.02311095062176, 22.143430939887388, 42.69252592234533, 6.134407593502862, 60.56856840322145, 8.141160470873626, 27.33841304803344, 6.633843644479978, 16.132930383319096, 13.86165712565314, 282.5828776725248, 178.8646779443496, 45.68060164135695, 62.66672388104821, 153.36884921523938, 43.875724113893824, 7.677671586618371, 8.651145872608705, 8.376329547885852, 203.32878134365615, 5.909512400441994, 8.284545471816122, 39.88367110518204, 72.883442297011, 29.769402299740015, 117.03845016621489, 13.589620477789694, 41.417003857575374, 50.359119947125656, 18.577022538034008, 16.406986993091166, 5.949533357559017, 12.61492645979159, 13.742258284840535, 6.081221023955844, 69.36001421297068, 54.74323372788567, 86.75805693772034, 68.00723093082837, 16.182606517696378, 13.962608849709444, 23.35061614768373, 65.19790356317569, 55.041912392501374, 6.987660329065251, 28.05400934141215, 16.474026522145483, 27.846665185567467, 27.892795910858723, 22.39351636003613, 12.775315462484965, 36.76914991778537, 24.222945518866183, 68.93911744475628, 41.78156636902415, 18.69632743636316, 71.60753053833983, 57.940227238304985, 44.19078976091832, 17.850940433883604, 139.09520934255963, 10.78171098578586, 14.690244427211814, 62.25665259728454, 14.162537481537235, 164.33835475070532, 263.55317487859656, 41.42560086941908, 79.00902217189989, 196.22153903077464, 61.218834827957494, 73.2459293019295, 57.07025565652378, 51.813987310839714, 118.8466620251768, 47.862032013498755, 198.24125408079578, 10.417806522565234, 45.86743108625057, 11.903025928072546, 12.672097158247878, 25.907495565187443, 93.66375557085205, 20.70353516656614, 7.557864187783279, 53.75832941327521, 88.41018607133537, 28.185300550929437, 112.54726964099254, 14.430872342601885, 18.556303442086367, 12.67813400624271, 80.79038164041938, 60.39842440468112, 8.717042395711928, 50.8415091339409, 54.247009515653914, 5.029467332552646, 11.49901906007123, 10.210762880140027, 18.693518465266937, 59.754460805622685, 8.978184639337135, 7.108777127235512, 62.701128882713846, 24.62399963897157, 130.00280301329812, 120.42002858373505, 103.58768980471834, 18.6839520855098, 35.28162684153131, 10.183239941134614, 30.454970116948154, 58.63731909734514, 96.9271354062512, 226.29908831270555, 89.4009728143746, 31.986826901443635, 185.3119164849257, 161.33007712232276, 13.996931465171356, 63.588610101694066, 20.85140113838211, 92.78656055326138, 69.33998011429173, 60.106203549684345, 34.65647257372143, 19.49328110576059, 25.371186768682136, 7.574126091492366, 36.976377307762704, 51.78258681474345, 69.34865350231243, 173.1894611568428, 19.391155260741048, 79.07901423966689, 16.560012503768718, 37.26922779878091, 161.31231002971097, 31.97790655238017, 12.17372090024863, 34.575384084027064, 18.627179227476468, 14.81282119391562, 5.7409639290352805, 9.223811112599089, 31.850023240760592, 85.1038404058743, 25.208080899899677, 30.72083027582615, 46.02669916199413, 33.19589448045201, 46.327024184414036, 11.22521745141505, 9.354028834882934, 87.46759668296056, 123.41615737841644, 21.94673151784219, 44.16459987154694, 47.783033294626385, 5.803431308002094, 6.58244219765065, 22.765668768149393, 24.54195750775783, 13.806976691101614, 37.53082241231001, 180.94323840209762, 55.949495261089126, 219.40364023694107, 11.842729361837197, 29.353280966362025, 10.736517772506973, 5.253087317997877, 64.32922149998959, 80.43099647024292, 138.16043083486431, 72.58687003131774, 174.30736898743703, 15.484967745726431, 14.230563092276233, 8.934765009908633, 48.44150708094368, 19.91283714555081, 57.1121280701359, 95.30921957630352, 135.086380298882, 20.485843873063516, 114.23559231381779, 20.360242594541027, 33.250857236295225, 52.384100424877595, 12.252124798021653, 9.159292774361289, 26.49865602604835, 118.95194026220508, 102.85484385380794, 6.005031810036032, 76.3959937452162, 8.534726026473077, 57.30931855920185, 93.28758278952827, 47.14744766799672, 9.12272207696104, 5.794138820258728, 25.820773749995208, 52.70460892013447, 19.01140608207845, 21.466672859747455, 125.41786976918084, 15.793922956868373, 103.97647191873536, 48.60468113157142, 58.68806927419452, 6.652751359366797, 60.56758473595613, 29.82814227251953, 37.241147808380425, 17.604452732131747, 10.59409857825857, 12.72933185642546, 10.303478865060198, 19.683749409673858, 9.977507124790531, 47.152021901932166, 30.013303082403173, 215.05997636499384, 33.46675557629148, 30.254078796256206, 15.55914089496112, 13.648672995403619, 5.078618035485895, 31.112963198075732, 35.745476884901336, 5.138533707620276, 24.590563385246845, 30.815537131069828, 119.28125013939814, 19.547574671298182, 10.190843195757738, 25.184778290008147, 5.638447806670092, 75.42822341824069, 41.469386089164196, 74.3430913506418, 43.074153985590755, 23.888768464800187, 10.21968871528357, 93.2667579166506, 10.279464896556979, 13.341058062415602, 91.6539180955323, 17.87968668867299, 6.7122915073628375, 65.85981744385022, 33.97364052002432, 130.86199983093277, 30.24567656414325, 27.4400906027032, 34.641188331492344, 28.603657132863137, 97.80470498232638, 87.83677774224584, 42.210612193431785, 45.275471693517375, 24.329230271894446, 83.97922618631915, 61.19770859809286, 81.6421949842854, 80.97113436346757, 5.9282936546338165, 11.677095480666074, 6.7772232015538405, 72.14067833980124, 104.71805735248901, 45.29706645619697, 16.14180557131571, 68.18163950879092, 15.655112360665708, 147.19661479903286, 37.05658883973705, 32.426065020078624, 27.674438515183915, 48.01563539829709, 91.47334470062637, 6.073600857167196, 12.06264929310341, 30.316186561101127, 67.74536696028538, 89.41145061966922, 7.135795853038922, 9.794795478233327, 38.88613319201963, 10.16593252111778, 82.64871161734959, 58.168094595202604, 45.67399001308769, 10.916532278105166, 16.6214175509378, 22.884404146220078, 41.054887365380964, 222.9974993314048, 32.99835359534685, 6.645078320763906, 58.82360905691458, 57.245830461864635, 25.777797292398866, 37.453765387211014, 35.054291447453636, 118.39849647309036, 106.27327081168907, 6.316532766371843, 30.3982111559038, 35.649383309923806, 40.22270980825495, 23.616389631373938, 5.6793761851294455, 52.37740779065618, 70.40676756302085, 67.89272681344642, 80.12644696377498, 26.26628028076348, 55.168201351279464, 90.93493611904087, 43.78946946039316, 6.689224713213583, 8.6985170879477, 8.01972556921533, 73.37732320163168, 5.582433390017065, 55.22415270968269, 38.40668002769969, 10.273591067668091, 30.798114816841185, 7.960306534682348, 51.20747914915166, 81.04405823622768, 15.47588350485427, 6.148937620777043, 59.04565462902272, 13.220315160988562, 84.93392498412032, 32.93026389261156, 131.97951817384902, 78.10038119941997, 6.201386344728845, 6.322128168380764, 29.061944409260164, 21.261034819926373, 102.50144298494953, 7.836985276919561, 14.076370002193652, 14.381821538872165, 9.450736534312448, 55.355603464256816, 18.88044687478613, 73.98786474734008, 13.571812043891212, 33.21794450946403, 8.204837794170434, 66.3985767992489, 11.014352925871869, 87.68861119877135, 22.99191595995918, 38.013186969543064, 100.82642361806369, 36.111314884292774, 7.094408123175718, 85.0715448318206, 92.11847136032176, 49.6209705663238, 24.63740398257133, 36.26982909535324, 20.701932592586772, 34.86810298350271, 6.1172733945636315, 18.305276445452602, 33.52797790110424, 98.32266546374684, 87.41006848741964, 56.60913301917651, 6.693870708862972, 17.454329885915726, 24.313291916380983, 47.755677938346444, 8.716036087698813, 142.02335979370642, 173.00901028578335, 5.403015912962168, 7.670364519807886, 6.259537622351688, 75.49388879861147, 24.730530532389512, 66.22936337536537, 13.121882510388584, 109.96122345668182, 6.538785865820837, 38.53222606437176, 61.92345340710382, 7.579481563232784, 20.287522038014053, 16.10273581390162, 44.442596263041466, 93.32352214671502, 15.489197826924784, 9.356214221008791, 85.60736516437497, 34.61695990016543, 27.43274128192944, 36.20657119067326, 11.713327877639822, 12.041007374472358, 92.81045676050502, 88.16385766622264, 35.79553098860598, 84.45653463112734, 51.637466647599084, 6.709219214942955, 9.693119554813938, 8.520554122922798, 26.809246270604564, 100.47150955857532, 64.04973922342332, 8.250426272519784, 64.82616859596769, 32.613690012464836, 145.9348744619159, 29.20072292179389, 29.94243080414317, 110.13403811423782, 9.583760057067202, 158.26983445520418, 24.012644289537533, 18.171053978084387, 14.400942001376425, 34.714419710268025, 35.020208948251714, 58.26266126124862, 139.918490198669, 73.35118787810366, 29.42685999293475, 10.45526971750667, 108.87261934590178, 17.742028913531332, 5.507440370554194, 99.1421112982979, 102.50418494888766, 23.969351450055207, 84.31267398992807, 86.09732905120819, 7.301102639102124, 54.66561034620394, 30.091313923900085, 26.89806179244221, 125.17851790114744, 17.203866713538336, 11.914923344199996, 7.8270229981043595, 37.6836840123603, 6.043521243576157, 17.055353038389857, 18.009510749919045, 76.45389099059419, 32.0497758683308, 9.85185872962046, 57.344759712797945, 27.67847046999057, 103.52171251105094, 15.561629388498634, 66.36574925311818, 102.91802324820814, 68.19468989396626, 34.57681418783153, 63.95254308144558, 9.416819893247208, 54.853154782426614, 5.955971490997529, 80.63926609216277, 33.373336029136276, 105.57024026564991, 6.164974839960788, 19.74507474958446, 229.37079651256107, 6.83164210872221, 7.768314652612656, 59.17821778503982, 44.83546810548869, 51.973877415188355, 76.17375548137969, 12.200198163453315, 17.27054032687646, 39.55147936090389, 49.144933692244216, 62.30073991946644, 24.02444740782951, 8.745008271566933, 19.47206327074636, 22.281216534549863, 98.2762008071374, 40.905253803399475, 10.749709247468992, 23.55712497404387, 5.530397407368404, 18.4261392832687, 104.09546386279655, 23.416332349363937, 10.3069027093654, 36.27385087424243, 8.845759022766757, 54.057447488600715, 50.06917057968032, 21.519792835532662, 7.822169987294624, 20.556272254723595, 20.33586910803129, 70.99288540222916, 227.15132822420298, 88.14501789038032, 81.35978738885794, 10.78706380156947, 6.953870014275477, 8.57092169141575, 26.61951368030355, 59.30226171397661, 28.97782723391189, 50.54100663044627, 72.5276743259207, 21.5820929188146, 60.82421579191374, 54.062881595937114, 25.508632617401304, 148.9675090583015, 91.78025069844172, 42.52984320534781, 24.889938531632197, 124.49483276506376, 5.14326112526763, 7.239816539093344, 16.07300128354109, 11.278365791503445, 12.49526054050386, 68.70573201231338, 49.993740000884976, 115.5125267723389, 111.87931572297545, 74.28802386011176, 93.4319405784697, 81.7906982764578, 53.28902738106285, 33.434362316642165, 11.555471853528, 6.955512655185427, 133.20576250040503, 111.27412418300554, 15.947842830126131, 47.38223145871324, 77.42718208160923, 73.95530544479001, 19.68033832343636, 5.138236519271526, 19.493803727261092, 29.783927617110155, 156.25500396131142, 11.00129852118782, 61.9146092413505, 35.26617192103457, 39.764617681024546, 9.748114793501339, 11.337250417119932, 23.035296474738157, 23.59728448028161, 10.84751128968538, 5.16336937977337, 115.4779008605282, 67.30809862648132, 6.449053814612591, 36.760499587469965, 22.881173029844632, 33.64233247211417, 56.79184829876387, 49.856674919038696, 80.37409800016948, 107.5089589136651, 38.660967603142744, 42.7229469722224, 101.13958223655455, 43.01679587389953, 25.71430966303957, 25.813037810201543, 22.265899737084226, 22.093532246374096, 27.828220941822263, 21.46263340028953, 33.298450084432844, 216.43217666820618, 6.059485107386946, 29.05372197808356, 10.569220713647468, 30.8396265468783, 220.50655308182294, 6.013888514735898, 8.731481573078437, 11.213170406057896, 18.71257764030911, 40.647176223532206, 66.06508603016408, 91.89692462664055, 5.450334920600549, 14.978313474968157, 212.24238327595722, ...])
caption, T_hit,count1 = 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, count1, caption);
([6567935.9375, 6603729.040526591, 6700776.551310956, 6750562.2365370905, 6750566.358527818, 6791721.030022081, 6792529.139535234, 6792557.65890233, 6891091.863169248, 6921982.63455866, 6942849.365002669, 6943475.477244546, 7034087.234456691, 7046545.3125, 7046705.566141555, 7046726.5625, 7087350.6537132785, 7087514.189134162, 7122872.516812878, 7124335.9375, 7125493.571811582, 7129350.0, 7143824.959765955, 7166346.610025612, 7181679.6875, 7184257.996665243, 7201141.714954239, 7222617.1875, 7225293.234986652, 7243513.879287436, 7249026.5625, 7290954.609392907, 7295355.101272951, 7319960.515266821, 7330224.98334304, 7347428.125, 7354400.0, 7360923.245117468, 7364279.485805633, 7364394.096323547, 7408303.0772614125, 7413803.5665409835, 7416445.836257186, 7419170.2981245, 7425810.596708227, 7445805.493507582, 7452553.709314995, 7469930.794283535, 7480757.715299258, 7486720.508309918, 7499598.233136468, 7499836.211714539, 7502926.226415586, 7524362.995260503, 7527206.462241953, 7529956.498015098, 7532881.6531260535, 7533659.375, 7536344.821012506, 7564049.280602819, 7564663.304197972, 7569524.388118803, 7578018.822877174, 7581862.1151341135, 7602312.274874777, 7604740.625, 7614036.818247284, 7622443.660835969, 7624376.101477257, 7684692.284976187, 7700007.043368239, 7712030.046568516, 7712748.4375, 7712809.924974035, 7712834.894507198, 7722269.775077848, 7723664.0625, 7736524.43622495, 7736838.041287075, 7760017.045429302, 7771951.5625, 7778057.752902221, 7779527.171236354, 7779925.693352276, 7782853.125, 7784558.328628717, 7785936.88219507, 7787898.087318743, 7814928.125, 7815309.375, 7825763.445055969, 7828708.557647902, 7829426.5625, 7830092.009400382, 7830693.9109866815, 7831728.552857401, 7831732.385688361, 7831885.247454032, 7831890.423539067, 7832565.578986691, 7834142.385589213, 7854429.6875, 7856226.104706271, 7864070.437715546, 7876966.259704989, 7880589.6189093, 7882148.4375, 7890989.011055049, 7896009.487700189, 7907358.981006985, 7911147.151185868, 7930704.050536358, 7937167.736464492, 7981101.53574811, 7982905.510400909, 7982911.601099473, 7991009.116386167, 7994882.815945058, 7995526.562500235, 7996968.75, 7997132.8125, 7997259.375, 7997528.894126841, 7999382.8125, 7999451.406572739, 8000521.598960914, 8001340.54655351, 8002493.641160484, 8004900.0, 8019863.257749396, 8050490.940376254, 8052502.516922933, 8052912.5, 8054577.573175202, 8056743.557008362, 8060862.3403448425, 8061218.638620612, 8062325.306785103, 8063143.75, 8064779.6875, 8065125.0, 8065707.8125, 8066831.25, 8069738.530140576, 8070018.1417916175, 8071065.625, 8071520.3125, 8075276.580128423, 8078269.879897586, 8080035.888694011, 8083697.732866599, 8084192.439767607, 8087635.7415430825, 8091363.642960823, 8093490.625, 8093511.505719955, 8093791.69203423, 8094124.77149621, 8094393.645368194, 8098614.151480549, 8100490.671449341, 8103347.36612775, 8106309.335040522, 8106524.207645784, 8106646.728165065, 8107553.99288423, 8107750.0, 8108568.074897826, 8108574.875575419, 8109445.3125, 8109917.1875, 8118988.061656679, 8126371.397182524, 8127037.5, 8137360.9375, 8138276.549868541, 8138546.875, 8146358.510128388, 8150812.641901381, 8150846.875, 8151134.656565969, 8151212.388081385, 8151368.75, 8151409.522551366, 8153255.126600416, 8153789.0625, 8153817.966163793, 8155898.026830442, 8156446.875, 8157243.75, 8157706.25, 8158243.453447301, 8158482.778226582, 8158973.325792379, 8159107.6934412755, 8159481.25, 8159875.0, 8160792.1875, 8161235.9375, 8161384.375, 8162765.435585038, 8162804.2275791075, 8162896.875, 8163873.4375, 8168106.25, 8169467.996099765, 8171236.080162597, 8174185.9375, 8177878.839530178, 8184637.293587447, 8186917.039602848, 8187486.119018609, 8187854.301589645, 8197430.908278247, 8200591.184419226, 8200687.5, 8202550.638564734, 8202787.808209642, 8204406.159284584, 8216409.375, 8216628.784291426, 8217099.010637187, 8217834.375, 8218059.375, 8218607.747409047, 8218975.054384135, 8219456.25, 8222623.433893314, 8228887.415000228, 8231350.444251694, 8232056.616932879, 8232085.9375, 8232166.070237056, 8232388.858043398, 8234298.4375, 8234339.0625, 8246771.875, 8246845.428018444, 8247053.102660169, 8247271.294336062, 8247606.957635918, 8247761.93571892, 8248145.931009307, 8248941.4732929235, 8249613.943854833, 8250464.840366453, 8250501.5625, 8251035.833440218, 8251727.983529237, 8252790.625, 8257232.165607202, 8257315.625, 8258550.0, 8259034.971116523, 8260445.730849909, 8261399.791149003, 8262066.549135099, 8263109.329242556, 8263116.653681101, 8263398.157903202, 8263411.525058741, 8263413.7349666115, 8263556.25, 8263623.1837643, 8264440.625, 8264448.658912616, 8264795.098374059, 8265389.0625, 8266489.0625, 8268416.767129256, 8269734.8880296685, 8269783.627159615, 8269857.254171709, 8270508.721896533, 8271274.839985591, 8271657.451295152, 8272498.598559784, 8272782.8125, 8272794.571145129, 8272818.275918345, 8273362.320826494, 8273473.751858408, 8275090.661709854, 8275831.813681829, 8278726.5625, 8279520.195077073, 8279640.625, 8280071.875, 8280198.727264249, 8280370.943557678, 8280726.453304997, 8281184.428281843, 8282260.871722144, 8282263.490463549, 8282317.73271139, 8282760.467585788, 8283062.878226407, 8283104.6556768995, 8283318.730256382, 8283406.25, 8284891.499134099, 8285182.636484118, 8285190.625, 8286909.536178242, 8287057.8125, 8287104.611788207, 8287705.714873812, 8288602.508177699, 8291387.5, 8292977.104065166, 8294512.5, 8295037.5, 8297166.564880393, 8297364.295575461, 8297421.094930058, 8297605.750544262, 8297907.8125, 8298004.525905476, 8298749.571136801, 8298912.5, 8298926.135349781, 8298938.564717693, 8299160.048890307, 8299419.258028322, 8299887.328162285, 8300007.0489433305, 8300640.625, 8302241.734032829, 8304465.625, 8304481.25, 8307273.1785590695, 8307992.740785825, 8309253.695209827, 8309729.6875, 8314463.155353357, 8314490.5302910125, 8316917.1875, 8317023.4375, 8322086.142949926, 8323117.811969689, 8323783.87184644, 8324908.68852121, 8325252.447856231, 8326037.222196745, 8326489.423794781, 8327878.845347271, 8336361.455836712, 8336774.505310053, 8337006.25, 8337038.91180952, 8337365.625, 8337370.414417942, 8337491.596905706, 8337600.0, 8337941.607558024, 8338282.510192309, 8339383.201819736, 8339468.75, 8339771.868639715, 8340240.497937211, 8340296.618068266, 8340404.6875, 8340444.114001682, 8340558.545630045, 8340652.743784736, 8340954.59508563, 8341013.754947747, 8341129.11477904, 8341692.124675065, 8342169.54047766, 8342231.076931097, 8342445.303891564, 8342563.389723048, 8342574.03017159, 8342579.6875, 8342918.866544131, 8343395.854739269, 8343669.451389819, 8343728.125, 8343928.00714226, 8343989.0625, 8344757.262931291, 8345452.418069685, 8346917.812310553, 8413900.0, 8414124.733998675, 8414473.9369231, 8414475.823618433, 8414806.25, 8414826.355632165, 8415645.30275076, 8415745.3125, 8415915.187811678, 8416425.0, 8417462.933841534, 8417542.1875, 8417576.277004827, 8417656.18705861, 8418535.25136882, 8419485.533044416, 8423298.122069867, 8423898.676591627, 8424127.421914335, 8424289.0625, 8424596.875, 8425052.734304857, 8426215.938868882, 8426236.138714196, 8426513.13115436, 8426689.228452154, 8427631.960757703, 8427655.900217544, 8427732.808655757, 8427736.990788572, 8427746.875, 8427747.985967817, 8428020.665868144, 8435320.387205917, 8436942.941605471, 8440320.3125, 8440533.479604132, 8441175.538988424, 8441814.178066725, 8441989.82420289, 8442784.02024606, 8442787.433597198, 8442817.1875, 8443678.125, 8444004.546441417, 8444418.75, 8444682.063657941, 8445362.217057072, 8445685.474633183, 8445714.0625, 8446106.25, 8447416.652851494, 8447620.288263246, 8447757.025966352, 8447859.339791013, 8448101.529748864, 8448637.085761532, 8448700.848289685, 8449142.1875, 8449855.986089349, 8450806.465489067, 8450812.5, 8450846.040032646, 8450864.0625, 8450864.0625, 8450877.254460627, 8451141.22399415, 8451178.125, 8451481.016759798, 8451510.869977897, 8451518.75, 8456322.623876642, 8456923.4375, 8457161.58035939, 8457185.9375, 8459140.625, 8460256.152673585, 8460281.25, 8460917.1875, 8460984.375, 8461600.0, 8461665.625, 8461801.5625, 8461834.18914509, 8461860.430311183, 8461967.150868332, 8462109.820199708, 8462113.304992616, 8462610.789462801, 8462710.9375, 8463444.72953157, 8464042.060282039, 8464043.75, 8464305.541488584, 8464357.795112262, 8464378.396131683, 8464507.671751328, 8464635.082298504, 8464653.9325544, 8465427.848010825, 8465518.75, 8465930.421526529, 8466073.524728647, 8466338.844615694, 8468233.645880139, 8469210.077873008, 8469335.259299176, 8469517.914630614, 8469735.36645816, 8469857.362977397, 8470051.514063532, 8470551.915391447, 8470854.452921541, 8471123.4375, 8472218.75, 8472383.567117795, 8472756.530452764, 8472884.375, 8473461.798154015, 8473545.3125, 8473747.917897413, 8473804.6875, 8474132.8125, 8474396.875, 8474533.525362596, 8474580.977351222, 8474589.012351243, 8474790.87113796, 8475664.0625, 8477247.936545776, 8478050.0, 8478106.25, 8478535.9375, 8479129.39786535, 8479568.57577915, 8479754.504586035, 8479793.668787036, 8481265.625, 8481381.25, 8500484.375, 8503016.77448112, 8517795.906423109, 8519293.75, 8527522.24340854, 8529113.445879865, 8530183.871958395, 8530881.117093308, 8532055.26739129, 8535925.0, 8541411.12660578, 8556406.215822406, 8557820.836879417, 8561910.807454752, 8581055.220470265, 8590142.1875, 8590839.832336055, 8591042.1875, 8591085.9375, 8591234.42111901, 8591346.875, 8591470.374001242, 8591593.776637651, 8592051.940009525, 8592226.5625, 8592633.213701703, 8592823.4375, 8593003.125, 8593090.481404869, 8593534.957443276, 8593988.681260154, 8594926.807933353, 8594941.854184024, 8595714.0625, 8597445.016942557, 8599712.687649617, 8599881.801867971, 8602375.413874583, 8604407.8125, 8606852.859432373, 8607445.593807464, 8612194.393772425, 8612930.128034467, 8616356.52205615, 8616435.222158216, 8616829.750797061, 8617131.385632208, 8617190.425072141, 8617383.865453202, 8617638.983406309, 8617666.703979224, 8617765.625, 8617889.594031133, 8617921.58839932, 8618263.875118017, 8619053.125, 8623540.003407644, 8623606.25, 8623649.26448201, 8623654.698115202, 8623812.289189316, 8624126.450950865, 8624475.0, 8625162.964937646, 8626244.473942496, 8630300.0, 8631873.87901697, 8633828.629446536, 8633909.375, 8633986.802954061, 8634879.42994245, 8634999.728191463, 8635067.033941198, 8635248.4375, 8635255.459151035, 8635324.497346694, 8635629.6875, 8635798.644502355, 8636345.3125, 8636446.875, 8636475.0, 8636524.418705832, 8636603.061609415, 8636680.772197928, 8636853.082097191, 8636997.433432288, 8637009.00450336, 8637389.891632441, 8637461.899847135, 8637489.922237806, 8639369.426599104, 8639389.896832343, 8639671.875, 8639753.989037449, 8639829.6875, 8639901.5625, 8640129.840625018, 8647425.728018576, 8650245.840113215, 8651910.585815094, 8655673.4375, 8655712.872036094, 8655910.492830297, 8659395.117971877, 8659685.9375, 8659721.155025791, 8661130.554708252, 8661365.429543456, 8661497.307849767, 8663014.0625, 8663257.67532046, 8664071.000974542, 8664368.75, 8664541.980308732, 8664696.20441992, 8665040.625, 8665805.629865952, 8666002.630472176, 8666542.142649386, 8666603.581085036, 8667179.425435964, 8682177.769075684, 8704278.125, 8726159.375, 8732735.9375, 8749470.490966268, 8756373.4375, 8756503.125, 8770212.793365048, 8771860.9375, 8772005.770467633, 8772823.4375, 8773334.118977385, 8773466.663493447, 8774026.5625, 8774693.75, 8774940.625, 8775643.62151286, 8775737.82517646, 8776334.443319965, 8776484.375, 8776567.1875, 8777302.155349672, 8777704.970393656, 8778124.881292675, 8779081.425418455, 8779846.425755657, 8781757.8125, 8781768.75, 8781883.584300617, 8787730.714724155, 8798507.483211882, 8805427.984417342, 8811730.213266417, 8811769.993357124, 8812203.49799166, 8813081.25, 8814104.741788123, 8814516.126507157, 8814716.91053632, 8814897.720670735, 8815107.633148627, 8815124.92960963, 8815465.16783723, 8815763.923061287, 8815938.486973515, 8816482.44150974, 8816873.395805875, 8816909.767061817, 8817796.875, 8818222.813868407, 8818269.74367298, 8818295.3125, 8818366.333033811, 8818423.4375, 8818489.696423078, 8818555.582047468, 8818726.5625, 8818739.443251953, 8818790.625, 8818879.6875, 8818897.127757918, 8819180.205837397, 8819210.498484751, 8819251.5625, 8819390.625, 8819404.6875, 8819715.625, 8819763.936842646, 8819914.0625, 8820734.375, 8820753.125, 8820951.17867835, 8821333.517920423, 8821376.02132064, 8821449.53314563, 8821546.289112998, 8821728.125, 8821854.6875, 8821989.999953942, 8822165.28266895, 8822446.202468801, 8822856.25, 8822989.0625, 8823338.041131755, 8823438.065397538, 8823654.6875, 8823840.085935228, 8823843.75, 8823940.313901931, 8824208.782960083, 8824373.4375, 8824419.773218008, 8824473.860241467, 8825037.105441632, 8825113.53891756, 8825123.4375, 8825286.540623438, 8825563.815359436, 8825593.594978007, 8825775.137836989, 8825942.1875, 8825977.316045819, 8826012.12689353, 8826077.7123481, 8826453.125, 8826668.592163332, 8827131.25, 8827229.61374873, 8827248.4375, 8827265.263177922, 8827272.28729259, 8827301.5625, 8827318.75, 8827334.271113098, 8827335.121098513, 8827403.125, 8827454.6875, 8827495.07888189, 8827521.77719464, 8827652.541855028, 8828107.337561453, 8828164.338448873, 8828514.73250841, 8828673.248873234, 8828806.25, 8828878.550224427, 8829028.125, 8829509.015893769, 8829514.595481256, 8829657.555299852, 8830246.875, 8830289.794978842, 8830765.83290301, 8830803.125, 8830832.930801151, 8830857.994359002, 8830874.939123858, 8830914.270219538, 8830967.264090935, 8831693.75, 8831836.923721805, 8831945.859277682, 8832408.134531558, 8833311.67614407, 8834070.3125, 8837692.1213367, 8838402.888217114, 8838622.149594203, 8838959.375, 8839829.6875, 8839861.074136076, 8839868.779197833, 8840873.4375, 8841582.433823071, 8841603.067297803, 8841880.819405576, 8841890.969919516, 8841978.640038716, 8842133.998427028, 8842208.3384602, 8842220.3125, 8842300.976292804, 8842382.8125, 8842412.22185558, 8842666.023898637, 8843316.042711727, 8843501.469352119, 8843536.063622402, 8843939.821750073, 8843954.61850643, 8844239.0625, 8844304.80260955, 8844658.368443355, 8844743.852435824, 8846129.6875, 8861859.517861735, 8873036.221597586, 8876247.05065702, 8877593.470230496, 8878989.497363338, 8879015.475558426, 8879323.4375, 8879515.00003486, 8880193.780753901, 8880460.9375, 8880500.0, 8880689.0625, 8880863.585018205, 8881034.375, 8881367.768755669, 8881418.210130787, 8882512.250741353, 8882663.533072311, 8882877.841923604, 8883032.8125, 8883460.618470838, 8883935.017009666, 8884371.702423591, 8885445.892758548, 8885898.349520937, 8886584.375, 8886719.239197139, 8888687.951321745, 8889531.829066379, 8894087.5, 8900455.810135629, 8900464.524920683, 8901837.310845066, 8902645.3125, 8905254.072809488, 8905600.557436423, 8905984.375, 8908082.151887065, 8908209.375, 8909790.77870789, 8910506.25, 8910732.8125, 8922906.25, 8929903.125, 8933087.5, 8933350.099319946, 8933542.1875, 8933808.000779588, 8933882.246222308, 8934065.625, 8934078.109357022, 8934416.333172537, 8934802.429889763, 8934827.251768481, 8934919.081968995, 8935658.24695988, 8936317.676814808, 8936323.4375, 8936639.0625, 8936655.831123993, 8936658.405067906, 8936664.563518144, 8936701.5625, 8936831.25, 8937642.1875, 8938349.758472808, 8938564.839255022, 8939282.082847927, 8939402.700535124, 8940666.270240996, 8940754.6875, 8942154.43141553, 8942709.477480493, 8942729.63209121, 8943281.938128466, 8943453.965365127, 8943838.735861463, 8943890.027682904, 8944454.484528866, 8944544.676296094, 8944615.034757165, 8944818.75, 8944912.51920092, 8944969.317297447, 8945313.46316323, 8945588.43810236, 8946076.5625, 8946078.125, 8946083.57030156, 8946874.621544845, 8947326.333058748, 8947332.13417558, 8947528.62659343, 8947852.348831804, 8948467.1875, 8948537.5, 8948639.0625, 8949090.625, 8949451.071375059, 8949510.125463523, 8950077.423443718, 8950313.88869268, 8950948.257429043, 8951559.375, 8951639.0625, 8951862.284240523, 8951967.1875, 8952036.525056917, 8952201.99442324, 8952215.89324077, 8952548.531795098, 8952604.682783674, 8952801.5625, 8953154.78159797, 8953261.852854803, 8953687.5, 8953980.585853688, 8954015.625, 8954124.487125307, 8954142.83619035, 8954785.880729632, 8954794.007454518, 8954883.703745794, 8955054.6875, 8955061.765566068, 8955112.856950192, 8955322.96594634, 8955834.375, 8956169.988215694, 8956607.109310387, 8957472.233402513, 8957639.545122698, 8959406.25, 8968752.5561686, 8970096.79259407, 8976360.9375, 8978289.0625, 8978765.625, 8979391.079877036, 8979400.130046953, 8979709.016847389, 8979884.320416795, 8980949.813025445, 8982126.476752507, 8982440.625, 8983131.093898904, 8983212.252981847, 8988332.8125, 8994726.191232558, 9000841.894532226, 9001075.0, 9004196.871098632, 9004267.1875, 9004970.216718804, 9006307.8125, 9007013.684860095, 9009175.0, 9014438.865113346, 9015346.714601345, 9015509.220946483, 9016518.777505074, 9017580.808155214, 9019331.213805601, 9019627.62194041, 9019784.375, 9019814.89718, 9019851.282771714, 9021252.88799304, 9023212.110682327, 9023313.238116745, 9023701.5625, 9024735.19230535, 9026871.068655754, 9028732.866497444, 9028981.979855353, 9029826.037889145, 9030385.244131196, 9030850.636023726, 9030973.168426583, 9030976.572122581, 9030993.75, ...], [80.6227434592103, 20.142388047725174, 14.899032838330918, 24.228948210633867, 12.507142227213519, 5.493429873353301, 13.842570103380806, 6.463280024835945, 88.8730019532846, 73.85510169881415, 20.244440070071658, 98.22414510496183, 34.00573627799418, 52.99934290085128, 19.83614577540483, 41.46153396033414, 79.52840879438895, 6.507127174807035, 27.72159871329285, 90.37075109687274, 25.44228556362277, 44.44018140285856, 14.790342009586745, 10.737341400339966, 32.82716592568082, 39.44124844523117, 7.4408229742657435, 100.58615729613076, 67.48004451377429, 138.08602118764716, 37.387713675014986, 27.069656894537406, 16.78604584372385, 55.394680366784755, 7.597224234421178, 68.62705003410247, 41.22132715810148, 50.836213301835414, 90.8241980119889, 6.834674722133688, 66.81954393307805, 25.5471759514051, 92.876824967418, 114.00679131781033, 41.73172747066822, 26.51771284304433, 5.309484136916638, 64.72393082839223, 78.12724498086189, 6.803238430638208, 7.530958251053448, 35.92296335825365, 46.61893265374371, 12.001423265313779, 15.817280816731339, 61.528933142007766, 6.5521977675091065, 34.27529908566991, 104.61380989996931, 75.09127376181596, 76.32754963323151, 20.445193767146414, 31.028725986297303, 6.689028821220802, 28.882048398368333, 143.99238499131457, 12.854385057733404, 96.87348831773063, 61.49178298048489, 15.326531626196548, 31.895428420838336, 6.544891064992448, 135.606135544653, 5.56038145592697, 5.216862558867843, 8.021453878596322, 28.769983854626616, 5.032169573261715, 5.2174351529597445, 31.24082939320106, 83.69701958917908, 14.57420053260788, 17.911512269634287, 22.45721616870242, 66.89959867371849, 17.35678079213207, 20.393267408609802, 54.09150609507431, 55.677802521774154, 81.63753127201079, 5.887379891080527, 108.19430382145806, 57.1546864206609, 25.443626203172904, 62.855013539469454, 64.91785839566468, 59.703724818043995, 18.69528703961456, 22.095138690930778, 134.91181475511604, 15.75440623213162, 58.89638105794319, 30.40356812733085, 8.353922283160605, 6.156687305776541, 17.592394560317, 30.607218724480642, 27.54641765785304, 177.1090113015387, 22.620036595216565, 93.12971079980892, 10.25938805071941, 9.843138473421293, 77.91062041645992, 19.395229125972403, 9.963522449660594, 24.294190671187845, 29.568296572412535, 17.356101716390953, 48.49495303655256, 89.83179141294515, 47.699340901293134, 10.079090428337299, 30.83682182518227, 86.69691318835561, 29.37741919793904, 118.78888425562262, 26.543850920540923, 178.59684686037085, 38.36897418178742, 7.206897947953812, 146.78556153722297, 66.45553239237633, 38.95342931975209, 10.838877725446217, 5.925621348948986, 26.50148191525319, 11.643662456800861, 31.28479441814407, 98.55214966705415, 112.90778838956834, 65.31719662466908, 44.92556084052376, 13.238286372398735, 60.37837479689176, 72.16898665374296, 32.4730627567573, 73.10883171609723, 5.382189618695119, 27.59469627819643, 7.3668266869507395, 11.546322492862801, 38.640978074980936, 31.597075376306393, 55.89504826786613, 17.66310408705445, 54.82235785616889, 77.43668103386133, 10.968006409699049, 45.35558492073598, 27.895054497140272, 22.779243281408352, 68.44533475960286, 51.86779691486251, 51.785904068507406, 36.11505459406882, 36.18743671134962, 29.938414642418646, 65.44444675166186, 66.344492451765, 29.977601838965857, 40.531130618254394, 8.0490905164253, 130.1617852340275, 36.49486994780612, 28.277333880876864, 34.70847281678894, 12.426718462777817, 11.356996252643711, 81.13199239892248, 9.581398736239768, 34.07669685306363, 34.21477163727883, 9.459362275440663, 19.315665243065347, 36.77551336004898, 27.288965169176006, 22.433039415888945, 50.224823711111675, 57.25869334609388, 75.48154872668582, 95.95336525559122, 14.812464780145561, 51.5925550585911, 7.090502527636772, 69.0226261987929, 54.20883322886325, 50.525540966738745, 49.5455548012941, 31.01323432607239, 24.572554641954188, 80.60727389211789, 40.19460965350637, 54.14841487600363, 73.34993595076142, 24.897376200217852, 108.26904099331827, 77.53314924395355, 32.973419786537306, 25.024632172181214, 7.55060757849065, 80.10680500340177, 24.064895445093086, 5.789121165317098, 94.02852365265755, 156.41066570211055, 54.97655060081135, 11.646241193218133, 44.99339620924646, 46.35480197913222, 6.902676111776427, 110.72817492801465, 76.13732460844237, 71.78059499775776, 7.104445703860406, 49.208432652692295, 42.28810480035326, 6.762786734999605, 32.97814654264757, 6.3250068261878365, 11.754150800136609, 55.78303315250389, 115.0610355370442, 69.8127043945092, 95.25125014485413, 42.45058537201799, 92.98854461789585, 5.94952909963535, 14.857038668341877, 57.42455509363987, 12.448978256568969, 20.874965183194586, 34.70273978233688, 167.79789167510808, 78.19823753850824, 6.01013576877599, 37.99912307810661, 64.50374461099307, 35.77247345996895, 50.2832616057757, 8.838405001055474, 36.58559256591904, 32.06410309684569, 15.842248912842454, 7.761896243632423, 65.12260412167596, 26.201172377447264, 27.65071867751508, 32.09088254003101, 24.014910560717755, 12.189714321753986, 23.405298638468363, 30.278779733268856, 66.24267088196157, 57.935931609388874, 30.161628160219426, 10.808733926041079, 30.624983549745178, 122.65137146034631, 67.99474123198434, 17.338999998354982, 10.130434605119122, 8.900071814016679, 55.86495627871737, 38.66317874334579, 22.999198783940653, 14.93314946795649, 116.99100807792657, 12.710307404616806, 25.033934305188893, 90.82684446080408, 40.14880213625432, 15.083300946134559, 17.635845596019774, 45.45602234198573, 90.18467061024488, 32.69299715117594, 80.8630549397913, 16.174345792648637, 18.05236281680173, 10.96121231218403, 6.495476189154178, 68.94813573874106, 8.890416651704948, 105.24869030141033, 56.320171207621925, 114.92375369769033, 139.18883836372055, 24.102365645091588, 49.2250587347494, 19.799533878873095, 76.03524078790764, 38.399025195373625, 15.593621041217826, 34.89615761666992, 12.749787493515157, 53.38278337858783, 13.017093116169747, 60.843450313081824, 22.961047304736542, 115.47976432631381, 36.54875910470265, 28.223708152369298, 138.39277893892472, 5.147583865505021, 10.427514388418718, 40.88523997781872, 5.0659695209906745, 22.233345405588807, 35.801125121447, 27.302704237168584, 21.515251473951214, 9.9745873390839, 87.9293386076473, 25.538596281355307, 6.175319078985166, 28.689257260353227, 20.490276261077412, 65.31426949949513, 127.89586081036477, 138.54380275861837, 5.30848939091473, 12.15361929551458, 41.27072573818401, 6.594976947714893, 9.252585018012429, 49.07981952078259, 44.21454878125623, 51.14018609364875, 40.55910898280737, 75.51609790488685, 29.65570803778341, 27.82371703931741, 21.178018153807344, 11.743652187025672, 18.646288656282834, 41.22576348945761, 33.830549860738245, 30.9793158954271, 9.20715529027342, 54.129139265331894, 15.344743246745258, 8.877410583621279, 113.0908710802509, 46.7384732944211, 5.3316683324633996, 16.666825846525537, 33.46065636144242, 17.229893722125144, 19.625600317347285, 100.8229650799652, 62.86054555186548, 16.537738149111448, 18.735550749114882, 13.663584506207393, 26.821807571185865, 32.885842129441855, 43.132642605174, 27.340501366448752, 7.916560737430086, 72.92320488580253, 5.130318254883999, 12.876513026327194, 27.425514844880553, 44.359978307083274, 88.19197727440032, 76.3551639056493, 10.004369945348486, 29.270237198997002, 30.863344410260478, 85.63093023152113, 21.012477958151432, 6.630129083848133, 25.509110957796803, 33.29068033182357, 24.194964590318097, 93.65599835468637, 12.716189178806728, 70.49370441588435, 5.523124123372722, 88.35062322448962, 74.02311095062176, 22.143430939887388, 42.69252592234533, 6.134407593502862, 60.56856840322145, 8.141160470873626, 27.33841304803344, 6.633843644479978, 16.132930383319096, 13.86165712565314, 282.5828776725248, 178.8646779443496, 45.68060164135695, 62.66672388104821, 153.36884921523938, 43.875724113893824, 7.677671586618371, 8.651145872608705, 8.376329547885852, 203.32878134365615, 5.909512400441994, 8.284545471816122, 39.88367110518204, 72.883442297011, 29.769402299740015, 117.03845016621489, 13.589620477789694, 41.417003857575374, 50.359119947125656, 18.577022538034008, 16.406986993091166, 5.949533357559017, 12.61492645979159, 13.742258284840535, 6.081221023955844, 69.36001421297068, 54.74323372788567, 86.75805693772034, 68.00723093082837, 16.182606517696378, 13.962608849709444, 23.35061614768373, 65.19790356317569, 55.041912392501374, 6.987660329065251, 28.05400934141215, 16.474026522145483, 27.846665185567467, 27.892795910858723, 22.39351636003613, 12.775315462484965, 36.76914991778537, 24.222945518866183, 68.93911744475628, 41.78156636902415, 18.69632743636316, 71.60753053833983, 57.940227238304985, 44.19078976091832, 17.850940433883604, 139.09520934255963, 10.78171098578586, 14.690244427211814, 62.25665259728454, 14.162537481537235, 164.33835475070532, 263.55317487859656, 41.42560086941908, 79.00902217189989, 196.22153903077464, 61.218834827957494, 73.2459293019295, 57.07025565652378, 51.813987310839714, 118.8466620251768, 47.862032013498755, 198.24125408079578, 10.417806522565234, 45.86743108625057, 11.903025928072546, 12.672097158247878, 25.907495565187443, 93.66375557085205, 20.70353516656614, 7.557864187783279, 53.75832941327521, 88.41018607133537, 28.185300550929437, 112.54726964099254, 14.430872342601885, 18.556303442086367, 12.67813400624271, 80.79038164041938, 60.39842440468112, 8.717042395711928, 50.8415091339409, 54.247009515653914, 5.029467332552646, 11.49901906007123, 10.210762880140027, 18.693518465266937, 59.754460805622685, 8.978184639337135, 7.108777127235512, 62.701128882713846, 24.62399963897157, 130.00280301329812, 120.42002858373505, 103.58768980471834, 18.6839520855098, 35.28162684153131, 10.183239941134614, 30.454970116948154, 58.63731909734514, 96.9271354062512, 226.29908831270555, 89.4009728143746, 31.986826901443635, 185.3119164849257, 161.33007712232276, 13.996931465171356, 63.588610101694066, 20.85140113838211, 92.78656055326138, 69.33998011429173, 60.106203549684345, 34.65647257372143, 19.49328110576059, 25.371186768682136, 7.574126091492366, 36.976377307762704, 51.78258681474345, 69.34865350231243, 173.1894611568428, 19.391155260741048, 79.07901423966689, 16.560012503768718, 37.26922779878091, 161.31231002971097, 31.97790655238017, 12.17372090024863, 34.575384084027064, 18.627179227476468, 14.81282119391562, 5.7409639290352805, 9.223811112599089, 31.850023240760592, 85.1038404058743, 25.208080899899677, 30.72083027582615, 46.02669916199413, 33.19589448045201, 46.327024184414036, 11.22521745141505, 9.354028834882934, 87.46759668296056, 123.41615737841644, 21.94673151784219, 44.16459987154694, 47.783033294626385, 5.803431308002094, 6.58244219765065, 22.765668768149393, 24.54195750775783, 13.806976691101614, 37.53082241231001, 180.94323840209762, 55.949495261089126, 219.40364023694107, 11.842729361837197, 29.353280966362025, 10.736517772506973, 5.253087317997877, 64.32922149998959, 80.43099647024292, 138.16043083486431, 72.58687003131774, 174.30736898743703, 15.484967745726431, 14.230563092276233, 8.934765009908633, 48.44150708094368, 19.91283714555081, 57.1121280701359, 95.30921957630352, 135.086380298882, 20.485843873063516, 114.23559231381779, 20.360242594541027, 33.250857236295225, 52.384100424877595, 12.252124798021653, 9.159292774361289, 26.49865602604835, 118.95194026220508, 102.85484385380794, 6.005031810036032, 76.3959937452162, 8.534726026473077, 57.30931855920185, 93.28758278952827, 47.14744766799672, 9.12272207696104, 5.794138820258728, 25.820773749995208, 52.70460892013447, 19.01140608207845, 21.466672859747455, 125.41786976918084, 15.793922956868373, 103.97647191873536, 48.60468113157142, 58.68806927419452, 6.652751359366797, 60.56758473595613, 29.82814227251953, 37.241147808380425, 17.604452732131747, 10.59409857825857, 12.72933185642546, 10.303478865060198, 19.683749409673858, 9.977507124790531, 47.152021901932166, 30.013303082403173, 215.05997636499384, 33.46675557629148, 30.254078796256206, 15.55914089496112, 13.648672995403619, 5.078618035485895, 31.112963198075732, 35.745476884901336, 5.138533707620276, 24.590563385246845, 30.815537131069828, 119.28125013939814, 19.547574671298182, 10.190843195757738, 25.184778290008147, 5.638447806670092, 75.42822341824069, 41.469386089164196, 74.3430913506418, 43.074153985590755, 23.888768464800187, 10.21968871528357, 93.2667579166506, 10.279464896556979, 13.341058062415602, 91.6539180955323, 17.87968668867299, 6.7122915073628375, 65.85981744385022, 33.97364052002432, 130.86199983093277, 30.24567656414325, 27.4400906027032, 34.641188331492344, 28.603657132863137, 97.80470498232638, 87.83677774224584, 42.210612193431785, 45.275471693517375, 24.329230271894446, 83.97922618631915, 61.19770859809286, 81.6421949842854, 80.97113436346757, 5.9282936546338165, 11.677095480666074, 6.7772232015538405, 72.14067833980124, 104.71805735248901, 45.29706645619697, 16.14180557131571, 68.18163950879092, 15.655112360665708, 147.19661479903286, 37.05658883973705, 32.426065020078624, 27.674438515183915, 48.01563539829709, 91.47334470062637, 6.073600857167196, 12.06264929310341, 30.316186561101127, 67.74536696028538, 89.41145061966922, 7.135795853038922, 9.794795478233327, 38.88613319201963, 10.16593252111778, 82.64871161734959, 58.168094595202604, 45.67399001308769, 10.916532278105166, 16.6214175509378, 22.884404146220078, 41.054887365380964, 222.9974993314048, 32.99835359534685, 6.645078320763906, 58.82360905691458, 57.245830461864635, 25.777797292398866, 37.453765387211014, 35.054291447453636, 118.39849647309036, 106.27327081168907, 6.316532766371843, 30.3982111559038, 35.649383309923806, 40.22270980825495, 23.616389631373938, 5.6793761851294455, 52.37740779065618, 70.40676756302085, 67.89272681344642, 80.12644696377498, 26.26628028076348, 55.168201351279464, 90.93493611904087, 43.78946946039316, 6.689224713213583, 8.6985170879477, 8.01972556921533, 73.37732320163168, 5.582433390017065, 55.22415270968269, 38.40668002769969, 10.273591067668091, 30.798114816841185, 7.960306534682348, 51.20747914915166, 81.04405823622768, 15.47588350485427, 6.148937620777043, 59.04565462902272, 13.220315160988562, 84.93392498412032, 32.93026389261156, 131.97951817384902, 78.10038119941997, 6.201386344728845, 6.322128168380764, 29.061944409260164, 21.261034819926373, 102.50144298494953, 7.836985276919561, 14.076370002193652, 14.381821538872165, 9.450736534312448, 55.355603464256816, 18.88044687478613, 73.98786474734008, 13.571812043891212, 33.21794450946403, 8.204837794170434, 66.3985767992489, 11.014352925871869, 87.68861119877135, 22.99191595995918, 38.013186969543064, 100.82642361806369, 36.111314884292774, 7.094408123175718, 85.0715448318206, 92.11847136032176, 49.6209705663238, 24.63740398257133, 36.26982909535324, 20.701932592586772, 34.86810298350271, 6.1172733945636315, 18.305276445452602, 33.52797790110424, 98.32266546374684, 87.41006848741964, 56.60913301917651, 6.693870708862972, 17.454329885915726, 24.313291916380983, 47.755677938346444, 8.716036087698813, 142.02335979370642, 173.00901028578335, 5.403015912962168, 7.670364519807886, 6.259537622351688, 75.49388879861147, 24.730530532389512, 66.22936337536537, 13.121882510388584, 109.96122345668182, 6.538785865820837, 38.53222606437176, 61.92345340710382, 7.579481563232784, 20.287522038014053, 16.10273581390162, 44.442596263041466, 93.32352214671502, 15.489197826924784, 9.356214221008791, 85.60736516437497, 34.61695990016543, 27.43274128192944, 36.20657119067326, 11.713327877639822, 12.041007374472358, 92.81045676050502, 88.16385766622264, 35.79553098860598, 84.45653463112734, 51.637466647599084, 6.709219214942955, 9.693119554813938, 8.520554122922798, 26.809246270604564, 100.47150955857532, 64.04973922342332, 8.250426272519784, 64.82616859596769, 32.613690012464836, 145.9348744619159, 29.20072292179389, 29.94243080414317, 110.13403811423782, 9.583760057067202, 158.26983445520418, 24.012644289537533, 18.171053978084387, 14.400942001376425, 34.714419710268025, 35.020208948251714, 58.26266126124862, 139.918490198669, 73.35118787810366, 29.42685999293475, 10.45526971750667, 108.87261934590178, 17.742028913531332, 5.507440370554194, 99.1421112982979, 102.50418494888766, 23.969351450055207, 84.31267398992807, 86.09732905120819, 7.301102639102124, 54.66561034620394, 30.091313923900085, 26.89806179244221, 125.17851790114744, 17.203866713538336, 11.914923344199996, 7.8270229981043595, 37.6836840123603, 6.043521243576157, 17.055353038389857, 18.009510749919045, 76.45389099059419, 32.0497758683308, 9.85185872962046, 57.344759712797945, 27.67847046999057, 103.52171251105094, 15.561629388498634, 66.36574925311818, 102.91802324820814, 68.19468989396626, 34.57681418783153, 63.95254308144558, 9.416819893247208, 54.853154782426614, 5.955971490997529, 80.63926609216277, 33.373336029136276, 105.57024026564991, 6.164974839960788, 19.74507474958446, 229.37079651256107, 6.83164210872221, 7.768314652612656, 59.17821778503982, 44.83546810548869, 51.973877415188355, 76.17375548137969, 12.200198163453315, 17.27054032687646, 39.55147936090389, 49.144933692244216, 62.30073991946644, 24.02444740782951, 8.745008271566933, 19.47206327074636, 22.281216534549863, 98.2762008071374, 40.905253803399475, 10.749709247468992, 23.55712497404387, 5.530397407368404, 18.4261392832687, 104.09546386279655, 23.416332349363937, 10.3069027093654, 36.27385087424243, 8.845759022766757, 54.057447488600715, 50.06917057968032, 21.519792835532662, 7.822169987294624, 20.556272254723595, 20.33586910803129, 70.99288540222916, 227.15132822420298, 88.14501789038032, 81.35978738885794, 10.78706380156947, 6.953870014275477, 8.57092169141575, 26.61951368030355, 59.30226171397661, 28.97782723391189, 50.54100663044627, 72.5276743259207, 21.5820929188146, 60.82421579191374, 54.062881595937114, 25.508632617401304, 148.9675090583015, 91.78025069844172, 42.52984320534781, 24.889938531632197, 124.49483276506376, 5.14326112526763, 7.239816539093344, 16.07300128354109, 11.278365791503445, 12.49526054050386, 68.70573201231338, 49.993740000884976, 115.5125267723389, 111.87931572297545, 74.28802386011176, 93.4319405784697, 81.7906982764578, 53.28902738106285, 33.434362316642165, 11.555471853528, 6.955512655185427, 133.20576250040503, 111.27412418300554, 15.947842830126131, 47.38223145871324, 77.42718208160923, 73.95530544479001, 19.68033832343636, 5.138236519271526, 19.493803727261092, 29.783927617110155, 156.25500396131142, 11.00129852118782, 61.9146092413505, 35.26617192103457, 39.764617681024546, 9.748114793501339, 11.337250417119932, 23.035296474738157, 23.59728448028161, 10.84751128968538, 5.16336937977337, 115.4779008605282, 67.30809862648132, 6.449053814612591, 36.760499587469965, 22.881173029844632, 33.64233247211417, 56.79184829876387, 49.856674919038696, 80.37409800016948, 107.5089589136651, 38.660967603142744, 42.7229469722224, 101.13958223655455, 43.01679587389953, 25.71430966303957, 25.813037810201543, 22.265899737084226, 22.093532246374096, 27.828220941822263, 21.46263340028953, 33.298450084432844, 216.43217666820618, 6.059485107386946, 29.05372197808356, 10.569220713647468, 30.8396265468783, 220.50655308182294, 6.013888514735898, 8.731481573078437, 11.213170406057896, 18.71257764030911, 40.647176223532206, 66.06508603016408, 91.89692462664055, 5.450334920600549, 14.978313474968157, 212.24238327595722, ...])
Detected energies during the discharge + Energy spectrum
multiplot(icon_fig, T_int_first,E,xmean,count)
size_of_interactions_average(Etot, Ntot,size_interaction)
#energy_spectra_doublebreakdown(Etot, T_first, file_energy_spectra_doublebreakdown)