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 = 48190
shot = shot_no
identifier='H03-W0051_shot_'+str(shot)+'_450V'
detector = 'H03-W0051'
ds = np.DataSource('/tmp') # temporary storage for downloaded files
scalars_URL = 'http://golem.fjfi.cvut.cz/shots/{shot_no}/Diagnostics/PlasmaDetection/Results/{name}'
def get_scalar(shot_no, name):
return float(ds.open(scalars_URL.format(shot_no=shot_no, name=name)).read())
t_plasma_start = get_scalar(shot_no, 't_plasma_start')
t_plasma_end = get_scalar(shot_no, 't_plasma_end')
is_plasma = get_scalar(shot_no, 'b_plasma')
def get_file(shot, identifier):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/H03/{identifier}.t3pa'
url = URL.format(shot=shot, identifier=identifier)
try:
file_name_t3pa=url
with urllib.request.urlopen(file_name_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
ft3pa.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_name_t3pa
def get_file_calib(name_calib):
#Pick the discharge to analyse
URL = 'http://golem.fjfi.cvut.cz/shots/{shot}/Diagnostics/TimepixDetector/calib_matrix_H03/{name_calib}.txt'
url = URL.format(shot=shot, name_calib=name_calib)
#print(url)
try:
file_calib=url
with urllib.request.urlopen(file_calib) as calib:
line = calib.readline()
line = line.decode('utf‐8')
calib.close
except HTTPError:
print('File not found at %s. Aborting notebook execution.' % url)
raise StopExecution
return file_calib
def load_calib(file_calib):
with urllib.request.urlopen(file_calib) as fc:
calib=[] #vytvoreni 1D pole
for i in range(0,256): #tj. rozsah 0-255
temp = [] # docasne pole
for j in range(0,256):
temp.append(0) #naplneni docasneho pole 0
calib.append(temp) #naplneni pole a[] docasnym polem temp
for i in range(0,256): #nacteni calib matice do pole calib
line = fc.readline()
line = line.decode('utf‐8')
word=line.strip().split(' ')
for j in range(0,256):
#calib[i][j]=float(word[j]) #i = radek, j = sloupec0
calib[j][i]=float(word[j]) #j = radek, i = sloupec0 - pouze pro stavajici kalibraci - verze XV
fc.close
return calib
def load_t3pa_file(file_t3pa):
index=[]
matrix_index=[]
ToA=[]
ToT=[]
FToA=[]
overflow=[]
pocet_udalosti = 0
with urllib.request.urlopen(file_t3pa) as ft3pa:
line = ft3pa.readline()
line = line.decode('utf‐8')
while True:
line = ft3pa.readline()
line = line.decode('utf‐8')
word=line.strip().split('\t') #v t3pa souboru je oddelovac \t
if line == '':
break
index.append(word[0])
matrix_index.append(word[1])
ToA.append(float(word[2]))
ToT.append(float(word[3]))
FToA.append(float(word[4]))
overflow.append(float(word[5]))
pocet_udalosti = pocet_udalosti + 1
ft3pa.close
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti
def noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti): #tuto fci nemus9m explicitn2 volat - volam ji v fci load_t3pa
pocet=int(0) #pocet sumicich pixelu
konst=int(len(index)/1000)+1
noise_matrix_index=[]
for i in range(0,konst):
pom = [] # pomocne pole
k=0 #pomocna promenna - udava, kolik je v czklu ve skutecnosti udalosti - aby nebyla chyba 'list index out of range'
for j in range(0,1001):
if i*1000+j>=len(index):
break
pom.append(matrix_index[i*1000+j])
k=k+1
for m in range(0,k):
count=int(0) #pocet vvyskytu stejneho matrix index behem 1000 udalosti
index_=int(-1) #budu testovat, jestli pixel na ktery koukam je sumici (abych ho nezapocital 2x)
for p in range(0,pocet):
#index=int(p)
if pom[m]==noise_matrix_index[p]:
index_=p #pixel na ktery jsem uz koukal a byl sumici
break
if index_ >=0 and pom[m]==noise_matrix_index[index_]:
continue
for l in range(0,k):
if pom[m]==pom[l]:
count=count+1
####podminka na sumici pixely
if count>=50: #kdyz se pixel vyskytne behem tisice udalosti vicekrat nez toto cislo, je sumici
noise_matrix_index.append(pom[m])
#noise_matrix_index[pocet]=pom[i]
pocet=pocet+1
pom.clear()
pocet_udalosti=len(index)
for n in range (0,pocet_udalosti):
for o in range(0,len(noise_matrix_index)):
if n >=pocet_udalosti:
break
if(matrix_index[n]==noise_matrix_index[o]):
del matrix_index[n]
del index[n]
del ToA[n]
del ToT[n]
del FToA[n]
del overflow[n]
pocet_udalosti=pocet_udalosti-1
continue
return pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow
def t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow):
#rovnou vyhodim sumici pixely
pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow=noise(index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti)
RowNo=[]
ClmNo=[]
for i in range(0,len(matrix_index)):
#RowNo.append(int(int(matrix_index[i]))//int(256))
#ClmNo.append(int(int(matrix_index[i]))%int(256))
ClmNo.append(int(int(matrix_index[i]))//int(256)) #ver XV - bude pro novou kalibraci - nyn9 to bere 3patnou kalibraci jednotlivych pixelu (cislovani radku a sloupcu stejne jako v pixetu)
RowNo.append(int(int(matrix_index[i]))%int(256)) ##ver XV - bude super pro novou kalibraci - odpovida radkum a sloupcum v pixetu. Nyni bere spatne kalibrace pixelu (viz fce load_calib)
return index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo
def hit_map(detector,hit_map_fig,RowNo,ClmNo):
plt.hist2d(RowNo,ClmNo,bins=(256,256),cmap='Blues')
cb=plt.colorbar()
cb.set_label('Counts in pixel')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title(detector)
plt.savefig(hit_map_fig, dpi = 1000)
return
def energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo):
E=[] #energy in keV
#for i in range (0,pocet_udalosti):
pom=0
for i in range (0,len(ToT)):
Sqrt=float(0.0)
e1=float(0.0)
e2=float(0.0)
# promenna sqrt je vnitrek odmocniny
Sqrt = (((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))*(((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i])))) + (float(4)*float(a[RowNo[i]][ClmNo[i]])*float(c[RowNo[i]][ClmNo[i]]))) #zmena oproti verzi VI
if float(Sqrt)<float(0):
E.append(float(0))
else:
'''
V kalibracni matici a se obcas vyskytne 0 -> ve vypoctu energie
je tim padem deleni nulou -> energie diverguje. Jak to vyresit?
zatim polozim energii = 0 (kdyz a=0), pak se uvidi
nakonec udelam limitu vyrazu energie pro a->0 (L'hopital)
'''
if a[RowNo[i]][ClmNo[i]]==0:
e1=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) + ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
e2=((float(t[RowNo[i]][ClmNo[i]]))/float(2)) - ((((float(b[RowNo[i]][ClmNo[i]])+float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]])-float(ToT[i]))*(float(t[RowNo[i]][ClmNo[i]]))) - 2*(float(c[RowNo[i]][ClmNo[i]])))/(float(2)*np.sqrt(float(Sqrt))))
else:
e1=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))+np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
e2=((-(float(b[RowNo[i]][ClmNo[i]]) - (float(a[RowNo[i]][ClmNo[i]])*float(t[RowNo[i]][ClmNo[i]]))-float(ToT[i])))-np.sqrt(float(Sqrt)))/(float(2)*float(a[RowNo[i]][ClmNo[i]]))
if a[RowNo[i]][ClmNo[i]]<0:
e1=-1
e2=-1
if math.isnan(e1):
e1=-1
if math.isnan(e2):
e2=-1
if e1<0 and e2<0:
E.append(float(0))
if e1>=0 and e1>e2:
E.append(float(e1))
if e2>=0 and e2>e1:
E.append(float(e2))
if e1>=0 and e2==e1:
E.append(float(e1))
return E
def Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo):
T=[] #time in ns
for i in range (0,pocet_udalosti):
Time=float(0.0)
Time=(float(ToA[i])-((float(FToA[i])/float(16))))*float(25)
T.append(float(Time))
return T
def Timewalk_parameters_Si():
#SI - korekce na TimeWalk - parametry
A = -1.21988
B = 4.33638
C = 29.5075
D = 1
sigma_A=0.7013
sigma_B=0.1366
sigma_C=4.753
sigma_D=0
return A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D
def Timewalk(E,T):
i=0
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
while i < len(T):
timewalk=float(0)
timewalk = (C / (E[i] - B)) + A
if(timewalk<0):
timewalk=0
T[i]=T[i]-timewalk
i=i+1
return E,T
def remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
i=0
treshold=5.015347
while i < len(T):
if E[i]<treshold: #E[i] < energy treshold
index.pop(i)
matrix_index.pop(i)
ToA.pop(i)
ToT.pop(i)
FToA.pop(i)
overflow.pop(i)
RowNo.pop(i)
ClmNo.pop(i)
E.pop(i)
T.pop(i)
continue
i=i+1
return index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T
def clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T):
dT=float(50)
indexCl, TCl,ECl, matrix_indexCl, ToACl,ToTCl,FToACl,RowNoCl,ClmNoCl,overflowCl=[],[],[],[],[],[],[],[],[],[]
StartLastElem=len(T)-1
indexCl.append(int(index[StartLastElem]))
TCl.append(float(T[StartLastElem]))
ECl.append(float(E[StartLastElem]))
matrix_indexCl.append(int(matrix_index[StartLastElem]))
RowNoCl.append(int(RowNo[StartLastElem]))
ClmNoCl.append(int(ClmNo[StartLastElem]))
ToACl.append(float(ToA[StartLastElem]))
ToTCl.append(float(ToT[StartLastElem]))
FToACl.append(float(FToA[StartLastElem]))
overflowCl.append(float(overflow[StartLastElem]))
del index[StartLastElem]
del T[StartLastElem]
del E[StartLastElem]
del matrix_index[StartLastElem]
del RowNo[StartLastElem]
del ClmNo[StartLastElem]
del ToA[StartLastElem]
del ToT[StartLastElem]
del FToA[StartLastElem]
del overflow[StartLastElem]
j=1
pom=float(TCl[0]+dT)
while(j >0):
if(len(T) == 0):
break
k=0
j=0
while (k<=(len(TCl)-1)):
i=len(T)-1
if(len(T) == 0):
break
pocet_sousedu=0 #pocet sousednich pixelu - mohou byt maximalne 4
delka=0
# verze X
count=0 #pomocna promanna, kterou urcuji, ze se ma nasledujici cyklus while projit jeste jednou, pokud je i = -1
while(float(T[i])<=(pom)):
delka=delka+1
if(((((int(RowNoCl[k]))==(int(RowNo[i])+1))or((int(RowNoCl[k]))==(int(RowNo[i])-1))) and ((int(ClmNoCl[k]))==(int(ClmNo[i])))) or (((int(RowNoCl[k]))==(int(RowNo[i]))) and (((int(ClmNoCl[k]))==(int(ClmNo[i])+1))or((int(ClmNoCl[k]))==(int(ClmNo[i])-1))))):
#beru jen pixely, které mají společnou jednu stranu.
#pixely, kter0 spolu sousedí přes roh neuvažuji
indexCl.append(int(index[i]))
TCl.append(float(T[i]))
ECl.append(float(E[i]))
matrix_indexCl.append(int(matrix_index[i]))
RowNoCl.append(int(RowNo[i]))
ClmNoCl.append(int(ClmNo[i]))
ToACl.append(float(ToA[i]))
ToTCl.append(float(ToT[i]))
FToACl.append(float(FToA[i]))
overflowCl.append(float(overflow[i]))
# Removes i-th Row
del index[i]
del T[i]
del E[i]
del matrix_index[i]
del RowNo[i]
del ClmNo[i]
del ToA[i]
del ToT[i]
del FToA[i]
del overflow[i]
j=j+1
i=len(T)-1
pocet_sousedu=pocet_sousedu+1
if(len(T) == 0):
break
if(pocet_sousedu==4):
break
continue
i=i-1
if(i==-1): # verze X
count=count+1
if(i<0 and len(T)>0): # verze X
i=0
if(count>1):
break
if(i>=len(T)):
break
k=k+1
if(len(TCl)>2):
indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl)
return T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def insertionSort(indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl):
# Function to do insertion sort
# Traverse through 1 to len(arr)
for i in range(1, len(TCl)):
key = TCl[i]
# Move elements of arr[0..i-1], that are
# greater than key, to one position ahead
# of their current position
#ostatni
key1 = indexCl[i]
key2 = ECl[i]
key3 = matrix_indexCl[i]
key4 = RowNoCl[i]
key5 = ClmNoCl[i]
key6 = ToACl[i]
key7 = ToTCl[i]
key8 = FToACl[i]
key9 = overflowCl[i]
j = i-1
while j >= 0 and key < TCl[j] :
TCl[j + 1] = TCl[j]
#ostatni
indexCl[j + 1] = indexCl[j]
ECl[j + 1] = ECl[j]
matrix_indexCl[j + 1] = matrix_indexCl[j]
RowNoCl[j + 1] = RowNoCl[j]
ClmNoCl[j + 1] = ClmNoCl[j]
ToACl[j + 1] = ToACl[j]
ToTCl[j + 1] = ToTCl[j]
FToACl[j + 1] = FToACl[j]
overflowCl[j + 1] = overflowCl[j]
j -= 1
TCl[j + 1] = key
#ostatni
indexCl[j + 1] = key1
ECl[j + 1] = key2
matrix_indexCl[j + 1] = key3
RowNoCl[j + 1] =key4
ClmNoCl[j + 1] = key5
ToACl[j + 1] = key6
ToTCl[j + 1] = key7
FToACl[j + 1] = key8
overflowCl [j + 1] = key9
return indexCl, TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl
def file_t3pa_cls_new(file_t3pa_cls,T):
with open(file_t3pa_cls, "w", encoding="utf-8") as t3pa_cls:
t3pa_cls.write('%\n')
t3pa_cls.write('% Index Matrix Index [ RowNo, ClmNo ] ToA FToA ( ToA_in_ns ) ToT ( ToT_in_keV ) Overflow\n')
t3pa_cls.write('\n')
i=1
T_first=[]
E_tot=[]
N_tot=[]
eventNo=0 #for high_energy_event function
while(len(T) > 0):
T, indexCl,TCl, ECl, matrix_indexCl, RowNoCl, ClmNoCl, ToACl, ToTCl, FToACl, overflowCl = clustering_new(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
Tfirst=float(TCl[0])
Tlast=float(TCl[len(TCl)-1])
dT=Tlast-Tfirst
Etot=float(0)
for k in range(0,len(TCl)):
Etot=Etot+float(ECl[k])
T_first.append(float(Tfirst))
dT=Tlast-Tfirst
E_tot.append(float(Etot))
N_tot.append(len(TCl)) #new in ver. XV
t3pa_cls.write('# '+str(i)+', Nunmasked = '+str(len(TCl))+', Nmasked = 0, Ntot = '+str(len(TCl))+'\n')
t3pa_cls.write('# Tfirst = '+str(Tfirst)+' ns, Tlast = '+str(Tlast)+' ns, dT = '+str(dT)+' ns, Etot = '+str(Etot)+' keV\n')
for j in range(0,len(TCl)):
t3pa_cls.write(str(indexCl[j])+' '+str(matrix_indexCl[j])+' [ '+str(RowNoCl[j])+', '+str(ClmNoCl[j])+' ] '+str(ToACl[j])+' '+str(FToACl[j])+' ( '+str(TCl[j])+' ns ) '+str(ToTCl[j])+' ( '+str(ECl[j])+' keV ) '+str(overflowCl[j])+'\n')
t3pa_cls.write('\n')
#eventNo=single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path)
i=i+1
t3pa_cls.close
return T_first, E_tot, N_tot
def energy_spectrum_in_time(Tfirst, Etot): #dela histogram - energie zaznamenana v case
pom = 0
dt=100 #(ns) time width of 1 bin
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(Tfirst)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_int_first=[] #cas
E=[] #energie
for i in range(0,poc):
T_int_first.append((i*dt) + dt/2)
E.append(0)
#XII
for j in range(0,len(Tfirst)):
time_index=0
time_index=int(((Tfirst[j]-T_first)/dt))
if float(Tfirst[j]-T_first) >= (T_int_first[time_index] - dt / 2) and float(Tfirst[j]-T_first) < (T_int_first[time_index] + dt / 2):
E[time_index]=float(E[time_index])+float(Etot[j])
pom=pom+1
for l in range(0,len(T_int_first)):
T_int_first[l]=T_int_first[l]+T_first
caption, T_int_first = energy_in_time_hist(T_int_first, E, figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt)
return dt, caption, T_int_first, E
def energy_in_time_hist(T_int_first, E,figure_E_in_time_hist, t_plasma_start, t_plasma_end, is_plasma, dt):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_int_first)):
T_int_first[k] = T_int_first[k] / 1000000
plt.plot(T_int_first, E, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_E_in_time_hist, dpi = 1000)
caption = '# x = time in ms, count = energy in keV, dT= '+str(dt)+' ns'
return caption, T_int_first
def hits_in_time_hist_new(T, dt, t_plasma_start, t_plasma_end, is_plasma,figure_count_in_time_hist):
pom = 0
T_first=0 #cas, kdy prisel trigger a yacalo mereni
T_last=(max(T)) #posledni z Tfirst
Delta_T = T_last - T_first
poc = int(int(Delta_T) / float(dt)) + 1 #pocet casovych oken
T_hit=[] #cas
count=[] #energie
for i in range(0,poc):
T_hit.append((i*dt) + dt/2)
count.append(0)
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
k=time_index
for j in range(0,len(T)):
time_index=0
time_index=int(((T[j]-T_first)/dt))
if float(T[j]-T_first) >= (T_hit[time_index] - dt / 2) and float(T[j]-T_first) < (T_hit[time_index] + dt / 2):
count[time_index] = count[time_index] + 1
pom=pom+1
for l in range(0,len(T_hit)):
T_hit[l]=T_hit[l]+T_first
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
for k in range(0,len(T_hit)):
T_hit[k] = T_hit[k] / 1000000
#plt.plot(T_hit, count)
plt.plot(T_hit, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Time [ms]')
plt.ylabel('Count')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
plt.axvline(t, color='k', linestyle='--')
plt.xlim([0, (t_plasma_start + t_plasma_end)])
else:
plt.xlim(0,)
plt.ylim(0,) #10 000 keV
plt.savefig(figure_count_in_time_hist, dpi = 1000)
caption = '# x = time in ms, dT= '+str(dt)+' ns'
return caption, T_hit,count
def energy_spectrum(Etot):
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count=[]
for l in range(0,pocet):
count.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#ax.hist(Etot, bins = xle)
plt.fill_between(xmean, count,step='mid') #pre mid post
plt.plot(xmean, count, drawstyle='steps-mid')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,)
ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_E_hist, dpi = 1000)
return caption, xmean,count, xle, Etot
def hist_file(file_hist, xmean, count, caption ):
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count[m])+'\n')
hist.close
return T_first, E_tot
def multiplot(icon_fig, x1,y1,x2,y2):
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(nrows=2,figsize =(10, 7))
ax[0].plot(x1, y1, drawstyle='steps-mid')
ax[0].set_xlabel('Time [ms]')
ax[0].set_ylabel('Energy [keV]')
if is_plasma == 1:
for t in (t_plasma_start, t_plasma_end):
ax[0].axvline(t, color='k', linestyle='--')
ax[0].set_xlim([0, (t_plasma_start + t_plasma_end)])
else:
ax[0].set_xlim(0,)
ax[0].set_ylim(0,) #keV
#ax[1].hist(y2, bins = x2)
ax[1].fill_between(x2, y2,step='mid') #pre mid post
ax[1].plot(x2, y2, drawstyle='steps-mid')
ax[1].set_xlabel('Energy [keV]')
ax[1].set_ylabel('Count')
ax[1].set_xlim(0,)
#ax[1].set_ylim(0,)
ax[1].set_yscale('log') #log scale y
fig.subplots_adjust(hspace=0.3)
plt.savefig(icon_fig, dpi = 1000)
return
def single_interaction(eventNo,Etot, Tfirst, ECl, TCl, RowNoCl, ClmNoCl,path): # ver XV
#tuto funkci volam ve funkci file_t3pa_cls_new(file_t3pa_cls,T):
#This function is calling in function file_t3pa_cls_new(file_t3pa_cls,T)
high_E = 1500 #[keV] - zadani, jaka energie je pro me vysoka
if(Etot>=high_E or len(ECl)>15):
#if (len(ECl)>15): #len(ECl) = pocet pixelu dane interakce
print("Total energy of track: "+str(Etot)+" keV\n")
A, B, C, D, sigma_A, sigma_B, sigma_C, sigma_D = Timewalk_parameters_Si()
######################
#SI - rekonstrukce z(t) - parametry
a=0.0193947
b=-0.0273934
sigma_a=0.0004163
sigma_b=0.009832
#######################
time=[]
sigma_time=[]
time_min = []
time_max=[]
z_rec=[]
z_rec_min=[]
z_rec_max=[]
sigma_z_rec=[]
for i in range(0, len(TCl)):
time.append(TCl[i] - Tfirst)
#chyba urceni casu = chyba timewalk ->
sigma_time.append(np.sqrt(((sigma_C / (pow((ECl[i] - B), D)))*(sigma_C / (pow((ECl[i] - B), D)))) + (((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))*((sigma_B*C*D) / (pow((ECl[i] - B), (D + 1))))) + (((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))* ((sigma_D*C*math.log(ECl[i] - B)) / (pow((ECl[i] - B), D)))) + (sigma_A*sigma_A)))
time_min.append(time[i] - sigma_time[i])
time_max.append(time[i] + sigma_time[i])
#//
#//rekonstrukce hloubky interakce
z_rec.append(a * time[i] + (b))
sigma_z_rec.append(np.sqrt(((time[i]*time[i])*(sigma_a*sigma_a)) + (sigma_b*sigma_b) + (a*a)*(sigma_time[i]*sigma_time[i])))
z_rec_min.append(z_rec[i] - sigma_z_rec[i])
z_rec_max.append(z_rec[i] + sigma_z_rec[i])
#//
single_interaction_file=str(path)+'event'+str(eventNo)+'.txt'
single_interaction_2D_fig=str(path)+'2D_event'+str(eventNo)+'.png'
single_interaction_3D_fig=str(path)+'3D_event'+str(eventNo)+'.png'
with open(single_interaction_file, "w", encoding="utf-8") as f:
f.write('#\n')
f.write('# x_mean y_mean z_rec z_rec_min z_rec_max sigma_z_rec\n')
f.write('#E_tot='+str(Etot)+'\n')
f.write('\n')
for m in range(0,len(TCl)):
#print(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.write(str(RowNoCl[m])+' '+str(ClmNoCl[m])+' '+str(z_rec[m])+' '+str(z_rec_min[m])+' '+str(z_rec_max[m])+' '+str(sigma_z_rec[m])+' '+str(ECl[m])+'\n')
f.close
############################### plot
#binwidth=1
if ((max(RowNoCl)-min(RowNoCl))>=(max(ClmNoCl)-min(ClmNoCl))):
rang=max(RowNoCl)-min(RowNoCl)
#bins=(range((min(RowNoCl)-1), (max(RowNoCl)+3), binwidth), range((min(ClmNoCl)-1), (min(ClmNoCl)+rang+3), binwidth))
x_min=min(RowNoCl)-1
x_max=max(RowNoCl)+2
y_min=min(ClmNoCl)-1
y_max=min(ClmNoCl)+rang+2
else:
rang = max(ClmNoCl)-min(ClmNoCl)
#bins=(range((min(RowNoCl)-1), (min(RowNoCl)+rang+3), binwidth), range((min(ClmNoCl)-1), (max(ClmNoCl)+3), binwidth))
x_min=min(RowNoCl)-1
x_max=min(RowNoCl)+rang+2
y_min=min(ClmNoCl)-1
y_max=max(ClmNoCl)+2
###############$$$$$$$$$$$$$$$$$$$$
rows, cols = (x_max-x_min, x_max-x_min)
#arrECl = [[0]*cols]*rows
arrECl= [[0] * cols for _ in range(rows)]
for i in range (x_min,x_max):
for j in range (y_min,y_max):
for k in range(0,len(RowNoCl)):
if ((i==RowNoCl[k]) and (j==ClmNoCl[k])):
#print(str(i)+" "+str(j)+" "+str(RowNoCl[k])+" "+str(ClmNoCl[k])+"\n")
arrECl[i-x_min][j-y_min]=ECl[k]
arrECl=np.transpose(arrECl)
arrECl[arrECl == 0] = np.nan
#2D plot
plt.imshow(arrECl,cmap='jet', interpolation='none', origin=[(x_min-0.2),(y_min-0.2)], aspect='equal', extent=[x_min-0.2,x_max,y_min-0.2,y_max])
###############$$$$$$$$$$$$$$$$$$$$
cb=plt.colorbar(pad=0.005)
plt.tick_params(axis="x",direction="in")
plt.tick_params(axis="y",direction="in")
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]')
plt.xlabel('x [pixel]')
plt.ylabel('y [pixel]')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
plt.savefig(single_interaction_2D_fig, dpi = 1000)
plt.show()
plt.close()
############################### plot
############## 3D plot
# Creating figure
fig = plt.figure(figsize = (16, 9))
ax = plt.axes(projection ="3d")
# Add x, y gridlines
ax.grid(b = True, color ='grey', #
linestyle ='-.', linewidth = 0.3,
alpha = 0.2)
# Creating plot
sctt = ax.scatter3D(RowNoCl, ClmNoCl, z_rec,
alpha = 0.8,
c = ECl,
cmap = 'jet',
s = 4000, #size of bubbles in plot
marker ='o')
plt.title('$E_{tot}$ = '+str(round(Etot, 2))+' keV, $N_{tot}$ = '+str(len(ECl)))
ax.set_xlabel('x [pixel]', fontweight ='bold')
ax.set_ylabel('y [pixel]', fontweight ='bold')
ax.set_zlabel('z [mm]', fontweight ='bold')
cb=fig.colorbar(sctt, ax = ax, shrink = 0.5,aspect = 10,pad=0.00005) #
cb.ax.tick_params(axis='y', direction='in')
cb.set_label('Energy in pixel [keV]', fontweight ='bold')
plt.savefig(single_interaction_3D_fig, dpi = 1000)
# show plot
plt.show()
plt.close()
############## 3D plot
eventNo=eventNo+1
return eventNo
def size_of_interactions_average(Etot, Ntot,file_hist): #ver XV
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
count=[]
nop=[] #number of pixels
nop_mean=[] #mean number of pixels in dE
sigma=[] #root mean square error of the mean - stredni kvadraticka chyba prumeru
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count.append(0)
nop.append(0)
nop_mean.append(0)
sigma.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
count[E_index]=count[E_index]+1
nop[E_index]=nop[E_index]+Ntot[i] #ver XV
for l in range(0,pocet):
if nop[l]!=0:
nop_mean[l]=float(nop[l])/float(count[l])
#####Computing sigma
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if nop_mean[E_index]!=0:
sigma[E_index]=sigma[E_index]+((float(Ntot[i])-float(nop_mean[E_index]))*(float(Ntot[i])-float(nop_mean[E_index])))
for l in range(0,pocet):
if nop[l]!=0 and count[l]>1:
sigma[l]=np.sqrt(sigma[l]/(float(count[l])*(float(count[l])-1)))
if nop[l]!=0 and count[l]==1:
sigma[l]=10
#####Computing sigma
#####write to file
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('# x_mean [keV] mean_size_of_interaction [pixel] sigma_mean_size_of_interaction\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(nop_mean[m])+' '+str(sigma[m])+'\n')
hist.close
#####write to file
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, nop,step='mid',color='blue', alpha=0.3) #pre mid post
#plt.fill_between(xmean, nop,step='mid') #pre mid post
plt.plot(xmean, nop_mean, drawstyle='steps-mid')
plt.errorbar(xmean, nop_mean, yerr = sigma,fmt ='.', linewidth=0.7)
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Average size of interaction [pixel]')
plt.xlim(0,500)
plt.ylim(0,17)
#ax.set_yscale('log') #log scale y
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
plt.savefig(figure_size_interaction, dpi = 1000)
return
def energy_spectra_doublebreakdown(Etot, Tfirst, file_hist):
#this function separates discharge into two parts acording to time Tsep and creates energy spectrum for each part.
#This is for discharges with double brakdown
Tsep=14636000 # [ns]
E_min=0
dE=5 #keV
E_max=max(Etot)
pocet=(E_max//dE) + 3
pocet=int(pocet)
E_max=float(dE*pocet)
xle=[]
xre=[]
xmean=[]
for p in range (0,pocet):
xle.append(E_min + (p * (E_max - E_min)) / pocet)
xre.append(xle[p]+dE)
xmean.append((xle[p] + xre[p]) / 2)
count_first=[]
count_second=[]
for l in range(0,pocet):
count_first.append(0)
count_second.append(0)
#XII
for i in range(0,len(Etot)):
E_index=int(((Etot[i]-E_min)/dE))
if ((xle[E_index] <= Etot[i]) and (Etot[i] < xre[E_index])):
if(Tfirst[i]<Tsep):
count_first[E_index]=count_first[E_index]+1
else:
count_second[E_index]=count_second[E_index]+1
caption = '# x = energy in keV, dE= '+str(dE)+' keV'
with open(file_hist, "w", encoding="utf-8") as hist:
hist.write('#\n')
hist.write('#'+str(caption)+'\n')
hist.write('# x_mean count_before_2nd_breakdown count_2nd_breakdown\n')
hist.write('\n')
for m in range(0,len(xmean)):
hist.write(str(xmean[m])+' '+str(count_first[m])+' '+str(count_second[m])+'\n')
hist.close
plt.rcParams.update({'font.size': 20})
fig, ax = plt.subplots(figsize =(10, 7))
#plt.fill_between(xmean, count_first,step='mid') #pre mid post
plt.plot(xmean, count_first, label='Before 2nd breakdown', drawstyle='steps-mid')
plt.plot(xmean, count_second, label='2nd breakdown', drawstyle='steps-mid')
plt.legend(loc='best')
plt.title(detector+', #'+str(shot_no))
plt.xlabel('Energy [keV]')
plt.ylabel('Count')
plt.xlim(0,500)
ax.set_yscale('log') #log scale y
plt.savefig(figure_energy_spectra_doublebreakdown, dpi = 1000)
return
#soubory, ktere ctu
#read files
t3pa=get_file(shot, identifier)
name_calib='caliba'
caliba=get_file_calib(name_calib)
name_calib='calibb'
calibb=get_file_calib(name_calib)
name_calib='calibc'
calibc=get_file_calib(name_calib)
name_calib='calibt'
calibt=get_file_calib(name_calib)
#vytvorene soubory:
#created files
t3pa_cls= 'H03-W0051_shot_'+str(shot)+'_450V.t3pa_cls'
E_hist= 'H03-W0051_shot_'+str(shot)+'_450V_E_hist.txt'
E_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_energy.txt'
count_in_time_hist= 'H03-W0051_shot_'+str(shot)+'_450V_discharge_hits.txt'
size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction.txt'
file_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown.txt'
#created figures
icon_fig='icon-fig'
figure_E_in_time_hist='discharge_energy'
figure_count_in_time_hist='discharge_hits'
figure_E_hist='Energy_spectrum'
hit_map_fig='hit-map'
figure_size_interaction= 'H03-W0051_shot_'+str(shot)+'size_interaction'
figure_energy_spectra_doublebreakdown= 'H03-W0051_shot_'+str(shot)+'energy_spectra_doublebreakdown'
#nactu jednotlive kalibracni matice - abych to nemusel delat v kazde funkci
a=load_calib(caliba)
b=load_calib(calibb)
c=load_calib(calibc)
t=load_calib(calibt)
#nactu a urcim jednotlive hodnoty - abych to nemusel delat v kazde funkci
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti = load_t3pa_file(t3pa)
index, matrix_index, ToA, ToT, FToA, overflow, pocet_udalosti, RowNo, ClmNo = t3pa_data(pocet_udalosti,index, matrix_index, ToA, ToT, FToA, overflow)
raw data
#hit map
hit_map(detector,hit_map_fig,RowNo,ClmNo)
Energy and time calculation from raw data.
E=energy(a, b, c, t, ToT, pocet_udalosti, RowNo, ClmNo)
T=Time(ToA, FToA, pocet_udalosti, RowNo, ClmNo)
index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T = remove_interactions_with_zero_energy(index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E, T)
E,T=Timewalk(E,T)
#sort by time
T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E = (list(t) for t in zip(*sorted(zip(T, index, matrix_index, ToA, ToT, FToA, overflow, RowNo, ClmNo, E), reverse=True))) #serazeni od nejvetsiho po nejmensi
T_pom=T.copy()
#save to file
T_first, E_tot, Ntot = file_t3pa_cls_new(t3pa_cls,T)
dt, caption, T_int_first, E = energy_spectrum_in_time(T_first, E_tot)
hist_file(E_in_time_hist, T_int_first, E, caption);
([7355973.340985491, 7355988.945435126, 7359350.0, 7723271.40763962, 7723275.121862865, 7767040.157576686, 7779531.25, 7978847.701580902, 7981837.8388847, 8022985.9375, 8042262.876659766, 8045218.75, 8046199.443074818, 8046259.092088341, 8052055.023065376, 8069887.5, 8070807.1686910065, 8074343.75, 8075155.611846338, 8077092.25695168, 8099096.044599677, 8099657.465657763, 8099683.508955462, 8100873.132276672, 8101984.375, 8104213.044466638, 8105262.5, 8106817.1875, 8106832.184433546, 8214904.342708722, 8219842.511875675, 8300318.75, 8320352.718291621, 8322625.5356808165, 8325138.932292077, 8326902.585581463, 8335001.857311721, 8340343.54182188, 8340619.138679174, 8359910.281034648, 8360589.0625, 8361886.304780742, 8362846.875, 8369046.014429855, 8374591.75939493, 8375042.117668264, 8375281.336102198, 8396236.148757122, 8396268.22819021, 8398897.395018756, 8412012.5, 8436775.0, 8489212.168438962, 8491489.507650765, 8494945.374176797, 8509836.244282104, 8513071.875, 8516656.25, 8517090.083024537, 8517910.776816761, 8518525.0, 8518914.581797399, 8519270.3125, 8522249.018331641, 8522666.02606224, 8530453.125, 8534228.125, 8535182.8125, 8537421.453602212, 8537476.817304077, 8539376.395134285, 8541170.3125, 8544172.99122561, 8545783.230767362, 8547052.82167506, 8547100.719073474, 8547367.1875, 8547427.915962283, 8548157.59643957, 8548742.1875, 8560007.46735629, 8560573.610948015, 8563621.963504335, 8565177.257096704, 8567248.208294904, 8575265.625, 8590983.538335664, 8591019.315770492, 8591033.581638614, 8592025.055381032, 8594654.21163248, 8598910.0030014, 8601721.821318366, 8602044.395714683, 8602931.107240066, 8603023.646005819, 8603038.663371537, 8603113.346925102, 8603732.8125, 8604159.473096287, 8604773.820602177, 8605095.3125, 8605115.815812562, 8605182.8125, 8605837.271403722, 8605867.1875, 8606751.65427064, 8616184.921176875, 8618580.728751674, 8619967.012944588, 8634570.117909824, 8636745.3125, 8640601.783599509, 8641174.319287525, 8641243.92823914, 8641567.1875, 8641769.649961706, 8641827.326112075, 8641852.382187119, 8641876.385493653, 8642180.612488676, 8642181.41803691, 8642225.396425629, 8642266.720115606, 8642380.505054997, 8642474.516917305, 8642567.1875, 8642602.837535027, 8642676.5625, 8642754.750987852, 8642762.883809064, 8642793.109867938, 8642934.943619538, 8643040.37073074, 8643050.946706783, 8643081.2833621, 8643119.053659592, 8643157.182545016, 8643229.6875, 8643240.625, 8643261.369307794, 8643344.395388024, 8643384.258751733, 8643395.3125, 8643415.534884311, 8643434.436851079, 8643438.028106872, 8643566.570861552, 8643596.250195645, 8643620.311709426, 8643633.966521619, 8643651.559629815, 8643674.98915888, 8643690.625, 8643692.1875, 8643728.125, 8643862.5, 8643885.604505539, 8643900.0, 8643910.9375, 8643983.839442208, 8644069.223623114, 8644097.01137536, 8644118.75, 8644145.572021766, 8644176.22779425, 8644360.9375, 8644464.0625, 8644467.1875, 8644507.8125, 8644717.399275376, 8644723.350222211, 8644809.161019472, 8644818.641656987, 8644840.530145148, 8644846.076629281, 8645080.500406533, 8645124.157993823, 8645374.541202156, 8645417.399840057, 8645524.032303764, 8645781.25, 8646366.109936543, 8646556.25, 8646580.094331957, 8646610.217726428, 8647190.893917993, 8647450.566673178, 8648414.0625, 8648472.193116935, 8648524.8060091, 8648596.754316144, 8649505.373057112, 8649507.928147618, 8650214.05939576, 8651745.3125, 8651870.945111938, 8652117.896792363, 8652188.817011364, 8652201.230673911, 8652862.5, 8653018.101836683, 8653441.05561248, 8653753.125, 8654368.75, 8654712.5, 8655115.625, 8655162.5, 8657057.69198355, 8657489.0625, 8659928.125, 8659951.076020647, 8660006.445088083, 8663279.633380672, 8664078.125, 8664189.317878848, 8664339.0625, 8665609.702196516, 8666004.168561123, 8668187.766033623, 8668395.3125, 8668679.113822285, 8671014.0625, 8671629.127503568, 8671705.663777856, 8672237.97617123, 8673532.784181582, 8674156.973393545, 8674172.684769735, 8676755.420871627, 8679018.75, 8679682.8125, 8679877.308913138, 8679882.8125, 8679934.97212969, 8680224.15594519, 8680228.31001139, 8680251.43490775, 8680418.75, 8680937.41750536, 8682304.498062853, 8683353.673408894, 8683439.0625, 8683792.869417833, 8684244.213422792, 8686832.606951177, 8696387.407808932, 8705005.488469819, 8705659.375, 8706114.209592182, 8722450.667108087, 8722501.301683838, 8724720.3125, 8726333.443308342, 8727887.5, 8732549.79821333, 8733237.269408682, 8733907.8125, 8734654.686397169, 8735278.125, 8735289.846349921, 8735344.09593056, 8736915.069772236, 8737083.68062637, 8737207.8125, 8737303.125, 8737694.221689288, 8737727.535729868, 8738142.557167895, 8739462.28661034, 8752470.331715075, 8756720.3125, 8778021.282655306, 8780723.4375, 8829731.106385702, 8830399.883327171, 8830523.940966686, 8830560.889895946, 8831079.6875, 8831251.985258158, 8831582.792933766, 8831587.354407625, 8831738.006363284, 8831848.046694694, 8831879.6875, 8832035.670691412, 8832308.62806878, 8833637.733503707, 8833739.024130188, 8833829.771729825, 8834276.170426656, 8834349.643802589, 8834829.6875, 8835918.341468858, 8835971.67706586, 8836025.034853507, 8836121.868253056, 8836122.571024805, 8836202.090746991, 8836578.125, 8836725.0, 8836832.8125, 8836865.602959724, 8836956.938582802, 8836976.5625, 8837234.375, 8837240.625, 8837273.632174758, 8837319.416326543, 8837353.125, 8837401.5625, 8837632.8125, 8837640.49745829, 8837651.5625, 8837664.485475222, 8837667.1875, 8837699.750691691, 8837857.8125, 8838026.725156158, 8838164.85379581, 8838198.7024802, 8838276.01623279, 8838326.204286002, 8838487.149515675, 8838544.144471383, 8838569.626575744, 8838570.392711343, 8838585.25900059, 8838622.223103145, 8838665.350540917, 8838672.065157963, 8838686.520232711, 8838737.5, 8838860.604992684, 8839071.875, 8839129.6875, 8839147.263160205, 8839365.625, 8839561.966861939, 8839745.368498385, 8839764.0625, 8839866.205593597, 8840020.597120345, 8840270.607613236, 8841114.885511516, 8841123.4375, 8841746.908988765, 8842543.75, 8842640.605979195, 8842759.058419023, 8843139.132370565, 8843150.028789336, 8843521.875, 8843626.034259925, 8843738.744523935, 8843845.3125, 8844223.4375, 8844930.480920201, 8844940.743684057, 8844948.074893108, 8845633.040131526, 8845834.375, 8845996.875, 8846177.831139093, 8846277.75455574, 8846662.106292417, 8846717.1875, 8846891.285041109, 8847077.639899472, 8847675.0, 8847954.6875, 8848192.1875, 8848962.412431475, 8849087.43718161, 8850320.130945018, 8851194.591558656, 8854466.400027521, 8854841.023290958, 8855487.5, 8856526.5625, 8856899.491243344, 8857180.868304854, 8858168.130973779, 8858174.152807366, 8858649.710498556, 8858886.822115349, 8859096.875, 8859257.8125, 8859460.9375, 8859704.6875, 8859905.734905772, 8860160.705630863, 8860758.13007106, 8860835.261473788, 8860941.914459636, 8861376.725247616, 8862291.786577903, 8862367.763105592, 8862525.1091195, 8862700.300131723, 8862904.37585076, 8863090.591739113, 8863372.156201402, 8863440.625, 8863819.588151809, 8864077.97902864, 8864466.083440641, 8864533.505959542, 8865307.737122469, 8865509.375, 8866296.7317381, 8866969.222721465, 8866995.280719098, 8868402.576580139, 8869843.20746482, 8870137.681104576, 8870147.041124342, 8870159.005007626, 8870166.90134506, 8870385.905342052, 8870456.25, 8870463.7254502, 8870624.593405802, 8870656.797518939, 8870948.4375, 8871091.188573534, 8871177.803424248, 8871379.166686086, 8871504.832750205, 8871596.875, 8871697.08413295, 8871707.726517785, 8871725.0, 8871745.223491779, 8871776.928135004, 8871862.491539877, 8872342.1875, 8872487.007368876, 8872651.5625, 8872728.125, 8872750.8041589, 8872910.503272085, 8872915.180851165, 8873032.8125, 8873043.75, 8873052.01831394, 8873117.35105833, 8873212.5, 8873298.4375, 8873354.042974086, 8873365.375330467, 8873579.853211017, 8873917.396711385, 8874087.5, 8875067.895171132, 8875483.973209819, 8875702.506642085, 8877606.194389356, 8877608.788628412, 8878118.496411825, 8880897.250635885, 8883001.5625, 8885817.312303985, 8892914.005716925, 8894086.706157068, 8899239.221147252, 8900749.560684096, 8903421.349025311, 8903634.190140678, 8903660.821757713, 8903702.105404438, 8904206.09666803, 8904213.25240422, 8905179.6875, 8905243.36453963, 8905252.49787016, 8905529.21258323, 8905598.128821999, 8905629.6875, 8906512.618632903, 8907138.839285353, 8907261.613372777, 8911644.607294124, 8934277.898634445, 8941187.006533518, 8943796.175342495, 8945196.21071026, 8945946.515990412, 8946384.063990066, 8946736.044795394, 8947191.360922994, 8947199.040818479, 8949498.265993662, 8951480.201921735, 8952373.08932002, 8952463.175904203, 8954608.607402066, 8965623.4375, 8966825.0, 8979409.245810041, 8986587.5, 8993360.004932102, 8995214.821620047, 8996628.860245321, 9003305.475102626, 9003476.5625, 9004476.5625, 9010628.312574785, 9012842.571600525, 9014947.065746767, 9014963.99413631, 9017540.118333135, 9017996.875, 9018501.040853431, 9019362.5, 9020628.091041768, 9022920.3125, 9023178.787581123, 9024245.582986891, 9025186.626514459, 9025337.549792469, 9034416.322410777, 9034918.75, 9035544.006692836, 9041251.062587112, 9042878.125, 9056064.0625, 9056752.940269958, 9056805.786378033, 9057298.4375, 9057847.9120667, 9061971.875, 9062175.070496792, 9062243.525608763, 9064298.355336398, 9066110.9375, 9066114.0625, 9066117.781019542, 9077028.273975706, 9081972.427003536, 9083718.75, 9083810.9375, 9084235.090670832, 9084242.427784197, 9084382.698755076, 9084749.239286328, 9084907.414270582, 9084971.519026717, 9085006.25, 9085221.183608536, 9086024.131324397, 9086114.0625, 9088115.625, 9089683.952585502, 9089775.0, 9090232.8125, 9091396.212611636, 9113350.373350088, 9130128.299770683, 9130646.088284142, 9130773.275760585, 9133939.0625, 9134454.6875, 9159207.8125, 9169228.544667082, 9171101.495290449, 9171311.772105662, 9172289.0625, 9173643.960171338, 9174159.375, 9184681.36882414, 9184701.17118474, 9216765.205820478, 9216826.205210423, 9217263.255785082, 9218490.32221195, 9219410.9375, 9221014.0625, 9221224.718656447, 9221362.707476713, 9222780.611326411, 9223265.18911466, 9232937.226604143, 9241673.494521659, 9247681.192992238, 9248513.87380904, 9248648.4375, 9249955.437416801, 9250582.626104781, 9250642.1875, 9250691.92269377, 9250892.502533156, 9250963.02069774, 9251226.5625, 9251274.077730222, 9251319.511753442, 9251419.135264372, 9251443.47572716, 9251531.56088627, 9251557.415624943, 9251647.6643315, 9252198.4375, 9252212.389325377, 9252351.549537012, 9252689.939950544, 9252869.613840796, 9252901.5625, 9252926.588795727, 9253162.5, 9253387.612427577, 9253447.644054333, 9253448.150991611, 9253627.189924678, 9253646.73296202, 9253778.279965108, 9253899.115285901, 9254208.567087809, 9254464.001746291, 9254963.915287508, 9255031.238880787, 9255032.534515738, 9255054.040313156, 9255164.0625, 9255404.948154774, 9255492.1875, 9255538.613928234, 9255539.0625, 9255798.111237645, 9256081.25, 9256158.600572933, 9256290.958902312, 9256462.5, 9256750.0, 9257101.940857017, 9257310.115958624, 9257318.44162978, 9257320.632709604, 9257742.929330334, 9257804.6875, 9258198.081167044, 9258878.580580018, 9259709.375, 9281641.871364038, 9281918.3637814, 9283101.629400145, 9284623.03282704, 9286242.178283479, 9286362.182690911, 9286663.713876933, 9287242.1875, 9287991.46415726, 9288087.5, 9288099.315673903, 9288229.056045918, 9288299.626440775, 9288500.001440935, 9288695.622198397, 9288851.5625, 9288898.4375, 9288914.58410202, 9288959.375, 9288967.1875, 9289007.094553415, 9289217.238954138, 9289235.688004272, 9289532.28362856, 9289545.126045907, 9289594.558578253, 9289725.37767249, 9289773.989223769, 9289776.5625, 9289791.390447857, 9289853.125, 9289868.777089935, 9289877.997670876, 9289879.6875, 9289913.023697587, 9289949.16855404, 9289971.875, 9290050.429035679, 9290187.185473025, 9290240.895674491, 9290295.66183254, 9290319.67730032, 9290370.3125, 9290379.99116129, 9290436.191930098, 9290620.3125, 9290664.902370526, 9290680.666287405, 9290775.857920464, 9290832.05337349, 9290868.956986083, 9290959.542239096, 9290965.625, 9291020.3125, 9291098.4375, 9291166.997341024, 9291225.753149824, 9291257.781116037, 9291287.5, 9291309.865632601, 9291432.8125, 9291453.929378714, 9291533.05632254, 9291535.9375, 9291571.799564289, 9291616.502388252, 9291801.76507139, 9291864.877739184, 9291945.12359457, 9292004.6875, 9292042.171316423, 9292260.276636433, 9292271.1015006, 9292309.782718323, 9292330.540025705, 9292330.991133396, 9292331.173660018, 9292483.166153008, 9292489.222505648, 9292521.14267826, 9292657.589630317, 9292735.652171772, 9292752.728696141, 9292821.377170535, 9292927.887680164, 9292955.856066192, 9293267.1875, 9293318.75, 9293325.019565746, 9293338.271892954, 9293393.66606463, 9293459.067343106, 9293479.462933263, 9293480.971541341, 9293600.0, 9293620.3125, 9293743.657158196, 9293801.503377337, 9293846.875, 9293864.011482818, 9293875.490887905, 9293912.891611734, 9293995.333155626, 9294012.5, 9294019.265076766, 9294081.25, 9294119.447048282, 9294123.059994413, 9294143.621626176, 9294184.375, 9294351.5625, 9294389.0625, 9294483.533042176, 9294532.466882931, 9294608.889522681, 9294610.919423668, 9294617.1875, 9294798.175821455, 9294947.869334564, 9294954.031806566, 9294963.093917213, 9294970.3125, 9295027.866952905, 9295043.75, 9295046.16704367, 9295213.448382929, 9295392.038851349, 9295558.07486343, 9295638.987410897, 9295639.907479212, 9295654.6875, 9295667.769832525, 9295740.474239022, 9295778.128207304, 9295821.875, 9295855.53117127, 9296038.052295122, 9296275.0, 9296384.519123714, 9296403.988678453, 9296422.803913867, 9296443.725611305, 9296492.27481183, 9296547.915398378, 9296613.804752113, 9296621.758076001, 9296730.781562941, 9296758.68313461, 9296999.50296832, 9297080.512145778, 9297137.117163608, 9297142.533067754, 9297161.924261866, 9297300.0, 9297307.857196582, 9297312.736831883, 9297348.4375, 9297382.201210542, 9297393.857671998, 9297399.946068745, 9297426.094826909, 9297444.960524954, 9297517.1875, 9297558.750462243, 9297579.607242778, 9297580.22275573, 9297634.375, 9297655.96598503, 9297667.954218669, 9297710.41348143, 9297762.856381375, 9297841.003637632, 9297885.508930426, 9298047.618752882, 9298062.280083572, 9298075.0, 9298315.423803963, 9298482.8125, 9298518.689921772, 9298688.854448324, 9298706.274319734, 9298838.244846575, 9298896.875, 9299027.568640951, 9299049.501659038, 9299166.83072635, 9299188.626788385, 9299318.501958247, 9299504.6875, 9299587.250071451, 9299642.1875, 9299884.375, 9299887.023939846, 9299889.952330083, 9300135.83404884, 9300424.951795483, 9300434.729636326, 9300436.6921365, 9300601.213808883, 9300606.78658116, 9300607.787246712, 9300965.528622258, 9300984.229674147, 9301096.857755013, 9301155.513713388, 9301185.208492782, 9301315.067717962, 9301400.0, 9301416.3555398, 9301449.785473906, 9301508.95186321, 9301520.84122644, 9301545.3125, 9301570.3125, 9301576.607316166, 9301635.9375, 9301661.80382581, 9301756.775586156, 9301756.858397013, 9301767.1875, 9301773.514216874, 9301779.32848961, 9301831.389656954, 9301912.5, 9301926.154831003, 9301941.085837089, 9301960.778732728, 9301973.860889954, 9302085.86131224, 9302088.382747063, 9302098.676354917, 9302133.494556842, 9302210.9375, 9302214.024730725, 9302218.75, 9302239.0625, 9302310.297075203, 9302377.666189974, 9302421.674549598, 9302434.000819983, 9302503.125, 9302509.917312298, 9302523.4375, 9302641.436334, 9302672.836316159, 9302704.318752883, 9302756.586350657, 9302771.369250383, 9302776.1804155, 9302800.6973116, 9302810.748035239, 9302861.897831677, 9302944.937084146, 9303034.375, 9303070.32047621, 9303163.121562216, 9303461.823904471, 9303612.5, 9303621.875, 9304386.875053281, 9304446.268915128, 9304468.39911858, 9304596.03385919, 9305329.6875, 9305993.75, 9306459.375, 9306498.10589059, 9306543.007579071, 9306562.5, 9306618.75, 9306923.4375, 9307280.661274225, 9308043.500371478, 9308120.3125, 9308156.900868155, 9308484.640256828, 9308834.375, 9308900.807761002, 9309129.21176876, 9309138.82926522, 9309218.928125903, 9309694.044212306, 9309830.430567417, 9310210.9375, 9310278.779993972, 9310286.615956372, 9312173.4375, 9313512.130825864, 9313774.895021427, 9313985.700341802, 9316775.969318364, 9318490.31114371, 9318748.4375, 9323759.375, 9326366.232336778, 9327182.8125, 9327464.564280767, 9327704.6875, 9329226.692058934, 9329653.125, 9330423.4375, 9330741.420103189, 9331656.25, 9332421.808999786, 9332811.612262094, 9333717.1875, 9334159.375, 9334371.550571848, 9334492.1875, 9334568.75, 9335693.039406765, 9336490.625, 9336635.828724338, 9336726.5625, 9336983.536928603, 9336991.694602957, 9337162.446862822, 9337273.36387611, 9337303.966187453, 9337304.902117705, 9337678.781075004, 9337682.8125, 9337692.607118178, 9337709.068485651, 9337722.167491227, 9337795.08649687, 9337814.031362027, 9337907.386342349, 9338171.875, 9338189.197937088, 9338195.3125, 9338301.803238252, 9338307.182986284, 9338337.193240132, 9338492.050033908, 9338496.778645257, 9338562.578213552, 9338890.38039404, 9338987.28195423, 9339125.0, 9339131.25, 9339159.725625427, 9339357.8125, 9339480.62145999, 9339508.760815011, 9339779.6875, 9339882.635440081, 9339951.550040947, 9340046.875, 9340159.526654413, 9340211.766794145, 9340579.285947578, 9340829.99767218, 9340971.875, 9341064.0625, 9341072.28678021, 9341090.765222497, 9341150.491393926, ...], [26.75177279347535, 26.407222698726024, 30.136530838737794, 7.00378723279572, 7.647916194022701, 21.82434422455034, 89.91643919296973, 80.46345224923697, 11.702214903244132, 93.31599629353758, 43.83672222200391, 110.29052468883575, 20.94343421976274, 55.015231536395646, 8.472376456076882, 42.54953877950903, 24.005545513199287, 81.48594692663545, 5.579689238098707, 71.59625542238976, 96.79812951392947, 6.696182908240653, 8.69274358471182, 10.68193791993992, 51.9396019995593, 20.320872954826147, 30.436195585792515, 34.276159326517, 20.304104572870212, 23.194973760169354, 7.724929074987928, 75.29635704239081, 22.477109628372226, 8.591738004585002, 98.14247580894748, 13.219369040401421, 11.62205964038908, 14.676524199365183, 16.6635261835285, 20.06242956117706, 79.51460797911642, 16.55430433937703, 113.90691240785682, 131.60477993121683, 75.28034459834137, 9.273046342431607, 9.405284286098677, 9.516657995513329, 8.028652945348663, 84.93069706531136, 53.18240877373307, 75.99473117465988, 5.911042086797839, 89.95081314542219, 20.310979951457963, 8.455756898885888, 33.466811707560744, 106.57607623882018, 21.084348626159425, 25.70990290346228, 70.2564388878275, 5.98594192672531, 69.85314542077786, 12.175678857690013, 118.24430306584419, 34.850872845966315, 74.94235387950383, 75.964992288912, 22.31475040335615, 5.628297772085078, 9.193784965433842, 62.60496271526033, 22.046323434888983, 16.817807287428565, 23.708362873243544, 6.36253387855135, 38.29881914498556, 5.198128781649614, 32.772805024918725, 38.68646672380934, 23.1907269603671, 9.482499639359746, 5.465578109530573, 58.52582648155989, 57.6114514507629, 64.56699125703902, 37.59776729342981, 63.156610922243814, 12.58851482102368, 11.215388533221143, 10.457318689952256, 23.597221347974585, 11.044822998882218, 42.48575199744493, 18.85851060555637, 5.045075235369582, 47.36350402838572, 7.94124990228602, 155.11124575135585, 17.832435780380898, 11.784425122860915, 35.91467329887701, 15.722346482760312, 89.94131686449217, 10.788255599468563, 73.34428403085492, 7.636770253954858, 42.80844214352583, 8.926394930982266, 24.695466915713915, 7.5343420003474995, 63.631532361649505, 18.94291660729977, 13.502333264353545, 6.106832741427333, 58.56789889924796, 73.08556050682996, 18.952968481815997, 46.478988670006615, 14.30719710417207, 29.870154060086, 64.69912289251124, 11.809557407703457, 37.82336365922285, 12.701784372848685, 8.953807784319993, 40.60016723033769, 36.841561357600376, 115.96539671924563, 36.24657834694725, 124.6861816651436, 74.42008433570973, 102.65268720743198, 6.235599033871256, 13.691688723329133, 9.359772931160471, 16.240707692752345, 7.979355450549033, 56.15237343999967, 54.82483443260507, 7.239783557644251, 21.505444368815603, 10.950738125353716, 34.38192015641396, 33.68949833458236, 7.137805897783324, 8.587095121071492, 101.5249080284282, 7.981673467085565, 28.50956861890218, 22.45739090894637, 11.12322348155508, 41.26461902853064, 40.90510671102064, 59.49274355622422, 102.90137202501782, 74.79110726669279, 23.33823799232898, 100.72628169906773, 45.00158575500797, 5.3783873741508765, 17.56259272663484, 9.449441214981444, 154.71155570813903, 48.52866341294268, 31.140215518915596, 81.38479326324696, 86.62864815168318, 32.34241869617752, 60.48695559171625, 6.806535419261517, 114.28853151306913, 6.240536782252837, 26.55215227787906, 14.591886244263517, 81.35486064931837, 6.622547247119809, 46.07579187556018, 28.131471852704603, 8.402151629565715, 27.883404616258844, 74.23503433736408, 11.980922030370152, 50.60113326647348, 16.757724246627802, 7.9394017567381825, 6.5300892667213, 17.653800752065006, 70.92883549140832, 11.664226096048383, 14.250298996553052, 14.50064143367031, 18.076418815375362, 15.401419821929819, 28.463837285981235, 56.37457493347123, 7.849274615685338, 39.51756244644389, 42.046703082739434, 23.352545623456507, 57.05282653852241, 10.246102412894302, 8.528222392024983, 46.9396784972687, 45.3684954484441, 59.99593359863406, 52.33958403451867, 85.74497807992714, 26.35038936627048, 40.51413776410554, 58.32852238234247, 10.443874359470492, 6.292165051606209, 11.044155519765223, 57.043726074041, 11.551807725655046, 101.13839468759711, 45.490350667569686, 6.203787412744359, 16.062706818475935, 34.48488716817319, 20.788317811802802, 81.51180828069577, 13.164679445915871, 28.535815426688973, 7.785045267208669, 87.01458248912395, 62.080339138221106, 33.474308724104105, 20.4396698177871, 72.91073879405393, 84.55778773966682, 35.657885573535594, 102.23479944931374, 8.629784920940736, 8.706932456397677, 23.628767723160074, 16.03774528510828, 73.50179144231107, 26.993071159965226, 14.265490218900675, 12.108729421701028, 53.140182584455275, 6.599578774612395, 7.779914526471149, 25.03716809925154, 14.601389735467064, 10.114901299414955, 55.70675282766949, 11.365677639781746, 8.67395009247688, 5.794930895312145, 128.4060143112726, 5.02618516336354, 97.14951291435423, 25.091948521724788, 14.129868519224015, 62.65943933876576, 28.503386469048014, 136.10953685294103, 17.20625640208227, 6.124827204271879, 36.34982072703265, 64.12009999913296, 53.895359112918115, 51.062980395068465, 7.783239720932128, 13.088029443247427, 38.70116750645032, 22.9900945900025, 177.82798486359147, 121.54752827091751, 30.546637743136454, 66.87010866140778, 14.42098611963785, 26.413696624781615, 17.28443722369397, 14.763117196466489, 119.3041438409134, 9.716422754936236, 20.983255566192973, 61.46962968788725, 61.60993248178218, 98.11495981988244, 41.12825188779285, 9.115550506241009, 12.697076512441548, 7.18421595987953, 27.787605432633875, 23.563305768165364, 10.56559482614759, 13.737932400749452, 31.413404522346752, 5.061541938408205, 7.5331834407284815, 9.361048689693172, 59.97964992556767, 18.479465553290726, 51.92416050563229, 147.04590303722057, 64.95257548328539, 50.6809668635446, 28.095956645222035, 12.40670317063929, 57.935281139065616, 68.94491702772788, 42.47783142572846, 9.501621116522463, 25.107381230798065, 35.766729921298754, 49.21282701165466, 70.51673092988352, 14.476687180683104, 198.79003221946817, 9.716635687042936, 121.75171044399498, 6.062551460658605, 63.18882910143997, 6.105178949137344, 168.05583537531783, 9.565981065621834, 35.304902939604624, 10.610441290657521, 94.49006290809652, 27.114301123901356, 86.6870438203785, 15.256312745031012, 22.707046074434288, 144.72055460856086, 24.082567680310937, 42.8935338664591, 27.98079351524904, 39.36169315654658, 23.344200859704067, 64.61680819804053, 36.42430373725747, 16.660854163235072, 59.88990849504765, 20.265400078160834, 9.379206111259322, 33.63309655625985, 56.22624823616641, 11.603772359801491, 35.80819563336092, 19.396079203990787, 63.50770206950555, 18.656667908485566, 92.54353044764677, 250.65986071325725, 128.0148201160539, 47.59458904075198, 15.052388148463535, 63.445016053841925, 21.21594131069147, 29.35749265107774, 43.82127495838599, 95.50341458496572, 19.172024254758536, 9.433814775393177, 31.00553484329218, 11.503180882306733, 39.02446532363619, 130.37880807356734, 46.793886966302324, 58.93446888967607, 147.2418011191735, 57.77521524737366, 48.19361273743026, 13.3670382528276, 78.4445062510609, 29.945195915142598, 30.157917932150383, 26.905146120946085, 30.740629932780116, 14.291895278807898, 5.185435539395201, 7.34126220804214, 10.893648464600545, 76.43067303480748, 54.08144920805757, 75.38131515685131, 14.610139635083065, 75.1598897739387, 18.611398451157953, 20.07742988298611, 12.86390692872487, 58.91269043240558, 178.5019922936733, 69.10658949125538, 44.15180183081494, 31.597858746810076, 36.069508900559896, 9.615182964090621, 58.58824552805065, 24.101332454069247, 35.528995807452645, 58.40982848008261, 17.7146527172826, 14.04263395135334, 128.872668331563, 7.0418694686051, 41.362748304914085, 132.66244333379296, 60.18603602381661, 18.76706677259166, 92.4043714095935, 56.004869231495675, 52.59667852458057, 14.66178363143923, 74.79106096109402, 89.86437063310362, 11.956806624103756, 11.078391926160716, 21.023312254313023, 15.271506033560938, 34.29800741623241, 68.74955083358364, 13.696790671003408, 7.048208439240633, 27.9039563835364, 67.517461100243, 120.96500265260804, 58.7792261798874, 17.539661633364677, 40.3486508021834, 138.38408467067978, 37.4374842994467, 92.14118980572022, 15.525628268256801, 140.3483615471422, 8.400355758826766, 36.47554073052774, 39.20360434273596, 14.612768184864569, 54.392802268980034, 28.358635271285763, 32.01376656732177, 21.9322572366177, 31.745978535256132, 63.13151445688902, 53.709467447542615, 22.175300747002115, 22.068945306275893, 59.26852365508167, 80.98470728441626, 7.246657911773166, 40.51500453026138, 67.3564695343504, 68.26601525006409, 43.179680606977634, 7.515365405619649, 15.613121614347541, 111.203730150799, 45.47749524086754, 12.449056800750698, 52.33219376644532, 25.99055753101815, 11.04188227125883, 5.889917217907473, 14.05568478070262, 113.69677968850903, 65.14055021282125, 74.74649436799615, 28.55175574111591, 6.009261881066748, 5.404573798065131, 22.12059700630671, 43.04830470709726, 25.3420566698073, 69.0644160970117, 52.870160741274105, 6.463320758973231, 41.59413271393157, 132.29271056298717, 5.279327321214951, 6.02522405802743, 10.458526101460103, 13.882464215212499, 97.1379660154035, 5.714349949298185, 24.78375679323201, 79.51862966359107, 12.797103561744997, 10.791404051319365, 8.94631715270018, 75.68682717895769, 64.22252513044289, 23.0251472429637, 21.705512022593204, 14.220539038597762, 18.755202345203447, 8.633654539886042, 8.19791751337684, 29.135741612015266, 23.154218858941963, 39.17492808319301, 33.00677797796092, 42.65567698674672, 62.45344209070584, 26.208855786661854, 114.22432740556394, 36.08043104588701, 41.53572675125286, 7.892728202115289, 19.128757520334506, 49.47715111158932, 62.38452060862342, 7.672519042708363, 73.14159592436258, 11.439546496612474, 9.274259120693436, 21.426851498752267, 65.1970928540034, 21.279848186763356, 61.18119835634289, 55.85733072769463, 44.8129662002428, 6.354704619291794, 15.895268839641252, 18.432102613154356, 5.943753515129242, 10.000041096374362, 31.960331817394678, 16.01933916209396, 44.57315933911433, 106.35483681134286, 42.811994491271335, 7.0737239194318695, 19.488426566253274, 35.03819093944724, 138.19672540554066, 65.63837044729996, 20.418225645827498, 5.064838455203569, 31.71375620474884, 60.19318871448113, 38.74070737310219, 14.09689967887929, 76.58067590769629, 5.855984888608905, 83.52967978543141, 52.89274170698665, 18.613908963782578, 31.091515830921963, 26.462166245043395, 18.20932512946738, 7.020561415755325, 31.795634534685046, 34.025412956660006, 48.64898011440867, 39.742119393495805, 63.279462449723795, 75.28974399364246, 8.998063726033012, 62.48369085070947, 132.8745945460007, 20.012943749442755, 42.02824585730523, 5.169451963035995, 5.369226826737431, 9.198287961803938, 112.03663754017715, 61.981058069674845, 50.61779611643696, 11.853806601100436, 27.262135234786555, 122.35149212152606, 128.52039499201643, 7.177817440640082, 77.04604007372633, 67.68251894897742, 17.49615897158474, 10.530152320092272, 75.90324934459012, 17.898067429067137, 17.115386870883476, 67.1316776148002, 79.1596551354074, 55.77326619017622, 34.63408919736673, 12.96164681655931, 40.92324305627547, 13.992683796799625, 131.72131980887428, 40.64499241860139, 5.800149433813216, 66.8191080466332, 60.64950779487178, 97.72397285007906, 67.64836353421796, 24.21094971944737, 24.668873057739397, 87.63204623309565, 48.04788269022292, 12.301370421529457, 148.9774731417301, 9.679893608301501, 10.724456129996513, 75.71340703236102, 19.494405440104124, 5.429531816473337, 42.052817101085765, 26.513222269291568, 37.62752790752461, 19.826454924205088, 6.0183382216139005, 113.75990536151538, 7.612776168265103, 151.07461397164536, 202.29841630516353, 45.139128488392224, 30.912578793714005, 7.296764475812906, 68.37776948809567, 30.872463414218483, 57.86061366281293, 29.715524667050822, 69.47912013224624, 62.24752429367234, 11.110371122933994, 5.15893767996361, 146.34479796043695, 128.87307651747156, 17.995835602350365, 28.944644459099198, 22.02193771435495, 45.020283690014, 29.803122616791455, 36.04662021763439, 22.870426895363558, 16.387745691877747, 30.651619509331322, 31.95269353224316, 6.128349077628357, 12.523989248757271, 57.63210482972011, 11.668036283632453, 18.796944475906106, 46.918757713106714, 94.44127029903501, 11.923220856732293, 102.06875206928851, 13.85948730766121, 22.708539726068906, 5.3442193436215, 45.77395715784334, 5.2908026506474135, 5.790869326775244, 23.148902984852626, 31.682706871104557, 27.371867639680335, 51.02733800435739, 104.79041925981777, 5.031060947339664, 91.27195961609398, 105.68537049887306, 16.269780551362892, 107.52278454226703, 94.72293262148862, 91.68726598528056, 30.267615932892408, 65.49836495316501, 51.44864305526991, 8.313975860433517, 25.438597928591218, 110.44193995147148, 91.21676347554376, 12.680549165863885, 11.774231418240667, 112.89102579911756, 56.00374339568591, 18.966272285656018, 36.547408547666215, 11.17031577578622, 5.200190048642893, 46.18995421712821, 6.872765209095886, 10.036851767990225, 70.71918624706568, 16.874919186333432, 9.078897063332287, 9.571264092394784, 15.503166982019325, 101.12590744429193, 98.31774264971304, 9.60207971369107, 16.008881887099747, 79.59890997309725, 19.526782094199973, 86.13103429198185, 19.66925628883802, 19.246639179576928, 23.566059354016577, 15.619710838403163, 75.4818539733768, 33.28344268743885, 53.23501893980149, 59.83668115513202, 12.551779977629973, 11.079003443746403, 33.74304539927207, 6.865576784094994, 28.841939949433733, 63.84562825356507, 15.960107432673054, 121.37785496354635, 14.661573428531385, 12.84613348913509, 81.701158516172, 5.876868296458926, 6.4578808421474925, 29.959305257676892, 15.430834107582264, 30.223618985958037, 15.399389522278973, 11.830992215706987, 22.289596495685224, 14.038815823671484, 7.575858220592322, 6.125664691527865, 15.58858736217741, 57.143690850803296, 24.788645808673795, 117.5466983747456, 22.59389435796126, 33.57805537022323, 14.108046587207127, 9.0191336125343, 55.68360527853021, 43.86310906817769, 15.016613011095071, 303.1943649547863, 26.968035275072825, 13.885618738231944, 32.120060323666635, 24.02985838656196, 119.95481231850188, 112.61475222965689, 180.4438965764515, 9.281906997192046, 51.88044170439521, 100.89379855591372, 42.21509787705172, 9.686042744487873, 11.160147096314441, 51.825240969879644, 23.185357505131655, 127.02224176678982, 5.567894669657617, 22.80875150656337, 14.473788310045997, 73.40196328613959, 107.26451821752333, 82.99303617801763, 70.15304470438122, 23.185025950465626, 18.437142899593148, 28.172034981710013, 55.178656006049096, 44.488836203675525, 20.83903669562347, 13.366088571154666, 17.819588477102176, 70.21963478927222, 17.313698033272885, 139.5434698259778, 12.790436344199868, 317.10560437295635, 16.227552822142176, 245.67614023719202, 27.122637947000186, 12.767333270488635, 76.82029635598107, 24.975692086392115, 69.42087096768176, 11.13272372703538, 35.04877383172606, 6.628009517560039, 90.67247825754697, 31.459126688434953, 11.360710380696467, 89.40501446998911, 18.52981681387562, 53.70364856549838, 9.406337797906675, 51.003392792543195, 5.388711149072365, 10.949736391321075, 8.053477689856114, 40.077213945371525, 50.3857142453417, 38.00487704227018, 79.71381977294928, 124.8385593038835, 20.769439696241214, 58.46868824445264, 6.772462821864436, 15.928186026288863, 36.967502758193284, 19.73989583238748, 5.620028714482403, 14.739857388451894, 7.442415273183666, 13.750597461213493, 31.43564280032654, 97.61309375489726, 14.644182807821887, 17.467607501722238, 38.676217309793785, 38.301695714387236, 47.9245710927444, 37.578706740602684, 16.499412451471578, 33.379534165208135, 35.65319649924882, 52.49215758839151, 14.164690000183084, 127.51630458656118, 8.182972037273004, 43.64135000207541, 14.717359291741708, 25.000884117317746, 96.68511753177938, 29.952092120188553, 39.50782228421232, 20.948727321292093, 31.6073730393286, 23.051650783291638, 13.505634181260339, 24.898660878175697, 40.35105479461981, 7.5152766984867805, 77.27741689686414, 133.05459125404292, 98.07500781805274, 19.927778524035354, 34.71908426327947, 18.62370567886269, 9.650419640836457, 16.34642281719733, 21.434617381586214, 5.987537302277141, 83.24784984107843, 102.13888826191808, 25.95033655209362, 61.10556768767857, 100.67795266340735, 19.477071425435355, 20.940099501198947, 31.56708979119345, 10.036285513493523, 9.156365727665742, 45.03150246842759, 7.267738023037393, 41.102557829051115, 41.57164379841603, 30.200811752432607, 38.302152098018816, 17.882339084547045, 36.706499306756406, 5.746603857412212, 40.47176319614397, 15.242209225809827, 23.02513775181553, 15.501946529793718, 32.03716143521213, 87.41840015917654, 5.357964827635512, 6.462487784256482, 7.2373807252581015, 74.46672272269429, 5.882316736461542, 15.610924034984603, 65.40743706582994, 100.45865278147227, 27.798803563498545, 94.66446936842422, 92.91324248650132, 7.9746526344198445, 21.914074232621246, 68.29492040640355, 22.8472890489957, 61.172527795792206, 83.01354863153932, 45.01664675501956, 6.176740204847608, 20.539820726354613, 22.91059397653037, 16.399808461404316, 82.79806050377415, 24.014054188684433, 21.028002409295304, 82.7089885149624, 61.1355806231129, 109.39559864943507, 64.69600510782082, 33.875798745043, 41.464089855242335, 8.81843508992284, 45.518895016215076, 144.80797661770765, 8.853530055820128, 6.027260717238195, 51.55305381605652, 25.960654585288786, 71.05857791933316, 64.87308035512355, 59.132885833793516, 23.355201411189647, 102.38824263614467, 89.42714287273606, 44.98781451190205, 43.54350564517991, 7.997993537741059, 130.03892099903345, 100.58644354485722, 12.464151058130867, 16.059088022319642, 29.620996381319653, 8.765526343863291, 21.738659059799613, 95.15085625406826, 26.042461710540245, 24.70735739398765, 18.805716506120714, 54.696086258832075, 31.349187832635316, 89.52624387817178, 54.316821517767565, 51.158301355727936, 38.626951486509455, 21.576726491039647, 10.31190282207734, 5.687070325240734, 104.67322831553955, 53.50368157630978, 17.9027770683495, 38.447954925023794, 65.18808348811665, 62.701482995614, 11.336439910857944, 79.21500853659214, 53.308631165282776, 63.65757876520975, 109.84375391675806, 27.28369630849327, 18.336782972696255, 93.58799763929099, 91.03257112118001, 10.655838695259792, 74.16572890138174, 34.36538348235456, 46.79508362977665, 61.90450625320944, 31.780783512396074, 122.29953817683929, 18.6746680873049, 21.564249869717276, 165.1264782421693, 71.27595073722173, 12.758209140774417, 6.110705592441353, 374.5725630084142, 64.83744926389122, 17.014762770700123, 9.085012393676712, 16.18731098326268, 32.603367795388635, 68.44548767109329, 108.3069481942871, 32.308728669918565, 11.346214939299834, 89.93275224292556, 6.812539024015847, 55.724810917847726, 23.664776053470924, 47.062421648907126, 40.98551051288342, 115.23797530701542, 14.084525642919855, 13.482881638553792, 46.02880000177927, 94.67312324320548, 8.48112573157938, 88.23936820328046, 116.51073628593585, 46.607464496505294, 68.1735456437809, 14.307016612043753, 19.791753878502412, 38.64691602185715, 11.373325516752246, 19.444522794820596, 14.067727020197985, 7.205445462780802, 146.55885152236337, 110.7932374861826, 16.783651835306543, 11.354192979022448, 103.96897255708734, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([7355973.340985491, 7355988.945435126, 7359350.0, 7723271.40763962, 7723275.121862865, 7767040.157576686, 7779531.25, 7978847.701580902, 7981837.8388847, 8022985.9375, 8042262.876659766, 8045218.75, 8046199.443074818, 8046259.092088341, 8052055.023065376, 8069887.5, 8070807.1686910065, 8074343.75, 8075155.611846338, 8077092.25695168, 8099096.044599677, 8099657.465657763, 8099683.508955462, 8100873.132276672, 8101984.375, 8104213.044466638, 8105262.5, 8106817.1875, 8106832.184433546, 8214904.342708722, 8219842.511875675, 8300318.75, 8320352.718291621, 8322625.5356808165, 8325138.932292077, 8326902.585581463, 8335001.857311721, 8340343.54182188, 8340619.138679174, 8359910.281034648, 8360589.0625, 8361886.304780742, 8362846.875, 8369046.014429855, 8374591.75939493, 8375042.117668264, 8375281.336102198, 8396236.148757122, 8396268.22819021, 8398897.395018756, 8412012.5, 8436775.0, 8489212.168438962, 8491489.507650765, 8494945.374176797, 8509836.244282104, 8513071.875, 8516656.25, 8517090.083024537, 8517910.776816761, 8518525.0, 8518914.581797399, 8519270.3125, 8522249.018331641, 8522666.02606224, 8530453.125, 8534228.125, 8535182.8125, 8537421.453602212, 8537476.817304077, 8539376.395134285, 8541170.3125, 8544172.99122561, 8545783.230767362, 8547052.82167506, 8547100.719073474, 8547367.1875, 8547427.915962283, 8548157.59643957, 8548742.1875, 8560007.46735629, 8560573.610948015, 8563621.963504335, 8565177.257096704, 8567248.208294904, 8575265.625, 8590983.538335664, 8591019.315770492, 8591033.581638614, 8592025.055381032, 8594654.21163248, 8598910.0030014, 8601721.821318366, 8602044.395714683, 8602931.107240066, 8603023.646005819, 8603038.663371537, 8603113.346925102, 8603732.8125, 8604159.473096287, 8604773.820602177, 8605095.3125, 8605115.815812562, 8605182.8125, 8605837.271403722, 8605867.1875, 8606751.65427064, 8616184.921176875, 8618580.728751674, 8619967.012944588, 8634570.117909824, 8636745.3125, 8640601.783599509, 8641174.319287525, 8641243.92823914, 8641567.1875, 8641769.649961706, 8641827.326112075, 8641852.382187119, 8641876.385493653, 8642180.612488676, 8642181.41803691, 8642225.396425629, 8642266.720115606, 8642380.505054997, 8642474.516917305, 8642567.1875, 8642602.837535027, 8642676.5625, 8642754.750987852, 8642762.883809064, 8642793.109867938, 8642934.943619538, 8643040.37073074, 8643050.946706783, 8643081.2833621, 8643119.053659592, 8643157.182545016, 8643229.6875, 8643240.625, 8643261.369307794, 8643344.395388024, 8643384.258751733, 8643395.3125, 8643415.534884311, 8643434.436851079, 8643438.028106872, 8643566.570861552, 8643596.250195645, 8643620.311709426, 8643633.966521619, 8643651.559629815, 8643674.98915888, 8643690.625, 8643692.1875, 8643728.125, 8643862.5, 8643885.604505539, 8643900.0, 8643910.9375, 8643983.839442208, 8644069.223623114, 8644097.01137536, 8644118.75, 8644145.572021766, 8644176.22779425, 8644360.9375, 8644464.0625, 8644467.1875, 8644507.8125, 8644717.399275376, 8644723.350222211, 8644809.161019472, 8644818.641656987, 8644840.530145148, 8644846.076629281, 8645080.500406533, 8645124.157993823, 8645374.541202156, 8645417.399840057, 8645524.032303764, 8645781.25, 8646366.109936543, 8646556.25, 8646580.094331957, 8646610.217726428, 8647190.893917993, 8647450.566673178, 8648414.0625, 8648472.193116935, 8648524.8060091, 8648596.754316144, 8649505.373057112, 8649507.928147618, 8650214.05939576, 8651745.3125, 8651870.945111938, 8652117.896792363, 8652188.817011364, 8652201.230673911, 8652862.5, 8653018.101836683, 8653441.05561248, 8653753.125, 8654368.75, 8654712.5, 8655115.625, 8655162.5, 8657057.69198355, 8657489.0625, 8659928.125, 8659951.076020647, 8660006.445088083, 8663279.633380672, 8664078.125, 8664189.317878848, 8664339.0625, 8665609.702196516, 8666004.168561123, 8668187.766033623, 8668395.3125, 8668679.113822285, 8671014.0625, 8671629.127503568, 8671705.663777856, 8672237.97617123, 8673532.784181582, 8674156.973393545, 8674172.684769735, 8676755.420871627, 8679018.75, 8679682.8125, 8679877.308913138, 8679882.8125, 8679934.97212969, 8680224.15594519, 8680228.31001139, 8680251.43490775, 8680418.75, 8680937.41750536, 8682304.498062853, 8683353.673408894, 8683439.0625, 8683792.869417833, 8684244.213422792, 8686832.606951177, 8696387.407808932, 8705005.488469819, 8705659.375, 8706114.209592182, 8722450.667108087, 8722501.301683838, 8724720.3125, 8726333.443308342, 8727887.5, 8732549.79821333, 8733237.269408682, 8733907.8125, 8734654.686397169, 8735278.125, 8735289.846349921, 8735344.09593056, 8736915.069772236, 8737083.68062637, 8737207.8125, 8737303.125, 8737694.221689288, 8737727.535729868, 8738142.557167895, 8739462.28661034, 8752470.331715075, 8756720.3125, 8778021.282655306, 8780723.4375, 8829731.106385702, 8830399.883327171, 8830523.940966686, 8830560.889895946, 8831079.6875, 8831251.985258158, 8831582.792933766, 8831587.354407625, 8831738.006363284, 8831848.046694694, 8831879.6875, 8832035.670691412, 8832308.62806878, 8833637.733503707, 8833739.024130188, 8833829.771729825, 8834276.170426656, 8834349.643802589, 8834829.6875, 8835918.341468858, 8835971.67706586, 8836025.034853507, 8836121.868253056, 8836122.571024805, 8836202.090746991, 8836578.125, 8836725.0, 8836832.8125, 8836865.602959724, 8836956.938582802, 8836976.5625, 8837234.375, 8837240.625, 8837273.632174758, 8837319.416326543, 8837353.125, 8837401.5625, 8837632.8125, 8837640.49745829, 8837651.5625, 8837664.485475222, 8837667.1875, 8837699.750691691, 8837857.8125, 8838026.725156158, 8838164.85379581, 8838198.7024802, 8838276.01623279, 8838326.204286002, 8838487.149515675, 8838544.144471383, 8838569.626575744, 8838570.392711343, 8838585.25900059, 8838622.223103145, 8838665.350540917, 8838672.065157963, 8838686.520232711, 8838737.5, 8838860.604992684, 8839071.875, 8839129.6875, 8839147.263160205, 8839365.625, 8839561.966861939, 8839745.368498385, 8839764.0625, 8839866.205593597, 8840020.597120345, 8840270.607613236, 8841114.885511516, 8841123.4375, 8841746.908988765, 8842543.75, 8842640.605979195, 8842759.058419023, 8843139.132370565, 8843150.028789336, 8843521.875, 8843626.034259925, 8843738.744523935, 8843845.3125, 8844223.4375, 8844930.480920201, 8844940.743684057, 8844948.074893108, 8845633.040131526, 8845834.375, 8845996.875, 8846177.831139093, 8846277.75455574, 8846662.106292417, 8846717.1875, 8846891.285041109, 8847077.639899472, 8847675.0, 8847954.6875, 8848192.1875, 8848962.412431475, 8849087.43718161, 8850320.130945018, 8851194.591558656, 8854466.400027521, 8854841.023290958, 8855487.5, 8856526.5625, 8856899.491243344, 8857180.868304854, 8858168.130973779, 8858174.152807366, 8858649.710498556, 8858886.822115349, 8859096.875, 8859257.8125, 8859460.9375, 8859704.6875, 8859905.734905772, 8860160.705630863, 8860758.13007106, 8860835.261473788, 8860941.914459636, 8861376.725247616, 8862291.786577903, 8862367.763105592, 8862525.1091195, 8862700.300131723, 8862904.37585076, 8863090.591739113, 8863372.156201402, 8863440.625, 8863819.588151809, 8864077.97902864, 8864466.083440641, 8864533.505959542, 8865307.737122469, 8865509.375, 8866296.7317381, 8866969.222721465, 8866995.280719098, 8868402.576580139, 8869843.20746482, 8870137.681104576, 8870147.041124342, 8870159.005007626, 8870166.90134506, 8870385.905342052, 8870456.25, 8870463.7254502, 8870624.593405802, 8870656.797518939, 8870948.4375, 8871091.188573534, 8871177.803424248, 8871379.166686086, 8871504.832750205, 8871596.875, 8871697.08413295, 8871707.726517785, 8871725.0, 8871745.223491779, 8871776.928135004, 8871862.491539877, 8872342.1875, 8872487.007368876, 8872651.5625, 8872728.125, 8872750.8041589, 8872910.503272085, 8872915.180851165, 8873032.8125, 8873043.75, 8873052.01831394, 8873117.35105833, 8873212.5, 8873298.4375, 8873354.042974086, 8873365.375330467, 8873579.853211017, 8873917.396711385, 8874087.5, 8875067.895171132, 8875483.973209819, 8875702.506642085, 8877606.194389356, 8877608.788628412, 8878118.496411825, 8880897.250635885, 8883001.5625, 8885817.312303985, 8892914.005716925, 8894086.706157068, 8899239.221147252, 8900749.560684096, 8903421.349025311, 8903634.190140678, 8903660.821757713, 8903702.105404438, 8904206.09666803, 8904213.25240422, 8905179.6875, 8905243.36453963, 8905252.49787016, 8905529.21258323, 8905598.128821999, 8905629.6875, 8906512.618632903, 8907138.839285353, 8907261.613372777, 8911644.607294124, 8934277.898634445, 8941187.006533518, 8943796.175342495, 8945196.21071026, 8945946.515990412, 8946384.063990066, 8946736.044795394, 8947191.360922994, 8947199.040818479, 8949498.265993662, 8951480.201921735, 8952373.08932002, 8952463.175904203, 8954608.607402066, 8965623.4375, 8966825.0, 8979409.245810041, 8986587.5, 8993360.004932102, 8995214.821620047, 8996628.860245321, 9003305.475102626, 9003476.5625, 9004476.5625, 9010628.312574785, 9012842.571600525, 9014947.065746767, 9014963.99413631, 9017540.118333135, 9017996.875, 9018501.040853431, 9019362.5, 9020628.091041768, 9022920.3125, 9023178.787581123, 9024245.582986891, 9025186.626514459, 9025337.549792469, 9034416.322410777, 9034918.75, 9035544.006692836, 9041251.062587112, 9042878.125, 9056064.0625, 9056752.940269958, 9056805.786378033, 9057298.4375, 9057847.9120667, 9061971.875, 9062175.070496792, 9062243.525608763, 9064298.355336398, 9066110.9375, 9066114.0625, 9066117.781019542, 9077028.273975706, 9081972.427003536, 9083718.75, 9083810.9375, 9084235.090670832, 9084242.427784197, 9084382.698755076, 9084749.239286328, 9084907.414270582, 9084971.519026717, 9085006.25, 9085221.183608536, 9086024.131324397, 9086114.0625, 9088115.625, 9089683.952585502, 9089775.0, 9090232.8125, 9091396.212611636, 9113350.373350088, 9130128.299770683, 9130646.088284142, 9130773.275760585, 9133939.0625, 9134454.6875, 9159207.8125, 9169228.544667082, 9171101.495290449, 9171311.772105662, 9172289.0625, 9173643.960171338, 9174159.375, 9184681.36882414, 9184701.17118474, 9216765.205820478, 9216826.205210423, 9217263.255785082, 9218490.32221195, 9219410.9375, 9221014.0625, 9221224.718656447, 9221362.707476713, 9222780.611326411, 9223265.18911466, 9232937.226604143, 9241673.494521659, 9247681.192992238, 9248513.87380904, 9248648.4375, 9249955.437416801, 9250582.626104781, 9250642.1875, 9250691.92269377, 9250892.502533156, 9250963.02069774, 9251226.5625, 9251274.077730222, 9251319.511753442, 9251419.135264372, 9251443.47572716, 9251531.56088627, 9251557.415624943, 9251647.6643315, 9252198.4375, 9252212.389325377, 9252351.549537012, 9252689.939950544, 9252869.613840796, 9252901.5625, 9252926.588795727, 9253162.5, 9253387.612427577, 9253447.644054333, 9253448.150991611, 9253627.189924678, 9253646.73296202, 9253778.279965108, 9253899.115285901, 9254208.567087809, 9254464.001746291, 9254963.915287508, 9255031.238880787, 9255032.534515738, 9255054.040313156, 9255164.0625, 9255404.948154774, 9255492.1875, 9255538.613928234, 9255539.0625, 9255798.111237645, 9256081.25, 9256158.600572933, 9256290.958902312, 9256462.5, 9256750.0, 9257101.940857017, 9257310.115958624, 9257318.44162978, 9257320.632709604, 9257742.929330334, 9257804.6875, 9258198.081167044, 9258878.580580018, 9259709.375, 9281641.871364038, 9281918.3637814, 9283101.629400145, 9284623.03282704, 9286242.178283479, 9286362.182690911, 9286663.713876933, 9287242.1875, 9287991.46415726, 9288087.5, 9288099.315673903, 9288229.056045918, 9288299.626440775, 9288500.001440935, 9288695.622198397, 9288851.5625, 9288898.4375, 9288914.58410202, 9288959.375, 9288967.1875, 9289007.094553415, 9289217.238954138, 9289235.688004272, 9289532.28362856, 9289545.126045907, 9289594.558578253, 9289725.37767249, 9289773.989223769, 9289776.5625, 9289791.390447857, 9289853.125, 9289868.777089935, 9289877.997670876, 9289879.6875, 9289913.023697587, 9289949.16855404, 9289971.875, 9290050.429035679, 9290187.185473025, 9290240.895674491, 9290295.66183254, 9290319.67730032, 9290370.3125, 9290379.99116129, 9290436.191930098, 9290620.3125, 9290664.902370526, 9290680.666287405, 9290775.857920464, 9290832.05337349, 9290868.956986083, 9290959.542239096, 9290965.625, 9291020.3125, 9291098.4375, 9291166.997341024, 9291225.753149824, 9291257.781116037, 9291287.5, 9291309.865632601, 9291432.8125, 9291453.929378714, 9291533.05632254, 9291535.9375, 9291571.799564289, 9291616.502388252, 9291801.76507139, 9291864.877739184, 9291945.12359457, 9292004.6875, 9292042.171316423, 9292260.276636433, 9292271.1015006, 9292309.782718323, 9292330.540025705, 9292330.991133396, 9292331.173660018, 9292483.166153008, 9292489.222505648, 9292521.14267826, 9292657.589630317, 9292735.652171772, 9292752.728696141, 9292821.377170535, 9292927.887680164, 9292955.856066192, 9293267.1875, 9293318.75, 9293325.019565746, 9293338.271892954, 9293393.66606463, 9293459.067343106, 9293479.462933263, 9293480.971541341, 9293600.0, 9293620.3125, 9293743.657158196, 9293801.503377337, 9293846.875, 9293864.011482818, 9293875.490887905, 9293912.891611734, 9293995.333155626, 9294012.5, 9294019.265076766, 9294081.25, 9294119.447048282, 9294123.059994413, 9294143.621626176, 9294184.375, 9294351.5625, 9294389.0625, 9294483.533042176, 9294532.466882931, 9294608.889522681, 9294610.919423668, 9294617.1875, 9294798.175821455, 9294947.869334564, 9294954.031806566, 9294963.093917213, 9294970.3125, 9295027.866952905, 9295043.75, 9295046.16704367, 9295213.448382929, 9295392.038851349, 9295558.07486343, 9295638.987410897, 9295639.907479212, 9295654.6875, 9295667.769832525, 9295740.474239022, 9295778.128207304, 9295821.875, 9295855.53117127, 9296038.052295122, 9296275.0, 9296384.519123714, 9296403.988678453, 9296422.803913867, 9296443.725611305, 9296492.27481183, 9296547.915398378, 9296613.804752113, 9296621.758076001, 9296730.781562941, 9296758.68313461, 9296999.50296832, 9297080.512145778, 9297137.117163608, 9297142.533067754, 9297161.924261866, 9297300.0, 9297307.857196582, 9297312.736831883, 9297348.4375, 9297382.201210542, 9297393.857671998, 9297399.946068745, 9297426.094826909, 9297444.960524954, 9297517.1875, 9297558.750462243, 9297579.607242778, 9297580.22275573, 9297634.375, 9297655.96598503, 9297667.954218669, 9297710.41348143, 9297762.856381375, 9297841.003637632, 9297885.508930426, 9298047.618752882, 9298062.280083572, 9298075.0, 9298315.423803963, 9298482.8125, 9298518.689921772, 9298688.854448324, 9298706.274319734, 9298838.244846575, 9298896.875, 9299027.568640951, 9299049.501659038, 9299166.83072635, 9299188.626788385, 9299318.501958247, 9299504.6875, 9299587.250071451, 9299642.1875, 9299884.375, 9299887.023939846, 9299889.952330083, 9300135.83404884, 9300424.951795483, 9300434.729636326, 9300436.6921365, 9300601.213808883, 9300606.78658116, 9300607.787246712, 9300965.528622258, 9300984.229674147, 9301096.857755013, 9301155.513713388, 9301185.208492782, 9301315.067717962, 9301400.0, 9301416.3555398, 9301449.785473906, 9301508.95186321, 9301520.84122644, 9301545.3125, 9301570.3125, 9301576.607316166, 9301635.9375, 9301661.80382581, 9301756.775586156, 9301756.858397013, 9301767.1875, 9301773.514216874, 9301779.32848961, 9301831.389656954, 9301912.5, 9301926.154831003, 9301941.085837089, 9301960.778732728, 9301973.860889954, 9302085.86131224, 9302088.382747063, 9302098.676354917, 9302133.494556842, 9302210.9375, 9302214.024730725, 9302218.75, 9302239.0625, 9302310.297075203, 9302377.666189974, 9302421.674549598, 9302434.000819983, 9302503.125, 9302509.917312298, 9302523.4375, 9302641.436334, 9302672.836316159, 9302704.318752883, 9302756.586350657, 9302771.369250383, 9302776.1804155, 9302800.6973116, 9302810.748035239, 9302861.897831677, 9302944.937084146, 9303034.375, 9303070.32047621, 9303163.121562216, 9303461.823904471, 9303612.5, 9303621.875, 9304386.875053281, 9304446.268915128, 9304468.39911858, 9304596.03385919, 9305329.6875, 9305993.75, 9306459.375, 9306498.10589059, 9306543.007579071, 9306562.5, 9306618.75, 9306923.4375, 9307280.661274225, 9308043.500371478, 9308120.3125, 9308156.900868155, 9308484.640256828, 9308834.375, 9308900.807761002, 9309129.21176876, 9309138.82926522, 9309218.928125903, 9309694.044212306, 9309830.430567417, 9310210.9375, 9310278.779993972, 9310286.615956372, 9312173.4375, 9313512.130825864, 9313774.895021427, 9313985.700341802, 9316775.969318364, 9318490.31114371, 9318748.4375, 9323759.375, 9326366.232336778, 9327182.8125, 9327464.564280767, 9327704.6875, 9329226.692058934, 9329653.125, 9330423.4375, 9330741.420103189, 9331656.25, 9332421.808999786, 9332811.612262094, 9333717.1875, 9334159.375, 9334371.550571848, 9334492.1875, 9334568.75, 9335693.039406765, 9336490.625, 9336635.828724338, 9336726.5625, 9336983.536928603, 9336991.694602957, 9337162.446862822, 9337273.36387611, 9337303.966187453, 9337304.902117705, 9337678.781075004, 9337682.8125, 9337692.607118178, 9337709.068485651, 9337722.167491227, 9337795.08649687, 9337814.031362027, 9337907.386342349, 9338171.875, 9338189.197937088, 9338195.3125, 9338301.803238252, 9338307.182986284, 9338337.193240132, 9338492.050033908, 9338496.778645257, 9338562.578213552, 9338890.38039404, 9338987.28195423, 9339125.0, 9339131.25, 9339159.725625427, 9339357.8125, 9339480.62145999, 9339508.760815011, 9339779.6875, 9339882.635440081, 9339951.550040947, 9340046.875, 9340159.526654413, 9340211.766794145, 9340579.285947578, 9340829.99767218, 9340971.875, 9341064.0625, 9341072.28678021, 9341090.765222497, 9341150.491393926, ...], [26.75177279347535, 26.407222698726024, 30.136530838737794, 7.00378723279572, 7.647916194022701, 21.82434422455034, 89.91643919296973, 80.46345224923697, 11.702214903244132, 93.31599629353758, 43.83672222200391, 110.29052468883575, 20.94343421976274, 55.015231536395646, 8.472376456076882, 42.54953877950903, 24.005545513199287, 81.48594692663545, 5.579689238098707, 71.59625542238976, 96.79812951392947, 6.696182908240653, 8.69274358471182, 10.68193791993992, 51.9396019995593, 20.320872954826147, 30.436195585792515, 34.276159326517, 20.304104572870212, 23.194973760169354, 7.724929074987928, 75.29635704239081, 22.477109628372226, 8.591738004585002, 98.14247580894748, 13.219369040401421, 11.62205964038908, 14.676524199365183, 16.6635261835285, 20.06242956117706, 79.51460797911642, 16.55430433937703, 113.90691240785682, 131.60477993121683, 75.28034459834137, 9.273046342431607, 9.405284286098677, 9.516657995513329, 8.028652945348663, 84.93069706531136, 53.18240877373307, 75.99473117465988, 5.911042086797839, 89.95081314542219, 20.310979951457963, 8.455756898885888, 33.466811707560744, 106.57607623882018, 21.084348626159425, 25.70990290346228, 70.2564388878275, 5.98594192672531, 69.85314542077786, 12.175678857690013, 118.24430306584419, 34.850872845966315, 74.94235387950383, 75.964992288912, 22.31475040335615, 5.628297772085078, 9.193784965433842, 62.60496271526033, 22.046323434888983, 16.817807287428565, 23.708362873243544, 6.36253387855135, 38.29881914498556, 5.198128781649614, 32.772805024918725, 38.68646672380934, 23.1907269603671, 9.482499639359746, 5.465578109530573, 58.52582648155989, 57.6114514507629, 64.56699125703902, 37.59776729342981, 63.156610922243814, 12.58851482102368, 11.215388533221143, 10.457318689952256, 23.597221347974585, 11.044822998882218, 42.48575199744493, 18.85851060555637, 5.045075235369582, 47.36350402838572, 7.94124990228602, 155.11124575135585, 17.832435780380898, 11.784425122860915, 35.91467329887701, 15.722346482760312, 89.94131686449217, 10.788255599468563, 73.34428403085492, 7.636770253954858, 42.80844214352583, 8.926394930982266, 24.695466915713915, 7.5343420003474995, 63.631532361649505, 18.94291660729977, 13.502333264353545, 6.106832741427333, 58.56789889924796, 73.08556050682996, 18.952968481815997, 46.478988670006615, 14.30719710417207, 29.870154060086, 64.69912289251124, 11.809557407703457, 37.82336365922285, 12.701784372848685, 8.953807784319993, 40.60016723033769, 36.841561357600376, 115.96539671924563, 36.24657834694725, 124.6861816651436, 74.42008433570973, 102.65268720743198, 6.235599033871256, 13.691688723329133, 9.359772931160471, 16.240707692752345, 7.979355450549033, 56.15237343999967, 54.82483443260507, 7.239783557644251, 21.505444368815603, 10.950738125353716, 34.38192015641396, 33.68949833458236, 7.137805897783324, 8.587095121071492, 101.5249080284282, 7.981673467085565, 28.50956861890218, 22.45739090894637, 11.12322348155508, 41.26461902853064, 40.90510671102064, 59.49274355622422, 102.90137202501782, 74.79110726669279, 23.33823799232898, 100.72628169906773, 45.00158575500797, 5.3783873741508765, 17.56259272663484, 9.449441214981444, 154.71155570813903, 48.52866341294268, 31.140215518915596, 81.38479326324696, 86.62864815168318, 32.34241869617752, 60.48695559171625, 6.806535419261517, 114.28853151306913, 6.240536782252837, 26.55215227787906, 14.591886244263517, 81.35486064931837, 6.622547247119809, 46.07579187556018, 28.131471852704603, 8.402151629565715, 27.883404616258844, 74.23503433736408, 11.980922030370152, 50.60113326647348, 16.757724246627802, 7.9394017567381825, 6.5300892667213, 17.653800752065006, 70.92883549140832, 11.664226096048383, 14.250298996553052, 14.50064143367031, 18.076418815375362, 15.401419821929819, 28.463837285981235, 56.37457493347123, 7.849274615685338, 39.51756244644389, 42.046703082739434, 23.352545623456507, 57.05282653852241, 10.246102412894302, 8.528222392024983, 46.9396784972687, 45.3684954484441, 59.99593359863406, 52.33958403451867, 85.74497807992714, 26.35038936627048, 40.51413776410554, 58.32852238234247, 10.443874359470492, 6.292165051606209, 11.044155519765223, 57.043726074041, 11.551807725655046, 101.13839468759711, 45.490350667569686, 6.203787412744359, 16.062706818475935, 34.48488716817319, 20.788317811802802, 81.51180828069577, 13.164679445915871, 28.535815426688973, 7.785045267208669, 87.01458248912395, 62.080339138221106, 33.474308724104105, 20.4396698177871, 72.91073879405393, 84.55778773966682, 35.657885573535594, 102.23479944931374, 8.629784920940736, 8.706932456397677, 23.628767723160074, 16.03774528510828, 73.50179144231107, 26.993071159965226, 14.265490218900675, 12.108729421701028, 53.140182584455275, 6.599578774612395, 7.779914526471149, 25.03716809925154, 14.601389735467064, 10.114901299414955, 55.70675282766949, 11.365677639781746, 8.67395009247688, 5.794930895312145, 128.4060143112726, 5.02618516336354, 97.14951291435423, 25.091948521724788, 14.129868519224015, 62.65943933876576, 28.503386469048014, 136.10953685294103, 17.20625640208227, 6.124827204271879, 36.34982072703265, 64.12009999913296, 53.895359112918115, 51.062980395068465, 7.783239720932128, 13.088029443247427, 38.70116750645032, 22.9900945900025, 177.82798486359147, 121.54752827091751, 30.546637743136454, 66.87010866140778, 14.42098611963785, 26.413696624781615, 17.28443722369397, 14.763117196466489, 119.3041438409134, 9.716422754936236, 20.983255566192973, 61.46962968788725, 61.60993248178218, 98.11495981988244, 41.12825188779285, 9.115550506241009, 12.697076512441548, 7.18421595987953, 27.787605432633875, 23.563305768165364, 10.56559482614759, 13.737932400749452, 31.413404522346752, 5.061541938408205, 7.5331834407284815, 9.361048689693172, 59.97964992556767, 18.479465553290726, 51.92416050563229, 147.04590303722057, 64.95257548328539, 50.6809668635446, 28.095956645222035, 12.40670317063929, 57.935281139065616, 68.94491702772788, 42.47783142572846, 9.501621116522463, 25.107381230798065, 35.766729921298754, 49.21282701165466, 70.51673092988352, 14.476687180683104, 198.79003221946817, 9.716635687042936, 121.75171044399498, 6.062551460658605, 63.18882910143997, 6.105178949137344, 168.05583537531783, 9.565981065621834, 35.304902939604624, 10.610441290657521, 94.49006290809652, 27.114301123901356, 86.6870438203785, 15.256312745031012, 22.707046074434288, 144.72055460856086, 24.082567680310937, 42.8935338664591, 27.98079351524904, 39.36169315654658, 23.344200859704067, 64.61680819804053, 36.42430373725747, 16.660854163235072, 59.88990849504765, 20.265400078160834, 9.379206111259322, 33.63309655625985, 56.22624823616641, 11.603772359801491, 35.80819563336092, 19.396079203990787, 63.50770206950555, 18.656667908485566, 92.54353044764677, 250.65986071325725, 128.0148201160539, 47.59458904075198, 15.052388148463535, 63.445016053841925, 21.21594131069147, 29.35749265107774, 43.82127495838599, 95.50341458496572, 19.172024254758536, 9.433814775393177, 31.00553484329218, 11.503180882306733, 39.02446532363619, 130.37880807356734, 46.793886966302324, 58.93446888967607, 147.2418011191735, 57.77521524737366, 48.19361273743026, 13.3670382528276, 78.4445062510609, 29.945195915142598, 30.157917932150383, 26.905146120946085, 30.740629932780116, 14.291895278807898, 5.185435539395201, 7.34126220804214, 10.893648464600545, 76.43067303480748, 54.08144920805757, 75.38131515685131, 14.610139635083065, 75.1598897739387, 18.611398451157953, 20.07742988298611, 12.86390692872487, 58.91269043240558, 178.5019922936733, 69.10658949125538, 44.15180183081494, 31.597858746810076, 36.069508900559896, 9.615182964090621, 58.58824552805065, 24.101332454069247, 35.528995807452645, 58.40982848008261, 17.7146527172826, 14.04263395135334, 128.872668331563, 7.0418694686051, 41.362748304914085, 132.66244333379296, 60.18603602381661, 18.76706677259166, 92.4043714095935, 56.004869231495675, 52.59667852458057, 14.66178363143923, 74.79106096109402, 89.86437063310362, 11.956806624103756, 11.078391926160716, 21.023312254313023, 15.271506033560938, 34.29800741623241, 68.74955083358364, 13.696790671003408, 7.048208439240633, 27.9039563835364, 67.517461100243, 120.96500265260804, 58.7792261798874, 17.539661633364677, 40.3486508021834, 138.38408467067978, 37.4374842994467, 92.14118980572022, 15.525628268256801, 140.3483615471422, 8.400355758826766, 36.47554073052774, 39.20360434273596, 14.612768184864569, 54.392802268980034, 28.358635271285763, 32.01376656732177, 21.9322572366177, 31.745978535256132, 63.13151445688902, 53.709467447542615, 22.175300747002115, 22.068945306275893, 59.26852365508167, 80.98470728441626, 7.246657911773166, 40.51500453026138, 67.3564695343504, 68.26601525006409, 43.179680606977634, 7.515365405619649, 15.613121614347541, 111.203730150799, 45.47749524086754, 12.449056800750698, 52.33219376644532, 25.99055753101815, 11.04188227125883, 5.889917217907473, 14.05568478070262, 113.69677968850903, 65.14055021282125, 74.74649436799615, 28.55175574111591, 6.009261881066748, 5.404573798065131, 22.12059700630671, 43.04830470709726, 25.3420566698073, 69.0644160970117, 52.870160741274105, 6.463320758973231, 41.59413271393157, 132.29271056298717, 5.279327321214951, 6.02522405802743, 10.458526101460103, 13.882464215212499, 97.1379660154035, 5.714349949298185, 24.78375679323201, 79.51862966359107, 12.797103561744997, 10.791404051319365, 8.94631715270018, 75.68682717895769, 64.22252513044289, 23.0251472429637, 21.705512022593204, 14.220539038597762, 18.755202345203447, 8.633654539886042, 8.19791751337684, 29.135741612015266, 23.154218858941963, 39.17492808319301, 33.00677797796092, 42.65567698674672, 62.45344209070584, 26.208855786661854, 114.22432740556394, 36.08043104588701, 41.53572675125286, 7.892728202115289, 19.128757520334506, 49.47715111158932, 62.38452060862342, 7.672519042708363, 73.14159592436258, 11.439546496612474, 9.274259120693436, 21.426851498752267, 65.1970928540034, 21.279848186763356, 61.18119835634289, 55.85733072769463, 44.8129662002428, 6.354704619291794, 15.895268839641252, 18.432102613154356, 5.943753515129242, 10.000041096374362, 31.960331817394678, 16.01933916209396, 44.57315933911433, 106.35483681134286, 42.811994491271335, 7.0737239194318695, 19.488426566253274, 35.03819093944724, 138.19672540554066, 65.63837044729996, 20.418225645827498, 5.064838455203569, 31.71375620474884, 60.19318871448113, 38.74070737310219, 14.09689967887929, 76.58067590769629, 5.855984888608905, 83.52967978543141, 52.89274170698665, 18.613908963782578, 31.091515830921963, 26.462166245043395, 18.20932512946738, 7.020561415755325, 31.795634534685046, 34.025412956660006, 48.64898011440867, 39.742119393495805, 63.279462449723795, 75.28974399364246, 8.998063726033012, 62.48369085070947, 132.8745945460007, 20.012943749442755, 42.02824585730523, 5.169451963035995, 5.369226826737431, 9.198287961803938, 112.03663754017715, 61.981058069674845, 50.61779611643696, 11.853806601100436, 27.262135234786555, 122.35149212152606, 128.52039499201643, 7.177817440640082, 77.04604007372633, 67.68251894897742, 17.49615897158474, 10.530152320092272, 75.90324934459012, 17.898067429067137, 17.115386870883476, 67.1316776148002, 79.1596551354074, 55.77326619017622, 34.63408919736673, 12.96164681655931, 40.92324305627547, 13.992683796799625, 131.72131980887428, 40.64499241860139, 5.800149433813216, 66.8191080466332, 60.64950779487178, 97.72397285007906, 67.64836353421796, 24.21094971944737, 24.668873057739397, 87.63204623309565, 48.04788269022292, 12.301370421529457, 148.9774731417301, 9.679893608301501, 10.724456129996513, 75.71340703236102, 19.494405440104124, 5.429531816473337, 42.052817101085765, 26.513222269291568, 37.62752790752461, 19.826454924205088, 6.0183382216139005, 113.75990536151538, 7.612776168265103, 151.07461397164536, 202.29841630516353, 45.139128488392224, 30.912578793714005, 7.296764475812906, 68.37776948809567, 30.872463414218483, 57.86061366281293, 29.715524667050822, 69.47912013224624, 62.24752429367234, 11.110371122933994, 5.15893767996361, 146.34479796043695, 128.87307651747156, 17.995835602350365, 28.944644459099198, 22.02193771435495, 45.020283690014, 29.803122616791455, 36.04662021763439, 22.870426895363558, 16.387745691877747, 30.651619509331322, 31.95269353224316, 6.128349077628357, 12.523989248757271, 57.63210482972011, 11.668036283632453, 18.796944475906106, 46.918757713106714, 94.44127029903501, 11.923220856732293, 102.06875206928851, 13.85948730766121, 22.708539726068906, 5.3442193436215, 45.77395715784334, 5.2908026506474135, 5.790869326775244, 23.148902984852626, 31.682706871104557, 27.371867639680335, 51.02733800435739, 104.79041925981777, 5.031060947339664, 91.27195961609398, 105.68537049887306, 16.269780551362892, 107.52278454226703, 94.72293262148862, 91.68726598528056, 30.267615932892408, 65.49836495316501, 51.44864305526991, 8.313975860433517, 25.438597928591218, 110.44193995147148, 91.21676347554376, 12.680549165863885, 11.774231418240667, 112.89102579911756, 56.00374339568591, 18.966272285656018, 36.547408547666215, 11.17031577578622, 5.200190048642893, 46.18995421712821, 6.872765209095886, 10.036851767990225, 70.71918624706568, 16.874919186333432, 9.078897063332287, 9.571264092394784, 15.503166982019325, 101.12590744429193, 98.31774264971304, 9.60207971369107, 16.008881887099747, 79.59890997309725, 19.526782094199973, 86.13103429198185, 19.66925628883802, 19.246639179576928, 23.566059354016577, 15.619710838403163, 75.4818539733768, 33.28344268743885, 53.23501893980149, 59.83668115513202, 12.551779977629973, 11.079003443746403, 33.74304539927207, 6.865576784094994, 28.841939949433733, 63.84562825356507, 15.960107432673054, 121.37785496354635, 14.661573428531385, 12.84613348913509, 81.701158516172, 5.876868296458926, 6.4578808421474925, 29.959305257676892, 15.430834107582264, 30.223618985958037, 15.399389522278973, 11.830992215706987, 22.289596495685224, 14.038815823671484, 7.575858220592322, 6.125664691527865, 15.58858736217741, 57.143690850803296, 24.788645808673795, 117.5466983747456, 22.59389435796126, 33.57805537022323, 14.108046587207127, 9.0191336125343, 55.68360527853021, 43.86310906817769, 15.016613011095071, 303.1943649547863, 26.968035275072825, 13.885618738231944, 32.120060323666635, 24.02985838656196, 119.95481231850188, 112.61475222965689, 180.4438965764515, 9.281906997192046, 51.88044170439521, 100.89379855591372, 42.21509787705172, 9.686042744487873, 11.160147096314441, 51.825240969879644, 23.185357505131655, 127.02224176678982, 5.567894669657617, 22.80875150656337, 14.473788310045997, 73.40196328613959, 107.26451821752333, 82.99303617801763, 70.15304470438122, 23.185025950465626, 18.437142899593148, 28.172034981710013, 55.178656006049096, 44.488836203675525, 20.83903669562347, 13.366088571154666, 17.819588477102176, 70.21963478927222, 17.313698033272885, 139.5434698259778, 12.790436344199868, 317.10560437295635, 16.227552822142176, 245.67614023719202, 27.122637947000186, 12.767333270488635, 76.82029635598107, 24.975692086392115, 69.42087096768176, 11.13272372703538, 35.04877383172606, 6.628009517560039, 90.67247825754697, 31.459126688434953, 11.360710380696467, 89.40501446998911, 18.52981681387562, 53.70364856549838, 9.406337797906675, 51.003392792543195, 5.388711149072365, 10.949736391321075, 8.053477689856114, 40.077213945371525, 50.3857142453417, 38.00487704227018, 79.71381977294928, 124.8385593038835, 20.769439696241214, 58.46868824445264, 6.772462821864436, 15.928186026288863, 36.967502758193284, 19.73989583238748, 5.620028714482403, 14.739857388451894, 7.442415273183666, 13.750597461213493, 31.43564280032654, 97.61309375489726, 14.644182807821887, 17.467607501722238, 38.676217309793785, 38.301695714387236, 47.9245710927444, 37.578706740602684, 16.499412451471578, 33.379534165208135, 35.65319649924882, 52.49215758839151, 14.164690000183084, 127.51630458656118, 8.182972037273004, 43.64135000207541, 14.717359291741708, 25.000884117317746, 96.68511753177938, 29.952092120188553, 39.50782228421232, 20.948727321292093, 31.6073730393286, 23.051650783291638, 13.505634181260339, 24.898660878175697, 40.35105479461981, 7.5152766984867805, 77.27741689686414, 133.05459125404292, 98.07500781805274, 19.927778524035354, 34.71908426327947, 18.62370567886269, 9.650419640836457, 16.34642281719733, 21.434617381586214, 5.987537302277141, 83.24784984107843, 102.13888826191808, 25.95033655209362, 61.10556768767857, 100.67795266340735, 19.477071425435355, 20.940099501198947, 31.56708979119345, 10.036285513493523, 9.156365727665742, 45.03150246842759, 7.267738023037393, 41.102557829051115, 41.57164379841603, 30.200811752432607, 38.302152098018816, 17.882339084547045, 36.706499306756406, 5.746603857412212, 40.47176319614397, 15.242209225809827, 23.02513775181553, 15.501946529793718, 32.03716143521213, 87.41840015917654, 5.357964827635512, 6.462487784256482, 7.2373807252581015, 74.46672272269429, 5.882316736461542, 15.610924034984603, 65.40743706582994, 100.45865278147227, 27.798803563498545, 94.66446936842422, 92.91324248650132, 7.9746526344198445, 21.914074232621246, 68.29492040640355, 22.8472890489957, 61.172527795792206, 83.01354863153932, 45.01664675501956, 6.176740204847608, 20.539820726354613, 22.91059397653037, 16.399808461404316, 82.79806050377415, 24.014054188684433, 21.028002409295304, 82.7089885149624, 61.1355806231129, 109.39559864943507, 64.69600510782082, 33.875798745043, 41.464089855242335, 8.81843508992284, 45.518895016215076, 144.80797661770765, 8.853530055820128, 6.027260717238195, 51.55305381605652, 25.960654585288786, 71.05857791933316, 64.87308035512355, 59.132885833793516, 23.355201411189647, 102.38824263614467, 89.42714287273606, 44.98781451190205, 43.54350564517991, 7.997993537741059, 130.03892099903345, 100.58644354485722, 12.464151058130867, 16.059088022319642, 29.620996381319653, 8.765526343863291, 21.738659059799613, 95.15085625406826, 26.042461710540245, 24.70735739398765, 18.805716506120714, 54.696086258832075, 31.349187832635316, 89.52624387817178, 54.316821517767565, 51.158301355727936, 38.626951486509455, 21.576726491039647, 10.31190282207734, 5.687070325240734, 104.67322831553955, 53.50368157630978, 17.9027770683495, 38.447954925023794, 65.18808348811665, 62.701482995614, 11.336439910857944, 79.21500853659214, 53.308631165282776, 63.65757876520975, 109.84375391675806, 27.28369630849327, 18.336782972696255, 93.58799763929099, 91.03257112118001, 10.655838695259792, 74.16572890138174, 34.36538348235456, 46.79508362977665, 61.90450625320944, 31.780783512396074, 122.29953817683929, 18.6746680873049, 21.564249869717276, 165.1264782421693, 71.27595073722173, 12.758209140774417, 6.110705592441353, 374.5725630084142, 64.83744926389122, 17.014762770700123, 9.085012393676712, 16.18731098326268, 32.603367795388635, 68.44548767109329, 108.3069481942871, 32.308728669918565, 11.346214939299834, 89.93275224292556, 6.812539024015847, 55.724810917847726, 23.664776053470924, 47.062421648907126, 40.98551051288342, 115.23797530701542, 14.084525642919855, 13.482881638553792, 46.02880000177927, 94.67312324320548, 8.48112573157938, 88.23936820328046, 116.51073628593585, 46.607464496505294, 68.1735456437809, 14.307016612043753, 19.791753878502412, 38.64691602185715, 11.373325516752246, 19.444522794820596, 14.067727020197985, 7.205445462780802, 146.55885152236337, 110.7932374861826, 16.783651835306543, 11.354192979022448, 103.96897255708734, ...])
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);
([7355973.340985491, 7355988.945435126, 7359350.0, 7723271.40763962, 7723275.121862865, 7767040.157576686, 7779531.25, 7978847.701580902, 7981837.8388847, 8022985.9375, 8042262.876659766, 8045218.75, 8046199.443074818, 8046259.092088341, 8052055.023065376, 8069887.5, 8070807.1686910065, 8074343.75, 8075155.611846338, 8077092.25695168, 8099096.044599677, 8099657.465657763, 8099683.508955462, 8100873.132276672, 8101984.375, 8104213.044466638, 8105262.5, 8106817.1875, 8106832.184433546, 8214904.342708722, 8219842.511875675, 8300318.75, 8320352.718291621, 8322625.5356808165, 8325138.932292077, 8326902.585581463, 8335001.857311721, 8340343.54182188, 8340619.138679174, 8359910.281034648, 8360589.0625, 8361886.304780742, 8362846.875, 8369046.014429855, 8374591.75939493, 8375042.117668264, 8375281.336102198, 8396236.148757122, 8396268.22819021, 8398897.395018756, 8412012.5, 8436775.0, 8489212.168438962, 8491489.507650765, 8494945.374176797, 8509836.244282104, 8513071.875, 8516656.25, 8517090.083024537, 8517910.776816761, 8518525.0, 8518914.581797399, 8519270.3125, 8522249.018331641, 8522666.02606224, 8530453.125, 8534228.125, 8535182.8125, 8537421.453602212, 8537476.817304077, 8539376.395134285, 8541170.3125, 8544172.99122561, 8545783.230767362, 8547052.82167506, 8547100.719073474, 8547367.1875, 8547427.915962283, 8548157.59643957, 8548742.1875, 8560007.46735629, 8560573.610948015, 8563621.963504335, 8565177.257096704, 8567248.208294904, 8575265.625, 8590983.538335664, 8591019.315770492, 8591033.581638614, 8592025.055381032, 8594654.21163248, 8598910.0030014, 8601721.821318366, 8602044.395714683, 8602931.107240066, 8603023.646005819, 8603038.663371537, 8603113.346925102, 8603732.8125, 8604159.473096287, 8604773.820602177, 8605095.3125, 8605115.815812562, 8605182.8125, 8605837.271403722, 8605867.1875, 8606751.65427064, 8616184.921176875, 8618580.728751674, 8619967.012944588, 8634570.117909824, 8636745.3125, 8640601.783599509, 8641174.319287525, 8641243.92823914, 8641567.1875, 8641769.649961706, 8641827.326112075, 8641852.382187119, 8641876.385493653, 8642180.612488676, 8642181.41803691, 8642225.396425629, 8642266.720115606, 8642380.505054997, 8642474.516917305, 8642567.1875, 8642602.837535027, 8642676.5625, 8642754.750987852, 8642762.883809064, 8642793.109867938, 8642934.943619538, 8643040.37073074, 8643050.946706783, 8643081.2833621, 8643119.053659592, 8643157.182545016, 8643229.6875, 8643240.625, 8643261.369307794, 8643344.395388024, 8643384.258751733, 8643395.3125, 8643415.534884311, 8643434.436851079, 8643438.028106872, 8643566.570861552, 8643596.250195645, 8643620.311709426, 8643633.966521619, 8643651.559629815, 8643674.98915888, 8643690.625, 8643692.1875, 8643728.125, 8643862.5, 8643885.604505539, 8643900.0, 8643910.9375, 8643983.839442208, 8644069.223623114, 8644097.01137536, 8644118.75, 8644145.572021766, 8644176.22779425, 8644360.9375, 8644464.0625, 8644467.1875, 8644507.8125, 8644717.399275376, 8644723.350222211, 8644809.161019472, 8644818.641656987, 8644840.530145148, 8644846.076629281, 8645080.500406533, 8645124.157993823, 8645374.541202156, 8645417.399840057, 8645524.032303764, 8645781.25, 8646366.109936543, 8646556.25, 8646580.094331957, 8646610.217726428, 8647190.893917993, 8647450.566673178, 8648414.0625, 8648472.193116935, 8648524.8060091, 8648596.754316144, 8649505.373057112, 8649507.928147618, 8650214.05939576, 8651745.3125, 8651870.945111938, 8652117.896792363, 8652188.817011364, 8652201.230673911, 8652862.5, 8653018.101836683, 8653441.05561248, 8653753.125, 8654368.75, 8654712.5, 8655115.625, 8655162.5, 8657057.69198355, 8657489.0625, 8659928.125, 8659951.076020647, 8660006.445088083, 8663279.633380672, 8664078.125, 8664189.317878848, 8664339.0625, 8665609.702196516, 8666004.168561123, 8668187.766033623, 8668395.3125, 8668679.113822285, 8671014.0625, 8671629.127503568, 8671705.663777856, 8672237.97617123, 8673532.784181582, 8674156.973393545, 8674172.684769735, 8676755.420871627, 8679018.75, 8679682.8125, 8679877.308913138, 8679882.8125, 8679934.97212969, 8680224.15594519, 8680228.31001139, 8680251.43490775, 8680418.75, 8680937.41750536, 8682304.498062853, 8683353.673408894, 8683439.0625, 8683792.869417833, 8684244.213422792, 8686832.606951177, 8696387.407808932, 8705005.488469819, 8705659.375, 8706114.209592182, 8722450.667108087, 8722501.301683838, 8724720.3125, 8726333.443308342, 8727887.5, 8732549.79821333, 8733237.269408682, 8733907.8125, 8734654.686397169, 8735278.125, 8735289.846349921, 8735344.09593056, 8736915.069772236, 8737083.68062637, 8737207.8125, 8737303.125, 8737694.221689288, 8737727.535729868, 8738142.557167895, 8739462.28661034, 8752470.331715075, 8756720.3125, 8778021.282655306, 8780723.4375, 8829731.106385702, 8830399.883327171, 8830523.940966686, 8830560.889895946, 8831079.6875, 8831251.985258158, 8831582.792933766, 8831587.354407625, 8831738.006363284, 8831848.046694694, 8831879.6875, 8832035.670691412, 8832308.62806878, 8833637.733503707, 8833739.024130188, 8833829.771729825, 8834276.170426656, 8834349.643802589, 8834829.6875, 8835918.341468858, 8835971.67706586, 8836025.034853507, 8836121.868253056, 8836122.571024805, 8836202.090746991, 8836578.125, 8836725.0, 8836832.8125, 8836865.602959724, 8836956.938582802, 8836976.5625, 8837234.375, 8837240.625, 8837273.632174758, 8837319.416326543, 8837353.125, 8837401.5625, 8837632.8125, 8837640.49745829, 8837651.5625, 8837664.485475222, 8837667.1875, 8837699.750691691, 8837857.8125, 8838026.725156158, 8838164.85379581, 8838198.7024802, 8838276.01623279, 8838326.204286002, 8838487.149515675, 8838544.144471383, 8838569.626575744, 8838570.392711343, 8838585.25900059, 8838622.223103145, 8838665.350540917, 8838672.065157963, 8838686.520232711, 8838737.5, 8838860.604992684, 8839071.875, 8839129.6875, 8839147.263160205, 8839365.625, 8839561.966861939, 8839745.368498385, 8839764.0625, 8839866.205593597, 8840020.597120345, 8840270.607613236, 8841114.885511516, 8841123.4375, 8841746.908988765, 8842543.75, 8842640.605979195, 8842759.058419023, 8843139.132370565, 8843150.028789336, 8843521.875, 8843626.034259925, 8843738.744523935, 8843845.3125, 8844223.4375, 8844930.480920201, 8844940.743684057, 8844948.074893108, 8845633.040131526, 8845834.375, 8845996.875, 8846177.831139093, 8846277.75455574, 8846662.106292417, 8846717.1875, 8846891.285041109, 8847077.639899472, 8847675.0, 8847954.6875, 8848192.1875, 8848962.412431475, 8849087.43718161, 8850320.130945018, 8851194.591558656, 8854466.400027521, 8854841.023290958, 8855487.5, 8856526.5625, 8856899.491243344, 8857180.868304854, 8858168.130973779, 8858174.152807366, 8858649.710498556, 8858886.822115349, 8859096.875, 8859257.8125, 8859460.9375, 8859704.6875, 8859905.734905772, 8860160.705630863, 8860758.13007106, 8860835.261473788, 8860941.914459636, 8861376.725247616, 8862291.786577903, 8862367.763105592, 8862525.1091195, 8862700.300131723, 8862904.37585076, 8863090.591739113, 8863372.156201402, 8863440.625, 8863819.588151809, 8864077.97902864, 8864466.083440641, 8864533.505959542, 8865307.737122469, 8865509.375, 8866296.7317381, 8866969.222721465, 8866995.280719098, 8868402.576580139, 8869843.20746482, 8870137.681104576, 8870147.041124342, 8870159.005007626, 8870166.90134506, 8870385.905342052, 8870456.25, 8870463.7254502, 8870624.593405802, 8870656.797518939, 8870948.4375, 8871091.188573534, 8871177.803424248, 8871379.166686086, 8871504.832750205, 8871596.875, 8871697.08413295, 8871707.726517785, 8871725.0, 8871745.223491779, 8871776.928135004, 8871862.491539877, 8872342.1875, 8872487.007368876, 8872651.5625, 8872728.125, 8872750.8041589, 8872910.503272085, 8872915.180851165, 8873032.8125, 8873043.75, 8873052.01831394, 8873117.35105833, 8873212.5, 8873298.4375, 8873354.042974086, 8873365.375330467, 8873579.853211017, 8873917.396711385, 8874087.5, 8875067.895171132, 8875483.973209819, 8875702.506642085, 8877606.194389356, 8877608.788628412, 8878118.496411825, 8880897.250635885, 8883001.5625, 8885817.312303985, 8892914.005716925, 8894086.706157068, 8899239.221147252, 8900749.560684096, 8903421.349025311, 8903634.190140678, 8903660.821757713, 8903702.105404438, 8904206.09666803, 8904213.25240422, 8905179.6875, 8905243.36453963, 8905252.49787016, 8905529.21258323, 8905598.128821999, 8905629.6875, 8906512.618632903, 8907138.839285353, 8907261.613372777, 8911644.607294124, 8934277.898634445, 8941187.006533518, 8943796.175342495, 8945196.21071026, 8945946.515990412, 8946384.063990066, 8946736.044795394, 8947191.360922994, 8947199.040818479, 8949498.265993662, 8951480.201921735, 8952373.08932002, 8952463.175904203, 8954608.607402066, 8965623.4375, 8966825.0, 8979409.245810041, 8986587.5, 8993360.004932102, 8995214.821620047, 8996628.860245321, 9003305.475102626, 9003476.5625, 9004476.5625, 9010628.312574785, 9012842.571600525, 9014947.065746767, 9014963.99413631, 9017540.118333135, 9017996.875, 9018501.040853431, 9019362.5, 9020628.091041768, 9022920.3125, 9023178.787581123, 9024245.582986891, 9025186.626514459, 9025337.549792469, 9034416.322410777, 9034918.75, 9035544.006692836, 9041251.062587112, 9042878.125, 9056064.0625, 9056752.940269958, 9056805.786378033, 9057298.4375, 9057847.9120667, 9061971.875, 9062175.070496792, 9062243.525608763, 9064298.355336398, 9066110.9375, 9066114.0625, 9066117.781019542, 9077028.273975706, 9081972.427003536, 9083718.75, 9083810.9375, 9084235.090670832, 9084242.427784197, 9084382.698755076, 9084749.239286328, 9084907.414270582, 9084971.519026717, 9085006.25, 9085221.183608536, 9086024.131324397, 9086114.0625, 9088115.625, 9089683.952585502, 9089775.0, 9090232.8125, 9091396.212611636, 9113350.373350088, 9130128.299770683, 9130646.088284142, 9130773.275760585, 9133939.0625, 9134454.6875, 9159207.8125, 9169228.544667082, 9171101.495290449, 9171311.772105662, 9172289.0625, 9173643.960171338, 9174159.375, 9184681.36882414, 9184701.17118474, 9216765.205820478, 9216826.205210423, 9217263.255785082, 9218490.32221195, 9219410.9375, 9221014.0625, 9221224.718656447, 9221362.707476713, 9222780.611326411, 9223265.18911466, 9232937.226604143, 9241673.494521659, 9247681.192992238, 9248513.87380904, 9248648.4375, 9249955.437416801, 9250582.626104781, 9250642.1875, 9250691.92269377, 9250892.502533156, 9250963.02069774, 9251226.5625, 9251274.077730222, 9251319.511753442, 9251419.135264372, 9251443.47572716, 9251531.56088627, 9251557.415624943, 9251647.6643315, 9252198.4375, 9252212.389325377, 9252351.549537012, 9252689.939950544, 9252869.613840796, 9252901.5625, 9252926.588795727, 9253162.5, 9253387.612427577, 9253447.644054333, 9253448.150991611, 9253627.189924678, 9253646.73296202, 9253778.279965108, 9253899.115285901, 9254208.567087809, 9254464.001746291, 9254963.915287508, 9255031.238880787, 9255032.534515738, 9255054.040313156, 9255164.0625, 9255404.948154774, 9255492.1875, 9255538.613928234, 9255539.0625, 9255798.111237645, 9256081.25, 9256158.600572933, 9256290.958902312, 9256462.5, 9256750.0, 9257101.940857017, 9257310.115958624, 9257318.44162978, 9257320.632709604, 9257742.929330334, 9257804.6875, 9258198.081167044, 9258878.580580018, 9259709.375, 9281641.871364038, 9281918.3637814, 9283101.629400145, 9284623.03282704, 9286242.178283479, 9286362.182690911, 9286663.713876933, 9287242.1875, 9287991.46415726, 9288087.5, 9288099.315673903, 9288229.056045918, 9288299.626440775, 9288500.001440935, 9288695.622198397, 9288851.5625, 9288898.4375, 9288914.58410202, 9288959.375, 9288967.1875, 9289007.094553415, 9289217.238954138, 9289235.688004272, 9289532.28362856, 9289545.126045907, 9289594.558578253, 9289725.37767249, 9289773.989223769, 9289776.5625, 9289791.390447857, 9289853.125, 9289868.777089935, 9289877.997670876, 9289879.6875, 9289913.023697587, 9289949.16855404, 9289971.875, 9290050.429035679, 9290187.185473025, 9290240.895674491, 9290295.66183254, 9290319.67730032, 9290370.3125, 9290379.99116129, 9290436.191930098, 9290620.3125, 9290664.902370526, 9290680.666287405, 9290775.857920464, 9290832.05337349, 9290868.956986083, 9290959.542239096, 9290965.625, 9291020.3125, 9291098.4375, 9291166.997341024, 9291225.753149824, 9291257.781116037, 9291287.5, 9291309.865632601, 9291432.8125, 9291453.929378714, 9291533.05632254, 9291535.9375, 9291571.799564289, 9291616.502388252, 9291801.76507139, 9291864.877739184, 9291945.12359457, 9292004.6875, 9292042.171316423, 9292260.276636433, 9292271.1015006, 9292309.782718323, 9292330.540025705, 9292330.991133396, 9292331.173660018, 9292483.166153008, 9292489.222505648, 9292521.14267826, 9292657.589630317, 9292735.652171772, 9292752.728696141, 9292821.377170535, 9292927.887680164, 9292955.856066192, 9293267.1875, 9293318.75, 9293325.019565746, 9293338.271892954, 9293393.66606463, 9293459.067343106, 9293479.462933263, 9293480.971541341, 9293600.0, 9293620.3125, 9293743.657158196, 9293801.503377337, 9293846.875, 9293864.011482818, 9293875.490887905, 9293912.891611734, 9293995.333155626, 9294012.5, 9294019.265076766, 9294081.25, 9294119.447048282, 9294123.059994413, 9294143.621626176, 9294184.375, 9294351.5625, 9294389.0625, 9294483.533042176, 9294532.466882931, 9294608.889522681, 9294610.919423668, 9294617.1875, 9294798.175821455, 9294947.869334564, 9294954.031806566, 9294963.093917213, 9294970.3125, 9295027.866952905, 9295043.75, 9295046.16704367, 9295213.448382929, 9295392.038851349, 9295558.07486343, 9295638.987410897, 9295639.907479212, 9295654.6875, 9295667.769832525, 9295740.474239022, 9295778.128207304, 9295821.875, 9295855.53117127, 9296038.052295122, 9296275.0, 9296384.519123714, 9296403.988678453, 9296422.803913867, 9296443.725611305, 9296492.27481183, 9296547.915398378, 9296613.804752113, 9296621.758076001, 9296730.781562941, 9296758.68313461, 9296999.50296832, 9297080.512145778, 9297137.117163608, 9297142.533067754, 9297161.924261866, 9297300.0, 9297307.857196582, 9297312.736831883, 9297348.4375, 9297382.201210542, 9297393.857671998, 9297399.946068745, 9297426.094826909, 9297444.960524954, 9297517.1875, 9297558.750462243, 9297579.607242778, 9297580.22275573, 9297634.375, 9297655.96598503, 9297667.954218669, 9297710.41348143, 9297762.856381375, 9297841.003637632, 9297885.508930426, 9298047.618752882, 9298062.280083572, 9298075.0, 9298315.423803963, 9298482.8125, 9298518.689921772, 9298688.854448324, 9298706.274319734, 9298838.244846575, 9298896.875, 9299027.568640951, 9299049.501659038, 9299166.83072635, 9299188.626788385, 9299318.501958247, 9299504.6875, 9299587.250071451, 9299642.1875, 9299884.375, 9299887.023939846, 9299889.952330083, 9300135.83404884, 9300424.951795483, 9300434.729636326, 9300436.6921365, 9300601.213808883, 9300606.78658116, 9300607.787246712, 9300965.528622258, 9300984.229674147, 9301096.857755013, 9301155.513713388, 9301185.208492782, 9301315.067717962, 9301400.0, 9301416.3555398, 9301449.785473906, 9301508.95186321, 9301520.84122644, 9301545.3125, 9301570.3125, 9301576.607316166, 9301635.9375, 9301661.80382581, 9301756.775586156, 9301756.858397013, 9301767.1875, 9301773.514216874, 9301779.32848961, 9301831.389656954, 9301912.5, 9301926.154831003, 9301941.085837089, 9301960.778732728, 9301973.860889954, 9302085.86131224, 9302088.382747063, 9302098.676354917, 9302133.494556842, 9302210.9375, 9302214.024730725, 9302218.75, 9302239.0625, 9302310.297075203, 9302377.666189974, 9302421.674549598, 9302434.000819983, 9302503.125, 9302509.917312298, 9302523.4375, 9302641.436334, 9302672.836316159, 9302704.318752883, 9302756.586350657, 9302771.369250383, 9302776.1804155, 9302800.6973116, 9302810.748035239, 9302861.897831677, 9302944.937084146, 9303034.375, 9303070.32047621, 9303163.121562216, 9303461.823904471, 9303612.5, 9303621.875, 9304386.875053281, 9304446.268915128, 9304468.39911858, 9304596.03385919, 9305329.6875, 9305993.75, 9306459.375, 9306498.10589059, 9306543.007579071, 9306562.5, 9306618.75, 9306923.4375, 9307280.661274225, 9308043.500371478, 9308120.3125, 9308156.900868155, 9308484.640256828, 9308834.375, 9308900.807761002, 9309129.21176876, 9309138.82926522, 9309218.928125903, 9309694.044212306, 9309830.430567417, 9310210.9375, 9310278.779993972, 9310286.615956372, 9312173.4375, 9313512.130825864, 9313774.895021427, 9313985.700341802, 9316775.969318364, 9318490.31114371, 9318748.4375, 9323759.375, 9326366.232336778, 9327182.8125, 9327464.564280767, 9327704.6875, 9329226.692058934, 9329653.125, 9330423.4375, 9330741.420103189, 9331656.25, 9332421.808999786, 9332811.612262094, 9333717.1875, 9334159.375, 9334371.550571848, 9334492.1875, 9334568.75, 9335693.039406765, 9336490.625, 9336635.828724338, 9336726.5625, 9336983.536928603, 9336991.694602957, 9337162.446862822, 9337273.36387611, 9337303.966187453, 9337304.902117705, 9337678.781075004, 9337682.8125, 9337692.607118178, 9337709.068485651, 9337722.167491227, 9337795.08649687, 9337814.031362027, 9337907.386342349, 9338171.875, 9338189.197937088, 9338195.3125, 9338301.803238252, 9338307.182986284, 9338337.193240132, 9338492.050033908, 9338496.778645257, 9338562.578213552, 9338890.38039404, 9338987.28195423, 9339125.0, 9339131.25, 9339159.725625427, 9339357.8125, 9339480.62145999, 9339508.760815011, 9339779.6875, 9339882.635440081, 9339951.550040947, 9340046.875, 9340159.526654413, 9340211.766794145, 9340579.285947578, 9340829.99767218, 9340971.875, 9341064.0625, 9341072.28678021, 9341090.765222497, 9341150.491393926, ...], [26.75177279347535, 26.407222698726024, 30.136530838737794, 7.00378723279572, 7.647916194022701, 21.82434422455034, 89.91643919296973, 80.46345224923697, 11.702214903244132, 93.31599629353758, 43.83672222200391, 110.29052468883575, 20.94343421976274, 55.015231536395646, 8.472376456076882, 42.54953877950903, 24.005545513199287, 81.48594692663545, 5.579689238098707, 71.59625542238976, 96.79812951392947, 6.696182908240653, 8.69274358471182, 10.68193791993992, 51.9396019995593, 20.320872954826147, 30.436195585792515, 34.276159326517, 20.304104572870212, 23.194973760169354, 7.724929074987928, 75.29635704239081, 22.477109628372226, 8.591738004585002, 98.14247580894748, 13.219369040401421, 11.62205964038908, 14.676524199365183, 16.6635261835285, 20.06242956117706, 79.51460797911642, 16.55430433937703, 113.90691240785682, 131.60477993121683, 75.28034459834137, 9.273046342431607, 9.405284286098677, 9.516657995513329, 8.028652945348663, 84.93069706531136, 53.18240877373307, 75.99473117465988, 5.911042086797839, 89.95081314542219, 20.310979951457963, 8.455756898885888, 33.466811707560744, 106.57607623882018, 21.084348626159425, 25.70990290346228, 70.2564388878275, 5.98594192672531, 69.85314542077786, 12.175678857690013, 118.24430306584419, 34.850872845966315, 74.94235387950383, 75.964992288912, 22.31475040335615, 5.628297772085078, 9.193784965433842, 62.60496271526033, 22.046323434888983, 16.817807287428565, 23.708362873243544, 6.36253387855135, 38.29881914498556, 5.198128781649614, 32.772805024918725, 38.68646672380934, 23.1907269603671, 9.482499639359746, 5.465578109530573, 58.52582648155989, 57.6114514507629, 64.56699125703902, 37.59776729342981, 63.156610922243814, 12.58851482102368, 11.215388533221143, 10.457318689952256, 23.597221347974585, 11.044822998882218, 42.48575199744493, 18.85851060555637, 5.045075235369582, 47.36350402838572, 7.94124990228602, 155.11124575135585, 17.832435780380898, 11.784425122860915, 35.91467329887701, 15.722346482760312, 89.94131686449217, 10.788255599468563, 73.34428403085492, 7.636770253954858, 42.80844214352583, 8.926394930982266, 24.695466915713915, 7.5343420003474995, 63.631532361649505, 18.94291660729977, 13.502333264353545, 6.106832741427333, 58.56789889924796, 73.08556050682996, 18.952968481815997, 46.478988670006615, 14.30719710417207, 29.870154060086, 64.69912289251124, 11.809557407703457, 37.82336365922285, 12.701784372848685, 8.953807784319993, 40.60016723033769, 36.841561357600376, 115.96539671924563, 36.24657834694725, 124.6861816651436, 74.42008433570973, 102.65268720743198, 6.235599033871256, 13.691688723329133, 9.359772931160471, 16.240707692752345, 7.979355450549033, 56.15237343999967, 54.82483443260507, 7.239783557644251, 21.505444368815603, 10.950738125353716, 34.38192015641396, 33.68949833458236, 7.137805897783324, 8.587095121071492, 101.5249080284282, 7.981673467085565, 28.50956861890218, 22.45739090894637, 11.12322348155508, 41.26461902853064, 40.90510671102064, 59.49274355622422, 102.90137202501782, 74.79110726669279, 23.33823799232898, 100.72628169906773, 45.00158575500797, 5.3783873741508765, 17.56259272663484, 9.449441214981444, 154.71155570813903, 48.52866341294268, 31.140215518915596, 81.38479326324696, 86.62864815168318, 32.34241869617752, 60.48695559171625, 6.806535419261517, 114.28853151306913, 6.240536782252837, 26.55215227787906, 14.591886244263517, 81.35486064931837, 6.622547247119809, 46.07579187556018, 28.131471852704603, 8.402151629565715, 27.883404616258844, 74.23503433736408, 11.980922030370152, 50.60113326647348, 16.757724246627802, 7.9394017567381825, 6.5300892667213, 17.653800752065006, 70.92883549140832, 11.664226096048383, 14.250298996553052, 14.50064143367031, 18.076418815375362, 15.401419821929819, 28.463837285981235, 56.37457493347123, 7.849274615685338, 39.51756244644389, 42.046703082739434, 23.352545623456507, 57.05282653852241, 10.246102412894302, 8.528222392024983, 46.9396784972687, 45.3684954484441, 59.99593359863406, 52.33958403451867, 85.74497807992714, 26.35038936627048, 40.51413776410554, 58.32852238234247, 10.443874359470492, 6.292165051606209, 11.044155519765223, 57.043726074041, 11.551807725655046, 101.13839468759711, 45.490350667569686, 6.203787412744359, 16.062706818475935, 34.48488716817319, 20.788317811802802, 81.51180828069577, 13.164679445915871, 28.535815426688973, 7.785045267208669, 87.01458248912395, 62.080339138221106, 33.474308724104105, 20.4396698177871, 72.91073879405393, 84.55778773966682, 35.657885573535594, 102.23479944931374, 8.629784920940736, 8.706932456397677, 23.628767723160074, 16.03774528510828, 73.50179144231107, 26.993071159965226, 14.265490218900675, 12.108729421701028, 53.140182584455275, 6.599578774612395, 7.779914526471149, 25.03716809925154, 14.601389735467064, 10.114901299414955, 55.70675282766949, 11.365677639781746, 8.67395009247688, 5.794930895312145, 128.4060143112726, 5.02618516336354, 97.14951291435423, 25.091948521724788, 14.129868519224015, 62.65943933876576, 28.503386469048014, 136.10953685294103, 17.20625640208227, 6.124827204271879, 36.34982072703265, 64.12009999913296, 53.895359112918115, 51.062980395068465, 7.783239720932128, 13.088029443247427, 38.70116750645032, 22.9900945900025, 177.82798486359147, 121.54752827091751, 30.546637743136454, 66.87010866140778, 14.42098611963785, 26.413696624781615, 17.28443722369397, 14.763117196466489, 119.3041438409134, 9.716422754936236, 20.983255566192973, 61.46962968788725, 61.60993248178218, 98.11495981988244, 41.12825188779285, 9.115550506241009, 12.697076512441548, 7.18421595987953, 27.787605432633875, 23.563305768165364, 10.56559482614759, 13.737932400749452, 31.413404522346752, 5.061541938408205, 7.5331834407284815, 9.361048689693172, 59.97964992556767, 18.479465553290726, 51.92416050563229, 147.04590303722057, 64.95257548328539, 50.6809668635446, 28.095956645222035, 12.40670317063929, 57.935281139065616, 68.94491702772788, 42.47783142572846, 9.501621116522463, 25.107381230798065, 35.766729921298754, 49.21282701165466, 70.51673092988352, 14.476687180683104, 198.79003221946817, 9.716635687042936, 121.75171044399498, 6.062551460658605, 63.18882910143997, 6.105178949137344, 168.05583537531783, 9.565981065621834, 35.304902939604624, 10.610441290657521, 94.49006290809652, 27.114301123901356, 86.6870438203785, 15.256312745031012, 22.707046074434288, 144.72055460856086, 24.082567680310937, 42.8935338664591, 27.98079351524904, 39.36169315654658, 23.344200859704067, 64.61680819804053, 36.42430373725747, 16.660854163235072, 59.88990849504765, 20.265400078160834, 9.379206111259322, 33.63309655625985, 56.22624823616641, 11.603772359801491, 35.80819563336092, 19.396079203990787, 63.50770206950555, 18.656667908485566, 92.54353044764677, 250.65986071325725, 128.0148201160539, 47.59458904075198, 15.052388148463535, 63.445016053841925, 21.21594131069147, 29.35749265107774, 43.82127495838599, 95.50341458496572, 19.172024254758536, 9.433814775393177, 31.00553484329218, 11.503180882306733, 39.02446532363619, 130.37880807356734, 46.793886966302324, 58.93446888967607, 147.2418011191735, 57.77521524737366, 48.19361273743026, 13.3670382528276, 78.4445062510609, 29.945195915142598, 30.157917932150383, 26.905146120946085, 30.740629932780116, 14.291895278807898, 5.185435539395201, 7.34126220804214, 10.893648464600545, 76.43067303480748, 54.08144920805757, 75.38131515685131, 14.610139635083065, 75.1598897739387, 18.611398451157953, 20.07742988298611, 12.86390692872487, 58.91269043240558, 178.5019922936733, 69.10658949125538, 44.15180183081494, 31.597858746810076, 36.069508900559896, 9.615182964090621, 58.58824552805065, 24.101332454069247, 35.528995807452645, 58.40982848008261, 17.7146527172826, 14.04263395135334, 128.872668331563, 7.0418694686051, 41.362748304914085, 132.66244333379296, 60.18603602381661, 18.76706677259166, 92.4043714095935, 56.004869231495675, 52.59667852458057, 14.66178363143923, 74.79106096109402, 89.86437063310362, 11.956806624103756, 11.078391926160716, 21.023312254313023, 15.271506033560938, 34.29800741623241, 68.74955083358364, 13.696790671003408, 7.048208439240633, 27.9039563835364, 67.517461100243, 120.96500265260804, 58.7792261798874, 17.539661633364677, 40.3486508021834, 138.38408467067978, 37.4374842994467, 92.14118980572022, 15.525628268256801, 140.3483615471422, 8.400355758826766, 36.47554073052774, 39.20360434273596, 14.612768184864569, 54.392802268980034, 28.358635271285763, 32.01376656732177, 21.9322572366177, 31.745978535256132, 63.13151445688902, 53.709467447542615, 22.175300747002115, 22.068945306275893, 59.26852365508167, 80.98470728441626, 7.246657911773166, 40.51500453026138, 67.3564695343504, 68.26601525006409, 43.179680606977634, 7.515365405619649, 15.613121614347541, 111.203730150799, 45.47749524086754, 12.449056800750698, 52.33219376644532, 25.99055753101815, 11.04188227125883, 5.889917217907473, 14.05568478070262, 113.69677968850903, 65.14055021282125, 74.74649436799615, 28.55175574111591, 6.009261881066748, 5.404573798065131, 22.12059700630671, 43.04830470709726, 25.3420566698073, 69.0644160970117, 52.870160741274105, 6.463320758973231, 41.59413271393157, 132.29271056298717, 5.279327321214951, 6.02522405802743, 10.458526101460103, 13.882464215212499, 97.1379660154035, 5.714349949298185, 24.78375679323201, 79.51862966359107, 12.797103561744997, 10.791404051319365, 8.94631715270018, 75.68682717895769, 64.22252513044289, 23.0251472429637, 21.705512022593204, 14.220539038597762, 18.755202345203447, 8.633654539886042, 8.19791751337684, 29.135741612015266, 23.154218858941963, 39.17492808319301, 33.00677797796092, 42.65567698674672, 62.45344209070584, 26.208855786661854, 114.22432740556394, 36.08043104588701, 41.53572675125286, 7.892728202115289, 19.128757520334506, 49.47715111158932, 62.38452060862342, 7.672519042708363, 73.14159592436258, 11.439546496612474, 9.274259120693436, 21.426851498752267, 65.1970928540034, 21.279848186763356, 61.18119835634289, 55.85733072769463, 44.8129662002428, 6.354704619291794, 15.895268839641252, 18.432102613154356, 5.943753515129242, 10.000041096374362, 31.960331817394678, 16.01933916209396, 44.57315933911433, 106.35483681134286, 42.811994491271335, 7.0737239194318695, 19.488426566253274, 35.03819093944724, 138.19672540554066, 65.63837044729996, 20.418225645827498, 5.064838455203569, 31.71375620474884, 60.19318871448113, 38.74070737310219, 14.09689967887929, 76.58067590769629, 5.855984888608905, 83.52967978543141, 52.89274170698665, 18.613908963782578, 31.091515830921963, 26.462166245043395, 18.20932512946738, 7.020561415755325, 31.795634534685046, 34.025412956660006, 48.64898011440867, 39.742119393495805, 63.279462449723795, 75.28974399364246, 8.998063726033012, 62.48369085070947, 132.8745945460007, 20.012943749442755, 42.02824585730523, 5.169451963035995, 5.369226826737431, 9.198287961803938, 112.03663754017715, 61.981058069674845, 50.61779611643696, 11.853806601100436, 27.262135234786555, 122.35149212152606, 128.52039499201643, 7.177817440640082, 77.04604007372633, 67.68251894897742, 17.49615897158474, 10.530152320092272, 75.90324934459012, 17.898067429067137, 17.115386870883476, 67.1316776148002, 79.1596551354074, 55.77326619017622, 34.63408919736673, 12.96164681655931, 40.92324305627547, 13.992683796799625, 131.72131980887428, 40.64499241860139, 5.800149433813216, 66.8191080466332, 60.64950779487178, 97.72397285007906, 67.64836353421796, 24.21094971944737, 24.668873057739397, 87.63204623309565, 48.04788269022292, 12.301370421529457, 148.9774731417301, 9.679893608301501, 10.724456129996513, 75.71340703236102, 19.494405440104124, 5.429531816473337, 42.052817101085765, 26.513222269291568, 37.62752790752461, 19.826454924205088, 6.0183382216139005, 113.75990536151538, 7.612776168265103, 151.07461397164536, 202.29841630516353, 45.139128488392224, 30.912578793714005, 7.296764475812906, 68.37776948809567, 30.872463414218483, 57.86061366281293, 29.715524667050822, 69.47912013224624, 62.24752429367234, 11.110371122933994, 5.15893767996361, 146.34479796043695, 128.87307651747156, 17.995835602350365, 28.944644459099198, 22.02193771435495, 45.020283690014, 29.803122616791455, 36.04662021763439, 22.870426895363558, 16.387745691877747, 30.651619509331322, 31.95269353224316, 6.128349077628357, 12.523989248757271, 57.63210482972011, 11.668036283632453, 18.796944475906106, 46.918757713106714, 94.44127029903501, 11.923220856732293, 102.06875206928851, 13.85948730766121, 22.708539726068906, 5.3442193436215, 45.77395715784334, 5.2908026506474135, 5.790869326775244, 23.148902984852626, 31.682706871104557, 27.371867639680335, 51.02733800435739, 104.79041925981777, 5.031060947339664, 91.27195961609398, 105.68537049887306, 16.269780551362892, 107.52278454226703, 94.72293262148862, 91.68726598528056, 30.267615932892408, 65.49836495316501, 51.44864305526991, 8.313975860433517, 25.438597928591218, 110.44193995147148, 91.21676347554376, 12.680549165863885, 11.774231418240667, 112.89102579911756, 56.00374339568591, 18.966272285656018, 36.547408547666215, 11.17031577578622, 5.200190048642893, 46.18995421712821, 6.872765209095886, 10.036851767990225, 70.71918624706568, 16.874919186333432, 9.078897063332287, 9.571264092394784, 15.503166982019325, 101.12590744429193, 98.31774264971304, 9.60207971369107, 16.008881887099747, 79.59890997309725, 19.526782094199973, 86.13103429198185, 19.66925628883802, 19.246639179576928, 23.566059354016577, 15.619710838403163, 75.4818539733768, 33.28344268743885, 53.23501893980149, 59.83668115513202, 12.551779977629973, 11.079003443746403, 33.74304539927207, 6.865576784094994, 28.841939949433733, 63.84562825356507, 15.960107432673054, 121.37785496354635, 14.661573428531385, 12.84613348913509, 81.701158516172, 5.876868296458926, 6.4578808421474925, 29.959305257676892, 15.430834107582264, 30.223618985958037, 15.399389522278973, 11.830992215706987, 22.289596495685224, 14.038815823671484, 7.575858220592322, 6.125664691527865, 15.58858736217741, 57.143690850803296, 24.788645808673795, 117.5466983747456, 22.59389435796126, 33.57805537022323, 14.108046587207127, 9.0191336125343, 55.68360527853021, 43.86310906817769, 15.016613011095071, 303.1943649547863, 26.968035275072825, 13.885618738231944, 32.120060323666635, 24.02985838656196, 119.95481231850188, 112.61475222965689, 180.4438965764515, 9.281906997192046, 51.88044170439521, 100.89379855591372, 42.21509787705172, 9.686042744487873, 11.160147096314441, 51.825240969879644, 23.185357505131655, 127.02224176678982, 5.567894669657617, 22.80875150656337, 14.473788310045997, 73.40196328613959, 107.26451821752333, 82.99303617801763, 70.15304470438122, 23.185025950465626, 18.437142899593148, 28.172034981710013, 55.178656006049096, 44.488836203675525, 20.83903669562347, 13.366088571154666, 17.819588477102176, 70.21963478927222, 17.313698033272885, 139.5434698259778, 12.790436344199868, 317.10560437295635, 16.227552822142176, 245.67614023719202, 27.122637947000186, 12.767333270488635, 76.82029635598107, 24.975692086392115, 69.42087096768176, 11.13272372703538, 35.04877383172606, 6.628009517560039, 90.67247825754697, 31.459126688434953, 11.360710380696467, 89.40501446998911, 18.52981681387562, 53.70364856549838, 9.406337797906675, 51.003392792543195, 5.388711149072365, 10.949736391321075, 8.053477689856114, 40.077213945371525, 50.3857142453417, 38.00487704227018, 79.71381977294928, 124.8385593038835, 20.769439696241214, 58.46868824445264, 6.772462821864436, 15.928186026288863, 36.967502758193284, 19.73989583238748, 5.620028714482403, 14.739857388451894, 7.442415273183666, 13.750597461213493, 31.43564280032654, 97.61309375489726, 14.644182807821887, 17.467607501722238, 38.676217309793785, 38.301695714387236, 47.9245710927444, 37.578706740602684, 16.499412451471578, 33.379534165208135, 35.65319649924882, 52.49215758839151, 14.164690000183084, 127.51630458656118, 8.182972037273004, 43.64135000207541, 14.717359291741708, 25.000884117317746, 96.68511753177938, 29.952092120188553, 39.50782228421232, 20.948727321292093, 31.6073730393286, 23.051650783291638, 13.505634181260339, 24.898660878175697, 40.35105479461981, 7.5152766984867805, 77.27741689686414, 133.05459125404292, 98.07500781805274, 19.927778524035354, 34.71908426327947, 18.62370567886269, 9.650419640836457, 16.34642281719733, 21.434617381586214, 5.987537302277141, 83.24784984107843, 102.13888826191808, 25.95033655209362, 61.10556768767857, 100.67795266340735, 19.477071425435355, 20.940099501198947, 31.56708979119345, 10.036285513493523, 9.156365727665742, 45.03150246842759, 7.267738023037393, 41.102557829051115, 41.57164379841603, 30.200811752432607, 38.302152098018816, 17.882339084547045, 36.706499306756406, 5.746603857412212, 40.47176319614397, 15.242209225809827, 23.02513775181553, 15.501946529793718, 32.03716143521213, 87.41840015917654, 5.357964827635512, 6.462487784256482, 7.2373807252581015, 74.46672272269429, 5.882316736461542, 15.610924034984603, 65.40743706582994, 100.45865278147227, 27.798803563498545, 94.66446936842422, 92.91324248650132, 7.9746526344198445, 21.914074232621246, 68.29492040640355, 22.8472890489957, 61.172527795792206, 83.01354863153932, 45.01664675501956, 6.176740204847608, 20.539820726354613, 22.91059397653037, 16.399808461404316, 82.79806050377415, 24.014054188684433, 21.028002409295304, 82.7089885149624, 61.1355806231129, 109.39559864943507, 64.69600510782082, 33.875798745043, 41.464089855242335, 8.81843508992284, 45.518895016215076, 144.80797661770765, 8.853530055820128, 6.027260717238195, 51.55305381605652, 25.960654585288786, 71.05857791933316, 64.87308035512355, 59.132885833793516, 23.355201411189647, 102.38824263614467, 89.42714287273606, 44.98781451190205, 43.54350564517991, 7.997993537741059, 130.03892099903345, 100.58644354485722, 12.464151058130867, 16.059088022319642, 29.620996381319653, 8.765526343863291, 21.738659059799613, 95.15085625406826, 26.042461710540245, 24.70735739398765, 18.805716506120714, 54.696086258832075, 31.349187832635316, 89.52624387817178, 54.316821517767565, 51.158301355727936, 38.626951486509455, 21.576726491039647, 10.31190282207734, 5.687070325240734, 104.67322831553955, 53.50368157630978, 17.9027770683495, 38.447954925023794, 65.18808348811665, 62.701482995614, 11.336439910857944, 79.21500853659214, 53.308631165282776, 63.65757876520975, 109.84375391675806, 27.28369630849327, 18.336782972696255, 93.58799763929099, 91.03257112118001, 10.655838695259792, 74.16572890138174, 34.36538348235456, 46.79508362977665, 61.90450625320944, 31.780783512396074, 122.29953817683929, 18.6746680873049, 21.564249869717276, 165.1264782421693, 71.27595073722173, 12.758209140774417, 6.110705592441353, 374.5725630084142, 64.83744926389122, 17.014762770700123, 9.085012393676712, 16.18731098326268, 32.603367795388635, 68.44548767109329, 108.3069481942871, 32.308728669918565, 11.346214939299834, 89.93275224292556, 6.812539024015847, 55.724810917847726, 23.664776053470924, 47.062421648907126, 40.98551051288342, 115.23797530701542, 14.084525642919855, 13.482881638553792, 46.02880000177927, 94.67312324320548, 8.48112573157938, 88.23936820328046, 116.51073628593585, 46.607464496505294, 68.1735456437809, 14.307016612043753, 19.791753878502412, 38.64691602185715, 11.373325516752246, 19.444522794820596, 14.067727020197985, 7.205445462780802, 146.55885152236337, 110.7932374861826, 16.783651835306543, 11.354192979022448, 103.96897255708734, ...])
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)