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 = 44620
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
calib[i][j]=float(word[j]) #i = radek, j = sloupec0
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV
RowNo.append(int(int(matrix_index[i]))%int(256)) #ver XV
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);
([5641204.362752311, 5713418.028333274, 5973955.085900866, 8597275.0, 8680996.306600256, 8681361.997045169, 8681531.129112966, 8684216.292028986, 8684717.042839257, 8685328.728861835, 8686326.368217785, 8753201.5625, 8818043.668401066, 8818612.245160926, 8911084.375, 8960256.315623675, 9006421.553906638, 9011971.875, 9016924.229697304, 9024021.156367982, 9027689.334481914, 9029371.266447801, 9030968.75, 9033670.585000347, 9033718.75, 9035875.550533727, 9036028.125, 9036109.058244215, 9060878.78471017, 9061178.125, 9061409.375, 9062147.904612709, 9062524.657649051, 9064192.850431079, 9065012.5, 9065026.866404688, 9065086.117880061, 9065897.037763879, 9066772.05957048, 9067127.136747748, 9067168.92366152, 9068519.698135894, 9068876.807387246, 9069240.59344682, 9070953.125, 9072216.384233845, 9104679.6875, 9106500.457892537, 9107315.947094545, 9108343.75, 9111501.600509474, 9112839.604422258, 9115732.286077509, 9121322.35312964, 9132451.308818439, 9136949.368714787, 9139078.125, 9140124.534883413, 9141256.837599808, 9144976.5625, 9146979.19983746, 9164462.427237961, 9164854.220412433, 9168608.983719105, 9169422.816326985, 9169800.497049227, 9169875.944384983, 9169992.1875, 9170530.284483593, 9172192.822863942, 9172656.19281428, 9172901.390465582, 9172928.23418477, 9172947.399912184, 9173592.241931852, 9173639.244124468, 9173818.75, 9174080.848235987, 9174768.75, 9174776.40770408, 9174855.44791443, 9174904.6875, 9175453.125, 9175517.98729186, 9175855.54290624, 9175868.815238567, 9184186.595499082, 9184400.675293464, 9185667.53520495, 9189823.424954945, 9189983.280594736, 9190331.779265527, 9190732.766274655, 9191435.824125681, 9191782.189917075, 9192294.216901014, 9192386.276427254, 9192603.21904522, 9194192.136777522, 9194204.6875, 9197128.125, 9197790.782436501, 9199200.0, 9203833.497891074, 9204228.87334331, 9204979.426965175, 9206221.875, 9208887.5, 9209630.092454365, 9211927.669983087, 9211948.10327525, 9214570.63262848, 9214621.115541937, 9216697.754982779, 9216890.726587988, 9217701.5625, 9220363.035112642, 9225837.893431565, 9225904.47555423, 9225912.287504574, 9226070.3125, 9226768.814142251, 9226877.621550437, 9227453.248500424, 9227471.719873326, 9227726.5625, 9228087.5, 9228232.8125, 9228347.727812998, 9229350.54048412, 9229733.361627994, 9230035.998673676, 9230483.920125019, 9230777.010488855, 9231113.75187845, 9231403.046713926, 9231723.183635486, 9231750.028677136, 9232809.375, 9232831.25, 9233162.05687695, 9233396.875, 9234320.3125, 9234460.300267478, 9234926.891860135, 9235806.564436017, 9235853.984469837, 9236128.85684437, 9236425.71932078, 9236478.125, 9236869.144462362, 9236954.707708923, 9237254.6875, 9237348.049921775, 9238111.838078752, 9238115.526234027, 9238117.1875, 9238191.100494854, 9238279.6875, 9238500.571946487, 9238666.703634575, 9239103.125, 9239727.19584528, 9240722.159230024, 9241088.183818635, 9241242.1875, 9241380.972592978, 9243187.5, 9243896.875, 9244253.125, 9245309.375, 9246540.360947661, 9246967.23162321, 9247307.392803513, 9248111.734371161, 9248431.456269937, 9249713.611473087, 9249893.972418962, 9249924.150360076, 9250999.706987841, 9253171.768868228, 9253956.912384475, 9253964.955885325, 9254440.433028957, 9254899.994973883, 9255301.623329634, 9256319.28755666, 9257112.96005424, 9257128.125, 9258354.718149161, 9261244.33851664, 9262373.360962989, 9263133.23888655, 9263145.97859229, 9263512.5, 9263847.950545214, 9264268.050769426, 9264536.681511411, 9266045.124461679, 9272437.417800546, 9272493.320457317, 9274186.596292725, 9275423.431895722, 9275567.745599011, 9275889.0625, 9276694.878360173, 9276839.160681726, 9276868.75, 9277744.189712007, 9278288.209648438, 9278449.72119223, 9278551.554955045, 9278641.597067226, 9278789.594982188, 9278801.5625, 9278858.987506956, 9279125.17156229, 9279504.40607445, 9279963.687543083, 9280410.868004126, 9280980.878223622, 9281406.519368084, 9282786.004436644, 9282849.140849035, 9285989.133410476, 9286167.800848858, 9289582.603996972, 9289815.703235693, 9290154.01957211, 9290157.021523993, 9290832.8125, 9291307.417792113, 9291534.375, 9292035.723022152, 9292073.67450043, 9292397.289056065, 9292464.806651114, 9292807.51399918, 9292930.717438536, 9295026.80434378, 9297155.207577234, 9298115.625, 9298812.5, 9299786.911440747, 9300484.375, 9300512.278778838, 9300656.986746017, 9300786.19790161, 9300792.1875, 9301066.99778293, 9302000.634189725, 9303840.767252428, 9304335.8140203, 9306709.375, 9309242.1875, 9312062.354873892, 9316899.946648203, 9321623.632978154, 9322807.60612767, 9323153.402930807, 9326294.34541745, 9328285.857239908, 9329421.875, 9330630.294481779, 9331207.8125, 9332042.1875, 9332496.661021266, 9332812.456215914, 9333293.484896794, 9333969.542201718, 9334101.5625, 9334361.947949449, 9335077.884466711, 9335092.1875, 9335227.413343823, 9335265.163292784, 9335268.75, 9335274.215735115, 9335746.411995087, 9336168.75, 9336171.652373277, 9336404.6875, 9336420.460697006, 9338962.307473658, 9339477.759260444, 9339992.165091136, 9341817.640416311, 9342724.555917526, 9344299.14962008, 9344437.271124257, 9345726.231222726, 9346161.663158933, 9346361.321868246, 9346362.820720568, 9347834.398158673, 9348565.625, 9348583.362293184, 9348993.75, 9349205.724409427, 9349331.555327538, 9349521.781399991, 9349576.10347066, 9349759.706846273, 9351117.305670563, 9351300.808797274, 9351667.1875, 9352208.1172349, 9352216.623438172, 9352310.9375, 9352422.41643926, 9352735.138211155, 9353153.078701712, 9353153.455762468, 9353341.62193635, 9353439.35970125, 9353548.302458595, 9353668.95063388, 9353808.374655534, 9354298.874103278, 9354544.712288463, 9354642.851437429, 9354781.25, 9355211.194720525, 9355659.375, 9356121.969906108, 9356127.069849772, 9356978.125, 9357010.294674056, 9357049.563703084, 9358104.6875, 9360715.930269258, 9360759.44906238, 9361319.190733269, 9361736.776283769, 9362050.395423764, 9362068.75, 9362155.156382028, 9362490.56287718, 9362625.0, 9362644.785223365, 9363044.906773495, 9363049.14726225, 9363790.625, 9366251.433956955, 9366463.761153966, 9366548.864861304, 9367044.275132706, 9368177.84621437, 9368277.52375652, 9368710.328108637, 9369675.0, 9370296.031727793, 9371560.722699612, 9372149.953856405, 9372590.817369478, 9375793.160111973, 9378695.647010852, 9381502.932989392, 9384889.0625, 9386914.0625, 9391196.34243195, 9392392.647859063, 9399021.875, 9399130.900515845, 9401017.794293588, 9401487.328660874, 9402043.75, 9402582.8125, 9403214.0625, 9403818.75, 9404153.905802436, 9404451.819071315, 9405630.530641885, 9405923.4375, 9405974.615720607, 9406071.984903954, 9406146.875, 9407053.415939383, 9407980.513714345, 9408231.435091246, 9409328.102265088, 9409850.374401394, 9409995.3125, 9410466.86492899, 9411023.4375, 9411205.104987005, 9411274.516829515, 9412369.05027605, 9413214.23868102, 9413774.918127744, 9414590.625, 9416139.755648563, 9418167.1875, 9418308.23487855, 9419143.75, 9420318.75, 9421195.993099414, 9421238.618057681, 9421590.439269999, 9424554.25272705, 9425542.1875, 9425599.699239021, 9426526.5625, 9426640.625, 9427075.602153623, 9427163.911642324, 9427691.664613154, 9427823.094926458, 9428451.5625, 9428463.865084132, 9428703.767472478, 9428786.509400614, 9428904.6875, 9428961.083526129, 9429756.713313207, 9429906.109502941, 9429942.71413465, 9430081.091084609, 9430135.218451593, 9430262.278410358, 9430293.75, 9430643.75, 9430835.780231733, 9430849.989936026, 9430874.56854477, 9430889.024151338, 9430919.868801378, 9430957.96582207, 9431012.683400264, 9431117.1875, 9431570.694588333, 9432504.086337248, 9432827.475952484, 9433074.997074727, 9433319.69968926, 9433557.59559999, 9434435.9375, 9434960.630162906, 9435102.853876036, 9435311.99830607, 9435560.9375, 9435638.962048963, 9435761.303136993, 9435807.414955331, 9436432.720183503, 9436457.31449874, 9436461.620268345, 9437504.6875, 9437507.727177091, 9438314.0625, 9439846.086314026, 9440010.92561381, 9440356.537779441, 9440547.501918022, 9440671.312042195, 9440719.50222865, 9440781.25, 9440840.331541805, 9440927.071470253, 9440939.0625, 9441005.411421092, 9441072.53667581, 9441085.44385649, 9441167.026844108, 9441381.463992873, 9441599.970352564, 9441910.9375, 9441996.875, 9442087.420599647, 9442523.326712394, 9442560.136729684, 9442674.574026281, 9442784.375, 9442888.901476542, 9442968.652765842, 9443262.600172134, 9443270.018840132, 9443393.931789033, 9443448.420723889, 9443710.149769785, 9444484.347659435, 9444523.539618261, 9444538.42880762, 9444588.573512025, 9445045.563284982, 9445121.739035623, 9445329.6875, 9445446.875, 9445673.4375, 9445786.942645865, 9445914.0625, 9445953.882625133, 9446382.509047443, 9446413.94265701, 9446420.959090307, 9446452.747434901, 9446526.032010946, 9446671.568562454, 9446766.809407692, 9446902.032518264, 9447040.625, 9447053.125, 9447343.344744492, 9447547.586081244, 9447587.5, 9447754.912293827, 9447756.25, 9447806.25, 9447912.230596337, 9448351.01487991, 9448351.737228643, 9448432.11494017, 9448447.754180308, 9448533.998017982, 9448990.01613898, 9449140.840703633, 9449713.315169368, 9449809.369858054, 9449858.555552421, 9449904.6875, 9449997.425429216, 9450024.58422435, 9450063.685552167, 9450103.125, 9450116.678574925, 9450153.417996634, 9450181.899816964, 9450262.5, 9450317.1875, 9450431.25, 9450440.662307853, 9450508.944914384, 9450514.429067653, 9450618.540410794, 9450626.783006052, 9450633.281307658, 9450640.414096633, 9450714.017814774, 9450775.747577755, 9450800.0, 9450810.718252601, 9450882.92256262, 9450885.08787482, 9450998.250071343, 9451094.530409781, 9451176.5625, 9451218.34532946, 9451293.400259271, 9451351.253701191, 9451398.4375, 9451423.4375, 9451477.872360857, 9451726.732019503, 9453087.329881981, 9453686.315683622, 9454215.625, 9454234.29155704, 9454903.034183877, 9455339.554050587, 9455906.517181957, 9456142.1875, 9456203.538702812, 9458376.737421885, 9458779.947645867, 9459997.117944757, 9460150.489557808, 9461031.414175425, 9461147.680122666, 9461596.046941802, 9461603.998681301, 9462223.4375, 9462273.200220123, 9462356.25, 9462729.6875, 9462853.369287642, 9462933.123566037, 9462963.923735518, 9463095.159204364, 9463423.537876004, 9463840.54534466, 9464240.621459171, 9464301.692871891, 9464884.996433852, 9465273.614786875, 9465905.231225323, 9466029.558217363, 9466056.25, 9466078.125, 9466388.805747477, 9468777.497375, 9468906.25, 9469415.625, 9469444.213686723, 9469474.835955095, 9469791.670970183, 9470768.174471686, 9471051.300402112, 9471467.1875, 9472520.3125, 9472688.906167956, 9472819.59375, 9478137.014563637, 9479043.75, 9479159.375, 9479169.962498838, 9479376.5625, 9479418.30052264, 9479530.20602123, 9479870.78702593, 9480118.011192506, 9480617.623548903, 9480675.678229038, 9481584.895416485, 9481585.9375, 9481826.483501237, 9481953.125, 9481963.559365444, 9482009.375, 9482125.617886523, 9482307.200126152, 9482872.521061702, 9483018.19359347, 9483726.26580913, 9483745.928462911, 9483764.69755071, 9483774.218709603, 9484315.458508322, 9484393.75, 9484602.473959401, 9484649.629458139, 9485234.305136023, 9485560.811253127, 9485603.824403742, 9485630.92306821, 9485754.078425376, 9485831.163814468, 9485881.584462881, 9485969.71207248, 9486156.782886649, 9486392.1875, 9486951.450764906, 9487090.625, 9487133.329796026, 9487205.91790489, 9487278.125, 9487998.4375, 9488811.198881792, 9490532.44468739, 9495329.669929542, 9495507.36310296, 9497114.340931516, 9497616.14615336, 9502112.5, 9506731.25, 9507063.590687875, 9507443.583404444, 9508704.6875, 9508707.0157823, 9508926.805232601, 9509124.469601143, 9509248.149881825, 9509257.748280806, 9509301.586249013, 9509718.676091926, 9509818.328859752, 9510001.185233822, 9510085.9375, 9510227.487939535, 9510452.888842534, 9510566.516129985, 9510720.3125, 9510752.263837531, 9510875.46568439, 9510896.875, 9511055.229086727, 9511748.4375, 9511989.0625, 9511995.98899799, 9512013.317127347, 9512040.957351228, 9512073.53202277, 9512112.77522975, 9512126.5625, 9512134.153995847, 9512631.192004591, 9513586.502191411, 9514046.305313293, 9514068.726703245, 9514103.760333795, 9514152.83791729, 9514296.588762823, 9514341.86933505, 9514515.368929064, 9514600.206029164, 9514610.9375, 9515129.01903018, 9515496.875, 9515604.39517277, 9516085.9375, 9516555.491618466, 9516706.82914742, 9516862.839794872, 9517081.132918913, 9517297.92561397, 9518506.25, 9519117.75734335, 9519192.1875, 9520264.0625, 9520525.0, 9520565.265266677, 9520797.357824115, 9521037.460342806, 9521116.986360237, 9521293.988530768, 9521390.625, 9521608.668799048, 9522815.625, 9523150.23013378, 9523193.283815766, 9523637.5, 9524984.955503227, 9526531.170794519, 9527278.475921458, 9528079.325608635, 9531621.482711384, 9533377.521266742, 9533984.059334697, 9534601.354397718, 9536515.657465685, 9538250.715510732, 9538995.501648521, 9539900.860522648, 9539917.765045837, 9540854.169747984, 9541878.794562798, 9541984.456919048, 9542415.625, 9544576.857110394, 9545140.625, 9545638.470266148, 9546625.0, 9547548.4375, 9548446.47981582, 9549115.367149733, 9550349.358248128, 9551426.371406188, 9551956.25, 9552045.3125, 9552499.097185127, 9552900.18240518, 9553039.454224458, 9553048.546950975, 9553168.733150937, 9553345.005241992, 9553445.3125, 9553543.585014937, 9554327.41184688, 9554426.5625, 9554942.469148027, 9555502.228746211, 9555670.160482531, 9555835.9375, 9555873.4375, 9557311.66075965, 9557555.336489804, 9557591.676887067, 9558276.558247805, 9558417.459481914, 9558870.390309537, 9558886.468034884, 9559229.488543995, 9559370.3125, 9559395.495738553, 9559462.5, 9559574.903741792, 9560070.538310656, 9560078.36489845, 9560238.855417889, 9560506.45944554, 9560654.371997679, 9560694.210585417, 9560696.738527162, 9560812.5, 9560834.267905565, 9561030.76010706, 9561087.35308577, 9561155.563186748, 9561329.130445689, 9561482.8125, 9561625.747341527, 9561827.649670986, 9561944.6169385, 9561987.016207749, 9562135.466791023, 9562698.058757747, 9562706.25, 9562779.6875, 9563311.873132348, 9563446.661035743, 9563758.532924248, 9563984.375, 9564335.35030365, 9564696.6704771, 9565339.159635993, 9565557.8125, 9565778.125, 9566634.365920147, 9566767.631610997, 9566849.862106163, 9567335.109123109, 9567587.5, 9567950.0, 9568124.706272509, 9568258.30400027, 9569040.112359164, 9569446.6800279, 9569507.241599236, 9569540.625, 9569596.875, 9569614.0625, 9569663.909265365, 9569787.5, 9570033.52795946, 9570339.0625, 9570812.5, 9571002.252799274, 9571134.375, 9571282.8125, 9571653.125, 9571662.092353154, 9571809.375, 9571819.519614862, 9571880.148287777, 9572197.418558892, 9573126.5625, 9573209.30411111, 9573527.526895067, 9573573.688049318, 9573758.420502562, 9573881.967105161, 9574557.705252152, 9574806.25, 9575465.625, 9576150.481320469, 9577894.642463243, 9579678.424818406, 9579751.434689868, 9580173.223599808, 9580380.43317902, 9580684.161878858, 9580706.209454121, 9580759.878365437, 9580973.50714295, 9581105.370299544, 9581221.745607233, 9581228.125, 9581287.959738467, 9581368.31399228, 9581507.8125, 9581601.5625, 9581653.727487756, 9581928.125, 9582084.132154591, 9582454.6875, 9582460.75928803, 9582506.25, 9582563.324364046, 9582663.579320813, 9582709.275349595, 9582756.245723851, 9582841.520542394, 9583072.953039277, 9583418.94765675, 9583441.43172428, 9583462.5, 9583599.225866703, 9583734.195309129, 9583931.25, 9583943.75, 9584691.598202586, 9584809.206927322, 9584916.814636339, 9585144.796261255, 9585685.114997022, 9585832.8125, 9586078.125, 9586651.182593096, 9586694.482984954, 9586880.573959976, 9586923.4375, 9587400.0, 9587605.99741048, 9588275.0, 9588579.6875, 9588644.943033492, 9588860.9375, 9589070.664736027, 9591651.703378117, 9592211.237978924, 9593170.3125, 9593495.333872592, 9593542.402763866, 9593593.75, 9594380.177522495, 9596245.3125, 9596430.790235857, 9596926.993238775, 9597684.375, 9598146.97827363, 9601291.364617215, 9601864.0625, 9602398.503530081, 9602409.375, 9602443.812168011, 9602514.089867588, 9603156.48462612, 9603266.407752104, 9603412.5, 9603526.5625, 9603531.183555508, 9603589.445819043, 9604122.735227056, 9604348.15402358, 9604641.673580276, 9605681.473155739, 9607033.04867891, 9608746.230517438, 9611094.827544825, 9614471.746626483, 9617885.592634793, 9619531.163534835, 9619708.399477974, 9620039.756393148, 9620653.749666842, 9620937.761496548, 9621149.037740655, 9621601.5625, 9621764.76636621, 9621868.065825617, 9621960.448054792, 9622038.301725345, 9622039.581519725, 9622061.440747375, 9622110.817189604, 9622394.487795679, 9622528.96257855, 9622704.359626824, 9622862.5, 9623070.144055795, 9623657.8125, 9623797.20283277, 9623847.341659857, 9624126.15450277, 9624130.92426833, 9625023.4375, 9625128.983172642, 9625226.5625, 9625312.600650996, 9625738.5637898, 9626220.521861203, 9626233.549410429, 9626245.753017101, 9626312.5, 9626536.940382034, 9626734.755382556, 9627664.235347496, 9627858.567916654, 9627989.0625, 9628154.6875, 9628330.825503962, 9628461.844138173, 9630348.530266386, 9633284.049081936, 9633546.520597864, 9633848.4375, 9634031.769038176, 9634457.321515704, 9636314.714821042, 9638306.788098784, 9638487.5, 9640069.511932679, 9644093.75, 9648089.0625, 9650200.365454936, 9650507.809383472, 9650756.021366756, 9651071.088943437, 9651252.591281647, 9651512.935919313, 9652056.25, 9652081.25, 9652354.6875, 9652496.435394278, 9652511.330959968, 9652540.37871016, 9652548.101899775, 9652578.40317468, 9652601.71869901, 9652720.31275286, 9652818.908534447, ...], [22.394196678651518, 104.52158100367086, 13.834372604059098, 35.41408315871291, 5.773087473458428, 13.317960726153173, 84.38749123685322, 48.115097108615274, 127.13694355831899, 92.43627857526893, 32.268543420184336, 52.82941772557212, 42.71202106530219, 24.345275598213007, 46.18188887006458, 222.3309201631657, 71.0682674776697, 127.240912628396, 134.12040684264818, 19.55810662146437, 7.704663006329894, 22.131492749530132, 72.29470358303534, 7.70486234991024, 52.87561997126572, 17.557496686907598, 50.114824909464126, 13.857582698557135, 18.924661519961447, 64.22837177684053, 30.020043014632908, 6.40667971078974, 23.765649947324775, 18.258631064013606, 36.511970557806684, 9.602308438421888, 35.00964570423421, 15.600434970079439, 79.54785744901969, 58.645072239250226, 9.482691265255715, 37.29227627107436, 45.23637678961425, 27.915345673499598, 59.82762819530269, 23.655109908387644, 49.835771566636566, 8.544530707568256, 165.0625814228895, 37.733860217806864, 89.37238493895438, 5.142255491400577, 53.87095917753633, 17.142063145978042, 24.36099300858252, 48.755507320789846, 126.85696156126042, 10.470999738233656, 30.844878865389227, 28.970578016071585, 8.950500987083618, 27.163658648202826, 94.19760674944675, 22.650814075313523, 6.025800040902835, 16.75841679062667, 10.28188264389288, 90.23023405486248, 5.562772928059884, 5.748423706084452, 6.75214333312213, 25.53560002129059, 6.099527547517071, 61.733867887898384, 164.760916317508, 11.423982424020824, 83.89601011604941, 6.685863369978612, 71.55399152606256, 25.552740377199576, 43.84830275398452, 90.20496363111815, 40.780091181954, 33.64314497994563, 12.792526121014621, 24.383484232678867, 25.703715722187518, 113.42777121430348, 8.479426161442468, 27.375416162848392, 5.482222888122719, 37.447578573159554, 124.86148706073311, 54.76871609120763, 5.7693071883198614, 7.249843785713159, 5.633073675257272, 21.368550699396152, 32.46748219601164, 39.607228724573424, 116.12161969314596, 26.391362123903455, 55.64931652175589, 119.27641022646476, 84.72634967215552, 7.054608688273994, 33.49631846133792, 96.73745414289843, 19.653157599903064, 16.353329133907838, 10.642607704407743, 16.320330365793374, 6.37428393384102, 14.479679103268964, 30.03087615054855, 75.31295368384066, 13.236529801587693, 53.60947618740232, 10.628492559123924, 40.28037787699793, 107.4925614186926, 15.191758644465406, 10.422496798223108, 5.206579793353914, 89.61832997814611, 55.88729747594363, 100.40663142677818, 48.532878319574245, 7.365254672498632, 12.092539172447166, 137.34478991621447, 16.307105739299224, 21.955375210405453, 23.00048065595947, 83.43140842902064, 27.066522598220594, 24.358507125456754, 22.054891106799726, 42.72483496877763, 119.60170811769181, 28.821753336747115, 29.877603041775043, 37.10615966657959, 12.965281610265848, 21.41705026827473, 28.50582863192337, 24.307362845920416, 11.582602527117224, 18.63916864460317, 55.329597679098164, 6.130103457256677, 15.019099928474635, 45.416550298846445, 37.18170702453952, 20.016835110161256, 45.33951718292288, 46.23460204178426, 11.492046322316241, 103.6619071876334, 19.201483747525774, 21.655575446736854, 47.59977095497724, 5.311060126815191, 60.21671012502449, 77.3981733383878, 65.51083818134305, 24.043690322397605, 44.899695161960736, 52.21895219550207, 45.06492782274351, 85.6974571690523, 9.11768495084702, 7.133098812617643, 7.458180806289963, 19.19780968498457, 15.7906654464706, 21.995951443753786, 21.219106108252888, 7.88315917346164, 23.840413922450566, 90.66741171220873, 8.670940322655646, 10.22140818807595, 8.187603396679547, 36.23488533989433, 114.14785458164387, 5.559751315108612, 80.04011355200743, 34.111216269356525, 16.72689267380683, 19.80521255895534, 27.09718900806906, 16.86082059530092, 7.8633325766536855, 114.55113191627426, 5.325507896820359, 16.294210536135207, 67.72431511148284, 78.36583963074916, 68.58451549008734, 5.19261487325832, 127.48950403642432, 28.414616265847283, 27.280670952355372, 56.68665582183081, 8.989444375656111, 85.49753051614954, 31.69766193452176, 40.13836015684525, 27.73721809070006, 74.60436923693221, 85.13589396467788, 7.997218087505489, 88.11620315235272, 67.68244265624972, 78.20112592540139, 83.59890053480699, 26.93641734534153, 16.16556979775823, 144.87262369794126, 9.035657773749591, 7.703658315105541, 18.31259949468565, 38.24500351164487, 16.7945523657, 6.5877384777044705, 99.51254282836928, 15.248334637618461, 19.966942931082063, 54.456806023583695, 94.27874876320658, 49.09297877315708, 85.4745322027671, 7.527463985827175, 8.416013805320924, 9.707900111211817, 6.006940925808279, 7.045135022119604, 14.058371657726706, 10.572330996931258, 23.228279553662233, 161.84757841977643, 31.4623011587189, 20.652935807640873, 64.96938651204712, 174.60173193899328, 195.81474542789152, 7.191628120458865, 77.62688752990664, 28.235612695116096, 177.47153896644704, 120.1616420235606, 33.59573510638584, 129.86022663445107, 80.04253805990602, 5.926865933728642, 7.107497361333518, 15.742881584106899, 92.10459496266559, 85.27853392517582, 9.891294914421238, 9.264448411416286, 73.77742745168726, 16.268775456615995, 71.40146282760855, 32.70429794175126, 180.93201251994907, 44.265577684673275, 70.86107598461312, 26.75569996818966, 121.76510149667183, 13.18571710639516, 10.771459706815168, 70.06243738816197, 12.781484314911951, 21.88378979941342, 51.22143940604953, 19.059616937784703, 84.06855510007905, 43.87764914346645, 24.79209053858975, 63.025907899281016, 9.45993659418321, 14.255179657019792, 10.60041802192212, 11.092860032604262, 9.746169428876726, 27.543845521686855, 12.458992186340907, 7.062559405621786, 46.46000855115645, 87.02849797567822, 7.74843595440425, 16.323212793432017, 94.94308592608583, 253.26593699325704, 34.603225211315454, 66.41022189488442, 21.24156330935341, 31.06332723849838, 50.462713260334965, 127.36923256528425, 22.97565646735169, 143.86854564025356, 5.316741775465673, 79.51526677150333, 7.717303451955215, 50.27640791492978, 50.22171678944529, 7.811554412667367, 7.904755559413785, 39.675522973605396, 18.4332558766547, 31.70819659618348, 11.62636070808306, 35.61968082923761, 15.765660271954767, 9.856728150612303, 5.6386635038352875, 24.66521757265147, 6.3548918803046925, 46.97745032463204, 74.50492067268783, 48.94362248011219, 9.412961941965348, 17.306537338634534, 60.383760298759434, 20.177581395237514, 22.153015242571893, 40.47798230557911, 25.808011352723277, 47.47160900224878, 16.937554897634534, 71.72895451925794, 16.6983578012426, 60.48576566666458, 8.551136255572612, 79.01210972354616, 37.45070299050689, 6.202802571982903, 46.8669757347524, 18.573206823609027, 86.68443132032861, 8.21975156605146, 30.851827939837577, 6.851934387825422, 6.144465595321743, 213.05834799766447, 28.064128718349952, 8.86431236982895, 81.65480099850299, 92.37268740659417, 112.67825149726158, 27.64360755246709, 15.729190860209895, 20.64095581812471, 27.872078661388638, 100.31682370900361, 84.51009396058171, 52.901046862118875, 85.99222293931996, 48.28692451891447, 38.0739691492888, 14.429090439111732, 6.586613017139979, 36.93502333946764, 93.2912430102323, 65.12458632718455, 46.177760835159624, 74.35940665719197, 69.25087730001466, 16.018777078217212, 132.67594519082863, 37.06239431431903, 22.73074911807679, 6.785648202680707, 94.42505684742913, 16.179929395405726, 120.20853451961645, 40.66146852540071, 185.29834242782664, 243.10020587028995, 67.64113108701477, 34.99719115555467, 56.749888664935874, 8.52042079622212, 45.727963663180574, 16.2244800152219, 23.003308873486745, 39.364009285966375, 48.5828849942333, 12.416793499124246, 43.80023425725991, 17.20633813269656, 29.599060626265395, 31.948143438619283, 35.24586610570209, 40.35992850149259, 25.329045084066596, 10.509945383318414, 63.569674163872556, 16.46025354980113, 39.547175045582954, 62.26437642524702, 15.271204361303067, 148.49125717849776, 13.263798382105877, 23.221741525901027, 31.21644604408293, 19.193913550758786, 50.23800055086356, 17.679603492717213, 73.77214250415614, 58.717725873767314, 112.29254482757011, 85.00861748598182, 25.659066335956147, 69.13891216079314, 32.86821046504763, 24.80680764244215, 86.70226187862242, 45.011589969351114, 8.205126085266963, 47.623400748436474, 10.514233642382099, 9.299186356650072, 22.07374426042664, 33.15479913126769, 25.048900888316076, 112.91744019510664, 15.661011936650162, 200.7892758843158, 10.245056067287758, 73.54014966231867, 7.987082587210223, 14.174574470863554, 46.91851956120938, 5.518348130795131, 24.12673649635941, 22.137497098996796, 29.214038029947723, 33.22089894858982, 17.076919026336316, 58.86612846701849, 6.078551439258997, 13.095604252641763, 18.390169395193354, 66.78087842558116, 34.20712084387556, 40.52978821321521, 58.846796486868406, 37.86669019364584, 71.4144670210377, 18.026020689484632, 116.42104318381429, 30.480586425193287, 95.05304659588106, 13.27322367704452, 9.80234153034055, 29.457840444962024, 132.21652888680504, 21.415428394959534, 26.714325142645052, 14.372595029776418, 6.294618778445855, 25.15259601210857, 42.14355600500301, 36.10050475739827, 27.04702895872642, 62.6635526599748, 31.50275092223054, 6.422326920196198, 30.18971210377149, 32.93454129438216, 9.250517565061546, 15.337578074292123, 33.374640282610905, 19.2691480988453, 11.101585519202875, 70.68698241579585, 27.994986062600386, 10.903765626573144, 12.97422390856817, 32.86659423000681, 54.76611140276968, 14.447421120338136, 45.99798064702803, 47.67132113158688, 150.14142642728802, 13.171664127157445, 50.76877458706508, 5.368570748520073, 38.83500710899157, 7.090300939590395, 52.53076363550263, 37.25428250336231, 8.024647353564589, 87.54953550415607, 7.025487306124102, 17.09714296632343, 118.78544318229497, 44.34417310477223, 14.508278023064996, 18.582272786379217, 59.528868073401206, 15.873625673359532, 43.74709652489194, 42.733880080927385, 33.96846854839982, 13.197490874760406, 34.62194643010257, 5.764108845164433, 10.204782571722703, 108.90063413841236, 26.655147415531047, 15.83276512008551, 12.696130438613954, 277.21409184035764, 18.805610105997744, 82.53639623445933, 17.556877603800356, 13.562791482876312, 22.815203688551268, 77.72111963872781, 13.30166864230811, 108.61439063432844, 18.17301671284699, 31.24733817039498, 38.49164653816228, 117.0500664507765, 12.82494678820007, 63.64235986555015, 8.49042793684647, 37.60998232817941, 12.862118152270515, 11.949112013693016, 62.679526874419324, 38.125105342407196, 18.83778919436581, 50.56443453411434, 8.173941594115524, 90.3346648079957, 10.016901816717441, 25.303706439135542, 12.614608792024926, 148.6222843121083, 9.011168298142529, 54.62655596227636, 23.638995978259413, 62.0202706100651, 32.27389150354772, 76.39077207518785, 11.403434455077852, 25.56482751298735, 11.77518982923124, 36.77637149511664, 40.3730676764859, 6.745510267198776, 5.85126864231784, 32.93698891149913, 51.632419170921004, 16.79375500302942, 8.381296987727307, 57.805760269475684, 18.12969313929383, 118.48272544447399, 22.946097399268172, 6.935642783780154, 6.167956499478148, 19.795865569435016, 84.87847541961895, 128.7806329528442, 53.19565209136632, 42.12305961341041, 15.563351404333861, 5.172669977903319, 50.865359988113624, 29.332035801027263, 7.639949950585392, 12.451453548351871, 130.68867333543062, 15.462854275243771, 120.8336321676496, 15.66323035601109, 41.535034702770304, 9.224428541993468, 55.046875378511395, 66.48713147994353, 67.31586636636763, 20.307919994435274, 62.7165509446759, 44.52146770137634, 17.062297779837323, 5.038790263222168, 27.817904417126357, 13.821342925723531, 8.152673893860324, 49.65339973730355, 53.7307021313214, 172.1577323640933, 5.499185360792113, 13.36611016963508, 79.22973438431393, 36.85175049725769, 23.132388716636115, 70.20373723857924, 43.91674890144421, 23.391654913192887, 8.554536751716928, 50.13977498111584, 224.52703035697388, 18.999225746326893, 49.64288740604588, 66.27330432944095, 7.100838980073474, 40.01764480205958, 21.46188825650605, 71.97579223086859, 17.96889971238747, 32.04534288261085, 9.94476526188981, 20.94828326697517, 50.707188548412, 34.57018746995797, 5.748402540825983, 12.784674480269555, 25.620354914513875, 44.868384178348485, 223.45063214484702, 20.471558724031485, 27.214951673943435, 7.088655982846, 15.066380304398827, 12.441926057465515, 13.036923948493902, 5.458079478917933, 45.31650463392814, 10.303147461589965, 9.826664956530873, 43.46076206178473, 41.39600791773448, 114.2277992709366, 6.334844760019387, 8.118435130870672, 73.65796347343216, 74.0505268133435, 16.041068998972346, 120.49214343186424, 55.246109128872426, 54.10466569742895, 69.22210433941837, 31.147897879485726, 28.789453753908745, 31.31208427221148, 89.1323648098498, 17.3749012211916, 40.83566375703187, 18.968698584943212, 9.545442086924568, 6.407041233747932, 9.099496818667763, 27.31552379610656, 5.165915052183495, 27.14343826929342, 97.67452672103612, 7.025689777976018, 68.67406018558728, 12.219945638823308, 40.439720241808025, 77.96932115683387, 29.814085863182086, 12.434954465800438, 79.95465216047829, 122.2207046295964, 20.406526142244147, 40.81553542178709, 63.359902445870254, 115.00162660987378, 79.43272201160056, 33.30076442390917, 67.65940318111831, 26.773347721104805, 40.421731249241496, 29.856284032760534, 17.50225639566554, 27.62949979999967, 20.825008163749, 100.42334210166962, 23.220095658992165, 62.72500455323022, 25.89042431637319, 6.227820337154575, 24.328575722600487, 130.84316432276938, 91.82769124678838, 48.7569013530706, 53.793351453118476, 39.43272925541584, 252.30762612993126, 24.269390767487963, 101.46783966497254, 99.40183451825749, 76.306880737401, 77.16226227910697, 61.52305698106014, 66.29001382686644, 66.92008724211468, 63.83620891647934, 79.2343126813437, 121.28325005627244, 40.8078569178327, 42.63253197217764, 25.101397327829826, 5.722108793237142, 57.27730839428295, 252.8043081510951, 64.56396233882238, 23.387287538764824, 83.45212092342427, 105.49942505257088, 17.737447841397966, 33.538752086914805, 17.647235615475495, 69.59379951797072, 13.631050898929237, 22.665409446052678, 20.005326253912088, 19.369866764977438, 23.680042103533463, 76.73335513217403, 15.715040269233876, 100.19430517607178, 5.74452762687778, 8.030528646192765, 12.364938729926873, 15.263218240018562, 51.653564269622976, 165.1786010001392, 31.332926597478686, 87.6256590143467, 33.326245921104416, 28.63277027275903, 22.6065517727205, 166.90308629198302, 6.189385252469565, 17.02515063885453, 60.24071639113237, 59.39241802435835, 18.35042865502252, 5.624215566961237, 16.679228849421357, 7.643309811547195, 5.7056865266548185, 55.617542362255875, 116.04848648497288, 14.34786462164004, 18.885209725608217, 142.76606581165223, 22.150625389030314, 18.28044164259666, 5.697151035648542, 63.58976660494828, 100.46745408845408, 51.451561055151444, 7.856137438450768, 94.18733507404355, 198.73469140746514, 20.69706156801512, 15.246615251847782, 17.440078738712458, 5.239610834288082, 53.10602924469432, 49.78450623100434, 45.14418367770885, 33.41346414972865, 15.878214400378168, 50.56938081460345, 30.826424981293528, 51.9767975728455, 13.861435163057212, 74.35973708148163, 31.8560022236141, 102.86596166540782, 9.242461208403899, 13.632498757763042, 58.226418867350716, 29.14059978402733, 14.039598042998755, 87.85145741764819, 22.644564278351126, 21.642603965978285, 82.93384637642771, 255.07756363679684, 14.917911547491428, 130.750807537633, 41.8547700238618, 57.82218319587441, 34.42191757642411, 39.47684434945057, 12.477602300487078, 65.99874638705026, 13.09341558564898, 10.822396000239777, 6.502426721982718, 112.47428498905853, 55.43812524815554, 39.22204733540945, 16.20166751696972, 10.918799964375511, 50.61783122418886, 30.792157666359675, 158.1302223704901, 27.35077022024999, 17.216803014497053, 35.871620137215814, 25.642037699714173, 157.10317508924012, 36.35324888181706, 65.49246367386179, 81.0663994653696, 17.242973039572355, 37.86739434856687, 82.88003141340097, 29.276153605694272, 62.94407346218664, 18.440759260089184, 81.80944524819733, 137.73182274993349, 58.724230307556006, 13.586302157895785, 44.84095528794548, 7.9075210781019525, 63.7731023238864, 169.87151315344346, 29.37838771410376, 14.678027121507988, 138.90601136386985, 23.418781647009762, 9.90448688489928, 18.62382467099809, 18.174695324293786, 52.344881081070014, 39.28609492175369, 17.159820506448007, 10.220326120072533, 16.2222885230167, 41.38850836550188, 14.18442428177332, 18.824270120830196, 44.67156571779273, 27.74711800093381, 20.25937135653239, 9.390992729268445, 18.39037822915637, 91.27760491182039, 60.13078335426172, 7.247784828945409, 8.988074222180835, 80.89549526720364, 30.111272586369104, 12.22104255862099, 44.195590486703644, 25.47781478703828, 70.93785005914027, 105.87539402208591, 97.11084551254595, 12.717963945318047, 69.53368962320792, 26.69850206498198, 88.84800627734856, 132.97291360280695, 21.649526129465123, 15.752495828805126, 6.176211244580965, 50.49135703553155, 113.69710586233234, 161.5034932697419, 82.21765875027081, 41.71953052031016, 20.646278498249657, 67.56623254011919, 103.07434067145299, 6.036011252649252, 20.603840216317288, 47.94188069545472, 67.9794495574488, 167.97746878100008, 12.505914173349092, 71.51663732088092, 172.51236092500952, 33.56626036637213, 38.48989313521126, 31.78125718591605, 61.61395471109695, 13.698352394701045, 46.08660603760205, 16.47866470590221, 15.507108359311161, 97.67793904593476, 70.93268692836114, 15.585126043734135, 15.830795702079175, 121.07519575187608, 60.21769367545707, 72.69641117294336, 144.58015703127424, 5.304580523903768, 66.16580652514148, 48.39899955846507, 25.332137036891375, 46.245186309441024, 114.37002136003107, 72.12703589099146, 45.07458657006838, 15.046858065915616, 31.805640240656455, 111.0530521574377, 28.807083477721868, 42.10652527761826, 33.911391708152294, 7.225996986495597, 19.687655806941315, 7.503828989249385, 5.275472280060956, 11.495398441954519, 37.077579717239615, 53.21009589477025, 125.67612366963071, 26.22210077086162, 57.624841219768, 33.21014709512258, 7.83029300812788, 65.7588858611027, 6.155560778552877, 26.597043298891002, 19.481285950231204, 66.92681360649645, 18.53282177220197, 17.420340296941475, 17.51758678487171, 19.234232042350904, 17.37341185499534, 7.795993221424103, 113.59584695612452, 10.044285735857477, 18.297932266896673, 98.22674759342704, 80.60144266193336, 52.02672520792851, 71.06435477524636, 16.35794537338344, 195.1708969956101, 50.78309193906913, 13.83008651259039, 30.397695310422574, 18.490803083078927, 39.707964295297955, 8.34053022797121, 28.307122955449454, 9.514934344420395, 25.95939126150947, 57.73852490240094, 55.187652134991076, 64.30372175737428, 163.06025960011715, 57.1070492548061, 38.56241519493997, 58.01356308060742, 91.56225234311935, 6.681618492982723, 85.46691152744852, 35.50352379984278, 79.51083724799985, 10.615530548641932, 60.64324119788901, 71.04295486937464, 7.434812348250691, 24.58009720017965, 5.5597788125589025, 36.13702200665824, 7.337260512563944, 71.2064063119746, 62.59437713966, 61.67222666584996, 28.463594855965816, 7.062620485650259, 7.341695541638114, 8.023159207940372, 9.729364009531858, 72.16917387113146, 95.83886841258591, 29.25001020808613, 10.50370951325403, 17.9545187989127, 9.131486134221461, 12.977302857907333, 8.43937069326099, 20.926752699204428, 108.6342063278505, 9.469149653302471, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([5641204.362752311, 5713418.028333274, 5973955.085900866, 8597275.0, 8680996.306600256, 8681361.997045169, 8681531.129112966, 8684216.292028986, 8684717.042839257, 8685328.728861835, 8686326.368217785, 8753201.5625, 8818043.668401066, 8818612.245160926, 8911084.375, 8960256.315623675, 9006421.553906638, 9011971.875, 9016924.229697304, 9024021.156367982, 9027689.334481914, 9029371.266447801, 9030968.75, 9033670.585000347, 9033718.75, 9035875.550533727, 9036028.125, 9036109.058244215, 9060878.78471017, 9061178.125, 9061409.375, 9062147.904612709, 9062524.657649051, 9064192.850431079, 9065012.5, 9065026.866404688, 9065086.117880061, 9065897.037763879, 9066772.05957048, 9067127.136747748, 9067168.92366152, 9068519.698135894, 9068876.807387246, 9069240.59344682, 9070953.125, 9072216.384233845, 9104679.6875, 9106500.457892537, 9107315.947094545, 9108343.75, 9111501.600509474, 9112839.604422258, 9115732.286077509, 9121322.35312964, 9132451.308818439, 9136949.368714787, 9139078.125, 9140124.534883413, 9141256.837599808, 9144976.5625, 9146979.19983746, 9164462.427237961, 9164854.220412433, 9168608.983719105, 9169422.816326985, 9169800.497049227, 9169875.944384983, 9169992.1875, 9170530.284483593, 9172192.822863942, 9172656.19281428, 9172901.390465582, 9172928.23418477, 9172947.399912184, 9173592.241931852, 9173639.244124468, 9173818.75, 9174080.848235987, 9174768.75, 9174776.40770408, 9174855.44791443, 9174904.6875, 9175453.125, 9175517.98729186, 9175855.54290624, 9175868.815238567, 9184186.595499082, 9184400.675293464, 9185667.53520495, 9189823.424954945, 9189983.280594736, 9190331.779265527, 9190732.766274655, 9191435.824125681, 9191782.189917075, 9192294.216901014, 9192386.276427254, 9192603.21904522, 9194192.136777522, 9194204.6875, 9197128.125, 9197790.782436501, 9199200.0, 9203833.497891074, 9204228.87334331, 9204979.426965175, 9206221.875, 9208887.5, 9209630.092454365, 9211927.669983087, 9211948.10327525, 9214570.63262848, 9214621.115541937, 9216697.754982779, 9216890.726587988, 9217701.5625, 9220363.035112642, 9225837.893431565, 9225904.47555423, 9225912.287504574, 9226070.3125, 9226768.814142251, 9226877.621550437, 9227453.248500424, 9227471.719873326, 9227726.5625, 9228087.5, 9228232.8125, 9228347.727812998, 9229350.54048412, 9229733.361627994, 9230035.998673676, 9230483.920125019, 9230777.010488855, 9231113.75187845, 9231403.046713926, 9231723.183635486, 9231750.028677136, 9232809.375, 9232831.25, 9233162.05687695, 9233396.875, 9234320.3125, 9234460.300267478, 9234926.891860135, 9235806.564436017, 9235853.984469837, 9236128.85684437, 9236425.71932078, 9236478.125, 9236869.144462362, 9236954.707708923, 9237254.6875, 9237348.049921775, 9238111.838078752, 9238115.526234027, 9238117.1875, 9238191.100494854, 9238279.6875, 9238500.571946487, 9238666.703634575, 9239103.125, 9239727.19584528, 9240722.159230024, 9241088.183818635, 9241242.1875, 9241380.972592978, 9243187.5, 9243896.875, 9244253.125, 9245309.375, 9246540.360947661, 9246967.23162321, 9247307.392803513, 9248111.734371161, 9248431.456269937, 9249713.611473087, 9249893.972418962, 9249924.150360076, 9250999.706987841, 9253171.768868228, 9253956.912384475, 9253964.955885325, 9254440.433028957, 9254899.994973883, 9255301.623329634, 9256319.28755666, 9257112.96005424, 9257128.125, 9258354.718149161, 9261244.33851664, 9262373.360962989, 9263133.23888655, 9263145.97859229, 9263512.5, 9263847.950545214, 9264268.050769426, 9264536.681511411, 9266045.124461679, 9272437.417800546, 9272493.320457317, 9274186.596292725, 9275423.431895722, 9275567.745599011, 9275889.0625, 9276694.878360173, 9276839.160681726, 9276868.75, 9277744.189712007, 9278288.209648438, 9278449.72119223, 9278551.554955045, 9278641.597067226, 9278789.594982188, 9278801.5625, 9278858.987506956, 9279125.17156229, 9279504.40607445, 9279963.687543083, 9280410.868004126, 9280980.878223622, 9281406.519368084, 9282786.004436644, 9282849.140849035, 9285989.133410476, 9286167.800848858, 9289582.603996972, 9289815.703235693, 9290154.01957211, 9290157.021523993, 9290832.8125, 9291307.417792113, 9291534.375, 9292035.723022152, 9292073.67450043, 9292397.289056065, 9292464.806651114, 9292807.51399918, 9292930.717438536, 9295026.80434378, 9297155.207577234, 9298115.625, 9298812.5, 9299786.911440747, 9300484.375, 9300512.278778838, 9300656.986746017, 9300786.19790161, 9300792.1875, 9301066.99778293, 9302000.634189725, 9303840.767252428, 9304335.8140203, 9306709.375, 9309242.1875, 9312062.354873892, 9316899.946648203, 9321623.632978154, 9322807.60612767, 9323153.402930807, 9326294.34541745, 9328285.857239908, 9329421.875, 9330630.294481779, 9331207.8125, 9332042.1875, 9332496.661021266, 9332812.456215914, 9333293.484896794, 9333969.542201718, 9334101.5625, 9334361.947949449, 9335077.884466711, 9335092.1875, 9335227.413343823, 9335265.163292784, 9335268.75, 9335274.215735115, 9335746.411995087, 9336168.75, 9336171.652373277, 9336404.6875, 9336420.460697006, 9338962.307473658, 9339477.759260444, 9339992.165091136, 9341817.640416311, 9342724.555917526, 9344299.14962008, 9344437.271124257, 9345726.231222726, 9346161.663158933, 9346361.321868246, 9346362.820720568, 9347834.398158673, 9348565.625, 9348583.362293184, 9348993.75, 9349205.724409427, 9349331.555327538, 9349521.781399991, 9349576.10347066, 9349759.706846273, 9351117.305670563, 9351300.808797274, 9351667.1875, 9352208.1172349, 9352216.623438172, 9352310.9375, 9352422.41643926, 9352735.138211155, 9353153.078701712, 9353153.455762468, 9353341.62193635, 9353439.35970125, 9353548.302458595, 9353668.95063388, 9353808.374655534, 9354298.874103278, 9354544.712288463, 9354642.851437429, 9354781.25, 9355211.194720525, 9355659.375, 9356121.969906108, 9356127.069849772, 9356978.125, 9357010.294674056, 9357049.563703084, 9358104.6875, 9360715.930269258, 9360759.44906238, 9361319.190733269, 9361736.776283769, 9362050.395423764, 9362068.75, 9362155.156382028, 9362490.56287718, 9362625.0, 9362644.785223365, 9363044.906773495, 9363049.14726225, 9363790.625, 9366251.433956955, 9366463.761153966, 9366548.864861304, 9367044.275132706, 9368177.84621437, 9368277.52375652, 9368710.328108637, 9369675.0, 9370296.031727793, 9371560.722699612, 9372149.953856405, 9372590.817369478, 9375793.160111973, 9378695.647010852, 9381502.932989392, 9384889.0625, 9386914.0625, 9391196.34243195, 9392392.647859063, 9399021.875, 9399130.900515845, 9401017.794293588, 9401487.328660874, 9402043.75, 9402582.8125, 9403214.0625, 9403818.75, 9404153.905802436, 9404451.819071315, 9405630.530641885, 9405923.4375, 9405974.615720607, 9406071.984903954, 9406146.875, 9407053.415939383, 9407980.513714345, 9408231.435091246, 9409328.102265088, 9409850.374401394, 9409995.3125, 9410466.86492899, 9411023.4375, 9411205.104987005, 9411274.516829515, 9412369.05027605, 9413214.23868102, 9413774.918127744, 9414590.625, 9416139.755648563, 9418167.1875, 9418308.23487855, 9419143.75, 9420318.75, 9421195.993099414, 9421238.618057681, 9421590.439269999, 9424554.25272705, 9425542.1875, 9425599.699239021, 9426526.5625, 9426640.625, 9427075.602153623, 9427163.911642324, 9427691.664613154, 9427823.094926458, 9428451.5625, 9428463.865084132, 9428703.767472478, 9428786.509400614, 9428904.6875, 9428961.083526129, 9429756.713313207, 9429906.109502941, 9429942.71413465, 9430081.091084609, 9430135.218451593, 9430262.278410358, 9430293.75, 9430643.75, 9430835.780231733, 9430849.989936026, 9430874.56854477, 9430889.024151338, 9430919.868801378, 9430957.96582207, 9431012.683400264, 9431117.1875, 9431570.694588333, 9432504.086337248, 9432827.475952484, 9433074.997074727, 9433319.69968926, 9433557.59559999, 9434435.9375, 9434960.630162906, 9435102.853876036, 9435311.99830607, 9435560.9375, 9435638.962048963, 9435761.303136993, 9435807.414955331, 9436432.720183503, 9436457.31449874, 9436461.620268345, 9437504.6875, 9437507.727177091, 9438314.0625, 9439846.086314026, 9440010.92561381, 9440356.537779441, 9440547.501918022, 9440671.312042195, 9440719.50222865, 9440781.25, 9440840.331541805, 9440927.071470253, 9440939.0625, 9441005.411421092, 9441072.53667581, 9441085.44385649, 9441167.026844108, 9441381.463992873, 9441599.970352564, 9441910.9375, 9441996.875, 9442087.420599647, 9442523.326712394, 9442560.136729684, 9442674.574026281, 9442784.375, 9442888.901476542, 9442968.652765842, 9443262.600172134, 9443270.018840132, 9443393.931789033, 9443448.420723889, 9443710.149769785, 9444484.347659435, 9444523.539618261, 9444538.42880762, 9444588.573512025, 9445045.563284982, 9445121.739035623, 9445329.6875, 9445446.875, 9445673.4375, 9445786.942645865, 9445914.0625, 9445953.882625133, 9446382.509047443, 9446413.94265701, 9446420.959090307, 9446452.747434901, 9446526.032010946, 9446671.568562454, 9446766.809407692, 9446902.032518264, 9447040.625, 9447053.125, 9447343.344744492, 9447547.586081244, 9447587.5, 9447754.912293827, 9447756.25, 9447806.25, 9447912.230596337, 9448351.01487991, 9448351.737228643, 9448432.11494017, 9448447.754180308, 9448533.998017982, 9448990.01613898, 9449140.840703633, 9449713.315169368, 9449809.369858054, 9449858.555552421, 9449904.6875, 9449997.425429216, 9450024.58422435, 9450063.685552167, 9450103.125, 9450116.678574925, 9450153.417996634, 9450181.899816964, 9450262.5, 9450317.1875, 9450431.25, 9450440.662307853, 9450508.944914384, 9450514.429067653, 9450618.540410794, 9450626.783006052, 9450633.281307658, 9450640.414096633, 9450714.017814774, 9450775.747577755, 9450800.0, 9450810.718252601, 9450882.92256262, 9450885.08787482, 9450998.250071343, 9451094.530409781, 9451176.5625, 9451218.34532946, 9451293.400259271, 9451351.253701191, 9451398.4375, 9451423.4375, 9451477.872360857, 9451726.732019503, 9453087.329881981, 9453686.315683622, 9454215.625, 9454234.29155704, 9454903.034183877, 9455339.554050587, 9455906.517181957, 9456142.1875, 9456203.538702812, 9458376.737421885, 9458779.947645867, 9459997.117944757, 9460150.489557808, 9461031.414175425, 9461147.680122666, 9461596.046941802, 9461603.998681301, 9462223.4375, 9462273.200220123, 9462356.25, 9462729.6875, 9462853.369287642, 9462933.123566037, 9462963.923735518, 9463095.159204364, 9463423.537876004, 9463840.54534466, 9464240.621459171, 9464301.692871891, 9464884.996433852, 9465273.614786875, 9465905.231225323, 9466029.558217363, 9466056.25, 9466078.125, 9466388.805747477, 9468777.497375, 9468906.25, 9469415.625, 9469444.213686723, 9469474.835955095, 9469791.670970183, 9470768.174471686, 9471051.300402112, 9471467.1875, 9472520.3125, 9472688.906167956, 9472819.59375, 9478137.014563637, 9479043.75, 9479159.375, 9479169.962498838, 9479376.5625, 9479418.30052264, 9479530.20602123, 9479870.78702593, 9480118.011192506, 9480617.623548903, 9480675.678229038, 9481584.895416485, 9481585.9375, 9481826.483501237, 9481953.125, 9481963.559365444, 9482009.375, 9482125.617886523, 9482307.200126152, 9482872.521061702, 9483018.19359347, 9483726.26580913, 9483745.928462911, 9483764.69755071, 9483774.218709603, 9484315.458508322, 9484393.75, 9484602.473959401, 9484649.629458139, 9485234.305136023, 9485560.811253127, 9485603.824403742, 9485630.92306821, 9485754.078425376, 9485831.163814468, 9485881.584462881, 9485969.71207248, 9486156.782886649, 9486392.1875, 9486951.450764906, 9487090.625, 9487133.329796026, 9487205.91790489, 9487278.125, 9487998.4375, 9488811.198881792, 9490532.44468739, 9495329.669929542, 9495507.36310296, 9497114.340931516, 9497616.14615336, 9502112.5, 9506731.25, 9507063.590687875, 9507443.583404444, 9508704.6875, 9508707.0157823, 9508926.805232601, 9509124.469601143, 9509248.149881825, 9509257.748280806, 9509301.586249013, 9509718.676091926, 9509818.328859752, 9510001.185233822, 9510085.9375, 9510227.487939535, 9510452.888842534, 9510566.516129985, 9510720.3125, 9510752.263837531, 9510875.46568439, 9510896.875, 9511055.229086727, 9511748.4375, 9511989.0625, 9511995.98899799, 9512013.317127347, 9512040.957351228, 9512073.53202277, 9512112.77522975, 9512126.5625, 9512134.153995847, 9512631.192004591, 9513586.502191411, 9514046.305313293, 9514068.726703245, 9514103.760333795, 9514152.83791729, 9514296.588762823, 9514341.86933505, 9514515.368929064, 9514600.206029164, 9514610.9375, 9515129.01903018, 9515496.875, 9515604.39517277, 9516085.9375, 9516555.491618466, 9516706.82914742, 9516862.839794872, 9517081.132918913, 9517297.92561397, 9518506.25, 9519117.75734335, 9519192.1875, 9520264.0625, 9520525.0, 9520565.265266677, 9520797.357824115, 9521037.460342806, 9521116.986360237, 9521293.988530768, 9521390.625, 9521608.668799048, 9522815.625, 9523150.23013378, 9523193.283815766, 9523637.5, 9524984.955503227, 9526531.170794519, 9527278.475921458, 9528079.325608635, 9531621.482711384, 9533377.521266742, 9533984.059334697, 9534601.354397718, 9536515.657465685, 9538250.715510732, 9538995.501648521, 9539900.860522648, 9539917.765045837, 9540854.169747984, 9541878.794562798, 9541984.456919048, 9542415.625, 9544576.857110394, 9545140.625, 9545638.470266148, 9546625.0, 9547548.4375, 9548446.47981582, 9549115.367149733, 9550349.358248128, 9551426.371406188, 9551956.25, 9552045.3125, 9552499.097185127, 9552900.18240518, 9553039.454224458, 9553048.546950975, 9553168.733150937, 9553345.005241992, 9553445.3125, 9553543.585014937, 9554327.41184688, 9554426.5625, 9554942.469148027, 9555502.228746211, 9555670.160482531, 9555835.9375, 9555873.4375, 9557311.66075965, 9557555.336489804, 9557591.676887067, 9558276.558247805, 9558417.459481914, 9558870.390309537, 9558886.468034884, 9559229.488543995, 9559370.3125, 9559395.495738553, 9559462.5, 9559574.903741792, 9560070.538310656, 9560078.36489845, 9560238.855417889, 9560506.45944554, 9560654.371997679, 9560694.210585417, 9560696.738527162, 9560812.5, 9560834.267905565, 9561030.76010706, 9561087.35308577, 9561155.563186748, 9561329.130445689, 9561482.8125, 9561625.747341527, 9561827.649670986, 9561944.6169385, 9561987.016207749, 9562135.466791023, 9562698.058757747, 9562706.25, 9562779.6875, 9563311.873132348, 9563446.661035743, 9563758.532924248, 9563984.375, 9564335.35030365, 9564696.6704771, 9565339.159635993, 9565557.8125, 9565778.125, 9566634.365920147, 9566767.631610997, 9566849.862106163, 9567335.109123109, 9567587.5, 9567950.0, 9568124.706272509, 9568258.30400027, 9569040.112359164, 9569446.6800279, 9569507.241599236, 9569540.625, 9569596.875, 9569614.0625, 9569663.909265365, 9569787.5, 9570033.52795946, 9570339.0625, 9570812.5, 9571002.252799274, 9571134.375, 9571282.8125, 9571653.125, 9571662.092353154, 9571809.375, 9571819.519614862, 9571880.148287777, 9572197.418558892, 9573126.5625, 9573209.30411111, 9573527.526895067, 9573573.688049318, 9573758.420502562, 9573881.967105161, 9574557.705252152, 9574806.25, 9575465.625, 9576150.481320469, 9577894.642463243, 9579678.424818406, 9579751.434689868, 9580173.223599808, 9580380.43317902, 9580684.161878858, 9580706.209454121, 9580759.878365437, 9580973.50714295, 9581105.370299544, 9581221.745607233, 9581228.125, 9581287.959738467, 9581368.31399228, 9581507.8125, 9581601.5625, 9581653.727487756, 9581928.125, 9582084.132154591, 9582454.6875, 9582460.75928803, 9582506.25, 9582563.324364046, 9582663.579320813, 9582709.275349595, 9582756.245723851, 9582841.520542394, 9583072.953039277, 9583418.94765675, 9583441.43172428, 9583462.5, 9583599.225866703, 9583734.195309129, 9583931.25, 9583943.75, 9584691.598202586, 9584809.206927322, 9584916.814636339, 9585144.796261255, 9585685.114997022, 9585832.8125, 9586078.125, 9586651.182593096, 9586694.482984954, 9586880.573959976, 9586923.4375, 9587400.0, 9587605.99741048, 9588275.0, 9588579.6875, 9588644.943033492, 9588860.9375, 9589070.664736027, 9591651.703378117, 9592211.237978924, 9593170.3125, 9593495.333872592, 9593542.402763866, 9593593.75, 9594380.177522495, 9596245.3125, 9596430.790235857, 9596926.993238775, 9597684.375, 9598146.97827363, 9601291.364617215, 9601864.0625, 9602398.503530081, 9602409.375, 9602443.812168011, 9602514.089867588, 9603156.48462612, 9603266.407752104, 9603412.5, 9603526.5625, 9603531.183555508, 9603589.445819043, 9604122.735227056, 9604348.15402358, 9604641.673580276, 9605681.473155739, 9607033.04867891, 9608746.230517438, 9611094.827544825, 9614471.746626483, 9617885.592634793, 9619531.163534835, 9619708.399477974, 9620039.756393148, 9620653.749666842, 9620937.761496548, 9621149.037740655, 9621601.5625, 9621764.76636621, 9621868.065825617, 9621960.448054792, 9622038.301725345, 9622039.581519725, 9622061.440747375, 9622110.817189604, 9622394.487795679, 9622528.96257855, 9622704.359626824, 9622862.5, 9623070.144055795, 9623657.8125, 9623797.20283277, 9623847.341659857, 9624126.15450277, 9624130.92426833, 9625023.4375, 9625128.983172642, 9625226.5625, 9625312.600650996, 9625738.5637898, 9626220.521861203, 9626233.549410429, 9626245.753017101, 9626312.5, 9626536.940382034, 9626734.755382556, 9627664.235347496, 9627858.567916654, 9627989.0625, 9628154.6875, 9628330.825503962, 9628461.844138173, 9630348.530266386, 9633284.049081936, 9633546.520597864, 9633848.4375, 9634031.769038176, 9634457.321515704, 9636314.714821042, 9638306.788098784, 9638487.5, 9640069.511932679, 9644093.75, 9648089.0625, 9650200.365454936, 9650507.809383472, 9650756.021366756, 9651071.088943437, 9651252.591281647, 9651512.935919313, 9652056.25, 9652081.25, 9652354.6875, 9652496.435394278, 9652511.330959968, 9652540.37871016, 9652548.101899775, 9652578.40317468, 9652601.71869901, 9652720.31275286, 9652818.908534447, ...], [22.394196678651518, 104.52158100367086, 13.834372604059098, 35.41408315871291, 5.773087473458428, 13.317960726153173, 84.38749123685322, 48.115097108615274, 127.13694355831899, 92.43627857526893, 32.268543420184336, 52.82941772557212, 42.71202106530219, 24.345275598213007, 46.18188887006458, 222.3309201631657, 71.0682674776697, 127.240912628396, 134.12040684264818, 19.55810662146437, 7.704663006329894, 22.131492749530132, 72.29470358303534, 7.70486234991024, 52.87561997126572, 17.557496686907598, 50.114824909464126, 13.857582698557135, 18.924661519961447, 64.22837177684053, 30.020043014632908, 6.40667971078974, 23.765649947324775, 18.258631064013606, 36.511970557806684, 9.602308438421888, 35.00964570423421, 15.600434970079439, 79.54785744901969, 58.645072239250226, 9.482691265255715, 37.29227627107436, 45.23637678961425, 27.915345673499598, 59.82762819530269, 23.655109908387644, 49.835771566636566, 8.544530707568256, 165.0625814228895, 37.733860217806864, 89.37238493895438, 5.142255491400577, 53.87095917753633, 17.142063145978042, 24.36099300858252, 48.755507320789846, 126.85696156126042, 10.470999738233656, 30.844878865389227, 28.970578016071585, 8.950500987083618, 27.163658648202826, 94.19760674944675, 22.650814075313523, 6.025800040902835, 16.75841679062667, 10.28188264389288, 90.23023405486248, 5.562772928059884, 5.748423706084452, 6.75214333312213, 25.53560002129059, 6.099527547517071, 61.733867887898384, 164.760916317508, 11.423982424020824, 83.89601011604941, 6.685863369978612, 71.55399152606256, 25.552740377199576, 43.84830275398452, 90.20496363111815, 40.780091181954, 33.64314497994563, 12.792526121014621, 24.383484232678867, 25.703715722187518, 113.42777121430348, 8.479426161442468, 27.375416162848392, 5.482222888122719, 37.447578573159554, 124.86148706073311, 54.76871609120763, 5.7693071883198614, 7.249843785713159, 5.633073675257272, 21.368550699396152, 32.46748219601164, 39.607228724573424, 116.12161969314596, 26.391362123903455, 55.64931652175589, 119.27641022646476, 84.72634967215552, 7.054608688273994, 33.49631846133792, 96.73745414289843, 19.653157599903064, 16.353329133907838, 10.642607704407743, 16.320330365793374, 6.37428393384102, 14.479679103268964, 30.03087615054855, 75.31295368384066, 13.236529801587693, 53.60947618740232, 10.628492559123924, 40.28037787699793, 107.4925614186926, 15.191758644465406, 10.422496798223108, 5.206579793353914, 89.61832997814611, 55.88729747594363, 100.40663142677818, 48.532878319574245, 7.365254672498632, 12.092539172447166, 137.34478991621447, 16.307105739299224, 21.955375210405453, 23.00048065595947, 83.43140842902064, 27.066522598220594, 24.358507125456754, 22.054891106799726, 42.72483496877763, 119.60170811769181, 28.821753336747115, 29.877603041775043, 37.10615966657959, 12.965281610265848, 21.41705026827473, 28.50582863192337, 24.307362845920416, 11.582602527117224, 18.63916864460317, 55.329597679098164, 6.130103457256677, 15.019099928474635, 45.416550298846445, 37.18170702453952, 20.016835110161256, 45.33951718292288, 46.23460204178426, 11.492046322316241, 103.6619071876334, 19.201483747525774, 21.655575446736854, 47.59977095497724, 5.311060126815191, 60.21671012502449, 77.3981733383878, 65.51083818134305, 24.043690322397605, 44.899695161960736, 52.21895219550207, 45.06492782274351, 85.6974571690523, 9.11768495084702, 7.133098812617643, 7.458180806289963, 19.19780968498457, 15.7906654464706, 21.995951443753786, 21.219106108252888, 7.88315917346164, 23.840413922450566, 90.66741171220873, 8.670940322655646, 10.22140818807595, 8.187603396679547, 36.23488533989433, 114.14785458164387, 5.559751315108612, 80.04011355200743, 34.111216269356525, 16.72689267380683, 19.80521255895534, 27.09718900806906, 16.86082059530092, 7.8633325766536855, 114.55113191627426, 5.325507896820359, 16.294210536135207, 67.72431511148284, 78.36583963074916, 68.58451549008734, 5.19261487325832, 127.48950403642432, 28.414616265847283, 27.280670952355372, 56.68665582183081, 8.989444375656111, 85.49753051614954, 31.69766193452176, 40.13836015684525, 27.73721809070006, 74.60436923693221, 85.13589396467788, 7.997218087505489, 88.11620315235272, 67.68244265624972, 78.20112592540139, 83.59890053480699, 26.93641734534153, 16.16556979775823, 144.87262369794126, 9.035657773749591, 7.703658315105541, 18.31259949468565, 38.24500351164487, 16.7945523657, 6.5877384777044705, 99.51254282836928, 15.248334637618461, 19.966942931082063, 54.456806023583695, 94.27874876320658, 49.09297877315708, 85.4745322027671, 7.527463985827175, 8.416013805320924, 9.707900111211817, 6.006940925808279, 7.045135022119604, 14.058371657726706, 10.572330996931258, 23.228279553662233, 161.84757841977643, 31.4623011587189, 20.652935807640873, 64.96938651204712, 174.60173193899328, 195.81474542789152, 7.191628120458865, 77.62688752990664, 28.235612695116096, 177.47153896644704, 120.1616420235606, 33.59573510638584, 129.86022663445107, 80.04253805990602, 5.926865933728642, 7.107497361333518, 15.742881584106899, 92.10459496266559, 85.27853392517582, 9.891294914421238, 9.264448411416286, 73.77742745168726, 16.268775456615995, 71.40146282760855, 32.70429794175126, 180.93201251994907, 44.265577684673275, 70.86107598461312, 26.75569996818966, 121.76510149667183, 13.18571710639516, 10.771459706815168, 70.06243738816197, 12.781484314911951, 21.88378979941342, 51.22143940604953, 19.059616937784703, 84.06855510007905, 43.87764914346645, 24.79209053858975, 63.025907899281016, 9.45993659418321, 14.255179657019792, 10.60041802192212, 11.092860032604262, 9.746169428876726, 27.543845521686855, 12.458992186340907, 7.062559405621786, 46.46000855115645, 87.02849797567822, 7.74843595440425, 16.323212793432017, 94.94308592608583, 253.26593699325704, 34.603225211315454, 66.41022189488442, 21.24156330935341, 31.06332723849838, 50.462713260334965, 127.36923256528425, 22.97565646735169, 143.86854564025356, 5.316741775465673, 79.51526677150333, 7.717303451955215, 50.27640791492978, 50.22171678944529, 7.811554412667367, 7.904755559413785, 39.675522973605396, 18.4332558766547, 31.70819659618348, 11.62636070808306, 35.61968082923761, 15.765660271954767, 9.856728150612303, 5.6386635038352875, 24.66521757265147, 6.3548918803046925, 46.97745032463204, 74.50492067268783, 48.94362248011219, 9.412961941965348, 17.306537338634534, 60.383760298759434, 20.177581395237514, 22.153015242571893, 40.47798230557911, 25.808011352723277, 47.47160900224878, 16.937554897634534, 71.72895451925794, 16.6983578012426, 60.48576566666458, 8.551136255572612, 79.01210972354616, 37.45070299050689, 6.202802571982903, 46.8669757347524, 18.573206823609027, 86.68443132032861, 8.21975156605146, 30.851827939837577, 6.851934387825422, 6.144465595321743, 213.05834799766447, 28.064128718349952, 8.86431236982895, 81.65480099850299, 92.37268740659417, 112.67825149726158, 27.64360755246709, 15.729190860209895, 20.64095581812471, 27.872078661388638, 100.31682370900361, 84.51009396058171, 52.901046862118875, 85.99222293931996, 48.28692451891447, 38.0739691492888, 14.429090439111732, 6.586613017139979, 36.93502333946764, 93.2912430102323, 65.12458632718455, 46.177760835159624, 74.35940665719197, 69.25087730001466, 16.018777078217212, 132.67594519082863, 37.06239431431903, 22.73074911807679, 6.785648202680707, 94.42505684742913, 16.179929395405726, 120.20853451961645, 40.66146852540071, 185.29834242782664, 243.10020587028995, 67.64113108701477, 34.99719115555467, 56.749888664935874, 8.52042079622212, 45.727963663180574, 16.2244800152219, 23.003308873486745, 39.364009285966375, 48.5828849942333, 12.416793499124246, 43.80023425725991, 17.20633813269656, 29.599060626265395, 31.948143438619283, 35.24586610570209, 40.35992850149259, 25.329045084066596, 10.509945383318414, 63.569674163872556, 16.46025354980113, 39.547175045582954, 62.26437642524702, 15.271204361303067, 148.49125717849776, 13.263798382105877, 23.221741525901027, 31.21644604408293, 19.193913550758786, 50.23800055086356, 17.679603492717213, 73.77214250415614, 58.717725873767314, 112.29254482757011, 85.00861748598182, 25.659066335956147, 69.13891216079314, 32.86821046504763, 24.80680764244215, 86.70226187862242, 45.011589969351114, 8.205126085266963, 47.623400748436474, 10.514233642382099, 9.299186356650072, 22.07374426042664, 33.15479913126769, 25.048900888316076, 112.91744019510664, 15.661011936650162, 200.7892758843158, 10.245056067287758, 73.54014966231867, 7.987082587210223, 14.174574470863554, 46.91851956120938, 5.518348130795131, 24.12673649635941, 22.137497098996796, 29.214038029947723, 33.22089894858982, 17.076919026336316, 58.86612846701849, 6.078551439258997, 13.095604252641763, 18.390169395193354, 66.78087842558116, 34.20712084387556, 40.52978821321521, 58.846796486868406, 37.86669019364584, 71.4144670210377, 18.026020689484632, 116.42104318381429, 30.480586425193287, 95.05304659588106, 13.27322367704452, 9.80234153034055, 29.457840444962024, 132.21652888680504, 21.415428394959534, 26.714325142645052, 14.372595029776418, 6.294618778445855, 25.15259601210857, 42.14355600500301, 36.10050475739827, 27.04702895872642, 62.6635526599748, 31.50275092223054, 6.422326920196198, 30.18971210377149, 32.93454129438216, 9.250517565061546, 15.337578074292123, 33.374640282610905, 19.2691480988453, 11.101585519202875, 70.68698241579585, 27.994986062600386, 10.903765626573144, 12.97422390856817, 32.86659423000681, 54.76611140276968, 14.447421120338136, 45.99798064702803, 47.67132113158688, 150.14142642728802, 13.171664127157445, 50.76877458706508, 5.368570748520073, 38.83500710899157, 7.090300939590395, 52.53076363550263, 37.25428250336231, 8.024647353564589, 87.54953550415607, 7.025487306124102, 17.09714296632343, 118.78544318229497, 44.34417310477223, 14.508278023064996, 18.582272786379217, 59.528868073401206, 15.873625673359532, 43.74709652489194, 42.733880080927385, 33.96846854839982, 13.197490874760406, 34.62194643010257, 5.764108845164433, 10.204782571722703, 108.90063413841236, 26.655147415531047, 15.83276512008551, 12.696130438613954, 277.21409184035764, 18.805610105997744, 82.53639623445933, 17.556877603800356, 13.562791482876312, 22.815203688551268, 77.72111963872781, 13.30166864230811, 108.61439063432844, 18.17301671284699, 31.24733817039498, 38.49164653816228, 117.0500664507765, 12.82494678820007, 63.64235986555015, 8.49042793684647, 37.60998232817941, 12.862118152270515, 11.949112013693016, 62.679526874419324, 38.125105342407196, 18.83778919436581, 50.56443453411434, 8.173941594115524, 90.3346648079957, 10.016901816717441, 25.303706439135542, 12.614608792024926, 148.6222843121083, 9.011168298142529, 54.62655596227636, 23.638995978259413, 62.0202706100651, 32.27389150354772, 76.39077207518785, 11.403434455077852, 25.56482751298735, 11.77518982923124, 36.77637149511664, 40.3730676764859, 6.745510267198776, 5.85126864231784, 32.93698891149913, 51.632419170921004, 16.79375500302942, 8.381296987727307, 57.805760269475684, 18.12969313929383, 118.48272544447399, 22.946097399268172, 6.935642783780154, 6.167956499478148, 19.795865569435016, 84.87847541961895, 128.7806329528442, 53.19565209136632, 42.12305961341041, 15.563351404333861, 5.172669977903319, 50.865359988113624, 29.332035801027263, 7.639949950585392, 12.451453548351871, 130.68867333543062, 15.462854275243771, 120.8336321676496, 15.66323035601109, 41.535034702770304, 9.224428541993468, 55.046875378511395, 66.48713147994353, 67.31586636636763, 20.307919994435274, 62.7165509446759, 44.52146770137634, 17.062297779837323, 5.038790263222168, 27.817904417126357, 13.821342925723531, 8.152673893860324, 49.65339973730355, 53.7307021313214, 172.1577323640933, 5.499185360792113, 13.36611016963508, 79.22973438431393, 36.85175049725769, 23.132388716636115, 70.20373723857924, 43.91674890144421, 23.391654913192887, 8.554536751716928, 50.13977498111584, 224.52703035697388, 18.999225746326893, 49.64288740604588, 66.27330432944095, 7.100838980073474, 40.01764480205958, 21.46188825650605, 71.97579223086859, 17.96889971238747, 32.04534288261085, 9.94476526188981, 20.94828326697517, 50.707188548412, 34.57018746995797, 5.748402540825983, 12.784674480269555, 25.620354914513875, 44.868384178348485, 223.45063214484702, 20.471558724031485, 27.214951673943435, 7.088655982846, 15.066380304398827, 12.441926057465515, 13.036923948493902, 5.458079478917933, 45.31650463392814, 10.303147461589965, 9.826664956530873, 43.46076206178473, 41.39600791773448, 114.2277992709366, 6.334844760019387, 8.118435130870672, 73.65796347343216, 74.0505268133435, 16.041068998972346, 120.49214343186424, 55.246109128872426, 54.10466569742895, 69.22210433941837, 31.147897879485726, 28.789453753908745, 31.31208427221148, 89.1323648098498, 17.3749012211916, 40.83566375703187, 18.968698584943212, 9.545442086924568, 6.407041233747932, 9.099496818667763, 27.31552379610656, 5.165915052183495, 27.14343826929342, 97.67452672103612, 7.025689777976018, 68.67406018558728, 12.219945638823308, 40.439720241808025, 77.96932115683387, 29.814085863182086, 12.434954465800438, 79.95465216047829, 122.2207046295964, 20.406526142244147, 40.81553542178709, 63.359902445870254, 115.00162660987378, 79.43272201160056, 33.30076442390917, 67.65940318111831, 26.773347721104805, 40.421731249241496, 29.856284032760534, 17.50225639566554, 27.62949979999967, 20.825008163749, 100.42334210166962, 23.220095658992165, 62.72500455323022, 25.89042431637319, 6.227820337154575, 24.328575722600487, 130.84316432276938, 91.82769124678838, 48.7569013530706, 53.793351453118476, 39.43272925541584, 252.30762612993126, 24.269390767487963, 101.46783966497254, 99.40183451825749, 76.306880737401, 77.16226227910697, 61.52305698106014, 66.29001382686644, 66.92008724211468, 63.83620891647934, 79.2343126813437, 121.28325005627244, 40.8078569178327, 42.63253197217764, 25.101397327829826, 5.722108793237142, 57.27730839428295, 252.8043081510951, 64.56396233882238, 23.387287538764824, 83.45212092342427, 105.49942505257088, 17.737447841397966, 33.538752086914805, 17.647235615475495, 69.59379951797072, 13.631050898929237, 22.665409446052678, 20.005326253912088, 19.369866764977438, 23.680042103533463, 76.73335513217403, 15.715040269233876, 100.19430517607178, 5.74452762687778, 8.030528646192765, 12.364938729926873, 15.263218240018562, 51.653564269622976, 165.1786010001392, 31.332926597478686, 87.6256590143467, 33.326245921104416, 28.63277027275903, 22.6065517727205, 166.90308629198302, 6.189385252469565, 17.02515063885453, 60.24071639113237, 59.39241802435835, 18.35042865502252, 5.624215566961237, 16.679228849421357, 7.643309811547195, 5.7056865266548185, 55.617542362255875, 116.04848648497288, 14.34786462164004, 18.885209725608217, 142.76606581165223, 22.150625389030314, 18.28044164259666, 5.697151035648542, 63.58976660494828, 100.46745408845408, 51.451561055151444, 7.856137438450768, 94.18733507404355, 198.73469140746514, 20.69706156801512, 15.246615251847782, 17.440078738712458, 5.239610834288082, 53.10602924469432, 49.78450623100434, 45.14418367770885, 33.41346414972865, 15.878214400378168, 50.56938081460345, 30.826424981293528, 51.9767975728455, 13.861435163057212, 74.35973708148163, 31.8560022236141, 102.86596166540782, 9.242461208403899, 13.632498757763042, 58.226418867350716, 29.14059978402733, 14.039598042998755, 87.85145741764819, 22.644564278351126, 21.642603965978285, 82.93384637642771, 255.07756363679684, 14.917911547491428, 130.750807537633, 41.8547700238618, 57.82218319587441, 34.42191757642411, 39.47684434945057, 12.477602300487078, 65.99874638705026, 13.09341558564898, 10.822396000239777, 6.502426721982718, 112.47428498905853, 55.43812524815554, 39.22204733540945, 16.20166751696972, 10.918799964375511, 50.61783122418886, 30.792157666359675, 158.1302223704901, 27.35077022024999, 17.216803014497053, 35.871620137215814, 25.642037699714173, 157.10317508924012, 36.35324888181706, 65.49246367386179, 81.0663994653696, 17.242973039572355, 37.86739434856687, 82.88003141340097, 29.276153605694272, 62.94407346218664, 18.440759260089184, 81.80944524819733, 137.73182274993349, 58.724230307556006, 13.586302157895785, 44.84095528794548, 7.9075210781019525, 63.7731023238864, 169.87151315344346, 29.37838771410376, 14.678027121507988, 138.90601136386985, 23.418781647009762, 9.90448688489928, 18.62382467099809, 18.174695324293786, 52.344881081070014, 39.28609492175369, 17.159820506448007, 10.220326120072533, 16.2222885230167, 41.38850836550188, 14.18442428177332, 18.824270120830196, 44.67156571779273, 27.74711800093381, 20.25937135653239, 9.390992729268445, 18.39037822915637, 91.27760491182039, 60.13078335426172, 7.247784828945409, 8.988074222180835, 80.89549526720364, 30.111272586369104, 12.22104255862099, 44.195590486703644, 25.47781478703828, 70.93785005914027, 105.87539402208591, 97.11084551254595, 12.717963945318047, 69.53368962320792, 26.69850206498198, 88.84800627734856, 132.97291360280695, 21.649526129465123, 15.752495828805126, 6.176211244580965, 50.49135703553155, 113.69710586233234, 161.5034932697419, 82.21765875027081, 41.71953052031016, 20.646278498249657, 67.56623254011919, 103.07434067145299, 6.036011252649252, 20.603840216317288, 47.94188069545472, 67.9794495574488, 167.97746878100008, 12.505914173349092, 71.51663732088092, 172.51236092500952, 33.56626036637213, 38.48989313521126, 31.78125718591605, 61.61395471109695, 13.698352394701045, 46.08660603760205, 16.47866470590221, 15.507108359311161, 97.67793904593476, 70.93268692836114, 15.585126043734135, 15.830795702079175, 121.07519575187608, 60.21769367545707, 72.69641117294336, 144.58015703127424, 5.304580523903768, 66.16580652514148, 48.39899955846507, 25.332137036891375, 46.245186309441024, 114.37002136003107, 72.12703589099146, 45.07458657006838, 15.046858065915616, 31.805640240656455, 111.0530521574377, 28.807083477721868, 42.10652527761826, 33.911391708152294, 7.225996986495597, 19.687655806941315, 7.503828989249385, 5.275472280060956, 11.495398441954519, 37.077579717239615, 53.21009589477025, 125.67612366963071, 26.22210077086162, 57.624841219768, 33.21014709512258, 7.83029300812788, 65.7588858611027, 6.155560778552877, 26.597043298891002, 19.481285950231204, 66.92681360649645, 18.53282177220197, 17.420340296941475, 17.51758678487171, 19.234232042350904, 17.37341185499534, 7.795993221424103, 113.59584695612452, 10.044285735857477, 18.297932266896673, 98.22674759342704, 80.60144266193336, 52.02672520792851, 71.06435477524636, 16.35794537338344, 195.1708969956101, 50.78309193906913, 13.83008651259039, 30.397695310422574, 18.490803083078927, 39.707964295297955, 8.34053022797121, 28.307122955449454, 9.514934344420395, 25.95939126150947, 57.73852490240094, 55.187652134991076, 64.30372175737428, 163.06025960011715, 57.1070492548061, 38.56241519493997, 58.01356308060742, 91.56225234311935, 6.681618492982723, 85.46691152744852, 35.50352379984278, 79.51083724799985, 10.615530548641932, 60.64324119788901, 71.04295486937464, 7.434812348250691, 24.58009720017965, 5.5597788125589025, 36.13702200665824, 7.337260512563944, 71.2064063119746, 62.59437713966, 61.67222666584996, 28.463594855965816, 7.062620485650259, 7.341695541638114, 8.023159207940372, 9.729364009531858, 72.16917387113146, 95.83886841258591, 29.25001020808613, 10.50370951325403, 17.9545187989127, 9.131486134221461, 12.977302857907333, 8.43937069326099, 20.926752699204428, 108.6342063278505, 9.469149653302471, ...])
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);
([5641204.362752311, 5713418.028333274, 5973955.085900866, 8597275.0, 8680996.306600256, 8681361.997045169, 8681531.129112966, 8684216.292028986, 8684717.042839257, 8685328.728861835, 8686326.368217785, 8753201.5625, 8818043.668401066, 8818612.245160926, 8911084.375, 8960256.315623675, 9006421.553906638, 9011971.875, 9016924.229697304, 9024021.156367982, 9027689.334481914, 9029371.266447801, 9030968.75, 9033670.585000347, 9033718.75, 9035875.550533727, 9036028.125, 9036109.058244215, 9060878.78471017, 9061178.125, 9061409.375, 9062147.904612709, 9062524.657649051, 9064192.850431079, 9065012.5, 9065026.866404688, 9065086.117880061, 9065897.037763879, 9066772.05957048, 9067127.136747748, 9067168.92366152, 9068519.698135894, 9068876.807387246, 9069240.59344682, 9070953.125, 9072216.384233845, 9104679.6875, 9106500.457892537, 9107315.947094545, 9108343.75, 9111501.600509474, 9112839.604422258, 9115732.286077509, 9121322.35312964, 9132451.308818439, 9136949.368714787, 9139078.125, 9140124.534883413, 9141256.837599808, 9144976.5625, 9146979.19983746, 9164462.427237961, 9164854.220412433, 9168608.983719105, 9169422.816326985, 9169800.497049227, 9169875.944384983, 9169992.1875, 9170530.284483593, 9172192.822863942, 9172656.19281428, 9172901.390465582, 9172928.23418477, 9172947.399912184, 9173592.241931852, 9173639.244124468, 9173818.75, 9174080.848235987, 9174768.75, 9174776.40770408, 9174855.44791443, 9174904.6875, 9175453.125, 9175517.98729186, 9175855.54290624, 9175868.815238567, 9184186.595499082, 9184400.675293464, 9185667.53520495, 9189823.424954945, 9189983.280594736, 9190331.779265527, 9190732.766274655, 9191435.824125681, 9191782.189917075, 9192294.216901014, 9192386.276427254, 9192603.21904522, 9194192.136777522, 9194204.6875, 9197128.125, 9197790.782436501, 9199200.0, 9203833.497891074, 9204228.87334331, 9204979.426965175, 9206221.875, 9208887.5, 9209630.092454365, 9211927.669983087, 9211948.10327525, 9214570.63262848, 9214621.115541937, 9216697.754982779, 9216890.726587988, 9217701.5625, 9220363.035112642, 9225837.893431565, 9225904.47555423, 9225912.287504574, 9226070.3125, 9226768.814142251, 9226877.621550437, 9227453.248500424, 9227471.719873326, 9227726.5625, 9228087.5, 9228232.8125, 9228347.727812998, 9229350.54048412, 9229733.361627994, 9230035.998673676, 9230483.920125019, 9230777.010488855, 9231113.75187845, 9231403.046713926, 9231723.183635486, 9231750.028677136, 9232809.375, 9232831.25, 9233162.05687695, 9233396.875, 9234320.3125, 9234460.300267478, 9234926.891860135, 9235806.564436017, 9235853.984469837, 9236128.85684437, 9236425.71932078, 9236478.125, 9236869.144462362, 9236954.707708923, 9237254.6875, 9237348.049921775, 9238111.838078752, 9238115.526234027, 9238117.1875, 9238191.100494854, 9238279.6875, 9238500.571946487, 9238666.703634575, 9239103.125, 9239727.19584528, 9240722.159230024, 9241088.183818635, 9241242.1875, 9241380.972592978, 9243187.5, 9243896.875, 9244253.125, 9245309.375, 9246540.360947661, 9246967.23162321, 9247307.392803513, 9248111.734371161, 9248431.456269937, 9249713.611473087, 9249893.972418962, 9249924.150360076, 9250999.706987841, 9253171.768868228, 9253956.912384475, 9253964.955885325, 9254440.433028957, 9254899.994973883, 9255301.623329634, 9256319.28755666, 9257112.96005424, 9257128.125, 9258354.718149161, 9261244.33851664, 9262373.360962989, 9263133.23888655, 9263145.97859229, 9263512.5, 9263847.950545214, 9264268.050769426, 9264536.681511411, 9266045.124461679, 9272437.417800546, 9272493.320457317, 9274186.596292725, 9275423.431895722, 9275567.745599011, 9275889.0625, 9276694.878360173, 9276839.160681726, 9276868.75, 9277744.189712007, 9278288.209648438, 9278449.72119223, 9278551.554955045, 9278641.597067226, 9278789.594982188, 9278801.5625, 9278858.987506956, 9279125.17156229, 9279504.40607445, 9279963.687543083, 9280410.868004126, 9280980.878223622, 9281406.519368084, 9282786.004436644, 9282849.140849035, 9285989.133410476, 9286167.800848858, 9289582.603996972, 9289815.703235693, 9290154.01957211, 9290157.021523993, 9290832.8125, 9291307.417792113, 9291534.375, 9292035.723022152, 9292073.67450043, 9292397.289056065, 9292464.806651114, 9292807.51399918, 9292930.717438536, 9295026.80434378, 9297155.207577234, 9298115.625, 9298812.5, 9299786.911440747, 9300484.375, 9300512.278778838, 9300656.986746017, 9300786.19790161, 9300792.1875, 9301066.99778293, 9302000.634189725, 9303840.767252428, 9304335.8140203, 9306709.375, 9309242.1875, 9312062.354873892, 9316899.946648203, 9321623.632978154, 9322807.60612767, 9323153.402930807, 9326294.34541745, 9328285.857239908, 9329421.875, 9330630.294481779, 9331207.8125, 9332042.1875, 9332496.661021266, 9332812.456215914, 9333293.484896794, 9333969.542201718, 9334101.5625, 9334361.947949449, 9335077.884466711, 9335092.1875, 9335227.413343823, 9335265.163292784, 9335268.75, 9335274.215735115, 9335746.411995087, 9336168.75, 9336171.652373277, 9336404.6875, 9336420.460697006, 9338962.307473658, 9339477.759260444, 9339992.165091136, 9341817.640416311, 9342724.555917526, 9344299.14962008, 9344437.271124257, 9345726.231222726, 9346161.663158933, 9346361.321868246, 9346362.820720568, 9347834.398158673, 9348565.625, 9348583.362293184, 9348993.75, 9349205.724409427, 9349331.555327538, 9349521.781399991, 9349576.10347066, 9349759.706846273, 9351117.305670563, 9351300.808797274, 9351667.1875, 9352208.1172349, 9352216.623438172, 9352310.9375, 9352422.41643926, 9352735.138211155, 9353153.078701712, 9353153.455762468, 9353341.62193635, 9353439.35970125, 9353548.302458595, 9353668.95063388, 9353808.374655534, 9354298.874103278, 9354544.712288463, 9354642.851437429, 9354781.25, 9355211.194720525, 9355659.375, 9356121.969906108, 9356127.069849772, 9356978.125, 9357010.294674056, 9357049.563703084, 9358104.6875, 9360715.930269258, 9360759.44906238, 9361319.190733269, 9361736.776283769, 9362050.395423764, 9362068.75, 9362155.156382028, 9362490.56287718, 9362625.0, 9362644.785223365, 9363044.906773495, 9363049.14726225, 9363790.625, 9366251.433956955, 9366463.761153966, 9366548.864861304, 9367044.275132706, 9368177.84621437, 9368277.52375652, 9368710.328108637, 9369675.0, 9370296.031727793, 9371560.722699612, 9372149.953856405, 9372590.817369478, 9375793.160111973, 9378695.647010852, 9381502.932989392, 9384889.0625, 9386914.0625, 9391196.34243195, 9392392.647859063, 9399021.875, 9399130.900515845, 9401017.794293588, 9401487.328660874, 9402043.75, 9402582.8125, 9403214.0625, 9403818.75, 9404153.905802436, 9404451.819071315, 9405630.530641885, 9405923.4375, 9405974.615720607, 9406071.984903954, 9406146.875, 9407053.415939383, 9407980.513714345, 9408231.435091246, 9409328.102265088, 9409850.374401394, 9409995.3125, 9410466.86492899, 9411023.4375, 9411205.104987005, 9411274.516829515, 9412369.05027605, 9413214.23868102, 9413774.918127744, 9414590.625, 9416139.755648563, 9418167.1875, 9418308.23487855, 9419143.75, 9420318.75, 9421195.993099414, 9421238.618057681, 9421590.439269999, 9424554.25272705, 9425542.1875, 9425599.699239021, 9426526.5625, 9426640.625, 9427075.602153623, 9427163.911642324, 9427691.664613154, 9427823.094926458, 9428451.5625, 9428463.865084132, 9428703.767472478, 9428786.509400614, 9428904.6875, 9428961.083526129, 9429756.713313207, 9429906.109502941, 9429942.71413465, 9430081.091084609, 9430135.218451593, 9430262.278410358, 9430293.75, 9430643.75, 9430835.780231733, 9430849.989936026, 9430874.56854477, 9430889.024151338, 9430919.868801378, 9430957.96582207, 9431012.683400264, 9431117.1875, 9431570.694588333, 9432504.086337248, 9432827.475952484, 9433074.997074727, 9433319.69968926, 9433557.59559999, 9434435.9375, 9434960.630162906, 9435102.853876036, 9435311.99830607, 9435560.9375, 9435638.962048963, 9435761.303136993, 9435807.414955331, 9436432.720183503, 9436457.31449874, 9436461.620268345, 9437504.6875, 9437507.727177091, 9438314.0625, 9439846.086314026, 9440010.92561381, 9440356.537779441, 9440547.501918022, 9440671.312042195, 9440719.50222865, 9440781.25, 9440840.331541805, 9440927.071470253, 9440939.0625, 9441005.411421092, 9441072.53667581, 9441085.44385649, 9441167.026844108, 9441381.463992873, 9441599.970352564, 9441910.9375, 9441996.875, 9442087.420599647, 9442523.326712394, 9442560.136729684, 9442674.574026281, 9442784.375, 9442888.901476542, 9442968.652765842, 9443262.600172134, 9443270.018840132, 9443393.931789033, 9443448.420723889, 9443710.149769785, 9444484.347659435, 9444523.539618261, 9444538.42880762, 9444588.573512025, 9445045.563284982, 9445121.739035623, 9445329.6875, 9445446.875, 9445673.4375, 9445786.942645865, 9445914.0625, 9445953.882625133, 9446382.509047443, 9446413.94265701, 9446420.959090307, 9446452.747434901, 9446526.032010946, 9446671.568562454, 9446766.809407692, 9446902.032518264, 9447040.625, 9447053.125, 9447343.344744492, 9447547.586081244, 9447587.5, 9447754.912293827, 9447756.25, 9447806.25, 9447912.230596337, 9448351.01487991, 9448351.737228643, 9448432.11494017, 9448447.754180308, 9448533.998017982, 9448990.01613898, 9449140.840703633, 9449713.315169368, 9449809.369858054, 9449858.555552421, 9449904.6875, 9449997.425429216, 9450024.58422435, 9450063.685552167, 9450103.125, 9450116.678574925, 9450153.417996634, 9450181.899816964, 9450262.5, 9450317.1875, 9450431.25, 9450440.662307853, 9450508.944914384, 9450514.429067653, 9450618.540410794, 9450626.783006052, 9450633.281307658, 9450640.414096633, 9450714.017814774, 9450775.747577755, 9450800.0, 9450810.718252601, 9450882.92256262, 9450885.08787482, 9450998.250071343, 9451094.530409781, 9451176.5625, 9451218.34532946, 9451293.400259271, 9451351.253701191, 9451398.4375, 9451423.4375, 9451477.872360857, 9451726.732019503, 9453087.329881981, 9453686.315683622, 9454215.625, 9454234.29155704, 9454903.034183877, 9455339.554050587, 9455906.517181957, 9456142.1875, 9456203.538702812, 9458376.737421885, 9458779.947645867, 9459997.117944757, 9460150.489557808, 9461031.414175425, 9461147.680122666, 9461596.046941802, 9461603.998681301, 9462223.4375, 9462273.200220123, 9462356.25, 9462729.6875, 9462853.369287642, 9462933.123566037, 9462963.923735518, 9463095.159204364, 9463423.537876004, 9463840.54534466, 9464240.621459171, 9464301.692871891, 9464884.996433852, 9465273.614786875, 9465905.231225323, 9466029.558217363, 9466056.25, 9466078.125, 9466388.805747477, 9468777.497375, 9468906.25, 9469415.625, 9469444.213686723, 9469474.835955095, 9469791.670970183, 9470768.174471686, 9471051.300402112, 9471467.1875, 9472520.3125, 9472688.906167956, 9472819.59375, 9478137.014563637, 9479043.75, 9479159.375, 9479169.962498838, 9479376.5625, 9479418.30052264, 9479530.20602123, 9479870.78702593, 9480118.011192506, 9480617.623548903, 9480675.678229038, 9481584.895416485, 9481585.9375, 9481826.483501237, 9481953.125, 9481963.559365444, 9482009.375, 9482125.617886523, 9482307.200126152, 9482872.521061702, 9483018.19359347, 9483726.26580913, 9483745.928462911, 9483764.69755071, 9483774.218709603, 9484315.458508322, 9484393.75, 9484602.473959401, 9484649.629458139, 9485234.305136023, 9485560.811253127, 9485603.824403742, 9485630.92306821, 9485754.078425376, 9485831.163814468, 9485881.584462881, 9485969.71207248, 9486156.782886649, 9486392.1875, 9486951.450764906, 9487090.625, 9487133.329796026, 9487205.91790489, 9487278.125, 9487998.4375, 9488811.198881792, 9490532.44468739, 9495329.669929542, 9495507.36310296, 9497114.340931516, 9497616.14615336, 9502112.5, 9506731.25, 9507063.590687875, 9507443.583404444, 9508704.6875, 9508707.0157823, 9508926.805232601, 9509124.469601143, 9509248.149881825, 9509257.748280806, 9509301.586249013, 9509718.676091926, 9509818.328859752, 9510001.185233822, 9510085.9375, 9510227.487939535, 9510452.888842534, 9510566.516129985, 9510720.3125, 9510752.263837531, 9510875.46568439, 9510896.875, 9511055.229086727, 9511748.4375, 9511989.0625, 9511995.98899799, 9512013.317127347, 9512040.957351228, 9512073.53202277, 9512112.77522975, 9512126.5625, 9512134.153995847, 9512631.192004591, 9513586.502191411, 9514046.305313293, 9514068.726703245, 9514103.760333795, 9514152.83791729, 9514296.588762823, 9514341.86933505, 9514515.368929064, 9514600.206029164, 9514610.9375, 9515129.01903018, 9515496.875, 9515604.39517277, 9516085.9375, 9516555.491618466, 9516706.82914742, 9516862.839794872, 9517081.132918913, 9517297.92561397, 9518506.25, 9519117.75734335, 9519192.1875, 9520264.0625, 9520525.0, 9520565.265266677, 9520797.357824115, 9521037.460342806, 9521116.986360237, 9521293.988530768, 9521390.625, 9521608.668799048, 9522815.625, 9523150.23013378, 9523193.283815766, 9523637.5, 9524984.955503227, 9526531.170794519, 9527278.475921458, 9528079.325608635, 9531621.482711384, 9533377.521266742, 9533984.059334697, 9534601.354397718, 9536515.657465685, 9538250.715510732, 9538995.501648521, 9539900.860522648, 9539917.765045837, 9540854.169747984, 9541878.794562798, 9541984.456919048, 9542415.625, 9544576.857110394, 9545140.625, 9545638.470266148, 9546625.0, 9547548.4375, 9548446.47981582, 9549115.367149733, 9550349.358248128, 9551426.371406188, 9551956.25, 9552045.3125, 9552499.097185127, 9552900.18240518, 9553039.454224458, 9553048.546950975, 9553168.733150937, 9553345.005241992, 9553445.3125, 9553543.585014937, 9554327.41184688, 9554426.5625, 9554942.469148027, 9555502.228746211, 9555670.160482531, 9555835.9375, 9555873.4375, 9557311.66075965, 9557555.336489804, 9557591.676887067, 9558276.558247805, 9558417.459481914, 9558870.390309537, 9558886.468034884, 9559229.488543995, 9559370.3125, 9559395.495738553, 9559462.5, 9559574.903741792, 9560070.538310656, 9560078.36489845, 9560238.855417889, 9560506.45944554, 9560654.371997679, 9560694.210585417, 9560696.738527162, 9560812.5, 9560834.267905565, 9561030.76010706, 9561087.35308577, 9561155.563186748, 9561329.130445689, 9561482.8125, 9561625.747341527, 9561827.649670986, 9561944.6169385, 9561987.016207749, 9562135.466791023, 9562698.058757747, 9562706.25, 9562779.6875, 9563311.873132348, 9563446.661035743, 9563758.532924248, 9563984.375, 9564335.35030365, 9564696.6704771, 9565339.159635993, 9565557.8125, 9565778.125, 9566634.365920147, 9566767.631610997, 9566849.862106163, 9567335.109123109, 9567587.5, 9567950.0, 9568124.706272509, 9568258.30400027, 9569040.112359164, 9569446.6800279, 9569507.241599236, 9569540.625, 9569596.875, 9569614.0625, 9569663.909265365, 9569787.5, 9570033.52795946, 9570339.0625, 9570812.5, 9571002.252799274, 9571134.375, 9571282.8125, 9571653.125, 9571662.092353154, 9571809.375, 9571819.519614862, 9571880.148287777, 9572197.418558892, 9573126.5625, 9573209.30411111, 9573527.526895067, 9573573.688049318, 9573758.420502562, 9573881.967105161, 9574557.705252152, 9574806.25, 9575465.625, 9576150.481320469, 9577894.642463243, 9579678.424818406, 9579751.434689868, 9580173.223599808, 9580380.43317902, 9580684.161878858, 9580706.209454121, 9580759.878365437, 9580973.50714295, 9581105.370299544, 9581221.745607233, 9581228.125, 9581287.959738467, 9581368.31399228, 9581507.8125, 9581601.5625, 9581653.727487756, 9581928.125, 9582084.132154591, 9582454.6875, 9582460.75928803, 9582506.25, 9582563.324364046, 9582663.579320813, 9582709.275349595, 9582756.245723851, 9582841.520542394, 9583072.953039277, 9583418.94765675, 9583441.43172428, 9583462.5, 9583599.225866703, 9583734.195309129, 9583931.25, 9583943.75, 9584691.598202586, 9584809.206927322, 9584916.814636339, 9585144.796261255, 9585685.114997022, 9585832.8125, 9586078.125, 9586651.182593096, 9586694.482984954, 9586880.573959976, 9586923.4375, 9587400.0, 9587605.99741048, 9588275.0, 9588579.6875, 9588644.943033492, 9588860.9375, 9589070.664736027, 9591651.703378117, 9592211.237978924, 9593170.3125, 9593495.333872592, 9593542.402763866, 9593593.75, 9594380.177522495, 9596245.3125, 9596430.790235857, 9596926.993238775, 9597684.375, 9598146.97827363, 9601291.364617215, 9601864.0625, 9602398.503530081, 9602409.375, 9602443.812168011, 9602514.089867588, 9603156.48462612, 9603266.407752104, 9603412.5, 9603526.5625, 9603531.183555508, 9603589.445819043, 9604122.735227056, 9604348.15402358, 9604641.673580276, 9605681.473155739, 9607033.04867891, 9608746.230517438, 9611094.827544825, 9614471.746626483, 9617885.592634793, 9619531.163534835, 9619708.399477974, 9620039.756393148, 9620653.749666842, 9620937.761496548, 9621149.037740655, 9621601.5625, 9621764.76636621, 9621868.065825617, 9621960.448054792, 9622038.301725345, 9622039.581519725, 9622061.440747375, 9622110.817189604, 9622394.487795679, 9622528.96257855, 9622704.359626824, 9622862.5, 9623070.144055795, 9623657.8125, 9623797.20283277, 9623847.341659857, 9624126.15450277, 9624130.92426833, 9625023.4375, 9625128.983172642, 9625226.5625, 9625312.600650996, 9625738.5637898, 9626220.521861203, 9626233.549410429, 9626245.753017101, 9626312.5, 9626536.940382034, 9626734.755382556, 9627664.235347496, 9627858.567916654, 9627989.0625, 9628154.6875, 9628330.825503962, 9628461.844138173, 9630348.530266386, 9633284.049081936, 9633546.520597864, 9633848.4375, 9634031.769038176, 9634457.321515704, 9636314.714821042, 9638306.788098784, 9638487.5, 9640069.511932679, 9644093.75, 9648089.0625, 9650200.365454936, 9650507.809383472, 9650756.021366756, 9651071.088943437, 9651252.591281647, 9651512.935919313, 9652056.25, 9652081.25, 9652354.6875, 9652496.435394278, 9652511.330959968, 9652540.37871016, 9652548.101899775, 9652578.40317468, 9652601.71869901, 9652720.31275286, 9652818.908534447, ...], [22.394196678651518, 104.52158100367086, 13.834372604059098, 35.41408315871291, 5.773087473458428, 13.317960726153173, 84.38749123685322, 48.115097108615274, 127.13694355831899, 92.43627857526893, 32.268543420184336, 52.82941772557212, 42.71202106530219, 24.345275598213007, 46.18188887006458, 222.3309201631657, 71.0682674776697, 127.240912628396, 134.12040684264818, 19.55810662146437, 7.704663006329894, 22.131492749530132, 72.29470358303534, 7.70486234991024, 52.87561997126572, 17.557496686907598, 50.114824909464126, 13.857582698557135, 18.924661519961447, 64.22837177684053, 30.020043014632908, 6.40667971078974, 23.765649947324775, 18.258631064013606, 36.511970557806684, 9.602308438421888, 35.00964570423421, 15.600434970079439, 79.54785744901969, 58.645072239250226, 9.482691265255715, 37.29227627107436, 45.23637678961425, 27.915345673499598, 59.82762819530269, 23.655109908387644, 49.835771566636566, 8.544530707568256, 165.0625814228895, 37.733860217806864, 89.37238493895438, 5.142255491400577, 53.87095917753633, 17.142063145978042, 24.36099300858252, 48.755507320789846, 126.85696156126042, 10.470999738233656, 30.844878865389227, 28.970578016071585, 8.950500987083618, 27.163658648202826, 94.19760674944675, 22.650814075313523, 6.025800040902835, 16.75841679062667, 10.28188264389288, 90.23023405486248, 5.562772928059884, 5.748423706084452, 6.75214333312213, 25.53560002129059, 6.099527547517071, 61.733867887898384, 164.760916317508, 11.423982424020824, 83.89601011604941, 6.685863369978612, 71.55399152606256, 25.552740377199576, 43.84830275398452, 90.20496363111815, 40.780091181954, 33.64314497994563, 12.792526121014621, 24.383484232678867, 25.703715722187518, 113.42777121430348, 8.479426161442468, 27.375416162848392, 5.482222888122719, 37.447578573159554, 124.86148706073311, 54.76871609120763, 5.7693071883198614, 7.249843785713159, 5.633073675257272, 21.368550699396152, 32.46748219601164, 39.607228724573424, 116.12161969314596, 26.391362123903455, 55.64931652175589, 119.27641022646476, 84.72634967215552, 7.054608688273994, 33.49631846133792, 96.73745414289843, 19.653157599903064, 16.353329133907838, 10.642607704407743, 16.320330365793374, 6.37428393384102, 14.479679103268964, 30.03087615054855, 75.31295368384066, 13.236529801587693, 53.60947618740232, 10.628492559123924, 40.28037787699793, 107.4925614186926, 15.191758644465406, 10.422496798223108, 5.206579793353914, 89.61832997814611, 55.88729747594363, 100.40663142677818, 48.532878319574245, 7.365254672498632, 12.092539172447166, 137.34478991621447, 16.307105739299224, 21.955375210405453, 23.00048065595947, 83.43140842902064, 27.066522598220594, 24.358507125456754, 22.054891106799726, 42.72483496877763, 119.60170811769181, 28.821753336747115, 29.877603041775043, 37.10615966657959, 12.965281610265848, 21.41705026827473, 28.50582863192337, 24.307362845920416, 11.582602527117224, 18.63916864460317, 55.329597679098164, 6.130103457256677, 15.019099928474635, 45.416550298846445, 37.18170702453952, 20.016835110161256, 45.33951718292288, 46.23460204178426, 11.492046322316241, 103.6619071876334, 19.201483747525774, 21.655575446736854, 47.59977095497724, 5.311060126815191, 60.21671012502449, 77.3981733383878, 65.51083818134305, 24.043690322397605, 44.899695161960736, 52.21895219550207, 45.06492782274351, 85.6974571690523, 9.11768495084702, 7.133098812617643, 7.458180806289963, 19.19780968498457, 15.7906654464706, 21.995951443753786, 21.219106108252888, 7.88315917346164, 23.840413922450566, 90.66741171220873, 8.670940322655646, 10.22140818807595, 8.187603396679547, 36.23488533989433, 114.14785458164387, 5.559751315108612, 80.04011355200743, 34.111216269356525, 16.72689267380683, 19.80521255895534, 27.09718900806906, 16.86082059530092, 7.8633325766536855, 114.55113191627426, 5.325507896820359, 16.294210536135207, 67.72431511148284, 78.36583963074916, 68.58451549008734, 5.19261487325832, 127.48950403642432, 28.414616265847283, 27.280670952355372, 56.68665582183081, 8.989444375656111, 85.49753051614954, 31.69766193452176, 40.13836015684525, 27.73721809070006, 74.60436923693221, 85.13589396467788, 7.997218087505489, 88.11620315235272, 67.68244265624972, 78.20112592540139, 83.59890053480699, 26.93641734534153, 16.16556979775823, 144.87262369794126, 9.035657773749591, 7.703658315105541, 18.31259949468565, 38.24500351164487, 16.7945523657, 6.5877384777044705, 99.51254282836928, 15.248334637618461, 19.966942931082063, 54.456806023583695, 94.27874876320658, 49.09297877315708, 85.4745322027671, 7.527463985827175, 8.416013805320924, 9.707900111211817, 6.006940925808279, 7.045135022119604, 14.058371657726706, 10.572330996931258, 23.228279553662233, 161.84757841977643, 31.4623011587189, 20.652935807640873, 64.96938651204712, 174.60173193899328, 195.81474542789152, 7.191628120458865, 77.62688752990664, 28.235612695116096, 177.47153896644704, 120.1616420235606, 33.59573510638584, 129.86022663445107, 80.04253805990602, 5.926865933728642, 7.107497361333518, 15.742881584106899, 92.10459496266559, 85.27853392517582, 9.891294914421238, 9.264448411416286, 73.77742745168726, 16.268775456615995, 71.40146282760855, 32.70429794175126, 180.93201251994907, 44.265577684673275, 70.86107598461312, 26.75569996818966, 121.76510149667183, 13.18571710639516, 10.771459706815168, 70.06243738816197, 12.781484314911951, 21.88378979941342, 51.22143940604953, 19.059616937784703, 84.06855510007905, 43.87764914346645, 24.79209053858975, 63.025907899281016, 9.45993659418321, 14.255179657019792, 10.60041802192212, 11.092860032604262, 9.746169428876726, 27.543845521686855, 12.458992186340907, 7.062559405621786, 46.46000855115645, 87.02849797567822, 7.74843595440425, 16.323212793432017, 94.94308592608583, 253.26593699325704, 34.603225211315454, 66.41022189488442, 21.24156330935341, 31.06332723849838, 50.462713260334965, 127.36923256528425, 22.97565646735169, 143.86854564025356, 5.316741775465673, 79.51526677150333, 7.717303451955215, 50.27640791492978, 50.22171678944529, 7.811554412667367, 7.904755559413785, 39.675522973605396, 18.4332558766547, 31.70819659618348, 11.62636070808306, 35.61968082923761, 15.765660271954767, 9.856728150612303, 5.6386635038352875, 24.66521757265147, 6.3548918803046925, 46.97745032463204, 74.50492067268783, 48.94362248011219, 9.412961941965348, 17.306537338634534, 60.383760298759434, 20.177581395237514, 22.153015242571893, 40.47798230557911, 25.808011352723277, 47.47160900224878, 16.937554897634534, 71.72895451925794, 16.6983578012426, 60.48576566666458, 8.551136255572612, 79.01210972354616, 37.45070299050689, 6.202802571982903, 46.8669757347524, 18.573206823609027, 86.68443132032861, 8.21975156605146, 30.851827939837577, 6.851934387825422, 6.144465595321743, 213.05834799766447, 28.064128718349952, 8.86431236982895, 81.65480099850299, 92.37268740659417, 112.67825149726158, 27.64360755246709, 15.729190860209895, 20.64095581812471, 27.872078661388638, 100.31682370900361, 84.51009396058171, 52.901046862118875, 85.99222293931996, 48.28692451891447, 38.0739691492888, 14.429090439111732, 6.586613017139979, 36.93502333946764, 93.2912430102323, 65.12458632718455, 46.177760835159624, 74.35940665719197, 69.25087730001466, 16.018777078217212, 132.67594519082863, 37.06239431431903, 22.73074911807679, 6.785648202680707, 94.42505684742913, 16.179929395405726, 120.20853451961645, 40.66146852540071, 185.29834242782664, 243.10020587028995, 67.64113108701477, 34.99719115555467, 56.749888664935874, 8.52042079622212, 45.727963663180574, 16.2244800152219, 23.003308873486745, 39.364009285966375, 48.5828849942333, 12.416793499124246, 43.80023425725991, 17.20633813269656, 29.599060626265395, 31.948143438619283, 35.24586610570209, 40.35992850149259, 25.329045084066596, 10.509945383318414, 63.569674163872556, 16.46025354980113, 39.547175045582954, 62.26437642524702, 15.271204361303067, 148.49125717849776, 13.263798382105877, 23.221741525901027, 31.21644604408293, 19.193913550758786, 50.23800055086356, 17.679603492717213, 73.77214250415614, 58.717725873767314, 112.29254482757011, 85.00861748598182, 25.659066335956147, 69.13891216079314, 32.86821046504763, 24.80680764244215, 86.70226187862242, 45.011589969351114, 8.205126085266963, 47.623400748436474, 10.514233642382099, 9.299186356650072, 22.07374426042664, 33.15479913126769, 25.048900888316076, 112.91744019510664, 15.661011936650162, 200.7892758843158, 10.245056067287758, 73.54014966231867, 7.987082587210223, 14.174574470863554, 46.91851956120938, 5.518348130795131, 24.12673649635941, 22.137497098996796, 29.214038029947723, 33.22089894858982, 17.076919026336316, 58.86612846701849, 6.078551439258997, 13.095604252641763, 18.390169395193354, 66.78087842558116, 34.20712084387556, 40.52978821321521, 58.846796486868406, 37.86669019364584, 71.4144670210377, 18.026020689484632, 116.42104318381429, 30.480586425193287, 95.05304659588106, 13.27322367704452, 9.80234153034055, 29.457840444962024, 132.21652888680504, 21.415428394959534, 26.714325142645052, 14.372595029776418, 6.294618778445855, 25.15259601210857, 42.14355600500301, 36.10050475739827, 27.04702895872642, 62.6635526599748, 31.50275092223054, 6.422326920196198, 30.18971210377149, 32.93454129438216, 9.250517565061546, 15.337578074292123, 33.374640282610905, 19.2691480988453, 11.101585519202875, 70.68698241579585, 27.994986062600386, 10.903765626573144, 12.97422390856817, 32.86659423000681, 54.76611140276968, 14.447421120338136, 45.99798064702803, 47.67132113158688, 150.14142642728802, 13.171664127157445, 50.76877458706508, 5.368570748520073, 38.83500710899157, 7.090300939590395, 52.53076363550263, 37.25428250336231, 8.024647353564589, 87.54953550415607, 7.025487306124102, 17.09714296632343, 118.78544318229497, 44.34417310477223, 14.508278023064996, 18.582272786379217, 59.528868073401206, 15.873625673359532, 43.74709652489194, 42.733880080927385, 33.96846854839982, 13.197490874760406, 34.62194643010257, 5.764108845164433, 10.204782571722703, 108.90063413841236, 26.655147415531047, 15.83276512008551, 12.696130438613954, 277.21409184035764, 18.805610105997744, 82.53639623445933, 17.556877603800356, 13.562791482876312, 22.815203688551268, 77.72111963872781, 13.30166864230811, 108.61439063432844, 18.17301671284699, 31.24733817039498, 38.49164653816228, 117.0500664507765, 12.82494678820007, 63.64235986555015, 8.49042793684647, 37.60998232817941, 12.862118152270515, 11.949112013693016, 62.679526874419324, 38.125105342407196, 18.83778919436581, 50.56443453411434, 8.173941594115524, 90.3346648079957, 10.016901816717441, 25.303706439135542, 12.614608792024926, 148.6222843121083, 9.011168298142529, 54.62655596227636, 23.638995978259413, 62.0202706100651, 32.27389150354772, 76.39077207518785, 11.403434455077852, 25.56482751298735, 11.77518982923124, 36.77637149511664, 40.3730676764859, 6.745510267198776, 5.85126864231784, 32.93698891149913, 51.632419170921004, 16.79375500302942, 8.381296987727307, 57.805760269475684, 18.12969313929383, 118.48272544447399, 22.946097399268172, 6.935642783780154, 6.167956499478148, 19.795865569435016, 84.87847541961895, 128.7806329528442, 53.19565209136632, 42.12305961341041, 15.563351404333861, 5.172669977903319, 50.865359988113624, 29.332035801027263, 7.639949950585392, 12.451453548351871, 130.68867333543062, 15.462854275243771, 120.8336321676496, 15.66323035601109, 41.535034702770304, 9.224428541993468, 55.046875378511395, 66.48713147994353, 67.31586636636763, 20.307919994435274, 62.7165509446759, 44.52146770137634, 17.062297779837323, 5.038790263222168, 27.817904417126357, 13.821342925723531, 8.152673893860324, 49.65339973730355, 53.7307021313214, 172.1577323640933, 5.499185360792113, 13.36611016963508, 79.22973438431393, 36.85175049725769, 23.132388716636115, 70.20373723857924, 43.91674890144421, 23.391654913192887, 8.554536751716928, 50.13977498111584, 224.52703035697388, 18.999225746326893, 49.64288740604588, 66.27330432944095, 7.100838980073474, 40.01764480205958, 21.46188825650605, 71.97579223086859, 17.96889971238747, 32.04534288261085, 9.94476526188981, 20.94828326697517, 50.707188548412, 34.57018746995797, 5.748402540825983, 12.784674480269555, 25.620354914513875, 44.868384178348485, 223.45063214484702, 20.471558724031485, 27.214951673943435, 7.088655982846, 15.066380304398827, 12.441926057465515, 13.036923948493902, 5.458079478917933, 45.31650463392814, 10.303147461589965, 9.826664956530873, 43.46076206178473, 41.39600791773448, 114.2277992709366, 6.334844760019387, 8.118435130870672, 73.65796347343216, 74.0505268133435, 16.041068998972346, 120.49214343186424, 55.246109128872426, 54.10466569742895, 69.22210433941837, 31.147897879485726, 28.789453753908745, 31.31208427221148, 89.1323648098498, 17.3749012211916, 40.83566375703187, 18.968698584943212, 9.545442086924568, 6.407041233747932, 9.099496818667763, 27.31552379610656, 5.165915052183495, 27.14343826929342, 97.67452672103612, 7.025689777976018, 68.67406018558728, 12.219945638823308, 40.439720241808025, 77.96932115683387, 29.814085863182086, 12.434954465800438, 79.95465216047829, 122.2207046295964, 20.406526142244147, 40.81553542178709, 63.359902445870254, 115.00162660987378, 79.43272201160056, 33.30076442390917, 67.65940318111831, 26.773347721104805, 40.421731249241496, 29.856284032760534, 17.50225639566554, 27.62949979999967, 20.825008163749, 100.42334210166962, 23.220095658992165, 62.72500455323022, 25.89042431637319, 6.227820337154575, 24.328575722600487, 130.84316432276938, 91.82769124678838, 48.7569013530706, 53.793351453118476, 39.43272925541584, 252.30762612993126, 24.269390767487963, 101.46783966497254, 99.40183451825749, 76.306880737401, 77.16226227910697, 61.52305698106014, 66.29001382686644, 66.92008724211468, 63.83620891647934, 79.2343126813437, 121.28325005627244, 40.8078569178327, 42.63253197217764, 25.101397327829826, 5.722108793237142, 57.27730839428295, 252.8043081510951, 64.56396233882238, 23.387287538764824, 83.45212092342427, 105.49942505257088, 17.737447841397966, 33.538752086914805, 17.647235615475495, 69.59379951797072, 13.631050898929237, 22.665409446052678, 20.005326253912088, 19.369866764977438, 23.680042103533463, 76.73335513217403, 15.715040269233876, 100.19430517607178, 5.74452762687778, 8.030528646192765, 12.364938729926873, 15.263218240018562, 51.653564269622976, 165.1786010001392, 31.332926597478686, 87.6256590143467, 33.326245921104416, 28.63277027275903, 22.6065517727205, 166.90308629198302, 6.189385252469565, 17.02515063885453, 60.24071639113237, 59.39241802435835, 18.35042865502252, 5.624215566961237, 16.679228849421357, 7.643309811547195, 5.7056865266548185, 55.617542362255875, 116.04848648497288, 14.34786462164004, 18.885209725608217, 142.76606581165223, 22.150625389030314, 18.28044164259666, 5.697151035648542, 63.58976660494828, 100.46745408845408, 51.451561055151444, 7.856137438450768, 94.18733507404355, 198.73469140746514, 20.69706156801512, 15.246615251847782, 17.440078738712458, 5.239610834288082, 53.10602924469432, 49.78450623100434, 45.14418367770885, 33.41346414972865, 15.878214400378168, 50.56938081460345, 30.826424981293528, 51.9767975728455, 13.861435163057212, 74.35973708148163, 31.8560022236141, 102.86596166540782, 9.242461208403899, 13.632498757763042, 58.226418867350716, 29.14059978402733, 14.039598042998755, 87.85145741764819, 22.644564278351126, 21.642603965978285, 82.93384637642771, 255.07756363679684, 14.917911547491428, 130.750807537633, 41.8547700238618, 57.82218319587441, 34.42191757642411, 39.47684434945057, 12.477602300487078, 65.99874638705026, 13.09341558564898, 10.822396000239777, 6.502426721982718, 112.47428498905853, 55.43812524815554, 39.22204733540945, 16.20166751696972, 10.918799964375511, 50.61783122418886, 30.792157666359675, 158.1302223704901, 27.35077022024999, 17.216803014497053, 35.871620137215814, 25.642037699714173, 157.10317508924012, 36.35324888181706, 65.49246367386179, 81.0663994653696, 17.242973039572355, 37.86739434856687, 82.88003141340097, 29.276153605694272, 62.94407346218664, 18.440759260089184, 81.80944524819733, 137.73182274993349, 58.724230307556006, 13.586302157895785, 44.84095528794548, 7.9075210781019525, 63.7731023238864, 169.87151315344346, 29.37838771410376, 14.678027121507988, 138.90601136386985, 23.418781647009762, 9.90448688489928, 18.62382467099809, 18.174695324293786, 52.344881081070014, 39.28609492175369, 17.159820506448007, 10.220326120072533, 16.2222885230167, 41.38850836550188, 14.18442428177332, 18.824270120830196, 44.67156571779273, 27.74711800093381, 20.25937135653239, 9.390992729268445, 18.39037822915637, 91.27760491182039, 60.13078335426172, 7.247784828945409, 8.988074222180835, 80.89549526720364, 30.111272586369104, 12.22104255862099, 44.195590486703644, 25.47781478703828, 70.93785005914027, 105.87539402208591, 97.11084551254595, 12.717963945318047, 69.53368962320792, 26.69850206498198, 88.84800627734856, 132.97291360280695, 21.649526129465123, 15.752495828805126, 6.176211244580965, 50.49135703553155, 113.69710586233234, 161.5034932697419, 82.21765875027081, 41.71953052031016, 20.646278498249657, 67.56623254011919, 103.07434067145299, 6.036011252649252, 20.603840216317288, 47.94188069545472, 67.9794495574488, 167.97746878100008, 12.505914173349092, 71.51663732088092, 172.51236092500952, 33.56626036637213, 38.48989313521126, 31.78125718591605, 61.61395471109695, 13.698352394701045, 46.08660603760205, 16.47866470590221, 15.507108359311161, 97.67793904593476, 70.93268692836114, 15.585126043734135, 15.830795702079175, 121.07519575187608, 60.21769367545707, 72.69641117294336, 144.58015703127424, 5.304580523903768, 66.16580652514148, 48.39899955846507, 25.332137036891375, 46.245186309441024, 114.37002136003107, 72.12703589099146, 45.07458657006838, 15.046858065915616, 31.805640240656455, 111.0530521574377, 28.807083477721868, 42.10652527761826, 33.911391708152294, 7.225996986495597, 19.687655806941315, 7.503828989249385, 5.275472280060956, 11.495398441954519, 37.077579717239615, 53.21009589477025, 125.67612366963071, 26.22210077086162, 57.624841219768, 33.21014709512258, 7.83029300812788, 65.7588858611027, 6.155560778552877, 26.597043298891002, 19.481285950231204, 66.92681360649645, 18.53282177220197, 17.420340296941475, 17.51758678487171, 19.234232042350904, 17.37341185499534, 7.795993221424103, 113.59584695612452, 10.044285735857477, 18.297932266896673, 98.22674759342704, 80.60144266193336, 52.02672520792851, 71.06435477524636, 16.35794537338344, 195.1708969956101, 50.78309193906913, 13.83008651259039, 30.397695310422574, 18.490803083078927, 39.707964295297955, 8.34053022797121, 28.307122955449454, 9.514934344420395, 25.95939126150947, 57.73852490240094, 55.187652134991076, 64.30372175737428, 163.06025960011715, 57.1070492548061, 38.56241519493997, 58.01356308060742, 91.56225234311935, 6.681618492982723, 85.46691152744852, 35.50352379984278, 79.51083724799985, 10.615530548641932, 60.64324119788901, 71.04295486937464, 7.434812348250691, 24.58009720017965, 5.5597788125589025, 36.13702200665824, 7.337260512563944, 71.2064063119746, 62.59437713966, 61.67222666584996, 28.463594855965816, 7.062620485650259, 7.341695541638114, 8.023159207940372, 9.729364009531858, 72.16917387113146, 95.83886841258591, 29.25001020808613, 10.50370951325403, 17.9545187989127, 9.131486134221461, 12.977302857907333, 8.43937069326099, 20.926752699204428, 108.6342063278505, 9.469149653302471, ...])
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)