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 = 46357
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);
([2636788.4739430537, 2638523.8616166827, 2641496.2925107027, 2647559.375, 2726571.819657017, 2760733.6998094483, 2780852.692875633, 2838176.143499944, 2872679.1722761365, 2914259.375, 2939229.5765704117, 2994854.6875, 3024953.2275348078, 3035029.6941893455, 3048193.6771413586, 3080410.5776792346, 3084028.125, 3106777.8247023034, 3110261.162186004, 3119947.0429767845, 3135763.7633081684, 3146142.566047514, 3180782.8125, 3204620.3125, 3204996.699008764, 3205505.8496017046, 3260293.75, 3262914.932096644, 3262917.731356391, 3266419.8070130893, 3270748.344325752, 3271478.125, 3319146.875, 3346806.257322384, 3363114.324579768, 3398964.028684184, 3408342.14775387, 3409579.6674440606, 3411853.125, 3456557.8125, 3474255.5318602915, 3474258.316959438, 3486163.7268762817, 3490997.6180437705, 3508106.4134947425, 3513316.2235721448, 3527439.1428828374, 3539244.0104979333, 3539929.2668104423, 3540053.125, 3541271.304900534, 3541471.535711952, 3545814.8628659174, 3576934.375, 3590718.75, 3596728.574432326, 3596742.9058386725, 3614303.6283433964, 3635849.7514643488, 3683280.5963415215, 3686471.875, 3693848.9375683246, 3693853.5024765814, 3701518.598725213, 3702432.3262823564, 3705424.5905125774, 3710892.1875, 3721784.2830118123, 3791385.2868020856, 3810606.6178663364, 3810704.863558731, 3832826.200324658, 3834047.8633182496, 3842174.2699002526, 3842442.1875, 3843764.365229067, 3843766.934340458, 3849561.0686575, 3853651.5625, 3854206.25, 3856190.1589280637, 3856567.1875, 3856623.651063, 3879398.4375, 3883760.9375, 3884924.7480243174, 3914171.875, 3953303.279725508, 3955786.994407802, 3957969.1098089134, 3996150.0, 4003774.81815534, 4019321.4535626867, 4040465.260681904, 4061629.572402464, 4064245.829909256, 4078786.1823018324, 4111175.0, 4142928.125, 4145275.0, 4169973.4375, 4170151.6414702563, 4170324.5597257637, 4170792.4879036606, 4170800.0, 4170962.000527746, 4171467.1875, 4172736.07260441, 4173829.6875, 4216945.296145914, 4249609.357928672, 4255819.790015946, 4326033.2717088275, 4341226.5625, 4355650.958014141, 4372951.973123585, 4373004.331959426, 4380307.8125, 4383040.625, 4389518.169563502, 4399580.416649881, 4401725.390180963, 4402016.317671874, 4406640.099553085, 4438453.939366353, 4482923.4375, 4493629.117790253, 4529396.875, 4594008.533456652, 4599107.8125, 4601068.906156296, 4602651.661071481, 4618324.821800143, 4647096.875, 4656342.607392994, 4678756.013610204, 4750370.893784195, 4754893.75, 4769727.295096238, 4847506.430733378, 4851137.5, 4864165.625, 4866023.438018595, 4866407.8125, 4867496.309015369, 4947063.408193251, 4956622.0651793, 5025807.8125, 5065356.000763361, 5091273.4375, 5100007.8125, 5100020.720789842, 5189571.875, 5250869.4472098565, 5268423.4375, 5293908.356374708, 5294860.9375, 5309342.1875, 5334135.29391926, 5336704.6875, 5337633.9114942765, 5342082.396447211, 5342100.426341942, 5343415.625, 5344150.033370561, 5345445.3125, 5347658.350255098, 5365575.0, 5370026.89037247, 5370526.155015509, 5370527.586956307, 5370533.690330504, 5382919.619656088, 5383265.3383081965, 5383332.727444485, 5383912.193377524, 5384121.579005759, 5384385.9375, 5384819.668126968, 5385556.25, 5385627.576307993, 5386957.226465855, 5387480.408027698, 5412404.6875, 5447150.601322915, 5479622.556950237, 5481592.1875, 5485640.625, 5492321.510762606, 5492571.875, 5492614.531618109, 5494975.733851773, 5497282.8125, 5497546.227458361, 5497734.8602297, 5497740.005233701, 5497756.3310481515, 5497875.867551307, 5497886.339954904, 5498004.6875, 5498405.19049345, 5498635.839789457, 5499354.807209646, 5499363.119923169, 5499876.5625, 5499987.072417509, 5500517.753393681, 5501346.800888625, 5502556.7076231195, 5503171.130981331, 5503173.4375, 5503751.5625, 5504019.786708182, 5505012.795332457, 5505562.5, 5505917.1875, 5505971.669419027, 5506670.3125, 5507417.576038215, 5508810.86510648, 5514054.340658219, 5514118.75, 5515537.758383491, 5516696.332696146, 5516936.868383167, 5516939.0625, 5517178.125, 5517632.8125, 5518813.165713946, 5520274.614962995, 5521392.374537651, 5531631.484281628, 5531685.545949991, 5533925.514819036, 5533978.069431162, 5534520.3125, 5534538.597368743, 5534987.5, 5535884.469272679, 5535995.793746939, 5538966.344806929, 5539043.354543908, 5539968.75, 5544827.413766311, 5556085.1848128205, 5557512.5, 5558209.674840544, 5558751.94668579, 5564024.261980757, 5567750.844341307, 5568595.3125, 5569884.375, 5572639.0625, 5573004.382560289, 5573016.121924344, 5574562.149542615, 5575061.443232721, 5576030.315659999, 5576076.5625, 5577346.875, 5577474.953543024, 5578101.5625, 5585246.697959964, 5591823.21402159, 5597856.936055584, 5600165.116857481, 5604020.3125, 5614921.94459416, 5614929.407753634, 5614955.447990801, 5617281.849407612, 5618178.671748133, 5621440.3526442945, 5622037.5, 5622428.978621824, 5622448.484486446, 5622904.6875, 5622950.58117815, 5623009.281440472, 5623057.705583536, 5623445.258257622, 5623981.25, 5624531.473824544, 5625528.863818101, 5625545.100684636, 5626588.668081092, 5626812.5, 5632496.362680801, 5637576.894545005, 5638150.0, 5645982.8125, 5646187.095723048, 5646240.561374719, 5646764.898514499, 5646936.655227097, 5648392.1875, 5648396.352507807, 5648443.03294933, 5648454.7082211375, 5648565.625, 5648574.956515863, 5648764.447925697, 5649747.236735989, 5650365.031353732, 5650473.375732724, 5651155.367702195, 5651362.5, 5651526.605743624, 5651948.4375, 5651950.541404678, 5653595.1790213445, 5653811.925857475, 5653978.724734952, 5654024.68687354, 5654242.349275805, 5655007.8125, 5656295.3125, 5657530.902824012, 5661708.977223613, 5662575.871860273, 5662667.871632491, 5662915.625, 5662920.3125, 5663917.1875, 5665181.529858061, 5665673.4375, 5665984.162276066, 5672236.051235286, 5673196.685386466, 5674439.140919068, 5674637.5, 5674823.4375, 5674864.935058525, 5674953.218116264, 5674968.1709732, 5677994.332793259, 5682092.444926272, 5683450.141372612, 5684130.768767178, 5685156.21206912, 5687347.518460801, 5690098.4375, 5693940.747318882, 5700063.346819631, 5723840.625, 5728307.8125, 5729169.284523173, 5729532.830225514, 5730271.228254826, 5730304.938503672, 5731285.805224857, 5732269.809202242, 5733620.370772606, 5733706.7859798055, 5733957.8125, 5734564.05665449, 5735091.401921682, 5735152.051158539, 5735221.294129416, 5735248.148544031, 5735587.393499084, 5735900.198286864, 5736137.5, 5736186.00146087, 5738073.4375, 5738739.505230407, 5738904.714202981, 5740448.390741858, 5741551.634940933, 5745073.976837647, 5746603.125, 5750374.7019667495, 5752013.686431938, 5753875.280173808, 5754313.292961068, 5754348.330816835, 5755024.979800348, 5769306.791950938, 5771341.288742949, 5772551.12942757, 5785820.154230969, 5786411.243638991, 5786957.763247714, 5787075.0, 5788365.244150841, 5788898.4375, 5798289.0625, 5799510.845909402, 5803540.982051667, 5814366.502925924, 5825619.144668083, 5827120.3125, 5848508.592761377, 5854671.365184477, 5871723.6892118, 5879301.061839447, 5882420.13026482, 5891889.366211345, 5894006.971296848, 5895133.287853408, 5898873.4375, 5904113.5540515985, 5919107.912605829, 5921129.880633847, 5925755.674611869, 5928681.81960378, 5929564.0625, 5929575.883972578, 5930895.3125, 5942447.284226737, 5944183.249555072, 5945081.846516272, 5949057.848046708, 5949409.424070852, 5952440.625, 5955631.279025107, 5955632.8125, 5955652.479724531, 5957814.0625, 5978073.4375, 5979475.899573639, 5981764.367709111, 5983532.0716330875, 5983544.233596101, 5983564.0625, 5983850.0, 5989312.5, 6008700.706471107, 6014054.873992614, 6026539.0625, 6034830.898704877, 6035304.6875, 6035813.310855073, 6038880.085656947, 6067665.625, 6075022.214511616, 6075450.349188489, 6079173.4375, 6100009.375, 6100503.511880406, 6101593.325847071, 6104244.360000508, 6104848.524571543, 6104854.393643085, 6111137.5, 6115509.311359768, 6117323.189677748, 6117445.274813877, 6118215.625, 6118218.75, 6118343.785357295, 6118726.5625, 6119407.751189905, 6121785.687885897, 6121792.1875, 6121977.679791134, 6122228.223489629, 6129876.5625, 6132709.375, 6133057.8125, 6134768.75, 6135079.083698965, 6136307.8125, 6136704.1589036975, 6137071.899589625, 6137979.6875, 6138057.1679489175, 6138559.345333602, 6139317.19496837, 6139442.108331906, 6139544.119890601, 6140146.81106002, 6140429.6875, 6142407.478038817, 6145151.816964842, 6152902.637898516, 6152995.923980491, 6164617.295202339, 6170437.457097991, 6173385.440175453, 6178189.65635741, 6179077.9788265275, 6180601.911834168, 6180665.625, 6182367.438937766, 6186370.454750188, 6200270.826131613, 6200868.277088593, 6201098.4375, 6201479.335391698, 6207223.398589681, 6208076.978855251, 6209278.125, 6209520.3125, 6209976.5625, 6210004.626000273, 6210948.94653427, 6211354.437081234, 6211394.421112862, 6211930.506013766, 6212612.5, 6213014.858121258, 6216027.482769878, 6216293.384747271, 6217012.196571841, 6217548.480483051, 6218090.625, 6220990.1559722405, 6225558.215715281, 6225562.5, 6230370.3125, 6240537.5, 6265768.75, 6265779.020567467, 6267851.524498311, 6267988.40060297, 6268302.899093117, 6269563.639197375, 6269652.935364432, 6276422.243192094, 6280746.679420389, 6281289.366569393, 6285414.841178968, 6299382.233865145, 6299873.683934778, 6301054.620305411, 6303039.0625, 6319151.274978016, 6321356.25, 6321960.440078866, 6322496.875, 6334452.999044512, 6336489.05560232, 6336610.9375, 6343949.722191867, 6345248.230389044, 6346989.9995026775, 6355476.301787505, 6355949.699329642, 6357206.25158752, 6357819.134278121, 6364006.247623839, 6364017.1875, 6364170.3125, 6366041.241204373, 6372193.75, 6373435.385286563, 6385767.958309198, 6389249.88639121, 6389770.677027922, 6390118.355845086, 6390616.8041647365, 6390732.089091729, 6390734.194848709, 6391212.497715143, 6393488.896682697, 6393726.5625, 6397503.044907713, 6401814.449515957, 6402342.2256763615, 6408130.33341444, 6408251.921093201, 6408509.163870005, 6409350.563451457, 6432162.5, 6433952.88260982, 6448461.333082472, 6457514.0625, 6462543.75, 6463610.449331247, 6477605.132368807, 6483978.773065413, 6484235.717910827, 6487943.66909322, 6488061.9430324305, 6488273.803913608, 6499679.592813282, 6501282.185799739, 6509438.457097735, 6514766.682461597, 6518159.091579946, 6518160.432344678, 6520044.692244444, 6521372.568675862, 6522701.5445213355, 6523675.497691292, 6531746.659280144, 6532493.75, 6541598.897925213, 6554909.276628494, 6556179.6875, 6556802.741767871, 6560804.6875, 6582636.73464338, 6583935.778746387, 6587461.58686062, 6593204.682612891, 6605456.550654529, 6607925.906611433, 6614154.280200841, 6615493.75, 6620525.545151389, 6624135.881986085, 6626456.140662678, 6634323.1055615535, 6634560.9375, 6634801.447450373, 6635450.0, 6636535.694839798, 6638020.3125, 6642228.212111437, 6646567.1875, 6646595.163509202, 6646995.3125, 6647236.856162888, 6649823.4375, 6660136.860559677, 6665493.75, 6667134.375, 6668245.3125, 6673496.009377835, 6674828.125, 6676291.387989026, 6679455.719307919, 6708654.6875, 6709834.264904732, 6710473.4375, 6712153.125, 6713819.347205179, 6722070.3125, 6725288.800031557, 6736647.255124546, 6741260.643028361, 6744157.803244707, 6746593.75, 6751023.090471484, 6754508.078530578, 6757269.022022574, 6777399.452322404, 6797403.125, 6802680.707109282, 6812378.125, 6829236.100963891, 6856996.68601221, 6863841.319851755, 6864865.866282404, 6935182.8125, 6983882.317449404, 6997639.0625, 6997981.25, 7023550.3528698115, 7023559.437205297, 7027190.839396879, 7029634.375, 7034675.0, 7040415.572617065, 7061591.303478853, 7100626.683131298, 7108435.94300502, 7123640.352363726, 7162245.872681916, 7164835.9375, 7183591.056423696, 7183967.1875, 7184499.347783541, 7184948.913608274, 7214230.263988374, 7241896.875, 7242450.627769412, 7244896.875, 7275639.68537812, 7294237.5, 7343207.567323247, 7348412.775807734, 7362068.75, 7428705.882449502, 7461960.9375, 7463130.354433312, 7480050.929595461, 7491140.586007953, 7503903.125, 7504549.826082326, 7508266.772795764, 7525448.403394716, 7531906.5124553675, 7550060.445807207, 7554265.831839524, 7554604.676342215, 7570677.987862904, 7574868.212555691, 7594155.463279429, 7607159.669299363, 7609199.613669558, 7610182.595611532, 7610919.611437784, 7611498.329645253, 7611640.587667918, 7611657.060909346, 7612952.482261526, 7617104.337407027, 7639699.9415908735, 7640581.0465601245, 7677649.909579224, 7680629.6875, 7681568.75, 7682519.208704143, 7682740.625, 7686661.438783305, 7692045.94317414, 7695910.441637591, 7702615.625, 7703710.247731846, 7704240.625, 7708425.0, 7711416.100420851, 7714567.1875, 7748272.354104241, 7751450.433461683, 7751716.449230931, 7755177.848651404, 7767950.0, 7810213.356921567, 7815280.202418373, 7932846.186202061, 7933756.370351198, 7934592.1875, 7974522.584676368, 8067347.494521345, 8113960.556956067, 8119492.979747515, 8124401.5625, 8144465.781254039, 8227569.740300551, 8351108.046009457, 8405011.221007997, 8432872.70288774, 8452245.896223944, 8487643.719025195, 8488480.628391247, 8488676.5625, 8489675.0, 8490304.292146238, 8490903.125, 8492351.216911092, 8496554.00581332, 8519965.625, 8519981.706859373, 8520256.531961815, 8521821.403295258, 8541719.526438499, 8548835.013162203, 8550029.532097671, 8560638.76880996, 8564569.495937085, 8608187.232337268, 8614076.594350442, 8617818.75, 8618279.84361738, 8618871.875, 8638071.722149372, 8638670.3125, 8639595.171646727, 8642806.100307051, 8643464.0625, 8646076.5625, 8650957.370668733, 8652124.224029612, 8653305.660900015, 8724997.502352202, 8725181.805722639, 8725922.601891624, 8726121.575836062, 8735613.642044032, 8741346.153610041, 8742951.5625, 8748645.942067856, 8753532.8125, 8755159.375, 8755328.860890051, 8763724.028211292, 8764199.494414167, 8765302.871302133, 8770543.819131931, 8771450.629934825, 8774902.642539812, 8775437.535174238, 8775723.061980477, 8775811.624852454, 8776579.101280758, 8778426.413607124, 8787462.438717498, 8789270.624152118, 8791626.5625, 8792726.38147351, 8793148.4375, 8793352.492631622, 8794819.500369158, 8795131.556889031, 8795390.101927865, 8797982.8125, 8798227.947861103, 8799846.567507697, 8800939.0625, 8801771.002771823, 8801776.5625, 8801778.109171687, 8801833.160344759, 8802612.5, 8803181.908210158, 8805229.012606658, 8806287.046913384, 8806301.532996692, 8806390.625, 8806859.375, 8807182.764701279, 8807550.287701242, 8809807.493614802, 8810278.317058817, 8812492.1875, 8815210.865900988, 8816534.72406341, 8820538.36594641, 8821473.4375, 8821665.625, 8821992.1875, 8822730.091788892, 8823786.619016642, 8824153.708333462, 8824516.07252818, 8824747.845284445, 8824978.125, 8824979.0483102, 8825175.386229685, 8825410.180759652, 8826596.875, 8827413.40732252, 8827835.419643357, 8827891.387155764, 8829563.322482413, 8829585.107555812, 8829589.700733516, 8830223.840243, 8831471.875, 8833338.626057293, 8836922.19154029, 8838950.447128844, 8843315.625, 8848951.221503647, 8849091.49904047, 8849128.125, 8849627.52102105, 8849758.360948963, 8849810.18719855, 8849811.022977414, 8849925.451936653, 8850645.3125, 8850697.302561024, 8850870.102515506, 8851489.0625, 8851715.625, 8851781.522311658, 8851925.0, 8852212.55240112, 8852472.456416748, 8853020.986403298, 8853082.8125, 8853176.368787784, 8853423.771321364, 8853477.584500508, 8854101.28096149, 8854364.309226483, 8854502.021490162, 8854891.893358164, 8856294.722576993, 8856372.710745607, 8857198.644999027, 8857317.068720888, 8860222.677470561, 8879484.82792826, 8888673.146930678, 8890359.375, 8890975.45919844, 8891616.810360713, 8895794.712798381, 8897443.525609346, 8897809.547298476, 8897942.882025903, 8898003.125, 8898143.506767964, 8899050.6772459, 8911384.375, 8912983.93053272, 8914636.539467452, 8914869.866036054, 8915053.074219033, 8916657.638021806, 8917121.490866518, 8917568.199804887, 8918243.43487116, 8918361.182202432, 8919138.066666774, 8920127.644220995, 8920148.781625405, 8921124.130417557, 8921134.854094299, 8924600.499085657, 8925703.557529038, 8936862.17282648, 8944392.1875, 8946580.00216134, 8956912.443228723, 9009559.375, 9017014.056060705, 9028609.188391486, 9033553.498734977, 9118348.199700078, 9124654.6875, 9130062.5, 9130661.452981504, 9131419.594360633, 9132886.999865219, 9132965.309048815, 9180768.19731213, 9232329.582130548, 9239489.006364534, 9239831.90488077, 9241190.925369598, 9242555.876360212, 9242657.955928816, 9242970.3125, 9243241.787435563, 9248008.950049581, 9248495.3125, 9256038.078894584, 9256637.24353537, 9257456.303129094, 9257523.4375, 9257725.950033536, 9257933.517136142, 9258020.3125, 9258336.246761486, 9258560.97467543, 9258641.95636369, 9258677.414122082, 9259318.75, 9259532.030624809, 9259852.389319465, 9260193.75, 9260363.137090469, 9260612.529887779, 9260620.971008508, 9275392.63469634, 9330995.523306973, 9337702.45418466, 9337883.917577824, 9340318.91951889, 9341022.87738139, 9342311.283384874, 9342313.18858657, 9343061.77946425, 9343772.554606987, 9344083.665769741, 9344617.213870108, 9344877.10329752, 9344993.75, 9345598.449653883, 9346706.404002534, 9346909.375, 9348986.363382772, 9357504.6875, 9362265.569334641, 9363207.8125, 9364899.479947012, 9367368.245376134, 9369443.77481916, 9369640.588545764, 9370893.75, 9373432.8125, 9373514.0625, 9378893.197702017, 9387130.59480306, 9387581.174063664, 9413846.875, 9418000.382321015, 9420381.07138378, 9420510.621632108, 9421982.766182663, 9422878.279001797, 9424886.565693742, 9425428.125, 9425521.875, 9425621.875, 9428028.125, 9428149.69658939, 9428899.19402067, 9428956.335667083, 9430398.725500911, 9430942.1875, 9434644.516772516, 9434656.25, ...], [79.66186144291841, 11.862337986621727, 20.364616375501242, 58.122036227753405, 5.129321167281399, 8.819051286125644, 22.19801559204376, 13.553498706435962, 10.407752305699264, 33.74668092532064, 41.29443485893389, 60.31317418212851, 7.148668335809443, 6.488140355688352, 11.015702249278325, 15.26003537679708, 86.06965450494727, 23.746939744673366, 16.758128098327703, 9.47759397177345, 23.761070384171628, 16.61156979405316, 30.308553326698963, 93.12112767977416, 8.195652421395614, 13.607368194183806, 35.685560599843356, 19.762852582326687, 85.69535856012686, 24.714250188666703, 89.09450792735801, 30.814943413918833, 81.33376679418724, 14.969492562761033, 5.8336298022482325, 14.814167031039934, 27.76198169179913, 30.16670521768642, 32.57823659996409, 45.66720209344649, 18.786496529848357, 5.984574767877111, 13.79996717416626, 7.331506929940197, 53.59350881615694, 103.58055452095545, 12.096602378438984, 16.03696679244631, 22.32251162473828, 70.40127099919982, 20.82120597714913, 100.23876780158237, 5.759661880978289, 28.62895347059941, 80.17173163328951, 28.207536821875674, 18.632363131766713, 22.830482600502762, 24.431167175668644, 20.085989809360797, 91.02538492212945, 15.713964793755213, 5.635274044191197, 25.856561590020476, 8.045170580654588, 19.95854673170242, 44.280973588673525, 97.44940684739146, 30.753560697112952, 11.755891848988671, 15.657892951124412, 42.66950014411911, 56.8250251559753, 156.77342296772028, 42.14236545723131, 28.130562810776965, 25.116699001701985, 25.34447143572404, 63.8156822310697, 31.79851380939601, 10.469781536801419, 33.67865000773807, 6.110593070409263, 58.690234827227286, 43.28890445202592, 14.060849734923732, 92.85440154520744, 11.378483114425558, 86.98933851094701, 11.74089032376234, 34.677841895179206, 7.538765560239435, 10.527218347295983, 13.713669812432174, 25.586113794906147, 25.41840234182965, 39.4451030289124, 47.20998034846453, 56.489919682078124, 100.4074888569979, 57.95860919827505, 8.328784321307456, 6.213130550945731, 35.28296483518977, 40.24040137144626, 8.039002127732166, 116.4028116279174, 30.356414273907653, 65.37991362106868, 28.20524134976313, 14.876838303995184, 21.271704124364877, 6.561569028208233, 79.93509308990554, 74.54776015827704, 9.704545836216681, 6.694542494991948, 33.9812795626325, 40.09201050219637, 184.67328327103783, 139.27043005193616, 53.28192229486089, 78.05132900300829, 21.24295478115074, 19.32992439950813, 86.1784125971376, 20.82479588035572, 68.10700116301228, 18.650518837729116, 62.177343761505725, 47.0351916733276, 39.6563619789201, 25.442112885975693, 53.76922797384228, 58.06751584413958, 24.598765492904178, 42.236036794689994, 91.2797275384778, 18.731800897848686, 15.678235480717015, 49.53918728080322, 76.23139994927078, 11.128517497023264, 42.22789960963364, 68.11636091972889, 20.64505143055218, 15.719564949345907, 67.06084928239699, 24.421578966175517, 30.285623891539245, 50.66813115507403, 11.832080293569453, 51.45904011847324, 76.11710432272328, 69.39631422065858, 9.837912746153133, 128.31621699530763, 49.14187323749597, 7.385947974805125, 30.917871476647914, 75.24661687059718, 28.533209490149485, 6.851715800130568, 109.3917831833832, 8.304303424734712, 41.540537945159485, 17.48222899232804, 28.66962865087936, 26.300946774000963, 6.6847937070696855, 21.121807107688145, 19.829545214209475, 48.51015256668671, 53.95616299352827, 26.94860845848855, 143.69386427117777, 13.921796747589498, 39.79612362828998, 84.3044189434211, 30.828919035871305, 76.05777609675678, 11.561072228263846, 24.125374501621675, 37.00313435987312, 7.836237693296965, 9.983283955087739, 61.9791893223696, 139.40911693593642, 7.476605760289428, 86.24284747264278, 17.09217739445343, 12.50787524802334, 53.89508981408509, 16.90236734245382, 17.181643104346513, 88.75789213384898, 15.259695481119866, 13.585625328671863, 16.734879453422344, 105.23539047102838, 12.016851458462115, 20.571826493926615, 11.320122081198331, 12.257948312408779, 28.68873167594233, 55.738332075134224, 17.6491172555296, 14.666360427630734, 17.029105094591532, 61.82315309206896, 152.02924460636137, 82.37402380455049, 10.39457917703121, 125.64206915317077, 66.18938623910336, 78.3147927862578, 10.820887871372062, 31.76757192229349, 64.58336749782208, 20.536536243129063, 13.766040811625862, 100.57507029495014, 7.699442655812487, 21.08122755622248, 6.964760022710758, 41.092227841479044, 35.721714377772855, 44.00874867727045, 43.424964879111116, 35.404778362871056, 11.433209924649823, 15.916584410699697, 99.60443581480872, 17.349260569494696, 14.733854262594882, 56.996854750173625, 5.0605346560689295, 110.39303965232253, 9.41240876905377, 5.641234461916065, 108.14613598928547, 16.41211117762591, 101.72823603831107, 121.71141247283545, 19.295312858185742, 51.33575234916704, 162.96008337099346, 15.823466331920383, 12.718241817578477, 65.49308277812914, 38.926602792967856, 91.72103138835281, 69.71290419919316, 62.00630155379893, 7.793430354670184, 146.95779578386296, 12.0223315547762, 27.88786864016378, 72.66547296078483, 38.098762781774724, 27.637839689285066, 49.35473614327913, 54.84403665883424, 10.79548354379287, 9.987723921597649, 31.41396610522674, 85.65830102133819, 15.213574786824806, 52.01773897417305, 10.069454651788243, 25.91042004763002, 123.30232027134225, 11.938147262287568, 119.36560227824148, 19.63508377637521, 36.30626287817782, 40.04400716089074, 12.176400590663565, 53.92270428859193, 51.188938106609974, 7.583736253158286, 63.07927212480345, 213.111089273458, 84.1896102867456, 10.81201588169872, 57.69029928877184, 52.67600869336738, 5.8959978189833295, 14.854728172341872, 166.7948641020923, 61.9051691745508, 72.71976375376612, 5.040473352941842, 19.496687757570864, 12.471548488866857, 150.91860653445326, 10.398686072897746, 5.26944027571773, 5.81551504538404, 72.37609755543244, 191.73391054515366, 11.788795849347421, 7.739529750377059, 98.15344771317794, 33.961091873203436, 18.3730137910301, 43.84899613733108, 22.76554704001286, 29.486343593856176, 105.03080710014997, 40.335657201984034, 106.18166358919052, 17.497791677246976, 5.386636917158217, 7.662816322779624, 31.125344348765854, 31.57201699442761, 90.28651985538886, 91.50326034495828, 68.90389416818698, 7.870954168921734, 87.99114530369542, 51.699107194176996, 53.32368379139855, 38.00825042242472, 49.15372015753891, 43.96381978433221, 7.644898384095231, 43.12779828961256, 15.24907465092836, 74.60535215584014, 32.368506325437146, 18.000588990425054, 156.4453355062363, 6.977130502899427, 80.20736464029244, 5.045908892852275, 16.95207339387415, 10.450513897956334, 59.88342828744244, 6.899147680582456, 30.051076906198194, 33.551458647785196, 12.771769012236664, 161.77512130506625, 54.57917819429905, 59.01837298934809, 11.155526415435332, 7.384950967878379, 40.80766716616395, 26.1589498143036, 38.36870625443348, 9.381166838989046, 90.19100921141458, 143.98633080481414, 99.69441134488304, 19.049974263457315, 9.781852740119096, 20.722602648910076, 71.27238849398412, 34.17804513662735, 9.504889130317666, 147.52667532692539, 5.818728029576758, 106.72689935976311, 78.36043800583197, 18.297761261440666, 27.63229934486454, 15.225001209526583, 30.109523953299167, 47.79194653691583, 58.3969682111714, 22.82539020022742, 8.440511547496689, 19.168600368555612, 6.742393374471153, 74.0328493868244, 62.37539870588209, 71.61628415825368, 80.10217892925823, 14.370729455993198, 13.701770604851971, 90.08451618965037, 61.30457471544236, 22.77016676820906, 37.77409969666823, 103.8824067112388, 7.097581626764584, 16.748786717081668, 19.830321474397238, 5.139027532264201, 46.9978972318389, 12.614264148732644, 5.8962042331518685, 125.93147029818037, 106.14593532876535, 31.99015649990649, 6.535778409406907, 10.026126795854859, 289.3198295979215, 45.87255344374524, 29.646890781548336, 78.61091583310525, 34.69031624055148, 13.679495962095299, 9.864431155612927, 56.916884253734345, 127.90644804631343, 91.42359238109884, 19.36222501852189, 64.97743734794841, 159.15004243822332, 15.078750161544777, 35.18882690080543, 68.38091794746992, 57.98668089634109, 40.007912498304954, 7.972477929667574, 103.49485533551767, 108.81604846682757, 157.2656875458915, 17.518111407852658, 12.711467166772133, 11.978268236563586, 87.00387031722714, 90.94198914983673, 30.783648581665332, 18.55063578769935, 18.411564957091024, 40.78793132977137, 122.37035645082257, 56.139956871465, 19.303220940388247, 9.692398393033171, 38.04857074421932, 16.41541798253686, 14.019201749908964, 41.02864875495954, 36.19940328333487, 8.50234099003552, 8.996783780406952, 17.91941192566726, 56.39131991336608, 120.69008104631021, 74.18559255219397, 14.704366731273998, 33.075167194900715, 40.57692328395949, 73.9080475020915, 46.90833168576077, 34.50311649624347, 56.89533172336091, 22.556450299775605, 14.068423995778454, 32.014444517976266, 48.90246601219862, 52.432836743194486, 98.46732138509317, 51.525819300217705, 65.21131510571725, 126.29440277161105, 17.895057993708477, 69.5889715882492, 21.21250234855722, 95.04169218896689, 29.317731943697922, 7.972802529039677, 14.65960920045674, 9.337726095932672, 39.188835667179745, 16.56752183315952, 26.60424188293833, 117.96585979562867, 63.88671267079349, 20.725432544816755, 21.914417973709043, 7.840459340835967, 73.30235640491557, 7.587794112782017, 8.943540218682003, 81.20234250696656, 198.4428547244441, 48.50125817127242, 74.62512479257143, 11.544860860941906, 59.495512131856984, 86.08066707451886, 21.767647596525364, 69.94054636393975, 9.050423477245486, 7.589224850413301, 111.52638623860376, 61.913329848007805, 32.44308837928236, 47.8903767152536, 114.67635472846466, 107.44240536739505, 24.40543037349815, 27.739498466869087, 7.928780845023445, 33.331233843086885, 37.93089800582245, 271.36327140436737, 8.102429794287755, 8.13238285936439, 96.62192815537676, 37.896366344466244, 36.24043754700138, 11.822430210078576, 67.94783957984856, 105.42265655879508, 95.25729630362798, 52.41063340985483, 119.70327134411497, 35.00879115908065, 30.19061621413885, 24.745681220339968, 34.76620302159343, 39.45928487957255, 58.99479961772882, 104.74700665096825, 78.49291136232696, 63.725838011879205, 173.26949530798666, 63.15432701883436, 35.8447109388883, 100.90811996634126, 175.46768761420464, 51.3840952827609, 29.30265149374333, 115.76018867376732, 26.26142229965639, 15.75968517233908, 52.69356169209172, 120.35233946853076, 8.180008339147468, 156.96801619318546, 76.88230790962015, 23.742182540232818, 25.568269599657917, 23.96533895147683, 119.04747564467908, 31.847705493298438, 59.66594914349158, 29.596775322154492, 31.872436480790643, 20.987590027685176, 7.339971952223689, 108.60374101917463, 5.412594866008018, 22.618202624761285, 22.74158151993383, 32.9610891496772, 119.75036927611652, 79.55325399089912, 5.525086661764817, 64.37242039420343, 21.642129621718112, 97.05938929384108, 8.306869330115951, 270.84611977299903, 11.73863214372026, 7.528619746063118, 5.743581132826681, 47.12515433873919, 31.40625464741047, 5.479005466132101, 61.946949528647174, 36.571495488918536, 10.441739475591312, 6.559165319816416, 9.946901963462468, 89.58094850047135, 5.808018012143698, 117.57213863503051, 11.753182630085194, 32.947163794146384, 5.086318109093637, 71.35074495332154, 152.15734520017972, 29.015204842573393, 46.896429329542656, 17.876680625516624, 5.567721358142911, 14.873423121107146, 17.251706231146215, 157.8022978923161, 39.739287515939196, 117.55531951531121, 14.57936692249232, 39.263169245103335, 9.027099980411354, 47.288578359228794, 6.619758580565167, 68.21320473358321, 34.96734232600444, 28.428715424387175, 22.716977122966043, 69.62352657816484, 195.93271836742966, 59.09856451974557, 77.09764161973165, 36.27551622186245, 26.535533975139636, 23.351168794960333, 93.55512426233926, 165.1344133506524, 55.86700317124382, 14.090795819539741, 31.295006740624853, 7.144540440868564, 51.210512947243295, 94.68687524881554, 76.2462739927816, 17.56206087921862, 79.26158644104012, 20.206426505994983, 42.71736189120454, 70.70286459005578, 48.84540680815693, 179.5392040446864, 39.20967443494681, 123.56470632725589, 67.68340102014298, 35.97776380482239, 146.4412043149732, 55.51449739188562, 70.63322168462088, 12.2099286424251, 72.81994268750223, 30.161975503412247, 11.778831454813316, 93.34359768830448, 171.58935147961816, 56.27509723418184, 9.054252189600646, 17.22514820991593, 25.70121755586678, 46.17485109146221, 33.534261362008046, 59.501416606528714, 92.18344669226323, 9.473554610252455, 5.923114588942752, 99.73694853778869, 62.4019509639094, 50.803311924363626, 19.79105320393446, 111.67370053625716, 70.35235156463635, 84.54210798375672, 14.453653352857943, 15.826915025260748, 55.83127950757402, 31.77157389694226, 7.5844009126455285, 6.000752752434218, 312.57904013730723, 82.94136170297959, 10.726720228936706, 12.132906787533784, 59.17922469842889, 47.107478907951766, 134.99362776664572, 146.92181660216315, 42.108047575319404, 134.23871099808443, 38.750096879450844, 69.76072899279043, 42.749651005239414, 52.074404467249884, 154.69365825983851, 69.08787662874843, 21.110980548331867, 50.33708118304075, 22.924595385989335, 81.43468678044266, 189.5604556081075, 57.89103062006517, 64.68743662554904, 100.60769993147476, 54.35389052857164, 37.64870882809622, 55.824666714379646, 17.77694156484648, 13.348855246325016, 15.793198588002765, 28.305993578726035, 14.44335969196776, 11.507517728504148, 84.26723933777798, 22.529715582762055, 18.090910734031674, 30.661911731610275, 10.184148114713418, 132.48151346131849, 27.80696257620154, 7.925458066509685, 7.386213454896074, 54.01814808290814, 13.878225939846946, 48.1980842779985, 14.60771529390576, 41.82034758037331, 73.2312282057494, 7.247487740906687, 84.42003036871105, 15.70836666726849, 72.29061019596479, 21.534474453112733, 52.72902923490835, 78.7435599182963, 59.3832144185432, 87.69591534419163, 11.962122737831985, 39.410300576156516, 490.374254664738, 35.52817682480134, 16.457793966777245, 22.282483105455206, 34.59265121163097, 29.723703564359784, 29.903352247462667, 7.953081164433844, 11.321182657591875, 78.9368539104145, 183.45655951894636, 8.64381870318779, 22.7736823803871, 12.6421926975823, 28.580829983147325, 15.572512781093085, 13.132564574227382, 15.913076225253308, 89.92325397615205, 19.69310012981515, 7.283841794913761, 27.92624819775837, 7.983113117032099, 30.342070241122382, 56.873124081206086, 22.60463360983625, 67.4375250913009, 51.818666501636756, 19.85384793276718, 74.77519213391281, 17.024936551880515, 130.47626222779863, 20.332493522075993, 12.605396037639272, 9.936357290994856, 14.380521022896179, 28.252375106517782, 103.11166474180487, 82.09793581504837, 30.476080531174134, 37.1503277612816, 20.936549535520278, 31.47868401962597, 23.89043564020387, 101.90261763247051, 26.02137925180007, 7.082650153273134, 48.68117589714988, 72.53083924927036, 22.09367670907187, 8.751456015291465, 13.088471110621127, 18.028778782496346, 310.5373450041966, 38.59252782549, 19.72702918626674, 27.482435945643854, 12.758023074130783, 31.12099735444317, 17.071727566361247, 40.22473750126315, 70.49234276449283, 5.656095249512931, 17.640302863242187, 8.03616388971198, 24.360771415781144, 5.464741602608876, 27.51254201863049, 21.66987198997952, 5.615993031655763, 22.83174719504326, 56.77079247706757, 8.880470096012024, 34.56767834517369, 34.58311702391631, 38.03178885364335, 67.83741229811595, 14.293670738928983, 84.17954724660632, 79.25700610111343, 104.68899177022683, 40.5608861618152, 7.4244076078233565, 49.89323598170266, 46.52953341664801, 5.195658093386756, 152.65985037864482, 18.440574190464023, 45.27308067209334, 8.278224748102366, 5.633582017250428, 77.4464540444197, 18.22768917284625, 58.86238551382114, 10.486381106436319, 12.67279608131866, 89.4187371543088, 52.98274291087563, 14.76240001475298, 20.033542778736564, 93.35418663194412, 15.727824501458912, 84.37433173020725, 27.184215488127883, 16.46283329598711, 16.250928702717186, 72.55422054754554, 39.77167552730373, 79.49520763848638, 16.744441192862208, 8.683156747459824, 7.828785903040863, 5.357494328553993, 13.080390809166703, 72.96198001572465, 20.20856510115159, 9.680827862135994, 143.43064863978915, 78.75624415236976, 25.200006585579473, 65.09154413370331, 18.942431879474633, 122.82372036917812, 28.655859335829163, 12.29707982010509, 5.213805468525446, 59.07488184973896, 13.503551569143278, 24.988987427802964, 16.97206585471825, 51.82866504400297, 28.641403929209527, 12.837925446754047, 72.17435932341662, 26.929820568767518, 117.20650842461264, 6.622421851431143, 9.40474030986832, 12.333935379686647, 124.26710518814241, 25.963793624912938, 14.197311067488881, 38.45004079971942, 55.23014312951548, 16.09203601071121, 70.8969049497766, 5.535629149702989, 21.462202956119476, 31.772527210548635, 48.17104818459016, 33.434220513970246, 44.04896529625577, 8.02003818751321, 23.98946126174606, 330.04885860089695, 11.929878844533116, 66.62307050252244, 15.664480119445646, 46.02009874956709, 45.697571564012826, 75.20883674302699, 10.116600071529252, 14.715537564867372, 10.701998077278807, 66.34091909576799, 7.247629709529685, 111.431891671083, 8.871054947449764, 6.719520572118885, 27.54512340177117, 18.46931201520094, 29.241588735474192, 14.088952255667737, 12.381757264844751, 105.01335755511714, 22.065552480494105, 12.219946505762467, 88.27221489989569, 122.27365834984602, 8.196416284247412, 7.024007631531777, 21.00657652941965, 23.55939632618158, 62.04138978539883, 26.873647718086804, 5.380406960825084, 20.681506686650742, 31.033644680162624, 8.55729325056842, 7.794305956156558, 18.132431744256074, 23.409734364704047, 31.79884810721951, 34.49061586800984, 49.770365245684275, 72.64431708737736, 120.82740032799131, 5.923317626605052, 24.766729283240515, 14.106493294520304, 51.7751065364972, 32.95571600395097, 9.808942219265813, 93.11636084455354, 92.51864743195318, 41.87933168998795, 13.18402602724189, 10.966907190965289, 42.15200871026079, 18.205950234867945, 133.39771108509427, 172.8474905281085, 11.359548591300914, 54.23309839720667, 105.63221596232553, 29.00505755530635, 43.065144482202896, 157.2913805177203, 14.046484854945849, 31.810090762693783, 72.83680867609255, 13.028231110730651, 59.8155852009172, 129.7945555847316, 8.457183244029986, 8.30633464029682, 16.177042176476995, 36.1854224633238, 112.40611859514073, 51.85035121036833, 12.723813843383867, 60.76484815368512, 18.090933675256778, 113.2472757301596, 29.705429474247655, 16.9724310733276, 5.406594600060489, 19.943072094234566, 114.70344113857755, 14.192522736661857, 35.016762737440665, 17.40835191252835, 70.27666420792366, 6.016243455679232, 18.369040593038353, 19.632291604328586, 72.47935804033935, 25.58510715124848, 35.02741957056536, 11.14675739143504, 57.84395952073408, 61.36216085658933, 16.858143079853168, 50.437702526664275, 27.469622408161836, 31.506770448702966, 10.401725620870135, 21.447098377984428, 9.352477716661694, 9.300768108684904, 76.79704611737277, 57.16189714063341, 61.93087782693751, 6.9834625209476675, 72.25583337358778, 56.356368957407746, 70.02595297855002, 16.630869505164775, 156.75523724088356, 5.195448564247378, 120.77147967263666, 20.906449150991367, 6.590291331027902, 53.30279442682181, 58.08001898148595, 95.46261030948835, 90.40496122226308, 88.0743158825023, 10.065035766205492, 8.332405078067678, 16.165977249856294, 32.57959156499384, 18.97588705824445, 41.3109151687345, ...])
caption, xmean,count, xle, Etot = energy_spectrum(E_tot)
hist_file(E_hist, xmean, count, caption);
([2636788.4739430537, 2638523.8616166827, 2641496.2925107027, 2647559.375, 2726571.819657017, 2760733.6998094483, 2780852.692875633, 2838176.143499944, 2872679.1722761365, 2914259.375, 2939229.5765704117, 2994854.6875, 3024953.2275348078, 3035029.6941893455, 3048193.6771413586, 3080410.5776792346, 3084028.125, 3106777.8247023034, 3110261.162186004, 3119947.0429767845, 3135763.7633081684, 3146142.566047514, 3180782.8125, 3204620.3125, 3204996.699008764, 3205505.8496017046, 3260293.75, 3262914.932096644, 3262917.731356391, 3266419.8070130893, 3270748.344325752, 3271478.125, 3319146.875, 3346806.257322384, 3363114.324579768, 3398964.028684184, 3408342.14775387, 3409579.6674440606, 3411853.125, 3456557.8125, 3474255.5318602915, 3474258.316959438, 3486163.7268762817, 3490997.6180437705, 3508106.4134947425, 3513316.2235721448, 3527439.1428828374, 3539244.0104979333, 3539929.2668104423, 3540053.125, 3541271.304900534, 3541471.535711952, 3545814.8628659174, 3576934.375, 3590718.75, 3596728.574432326, 3596742.9058386725, 3614303.6283433964, 3635849.7514643488, 3683280.5963415215, 3686471.875, 3693848.9375683246, 3693853.5024765814, 3701518.598725213, 3702432.3262823564, 3705424.5905125774, 3710892.1875, 3721784.2830118123, 3791385.2868020856, 3810606.6178663364, 3810704.863558731, 3832826.200324658, 3834047.8633182496, 3842174.2699002526, 3842442.1875, 3843764.365229067, 3843766.934340458, 3849561.0686575, 3853651.5625, 3854206.25, 3856190.1589280637, 3856567.1875, 3856623.651063, 3879398.4375, 3883760.9375, 3884924.7480243174, 3914171.875, 3953303.279725508, 3955786.994407802, 3957969.1098089134, 3996150.0, 4003774.81815534, 4019321.4535626867, 4040465.260681904, 4061629.572402464, 4064245.829909256, 4078786.1823018324, 4111175.0, 4142928.125, 4145275.0, 4169973.4375, 4170151.6414702563, 4170324.5597257637, 4170792.4879036606, 4170800.0, 4170962.000527746, 4171467.1875, 4172736.07260441, 4173829.6875, 4216945.296145914, 4249609.357928672, 4255819.790015946, 4326033.2717088275, 4341226.5625, 4355650.958014141, 4372951.973123585, 4373004.331959426, 4380307.8125, 4383040.625, 4389518.169563502, 4399580.416649881, 4401725.390180963, 4402016.317671874, 4406640.099553085, 4438453.939366353, 4482923.4375, 4493629.117790253, 4529396.875, 4594008.533456652, 4599107.8125, 4601068.906156296, 4602651.661071481, 4618324.821800143, 4647096.875, 4656342.607392994, 4678756.013610204, 4750370.893784195, 4754893.75, 4769727.295096238, 4847506.430733378, 4851137.5, 4864165.625, 4866023.438018595, 4866407.8125, 4867496.309015369, 4947063.408193251, 4956622.0651793, 5025807.8125, 5065356.000763361, 5091273.4375, 5100007.8125, 5100020.720789842, 5189571.875, 5250869.4472098565, 5268423.4375, 5293908.356374708, 5294860.9375, 5309342.1875, 5334135.29391926, 5336704.6875, 5337633.9114942765, 5342082.396447211, 5342100.426341942, 5343415.625, 5344150.033370561, 5345445.3125, 5347658.350255098, 5365575.0, 5370026.89037247, 5370526.155015509, 5370527.586956307, 5370533.690330504, 5382919.619656088, 5383265.3383081965, 5383332.727444485, 5383912.193377524, 5384121.579005759, 5384385.9375, 5384819.668126968, 5385556.25, 5385627.576307993, 5386957.226465855, 5387480.408027698, 5412404.6875, 5447150.601322915, 5479622.556950237, 5481592.1875, 5485640.625, 5492321.510762606, 5492571.875, 5492614.531618109, 5494975.733851773, 5497282.8125, 5497546.227458361, 5497734.8602297, 5497740.005233701, 5497756.3310481515, 5497875.867551307, 5497886.339954904, 5498004.6875, 5498405.19049345, 5498635.839789457, 5499354.807209646, 5499363.119923169, 5499876.5625, 5499987.072417509, 5500517.753393681, 5501346.800888625, 5502556.7076231195, 5503171.130981331, 5503173.4375, 5503751.5625, 5504019.786708182, 5505012.795332457, 5505562.5, 5505917.1875, 5505971.669419027, 5506670.3125, 5507417.576038215, 5508810.86510648, 5514054.340658219, 5514118.75, 5515537.758383491, 5516696.332696146, 5516936.868383167, 5516939.0625, 5517178.125, 5517632.8125, 5518813.165713946, 5520274.614962995, 5521392.374537651, 5531631.484281628, 5531685.545949991, 5533925.514819036, 5533978.069431162, 5534520.3125, 5534538.597368743, 5534987.5, 5535884.469272679, 5535995.793746939, 5538966.344806929, 5539043.354543908, 5539968.75, 5544827.413766311, 5556085.1848128205, 5557512.5, 5558209.674840544, 5558751.94668579, 5564024.261980757, 5567750.844341307, 5568595.3125, 5569884.375, 5572639.0625, 5573004.382560289, 5573016.121924344, 5574562.149542615, 5575061.443232721, 5576030.315659999, 5576076.5625, 5577346.875, 5577474.953543024, 5578101.5625, 5585246.697959964, 5591823.21402159, 5597856.936055584, 5600165.116857481, 5604020.3125, 5614921.94459416, 5614929.407753634, 5614955.447990801, 5617281.849407612, 5618178.671748133, 5621440.3526442945, 5622037.5, 5622428.978621824, 5622448.484486446, 5622904.6875, 5622950.58117815, 5623009.281440472, 5623057.705583536, 5623445.258257622, 5623981.25, 5624531.473824544, 5625528.863818101, 5625545.100684636, 5626588.668081092, 5626812.5, 5632496.362680801, 5637576.894545005, 5638150.0, 5645982.8125, 5646187.095723048, 5646240.561374719, 5646764.898514499, 5646936.655227097, 5648392.1875, 5648396.352507807, 5648443.03294933, 5648454.7082211375, 5648565.625, 5648574.956515863, 5648764.447925697, 5649747.236735989, 5650365.031353732, 5650473.375732724, 5651155.367702195, 5651362.5, 5651526.605743624, 5651948.4375, 5651950.541404678, 5653595.1790213445, 5653811.925857475, 5653978.724734952, 5654024.68687354, 5654242.349275805, 5655007.8125, 5656295.3125, 5657530.902824012, 5661708.977223613, 5662575.871860273, 5662667.871632491, 5662915.625, 5662920.3125, 5663917.1875, 5665181.529858061, 5665673.4375, 5665984.162276066, 5672236.051235286, 5673196.685386466, 5674439.140919068, 5674637.5, 5674823.4375, 5674864.935058525, 5674953.218116264, 5674968.1709732, 5677994.332793259, 5682092.444926272, 5683450.141372612, 5684130.768767178, 5685156.21206912, 5687347.518460801, 5690098.4375, 5693940.747318882, 5700063.346819631, 5723840.625, 5728307.8125, 5729169.284523173, 5729532.830225514, 5730271.228254826, 5730304.938503672, 5731285.805224857, 5732269.809202242, 5733620.370772606, 5733706.7859798055, 5733957.8125, 5734564.05665449, 5735091.401921682, 5735152.051158539, 5735221.294129416, 5735248.148544031, 5735587.393499084, 5735900.198286864, 5736137.5, 5736186.00146087, 5738073.4375, 5738739.505230407, 5738904.714202981, 5740448.390741858, 5741551.634940933, 5745073.976837647, 5746603.125, 5750374.7019667495, 5752013.686431938, 5753875.280173808, 5754313.292961068, 5754348.330816835, 5755024.979800348, 5769306.791950938, 5771341.288742949, 5772551.12942757, 5785820.154230969, 5786411.243638991, 5786957.763247714, 5787075.0, 5788365.244150841, 5788898.4375, 5798289.0625, 5799510.845909402, 5803540.982051667, 5814366.502925924, 5825619.144668083, 5827120.3125, 5848508.592761377, 5854671.365184477, 5871723.6892118, 5879301.061839447, 5882420.13026482, 5891889.366211345, 5894006.971296848, 5895133.287853408, 5898873.4375, 5904113.5540515985, 5919107.912605829, 5921129.880633847, 5925755.674611869, 5928681.81960378, 5929564.0625, 5929575.883972578, 5930895.3125, 5942447.284226737, 5944183.249555072, 5945081.846516272, 5949057.848046708, 5949409.424070852, 5952440.625, 5955631.279025107, 5955632.8125, 5955652.479724531, 5957814.0625, 5978073.4375, 5979475.899573639, 5981764.367709111, 5983532.0716330875, 5983544.233596101, 5983564.0625, 5983850.0, 5989312.5, 6008700.706471107, 6014054.873992614, 6026539.0625, 6034830.898704877, 6035304.6875, 6035813.310855073, 6038880.085656947, 6067665.625, 6075022.214511616, 6075450.349188489, 6079173.4375, 6100009.375, 6100503.511880406, 6101593.325847071, 6104244.360000508, 6104848.524571543, 6104854.393643085, 6111137.5, 6115509.311359768, 6117323.189677748, 6117445.274813877, 6118215.625, 6118218.75, 6118343.785357295, 6118726.5625, 6119407.751189905, 6121785.687885897, 6121792.1875, 6121977.679791134, 6122228.223489629, 6129876.5625, 6132709.375, 6133057.8125, 6134768.75, 6135079.083698965, 6136307.8125, 6136704.1589036975, 6137071.899589625, 6137979.6875, 6138057.1679489175, 6138559.345333602, 6139317.19496837, 6139442.108331906, 6139544.119890601, 6140146.81106002, 6140429.6875, 6142407.478038817, 6145151.816964842, 6152902.637898516, 6152995.923980491, 6164617.295202339, 6170437.457097991, 6173385.440175453, 6178189.65635741, 6179077.9788265275, 6180601.911834168, 6180665.625, 6182367.438937766, 6186370.454750188, 6200270.826131613, 6200868.277088593, 6201098.4375, 6201479.335391698, 6207223.398589681, 6208076.978855251, 6209278.125, 6209520.3125, 6209976.5625, 6210004.626000273, 6210948.94653427, 6211354.437081234, 6211394.421112862, 6211930.506013766, 6212612.5, 6213014.858121258, 6216027.482769878, 6216293.384747271, 6217012.196571841, 6217548.480483051, 6218090.625, 6220990.1559722405, 6225558.215715281, 6225562.5, 6230370.3125, 6240537.5, 6265768.75, 6265779.020567467, 6267851.524498311, 6267988.40060297, 6268302.899093117, 6269563.639197375, 6269652.935364432, 6276422.243192094, 6280746.679420389, 6281289.366569393, 6285414.841178968, 6299382.233865145, 6299873.683934778, 6301054.620305411, 6303039.0625, 6319151.274978016, 6321356.25, 6321960.440078866, 6322496.875, 6334452.999044512, 6336489.05560232, 6336610.9375, 6343949.722191867, 6345248.230389044, 6346989.9995026775, 6355476.301787505, 6355949.699329642, 6357206.25158752, 6357819.134278121, 6364006.247623839, 6364017.1875, 6364170.3125, 6366041.241204373, 6372193.75, 6373435.385286563, 6385767.958309198, 6389249.88639121, 6389770.677027922, 6390118.355845086, 6390616.8041647365, 6390732.089091729, 6390734.194848709, 6391212.497715143, 6393488.896682697, 6393726.5625, 6397503.044907713, 6401814.449515957, 6402342.2256763615, 6408130.33341444, 6408251.921093201, 6408509.163870005, 6409350.563451457, 6432162.5, 6433952.88260982, 6448461.333082472, 6457514.0625, 6462543.75, 6463610.449331247, 6477605.132368807, 6483978.773065413, 6484235.717910827, 6487943.66909322, 6488061.9430324305, 6488273.803913608, 6499679.592813282, 6501282.185799739, 6509438.457097735, 6514766.682461597, 6518159.091579946, 6518160.432344678, 6520044.692244444, 6521372.568675862, 6522701.5445213355, 6523675.497691292, 6531746.659280144, 6532493.75, 6541598.897925213, 6554909.276628494, 6556179.6875, 6556802.741767871, 6560804.6875, 6582636.73464338, 6583935.778746387, 6587461.58686062, 6593204.682612891, 6605456.550654529, 6607925.906611433, 6614154.280200841, 6615493.75, 6620525.545151389, 6624135.881986085, 6626456.140662678, 6634323.1055615535, 6634560.9375, 6634801.447450373, 6635450.0, 6636535.694839798, 6638020.3125, 6642228.212111437, 6646567.1875, 6646595.163509202, 6646995.3125, 6647236.856162888, 6649823.4375, 6660136.860559677, 6665493.75, 6667134.375, 6668245.3125, 6673496.009377835, 6674828.125, 6676291.387989026, 6679455.719307919, 6708654.6875, 6709834.264904732, 6710473.4375, 6712153.125, 6713819.347205179, 6722070.3125, 6725288.800031557, 6736647.255124546, 6741260.643028361, 6744157.803244707, 6746593.75, 6751023.090471484, 6754508.078530578, 6757269.022022574, 6777399.452322404, 6797403.125, 6802680.707109282, 6812378.125, 6829236.100963891, 6856996.68601221, 6863841.319851755, 6864865.866282404, 6935182.8125, 6983882.317449404, 6997639.0625, 6997981.25, 7023550.3528698115, 7023559.437205297, 7027190.839396879, 7029634.375, 7034675.0, 7040415.572617065, 7061591.303478853, 7100626.683131298, 7108435.94300502, 7123640.352363726, 7162245.872681916, 7164835.9375, 7183591.056423696, 7183967.1875, 7184499.347783541, 7184948.913608274, 7214230.263988374, 7241896.875, 7242450.627769412, 7244896.875, 7275639.68537812, 7294237.5, 7343207.567323247, 7348412.775807734, 7362068.75, 7428705.882449502, 7461960.9375, 7463130.354433312, 7480050.929595461, 7491140.586007953, 7503903.125, 7504549.826082326, 7508266.772795764, 7525448.403394716, 7531906.5124553675, 7550060.445807207, 7554265.831839524, 7554604.676342215, 7570677.987862904, 7574868.212555691, 7594155.463279429, 7607159.669299363, 7609199.613669558, 7610182.595611532, 7610919.611437784, 7611498.329645253, 7611640.587667918, 7611657.060909346, 7612952.482261526, 7617104.337407027, 7639699.9415908735, 7640581.0465601245, 7677649.909579224, 7680629.6875, 7681568.75, 7682519.208704143, 7682740.625, 7686661.438783305, 7692045.94317414, 7695910.441637591, 7702615.625, 7703710.247731846, 7704240.625, 7708425.0, 7711416.100420851, 7714567.1875, 7748272.354104241, 7751450.433461683, 7751716.449230931, 7755177.848651404, 7767950.0, 7810213.356921567, 7815280.202418373, 7932846.186202061, 7933756.370351198, 7934592.1875, 7974522.584676368, 8067347.494521345, 8113960.556956067, 8119492.979747515, 8124401.5625, 8144465.781254039, 8227569.740300551, 8351108.046009457, 8405011.221007997, 8432872.70288774, 8452245.896223944, 8487643.719025195, 8488480.628391247, 8488676.5625, 8489675.0, 8490304.292146238, 8490903.125, 8492351.216911092, 8496554.00581332, 8519965.625, 8519981.706859373, 8520256.531961815, 8521821.403295258, 8541719.526438499, 8548835.013162203, 8550029.532097671, 8560638.76880996, 8564569.495937085, 8608187.232337268, 8614076.594350442, 8617818.75, 8618279.84361738, 8618871.875, 8638071.722149372, 8638670.3125, 8639595.171646727, 8642806.100307051, 8643464.0625, 8646076.5625, 8650957.370668733, 8652124.224029612, 8653305.660900015, 8724997.502352202, 8725181.805722639, 8725922.601891624, 8726121.575836062, 8735613.642044032, 8741346.153610041, 8742951.5625, 8748645.942067856, 8753532.8125, 8755159.375, 8755328.860890051, 8763724.028211292, 8764199.494414167, 8765302.871302133, 8770543.819131931, 8771450.629934825, 8774902.642539812, 8775437.535174238, 8775723.061980477, 8775811.624852454, 8776579.101280758, 8778426.413607124, 8787462.438717498, 8789270.624152118, 8791626.5625, 8792726.38147351, 8793148.4375, 8793352.492631622, 8794819.500369158, 8795131.556889031, 8795390.101927865, 8797982.8125, 8798227.947861103, 8799846.567507697, 8800939.0625, 8801771.002771823, 8801776.5625, 8801778.109171687, 8801833.160344759, 8802612.5, 8803181.908210158, 8805229.012606658, 8806287.046913384, 8806301.532996692, 8806390.625, 8806859.375, 8807182.764701279, 8807550.287701242, 8809807.493614802, 8810278.317058817, 8812492.1875, 8815210.865900988, 8816534.72406341, 8820538.36594641, 8821473.4375, 8821665.625, 8821992.1875, 8822730.091788892, 8823786.619016642, 8824153.708333462, 8824516.07252818, 8824747.845284445, 8824978.125, 8824979.0483102, 8825175.386229685, 8825410.180759652, 8826596.875, 8827413.40732252, 8827835.419643357, 8827891.387155764, 8829563.322482413, 8829585.107555812, 8829589.700733516, 8830223.840243, 8831471.875, 8833338.626057293, 8836922.19154029, 8838950.447128844, 8843315.625, 8848951.221503647, 8849091.49904047, 8849128.125, 8849627.52102105, 8849758.360948963, 8849810.18719855, 8849811.022977414, 8849925.451936653, 8850645.3125, 8850697.302561024, 8850870.102515506, 8851489.0625, 8851715.625, 8851781.522311658, 8851925.0, 8852212.55240112, 8852472.456416748, 8853020.986403298, 8853082.8125, 8853176.368787784, 8853423.771321364, 8853477.584500508, 8854101.28096149, 8854364.309226483, 8854502.021490162, 8854891.893358164, 8856294.722576993, 8856372.710745607, 8857198.644999027, 8857317.068720888, 8860222.677470561, 8879484.82792826, 8888673.146930678, 8890359.375, 8890975.45919844, 8891616.810360713, 8895794.712798381, 8897443.525609346, 8897809.547298476, 8897942.882025903, 8898003.125, 8898143.506767964, 8899050.6772459, 8911384.375, 8912983.93053272, 8914636.539467452, 8914869.866036054, 8915053.074219033, 8916657.638021806, 8917121.490866518, 8917568.199804887, 8918243.43487116, 8918361.182202432, 8919138.066666774, 8920127.644220995, 8920148.781625405, 8921124.130417557, 8921134.854094299, 8924600.499085657, 8925703.557529038, 8936862.17282648, 8944392.1875, 8946580.00216134, 8956912.443228723, 9009559.375, 9017014.056060705, 9028609.188391486, 9033553.498734977, 9118348.199700078, 9124654.6875, 9130062.5, 9130661.452981504, 9131419.594360633, 9132886.999865219, 9132965.309048815, 9180768.19731213, 9232329.582130548, 9239489.006364534, 9239831.90488077, 9241190.925369598, 9242555.876360212, 9242657.955928816, 9242970.3125, 9243241.787435563, 9248008.950049581, 9248495.3125, 9256038.078894584, 9256637.24353537, 9257456.303129094, 9257523.4375, 9257725.950033536, 9257933.517136142, 9258020.3125, 9258336.246761486, 9258560.97467543, 9258641.95636369, 9258677.414122082, 9259318.75, 9259532.030624809, 9259852.389319465, 9260193.75, 9260363.137090469, 9260612.529887779, 9260620.971008508, 9275392.63469634, 9330995.523306973, 9337702.45418466, 9337883.917577824, 9340318.91951889, 9341022.87738139, 9342311.283384874, 9342313.18858657, 9343061.77946425, 9343772.554606987, 9344083.665769741, 9344617.213870108, 9344877.10329752, 9344993.75, 9345598.449653883, 9346706.404002534, 9346909.375, 9348986.363382772, 9357504.6875, 9362265.569334641, 9363207.8125, 9364899.479947012, 9367368.245376134, 9369443.77481916, 9369640.588545764, 9370893.75, 9373432.8125, 9373514.0625, 9378893.197702017, 9387130.59480306, 9387581.174063664, 9413846.875, 9418000.382321015, 9420381.07138378, 9420510.621632108, 9421982.766182663, 9422878.279001797, 9424886.565693742, 9425428.125, 9425521.875, 9425621.875, 9428028.125, 9428149.69658939, 9428899.19402067, 9428956.335667083, 9430398.725500911, 9430942.1875, 9434644.516772516, 9434656.25, ...], [79.66186144291841, 11.862337986621727, 20.364616375501242, 58.122036227753405, 5.129321167281399, 8.819051286125644, 22.19801559204376, 13.553498706435962, 10.407752305699264, 33.74668092532064, 41.29443485893389, 60.31317418212851, 7.148668335809443, 6.488140355688352, 11.015702249278325, 15.26003537679708, 86.06965450494727, 23.746939744673366, 16.758128098327703, 9.47759397177345, 23.761070384171628, 16.61156979405316, 30.308553326698963, 93.12112767977416, 8.195652421395614, 13.607368194183806, 35.685560599843356, 19.762852582326687, 85.69535856012686, 24.714250188666703, 89.09450792735801, 30.814943413918833, 81.33376679418724, 14.969492562761033, 5.8336298022482325, 14.814167031039934, 27.76198169179913, 30.16670521768642, 32.57823659996409, 45.66720209344649, 18.786496529848357, 5.984574767877111, 13.79996717416626, 7.331506929940197, 53.59350881615694, 103.58055452095545, 12.096602378438984, 16.03696679244631, 22.32251162473828, 70.40127099919982, 20.82120597714913, 100.23876780158237, 5.759661880978289, 28.62895347059941, 80.17173163328951, 28.207536821875674, 18.632363131766713, 22.830482600502762, 24.431167175668644, 20.085989809360797, 91.02538492212945, 15.713964793755213, 5.635274044191197, 25.856561590020476, 8.045170580654588, 19.95854673170242, 44.280973588673525, 97.44940684739146, 30.753560697112952, 11.755891848988671, 15.657892951124412, 42.66950014411911, 56.8250251559753, 156.77342296772028, 42.14236545723131, 28.130562810776965, 25.116699001701985, 25.34447143572404, 63.8156822310697, 31.79851380939601, 10.469781536801419, 33.67865000773807, 6.110593070409263, 58.690234827227286, 43.28890445202592, 14.060849734923732, 92.85440154520744, 11.378483114425558, 86.98933851094701, 11.74089032376234, 34.677841895179206, 7.538765560239435, 10.527218347295983, 13.713669812432174, 25.586113794906147, 25.41840234182965, 39.4451030289124, 47.20998034846453, 56.489919682078124, 100.4074888569979, 57.95860919827505, 8.328784321307456, 6.213130550945731, 35.28296483518977, 40.24040137144626, 8.039002127732166, 116.4028116279174, 30.356414273907653, 65.37991362106868, 28.20524134976313, 14.876838303995184, 21.271704124364877, 6.561569028208233, 79.93509308990554, 74.54776015827704, 9.704545836216681, 6.694542494991948, 33.9812795626325, 40.09201050219637, 184.67328327103783, 139.27043005193616, 53.28192229486089, 78.05132900300829, 21.24295478115074, 19.32992439950813, 86.1784125971376, 20.82479588035572, 68.10700116301228, 18.650518837729116, 62.177343761505725, 47.0351916733276, 39.6563619789201, 25.442112885975693, 53.76922797384228, 58.06751584413958, 24.598765492904178, 42.236036794689994, 91.2797275384778, 18.731800897848686, 15.678235480717015, 49.53918728080322, 76.23139994927078, 11.128517497023264, 42.22789960963364, 68.11636091972889, 20.64505143055218, 15.719564949345907, 67.06084928239699, 24.421578966175517, 30.285623891539245, 50.66813115507403, 11.832080293569453, 51.45904011847324, 76.11710432272328, 69.39631422065858, 9.837912746153133, 128.31621699530763, 49.14187323749597, 7.385947974805125, 30.917871476647914, 75.24661687059718, 28.533209490149485, 6.851715800130568, 109.3917831833832, 8.304303424734712, 41.540537945159485, 17.48222899232804, 28.66962865087936, 26.300946774000963, 6.6847937070696855, 21.121807107688145, 19.829545214209475, 48.51015256668671, 53.95616299352827, 26.94860845848855, 143.69386427117777, 13.921796747589498, 39.79612362828998, 84.3044189434211, 30.828919035871305, 76.05777609675678, 11.561072228263846, 24.125374501621675, 37.00313435987312, 7.836237693296965, 9.983283955087739, 61.9791893223696, 139.40911693593642, 7.476605760289428, 86.24284747264278, 17.09217739445343, 12.50787524802334, 53.89508981408509, 16.90236734245382, 17.181643104346513, 88.75789213384898, 15.259695481119866, 13.585625328671863, 16.734879453422344, 105.23539047102838, 12.016851458462115, 20.571826493926615, 11.320122081198331, 12.257948312408779, 28.68873167594233, 55.738332075134224, 17.6491172555296, 14.666360427630734, 17.029105094591532, 61.82315309206896, 152.02924460636137, 82.37402380455049, 10.39457917703121, 125.64206915317077, 66.18938623910336, 78.3147927862578, 10.820887871372062, 31.76757192229349, 64.58336749782208, 20.536536243129063, 13.766040811625862, 100.57507029495014, 7.699442655812487, 21.08122755622248, 6.964760022710758, 41.092227841479044, 35.721714377772855, 44.00874867727045, 43.424964879111116, 35.404778362871056, 11.433209924649823, 15.916584410699697, 99.60443581480872, 17.349260569494696, 14.733854262594882, 56.996854750173625, 5.0605346560689295, 110.39303965232253, 9.41240876905377, 5.641234461916065, 108.14613598928547, 16.41211117762591, 101.72823603831107, 121.71141247283545, 19.295312858185742, 51.33575234916704, 162.96008337099346, 15.823466331920383, 12.718241817578477, 65.49308277812914, 38.926602792967856, 91.72103138835281, 69.71290419919316, 62.00630155379893, 7.793430354670184, 146.95779578386296, 12.0223315547762, 27.88786864016378, 72.66547296078483, 38.098762781774724, 27.637839689285066, 49.35473614327913, 54.84403665883424, 10.79548354379287, 9.987723921597649, 31.41396610522674, 85.65830102133819, 15.213574786824806, 52.01773897417305, 10.069454651788243, 25.91042004763002, 123.30232027134225, 11.938147262287568, 119.36560227824148, 19.63508377637521, 36.30626287817782, 40.04400716089074, 12.176400590663565, 53.92270428859193, 51.188938106609974, 7.583736253158286, 63.07927212480345, 213.111089273458, 84.1896102867456, 10.81201588169872, 57.69029928877184, 52.67600869336738, 5.8959978189833295, 14.854728172341872, 166.7948641020923, 61.9051691745508, 72.71976375376612, 5.040473352941842, 19.496687757570864, 12.471548488866857, 150.91860653445326, 10.398686072897746, 5.26944027571773, 5.81551504538404, 72.37609755543244, 191.73391054515366, 11.788795849347421, 7.739529750377059, 98.15344771317794, 33.961091873203436, 18.3730137910301, 43.84899613733108, 22.76554704001286, 29.486343593856176, 105.03080710014997, 40.335657201984034, 106.18166358919052, 17.497791677246976, 5.386636917158217, 7.662816322779624, 31.125344348765854, 31.57201699442761, 90.28651985538886, 91.50326034495828, 68.90389416818698, 7.870954168921734, 87.99114530369542, 51.699107194176996, 53.32368379139855, 38.00825042242472, 49.15372015753891, 43.96381978433221, 7.644898384095231, 43.12779828961256, 15.24907465092836, 74.60535215584014, 32.368506325437146, 18.000588990425054, 156.4453355062363, 6.977130502899427, 80.20736464029244, 5.045908892852275, 16.95207339387415, 10.450513897956334, 59.88342828744244, 6.899147680582456, 30.051076906198194, 33.551458647785196, 12.771769012236664, 161.77512130506625, 54.57917819429905, 59.01837298934809, 11.155526415435332, 7.384950967878379, 40.80766716616395, 26.1589498143036, 38.36870625443348, 9.381166838989046, 90.19100921141458, 143.98633080481414, 99.69441134488304, 19.049974263457315, 9.781852740119096, 20.722602648910076, 71.27238849398412, 34.17804513662735, 9.504889130317666, 147.52667532692539, 5.818728029576758, 106.72689935976311, 78.36043800583197, 18.297761261440666, 27.63229934486454, 15.225001209526583, 30.109523953299167, 47.79194653691583, 58.3969682111714, 22.82539020022742, 8.440511547496689, 19.168600368555612, 6.742393374471153, 74.0328493868244, 62.37539870588209, 71.61628415825368, 80.10217892925823, 14.370729455993198, 13.701770604851971, 90.08451618965037, 61.30457471544236, 22.77016676820906, 37.77409969666823, 103.8824067112388, 7.097581626764584, 16.748786717081668, 19.830321474397238, 5.139027532264201, 46.9978972318389, 12.614264148732644, 5.8962042331518685, 125.93147029818037, 106.14593532876535, 31.99015649990649, 6.535778409406907, 10.026126795854859, 289.3198295979215, 45.87255344374524, 29.646890781548336, 78.61091583310525, 34.69031624055148, 13.679495962095299, 9.864431155612927, 56.916884253734345, 127.90644804631343, 91.42359238109884, 19.36222501852189, 64.97743734794841, 159.15004243822332, 15.078750161544777, 35.18882690080543, 68.38091794746992, 57.98668089634109, 40.007912498304954, 7.972477929667574, 103.49485533551767, 108.81604846682757, 157.2656875458915, 17.518111407852658, 12.711467166772133, 11.978268236563586, 87.00387031722714, 90.94198914983673, 30.783648581665332, 18.55063578769935, 18.411564957091024, 40.78793132977137, 122.37035645082257, 56.139956871465, 19.303220940388247, 9.692398393033171, 38.04857074421932, 16.41541798253686, 14.019201749908964, 41.02864875495954, 36.19940328333487, 8.50234099003552, 8.996783780406952, 17.91941192566726, 56.39131991336608, 120.69008104631021, 74.18559255219397, 14.704366731273998, 33.075167194900715, 40.57692328395949, 73.9080475020915, 46.90833168576077, 34.50311649624347, 56.89533172336091, 22.556450299775605, 14.068423995778454, 32.014444517976266, 48.90246601219862, 52.432836743194486, 98.46732138509317, 51.525819300217705, 65.21131510571725, 126.29440277161105, 17.895057993708477, 69.5889715882492, 21.21250234855722, 95.04169218896689, 29.317731943697922, 7.972802529039677, 14.65960920045674, 9.337726095932672, 39.188835667179745, 16.56752183315952, 26.60424188293833, 117.96585979562867, 63.88671267079349, 20.725432544816755, 21.914417973709043, 7.840459340835967, 73.30235640491557, 7.587794112782017, 8.943540218682003, 81.20234250696656, 198.4428547244441, 48.50125817127242, 74.62512479257143, 11.544860860941906, 59.495512131856984, 86.08066707451886, 21.767647596525364, 69.94054636393975, 9.050423477245486, 7.589224850413301, 111.52638623860376, 61.913329848007805, 32.44308837928236, 47.8903767152536, 114.67635472846466, 107.44240536739505, 24.40543037349815, 27.739498466869087, 7.928780845023445, 33.331233843086885, 37.93089800582245, 271.36327140436737, 8.102429794287755, 8.13238285936439, 96.62192815537676, 37.896366344466244, 36.24043754700138, 11.822430210078576, 67.94783957984856, 105.42265655879508, 95.25729630362798, 52.41063340985483, 119.70327134411497, 35.00879115908065, 30.19061621413885, 24.745681220339968, 34.76620302159343, 39.45928487957255, 58.99479961772882, 104.74700665096825, 78.49291136232696, 63.725838011879205, 173.26949530798666, 63.15432701883436, 35.8447109388883, 100.90811996634126, 175.46768761420464, 51.3840952827609, 29.30265149374333, 115.76018867376732, 26.26142229965639, 15.75968517233908, 52.69356169209172, 120.35233946853076, 8.180008339147468, 156.96801619318546, 76.88230790962015, 23.742182540232818, 25.568269599657917, 23.96533895147683, 119.04747564467908, 31.847705493298438, 59.66594914349158, 29.596775322154492, 31.872436480790643, 20.987590027685176, 7.339971952223689, 108.60374101917463, 5.412594866008018, 22.618202624761285, 22.74158151993383, 32.9610891496772, 119.75036927611652, 79.55325399089912, 5.525086661764817, 64.37242039420343, 21.642129621718112, 97.05938929384108, 8.306869330115951, 270.84611977299903, 11.73863214372026, 7.528619746063118, 5.743581132826681, 47.12515433873919, 31.40625464741047, 5.479005466132101, 61.946949528647174, 36.571495488918536, 10.441739475591312, 6.559165319816416, 9.946901963462468, 89.58094850047135, 5.808018012143698, 117.57213863503051, 11.753182630085194, 32.947163794146384, 5.086318109093637, 71.35074495332154, 152.15734520017972, 29.015204842573393, 46.896429329542656, 17.876680625516624, 5.567721358142911, 14.873423121107146, 17.251706231146215, 157.8022978923161, 39.739287515939196, 117.55531951531121, 14.57936692249232, 39.263169245103335, 9.027099980411354, 47.288578359228794, 6.619758580565167, 68.21320473358321, 34.96734232600444, 28.428715424387175, 22.716977122966043, 69.62352657816484, 195.93271836742966, 59.09856451974557, 77.09764161973165, 36.27551622186245, 26.535533975139636, 23.351168794960333, 93.55512426233926, 165.1344133506524, 55.86700317124382, 14.090795819539741, 31.295006740624853, 7.144540440868564, 51.210512947243295, 94.68687524881554, 76.2462739927816, 17.56206087921862, 79.26158644104012, 20.206426505994983, 42.71736189120454, 70.70286459005578, 48.84540680815693, 179.5392040446864, 39.20967443494681, 123.56470632725589, 67.68340102014298, 35.97776380482239, 146.4412043149732, 55.51449739188562, 70.63322168462088, 12.2099286424251, 72.81994268750223, 30.161975503412247, 11.778831454813316, 93.34359768830448, 171.58935147961816, 56.27509723418184, 9.054252189600646, 17.22514820991593, 25.70121755586678, 46.17485109146221, 33.534261362008046, 59.501416606528714, 92.18344669226323, 9.473554610252455, 5.923114588942752, 99.73694853778869, 62.4019509639094, 50.803311924363626, 19.79105320393446, 111.67370053625716, 70.35235156463635, 84.54210798375672, 14.453653352857943, 15.826915025260748, 55.83127950757402, 31.77157389694226, 7.5844009126455285, 6.000752752434218, 312.57904013730723, 82.94136170297959, 10.726720228936706, 12.132906787533784, 59.17922469842889, 47.107478907951766, 134.99362776664572, 146.92181660216315, 42.108047575319404, 134.23871099808443, 38.750096879450844, 69.76072899279043, 42.749651005239414, 52.074404467249884, 154.69365825983851, 69.08787662874843, 21.110980548331867, 50.33708118304075, 22.924595385989335, 81.43468678044266, 189.5604556081075, 57.89103062006517, 64.68743662554904, 100.60769993147476, 54.35389052857164, 37.64870882809622, 55.824666714379646, 17.77694156484648, 13.348855246325016, 15.793198588002765, 28.305993578726035, 14.44335969196776, 11.507517728504148, 84.26723933777798, 22.529715582762055, 18.090910734031674, 30.661911731610275, 10.184148114713418, 132.48151346131849, 27.80696257620154, 7.925458066509685, 7.386213454896074, 54.01814808290814, 13.878225939846946, 48.1980842779985, 14.60771529390576, 41.82034758037331, 73.2312282057494, 7.247487740906687, 84.42003036871105, 15.70836666726849, 72.29061019596479, 21.534474453112733, 52.72902923490835, 78.7435599182963, 59.3832144185432, 87.69591534419163, 11.962122737831985, 39.410300576156516, 490.374254664738, 35.52817682480134, 16.457793966777245, 22.282483105455206, 34.59265121163097, 29.723703564359784, 29.903352247462667, 7.953081164433844, 11.321182657591875, 78.9368539104145, 183.45655951894636, 8.64381870318779, 22.7736823803871, 12.6421926975823, 28.580829983147325, 15.572512781093085, 13.132564574227382, 15.913076225253308, 89.92325397615205, 19.69310012981515, 7.283841794913761, 27.92624819775837, 7.983113117032099, 30.342070241122382, 56.873124081206086, 22.60463360983625, 67.4375250913009, 51.818666501636756, 19.85384793276718, 74.77519213391281, 17.024936551880515, 130.47626222779863, 20.332493522075993, 12.605396037639272, 9.936357290994856, 14.380521022896179, 28.252375106517782, 103.11166474180487, 82.09793581504837, 30.476080531174134, 37.1503277612816, 20.936549535520278, 31.47868401962597, 23.89043564020387, 101.90261763247051, 26.02137925180007, 7.082650153273134, 48.68117589714988, 72.53083924927036, 22.09367670907187, 8.751456015291465, 13.088471110621127, 18.028778782496346, 310.5373450041966, 38.59252782549, 19.72702918626674, 27.482435945643854, 12.758023074130783, 31.12099735444317, 17.071727566361247, 40.22473750126315, 70.49234276449283, 5.656095249512931, 17.640302863242187, 8.03616388971198, 24.360771415781144, 5.464741602608876, 27.51254201863049, 21.66987198997952, 5.615993031655763, 22.83174719504326, 56.77079247706757, 8.880470096012024, 34.56767834517369, 34.58311702391631, 38.03178885364335, 67.83741229811595, 14.293670738928983, 84.17954724660632, 79.25700610111343, 104.68899177022683, 40.5608861618152, 7.4244076078233565, 49.89323598170266, 46.52953341664801, 5.195658093386756, 152.65985037864482, 18.440574190464023, 45.27308067209334, 8.278224748102366, 5.633582017250428, 77.4464540444197, 18.22768917284625, 58.86238551382114, 10.486381106436319, 12.67279608131866, 89.4187371543088, 52.98274291087563, 14.76240001475298, 20.033542778736564, 93.35418663194412, 15.727824501458912, 84.37433173020725, 27.184215488127883, 16.46283329598711, 16.250928702717186, 72.55422054754554, 39.77167552730373, 79.49520763848638, 16.744441192862208, 8.683156747459824, 7.828785903040863, 5.357494328553993, 13.080390809166703, 72.96198001572465, 20.20856510115159, 9.680827862135994, 143.43064863978915, 78.75624415236976, 25.200006585579473, 65.09154413370331, 18.942431879474633, 122.82372036917812, 28.655859335829163, 12.29707982010509, 5.213805468525446, 59.07488184973896, 13.503551569143278, 24.988987427802964, 16.97206585471825, 51.82866504400297, 28.641403929209527, 12.837925446754047, 72.17435932341662, 26.929820568767518, 117.20650842461264, 6.622421851431143, 9.40474030986832, 12.333935379686647, 124.26710518814241, 25.963793624912938, 14.197311067488881, 38.45004079971942, 55.23014312951548, 16.09203601071121, 70.8969049497766, 5.535629149702989, 21.462202956119476, 31.772527210548635, 48.17104818459016, 33.434220513970246, 44.04896529625577, 8.02003818751321, 23.98946126174606, 330.04885860089695, 11.929878844533116, 66.62307050252244, 15.664480119445646, 46.02009874956709, 45.697571564012826, 75.20883674302699, 10.116600071529252, 14.715537564867372, 10.701998077278807, 66.34091909576799, 7.247629709529685, 111.431891671083, 8.871054947449764, 6.719520572118885, 27.54512340177117, 18.46931201520094, 29.241588735474192, 14.088952255667737, 12.381757264844751, 105.01335755511714, 22.065552480494105, 12.219946505762467, 88.27221489989569, 122.27365834984602, 8.196416284247412, 7.024007631531777, 21.00657652941965, 23.55939632618158, 62.04138978539883, 26.873647718086804, 5.380406960825084, 20.681506686650742, 31.033644680162624, 8.55729325056842, 7.794305956156558, 18.132431744256074, 23.409734364704047, 31.79884810721951, 34.49061586800984, 49.770365245684275, 72.64431708737736, 120.82740032799131, 5.923317626605052, 24.766729283240515, 14.106493294520304, 51.7751065364972, 32.95571600395097, 9.808942219265813, 93.11636084455354, 92.51864743195318, 41.87933168998795, 13.18402602724189, 10.966907190965289, 42.15200871026079, 18.205950234867945, 133.39771108509427, 172.8474905281085, 11.359548591300914, 54.23309839720667, 105.63221596232553, 29.00505755530635, 43.065144482202896, 157.2913805177203, 14.046484854945849, 31.810090762693783, 72.83680867609255, 13.028231110730651, 59.8155852009172, 129.7945555847316, 8.457183244029986, 8.30633464029682, 16.177042176476995, 36.1854224633238, 112.40611859514073, 51.85035121036833, 12.723813843383867, 60.76484815368512, 18.090933675256778, 113.2472757301596, 29.705429474247655, 16.9724310733276, 5.406594600060489, 19.943072094234566, 114.70344113857755, 14.192522736661857, 35.016762737440665, 17.40835191252835, 70.27666420792366, 6.016243455679232, 18.369040593038353, 19.632291604328586, 72.47935804033935, 25.58510715124848, 35.02741957056536, 11.14675739143504, 57.84395952073408, 61.36216085658933, 16.858143079853168, 50.437702526664275, 27.469622408161836, 31.506770448702966, 10.401725620870135, 21.447098377984428, 9.352477716661694, 9.300768108684904, 76.79704611737277, 57.16189714063341, 61.93087782693751, 6.9834625209476675, 72.25583337358778, 56.356368957407746, 70.02595297855002, 16.630869505164775, 156.75523724088356, 5.195448564247378, 120.77147967263666, 20.906449150991367, 6.590291331027902, 53.30279442682181, 58.08001898148595, 95.46261030948835, 90.40496122226308, 88.0743158825023, 10.065035766205492, 8.332405078067678, 16.165977249856294, 32.57959156499384, 18.97588705824445, 41.3109151687345, ...])
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);
([2636788.4739430537, 2638523.8616166827, 2641496.2925107027, 2647559.375, 2726571.819657017, 2760733.6998094483, 2780852.692875633, 2838176.143499944, 2872679.1722761365, 2914259.375, 2939229.5765704117, 2994854.6875, 3024953.2275348078, 3035029.6941893455, 3048193.6771413586, 3080410.5776792346, 3084028.125, 3106777.8247023034, 3110261.162186004, 3119947.0429767845, 3135763.7633081684, 3146142.566047514, 3180782.8125, 3204620.3125, 3204996.699008764, 3205505.8496017046, 3260293.75, 3262914.932096644, 3262917.731356391, 3266419.8070130893, 3270748.344325752, 3271478.125, 3319146.875, 3346806.257322384, 3363114.324579768, 3398964.028684184, 3408342.14775387, 3409579.6674440606, 3411853.125, 3456557.8125, 3474255.5318602915, 3474258.316959438, 3486163.7268762817, 3490997.6180437705, 3508106.4134947425, 3513316.2235721448, 3527439.1428828374, 3539244.0104979333, 3539929.2668104423, 3540053.125, 3541271.304900534, 3541471.535711952, 3545814.8628659174, 3576934.375, 3590718.75, 3596728.574432326, 3596742.9058386725, 3614303.6283433964, 3635849.7514643488, 3683280.5963415215, 3686471.875, 3693848.9375683246, 3693853.5024765814, 3701518.598725213, 3702432.3262823564, 3705424.5905125774, 3710892.1875, 3721784.2830118123, 3791385.2868020856, 3810606.6178663364, 3810704.863558731, 3832826.200324658, 3834047.8633182496, 3842174.2699002526, 3842442.1875, 3843764.365229067, 3843766.934340458, 3849561.0686575, 3853651.5625, 3854206.25, 3856190.1589280637, 3856567.1875, 3856623.651063, 3879398.4375, 3883760.9375, 3884924.7480243174, 3914171.875, 3953303.279725508, 3955786.994407802, 3957969.1098089134, 3996150.0, 4003774.81815534, 4019321.4535626867, 4040465.260681904, 4061629.572402464, 4064245.829909256, 4078786.1823018324, 4111175.0, 4142928.125, 4145275.0, 4169973.4375, 4170151.6414702563, 4170324.5597257637, 4170792.4879036606, 4170800.0, 4170962.000527746, 4171467.1875, 4172736.07260441, 4173829.6875, 4216945.296145914, 4249609.357928672, 4255819.790015946, 4326033.2717088275, 4341226.5625, 4355650.958014141, 4372951.973123585, 4373004.331959426, 4380307.8125, 4383040.625, 4389518.169563502, 4399580.416649881, 4401725.390180963, 4402016.317671874, 4406640.099553085, 4438453.939366353, 4482923.4375, 4493629.117790253, 4529396.875, 4594008.533456652, 4599107.8125, 4601068.906156296, 4602651.661071481, 4618324.821800143, 4647096.875, 4656342.607392994, 4678756.013610204, 4750370.893784195, 4754893.75, 4769727.295096238, 4847506.430733378, 4851137.5, 4864165.625, 4866023.438018595, 4866407.8125, 4867496.309015369, 4947063.408193251, 4956622.0651793, 5025807.8125, 5065356.000763361, 5091273.4375, 5100007.8125, 5100020.720789842, 5189571.875, 5250869.4472098565, 5268423.4375, 5293908.356374708, 5294860.9375, 5309342.1875, 5334135.29391926, 5336704.6875, 5337633.9114942765, 5342082.396447211, 5342100.426341942, 5343415.625, 5344150.033370561, 5345445.3125, 5347658.350255098, 5365575.0, 5370026.89037247, 5370526.155015509, 5370527.586956307, 5370533.690330504, 5382919.619656088, 5383265.3383081965, 5383332.727444485, 5383912.193377524, 5384121.579005759, 5384385.9375, 5384819.668126968, 5385556.25, 5385627.576307993, 5386957.226465855, 5387480.408027698, 5412404.6875, 5447150.601322915, 5479622.556950237, 5481592.1875, 5485640.625, 5492321.510762606, 5492571.875, 5492614.531618109, 5494975.733851773, 5497282.8125, 5497546.227458361, 5497734.8602297, 5497740.005233701, 5497756.3310481515, 5497875.867551307, 5497886.339954904, 5498004.6875, 5498405.19049345, 5498635.839789457, 5499354.807209646, 5499363.119923169, 5499876.5625, 5499987.072417509, 5500517.753393681, 5501346.800888625, 5502556.7076231195, 5503171.130981331, 5503173.4375, 5503751.5625, 5504019.786708182, 5505012.795332457, 5505562.5, 5505917.1875, 5505971.669419027, 5506670.3125, 5507417.576038215, 5508810.86510648, 5514054.340658219, 5514118.75, 5515537.758383491, 5516696.332696146, 5516936.868383167, 5516939.0625, 5517178.125, 5517632.8125, 5518813.165713946, 5520274.614962995, 5521392.374537651, 5531631.484281628, 5531685.545949991, 5533925.514819036, 5533978.069431162, 5534520.3125, 5534538.597368743, 5534987.5, 5535884.469272679, 5535995.793746939, 5538966.344806929, 5539043.354543908, 5539968.75, 5544827.413766311, 5556085.1848128205, 5557512.5, 5558209.674840544, 5558751.94668579, 5564024.261980757, 5567750.844341307, 5568595.3125, 5569884.375, 5572639.0625, 5573004.382560289, 5573016.121924344, 5574562.149542615, 5575061.443232721, 5576030.315659999, 5576076.5625, 5577346.875, 5577474.953543024, 5578101.5625, 5585246.697959964, 5591823.21402159, 5597856.936055584, 5600165.116857481, 5604020.3125, 5614921.94459416, 5614929.407753634, 5614955.447990801, 5617281.849407612, 5618178.671748133, 5621440.3526442945, 5622037.5, 5622428.978621824, 5622448.484486446, 5622904.6875, 5622950.58117815, 5623009.281440472, 5623057.705583536, 5623445.258257622, 5623981.25, 5624531.473824544, 5625528.863818101, 5625545.100684636, 5626588.668081092, 5626812.5, 5632496.362680801, 5637576.894545005, 5638150.0, 5645982.8125, 5646187.095723048, 5646240.561374719, 5646764.898514499, 5646936.655227097, 5648392.1875, 5648396.352507807, 5648443.03294933, 5648454.7082211375, 5648565.625, 5648574.956515863, 5648764.447925697, 5649747.236735989, 5650365.031353732, 5650473.375732724, 5651155.367702195, 5651362.5, 5651526.605743624, 5651948.4375, 5651950.541404678, 5653595.1790213445, 5653811.925857475, 5653978.724734952, 5654024.68687354, 5654242.349275805, 5655007.8125, 5656295.3125, 5657530.902824012, 5661708.977223613, 5662575.871860273, 5662667.871632491, 5662915.625, 5662920.3125, 5663917.1875, 5665181.529858061, 5665673.4375, 5665984.162276066, 5672236.051235286, 5673196.685386466, 5674439.140919068, 5674637.5, 5674823.4375, 5674864.935058525, 5674953.218116264, 5674968.1709732, 5677994.332793259, 5682092.444926272, 5683450.141372612, 5684130.768767178, 5685156.21206912, 5687347.518460801, 5690098.4375, 5693940.747318882, 5700063.346819631, 5723840.625, 5728307.8125, 5729169.284523173, 5729532.830225514, 5730271.228254826, 5730304.938503672, 5731285.805224857, 5732269.809202242, 5733620.370772606, 5733706.7859798055, 5733957.8125, 5734564.05665449, 5735091.401921682, 5735152.051158539, 5735221.294129416, 5735248.148544031, 5735587.393499084, 5735900.198286864, 5736137.5, 5736186.00146087, 5738073.4375, 5738739.505230407, 5738904.714202981, 5740448.390741858, 5741551.634940933, 5745073.976837647, 5746603.125, 5750374.7019667495, 5752013.686431938, 5753875.280173808, 5754313.292961068, 5754348.330816835, 5755024.979800348, 5769306.791950938, 5771341.288742949, 5772551.12942757, 5785820.154230969, 5786411.243638991, 5786957.763247714, 5787075.0, 5788365.244150841, 5788898.4375, 5798289.0625, 5799510.845909402, 5803540.982051667, 5814366.502925924, 5825619.144668083, 5827120.3125, 5848508.592761377, 5854671.365184477, 5871723.6892118, 5879301.061839447, 5882420.13026482, 5891889.366211345, 5894006.971296848, 5895133.287853408, 5898873.4375, 5904113.5540515985, 5919107.912605829, 5921129.880633847, 5925755.674611869, 5928681.81960378, 5929564.0625, 5929575.883972578, 5930895.3125, 5942447.284226737, 5944183.249555072, 5945081.846516272, 5949057.848046708, 5949409.424070852, 5952440.625, 5955631.279025107, 5955632.8125, 5955652.479724531, 5957814.0625, 5978073.4375, 5979475.899573639, 5981764.367709111, 5983532.0716330875, 5983544.233596101, 5983564.0625, 5983850.0, 5989312.5, 6008700.706471107, 6014054.873992614, 6026539.0625, 6034830.898704877, 6035304.6875, 6035813.310855073, 6038880.085656947, 6067665.625, 6075022.214511616, 6075450.349188489, 6079173.4375, 6100009.375, 6100503.511880406, 6101593.325847071, 6104244.360000508, 6104848.524571543, 6104854.393643085, 6111137.5, 6115509.311359768, 6117323.189677748, 6117445.274813877, 6118215.625, 6118218.75, 6118343.785357295, 6118726.5625, 6119407.751189905, 6121785.687885897, 6121792.1875, 6121977.679791134, 6122228.223489629, 6129876.5625, 6132709.375, 6133057.8125, 6134768.75, 6135079.083698965, 6136307.8125, 6136704.1589036975, 6137071.899589625, 6137979.6875, 6138057.1679489175, 6138559.345333602, 6139317.19496837, 6139442.108331906, 6139544.119890601, 6140146.81106002, 6140429.6875, 6142407.478038817, 6145151.816964842, 6152902.637898516, 6152995.923980491, 6164617.295202339, 6170437.457097991, 6173385.440175453, 6178189.65635741, 6179077.9788265275, 6180601.911834168, 6180665.625, 6182367.438937766, 6186370.454750188, 6200270.826131613, 6200868.277088593, 6201098.4375, 6201479.335391698, 6207223.398589681, 6208076.978855251, 6209278.125, 6209520.3125, 6209976.5625, 6210004.626000273, 6210948.94653427, 6211354.437081234, 6211394.421112862, 6211930.506013766, 6212612.5, 6213014.858121258, 6216027.482769878, 6216293.384747271, 6217012.196571841, 6217548.480483051, 6218090.625, 6220990.1559722405, 6225558.215715281, 6225562.5, 6230370.3125, 6240537.5, 6265768.75, 6265779.020567467, 6267851.524498311, 6267988.40060297, 6268302.899093117, 6269563.639197375, 6269652.935364432, 6276422.243192094, 6280746.679420389, 6281289.366569393, 6285414.841178968, 6299382.233865145, 6299873.683934778, 6301054.620305411, 6303039.0625, 6319151.274978016, 6321356.25, 6321960.440078866, 6322496.875, 6334452.999044512, 6336489.05560232, 6336610.9375, 6343949.722191867, 6345248.230389044, 6346989.9995026775, 6355476.301787505, 6355949.699329642, 6357206.25158752, 6357819.134278121, 6364006.247623839, 6364017.1875, 6364170.3125, 6366041.241204373, 6372193.75, 6373435.385286563, 6385767.958309198, 6389249.88639121, 6389770.677027922, 6390118.355845086, 6390616.8041647365, 6390732.089091729, 6390734.194848709, 6391212.497715143, 6393488.896682697, 6393726.5625, 6397503.044907713, 6401814.449515957, 6402342.2256763615, 6408130.33341444, 6408251.921093201, 6408509.163870005, 6409350.563451457, 6432162.5, 6433952.88260982, 6448461.333082472, 6457514.0625, 6462543.75, 6463610.449331247, 6477605.132368807, 6483978.773065413, 6484235.717910827, 6487943.66909322, 6488061.9430324305, 6488273.803913608, 6499679.592813282, 6501282.185799739, 6509438.457097735, 6514766.682461597, 6518159.091579946, 6518160.432344678, 6520044.692244444, 6521372.568675862, 6522701.5445213355, 6523675.497691292, 6531746.659280144, 6532493.75, 6541598.897925213, 6554909.276628494, 6556179.6875, 6556802.741767871, 6560804.6875, 6582636.73464338, 6583935.778746387, 6587461.58686062, 6593204.682612891, 6605456.550654529, 6607925.906611433, 6614154.280200841, 6615493.75, 6620525.545151389, 6624135.881986085, 6626456.140662678, 6634323.1055615535, 6634560.9375, 6634801.447450373, 6635450.0, 6636535.694839798, 6638020.3125, 6642228.212111437, 6646567.1875, 6646595.163509202, 6646995.3125, 6647236.856162888, 6649823.4375, 6660136.860559677, 6665493.75, 6667134.375, 6668245.3125, 6673496.009377835, 6674828.125, 6676291.387989026, 6679455.719307919, 6708654.6875, 6709834.264904732, 6710473.4375, 6712153.125, 6713819.347205179, 6722070.3125, 6725288.800031557, 6736647.255124546, 6741260.643028361, 6744157.803244707, 6746593.75, 6751023.090471484, 6754508.078530578, 6757269.022022574, 6777399.452322404, 6797403.125, 6802680.707109282, 6812378.125, 6829236.100963891, 6856996.68601221, 6863841.319851755, 6864865.866282404, 6935182.8125, 6983882.317449404, 6997639.0625, 6997981.25, 7023550.3528698115, 7023559.437205297, 7027190.839396879, 7029634.375, 7034675.0, 7040415.572617065, 7061591.303478853, 7100626.683131298, 7108435.94300502, 7123640.352363726, 7162245.872681916, 7164835.9375, 7183591.056423696, 7183967.1875, 7184499.347783541, 7184948.913608274, 7214230.263988374, 7241896.875, 7242450.627769412, 7244896.875, 7275639.68537812, 7294237.5, 7343207.567323247, 7348412.775807734, 7362068.75, 7428705.882449502, 7461960.9375, 7463130.354433312, 7480050.929595461, 7491140.586007953, 7503903.125, 7504549.826082326, 7508266.772795764, 7525448.403394716, 7531906.5124553675, 7550060.445807207, 7554265.831839524, 7554604.676342215, 7570677.987862904, 7574868.212555691, 7594155.463279429, 7607159.669299363, 7609199.613669558, 7610182.595611532, 7610919.611437784, 7611498.329645253, 7611640.587667918, 7611657.060909346, 7612952.482261526, 7617104.337407027, 7639699.9415908735, 7640581.0465601245, 7677649.909579224, 7680629.6875, 7681568.75, 7682519.208704143, 7682740.625, 7686661.438783305, 7692045.94317414, 7695910.441637591, 7702615.625, 7703710.247731846, 7704240.625, 7708425.0, 7711416.100420851, 7714567.1875, 7748272.354104241, 7751450.433461683, 7751716.449230931, 7755177.848651404, 7767950.0, 7810213.356921567, 7815280.202418373, 7932846.186202061, 7933756.370351198, 7934592.1875, 7974522.584676368, 8067347.494521345, 8113960.556956067, 8119492.979747515, 8124401.5625, 8144465.781254039, 8227569.740300551, 8351108.046009457, 8405011.221007997, 8432872.70288774, 8452245.896223944, 8487643.719025195, 8488480.628391247, 8488676.5625, 8489675.0, 8490304.292146238, 8490903.125, 8492351.216911092, 8496554.00581332, 8519965.625, 8519981.706859373, 8520256.531961815, 8521821.403295258, 8541719.526438499, 8548835.013162203, 8550029.532097671, 8560638.76880996, 8564569.495937085, 8608187.232337268, 8614076.594350442, 8617818.75, 8618279.84361738, 8618871.875, 8638071.722149372, 8638670.3125, 8639595.171646727, 8642806.100307051, 8643464.0625, 8646076.5625, 8650957.370668733, 8652124.224029612, 8653305.660900015, 8724997.502352202, 8725181.805722639, 8725922.601891624, 8726121.575836062, 8735613.642044032, 8741346.153610041, 8742951.5625, 8748645.942067856, 8753532.8125, 8755159.375, 8755328.860890051, 8763724.028211292, 8764199.494414167, 8765302.871302133, 8770543.819131931, 8771450.629934825, 8774902.642539812, 8775437.535174238, 8775723.061980477, 8775811.624852454, 8776579.101280758, 8778426.413607124, 8787462.438717498, 8789270.624152118, 8791626.5625, 8792726.38147351, 8793148.4375, 8793352.492631622, 8794819.500369158, 8795131.556889031, 8795390.101927865, 8797982.8125, 8798227.947861103, 8799846.567507697, 8800939.0625, 8801771.002771823, 8801776.5625, 8801778.109171687, 8801833.160344759, 8802612.5, 8803181.908210158, 8805229.012606658, 8806287.046913384, 8806301.532996692, 8806390.625, 8806859.375, 8807182.764701279, 8807550.287701242, 8809807.493614802, 8810278.317058817, 8812492.1875, 8815210.865900988, 8816534.72406341, 8820538.36594641, 8821473.4375, 8821665.625, 8821992.1875, 8822730.091788892, 8823786.619016642, 8824153.708333462, 8824516.07252818, 8824747.845284445, 8824978.125, 8824979.0483102, 8825175.386229685, 8825410.180759652, 8826596.875, 8827413.40732252, 8827835.419643357, 8827891.387155764, 8829563.322482413, 8829585.107555812, 8829589.700733516, 8830223.840243, 8831471.875, 8833338.626057293, 8836922.19154029, 8838950.447128844, 8843315.625, 8848951.221503647, 8849091.49904047, 8849128.125, 8849627.52102105, 8849758.360948963, 8849810.18719855, 8849811.022977414, 8849925.451936653, 8850645.3125, 8850697.302561024, 8850870.102515506, 8851489.0625, 8851715.625, 8851781.522311658, 8851925.0, 8852212.55240112, 8852472.456416748, 8853020.986403298, 8853082.8125, 8853176.368787784, 8853423.771321364, 8853477.584500508, 8854101.28096149, 8854364.309226483, 8854502.021490162, 8854891.893358164, 8856294.722576993, 8856372.710745607, 8857198.644999027, 8857317.068720888, 8860222.677470561, 8879484.82792826, 8888673.146930678, 8890359.375, 8890975.45919844, 8891616.810360713, 8895794.712798381, 8897443.525609346, 8897809.547298476, 8897942.882025903, 8898003.125, 8898143.506767964, 8899050.6772459, 8911384.375, 8912983.93053272, 8914636.539467452, 8914869.866036054, 8915053.074219033, 8916657.638021806, 8917121.490866518, 8917568.199804887, 8918243.43487116, 8918361.182202432, 8919138.066666774, 8920127.644220995, 8920148.781625405, 8921124.130417557, 8921134.854094299, 8924600.499085657, 8925703.557529038, 8936862.17282648, 8944392.1875, 8946580.00216134, 8956912.443228723, 9009559.375, 9017014.056060705, 9028609.188391486, 9033553.498734977, 9118348.199700078, 9124654.6875, 9130062.5, 9130661.452981504, 9131419.594360633, 9132886.999865219, 9132965.309048815, 9180768.19731213, 9232329.582130548, 9239489.006364534, 9239831.90488077, 9241190.925369598, 9242555.876360212, 9242657.955928816, 9242970.3125, 9243241.787435563, 9248008.950049581, 9248495.3125, 9256038.078894584, 9256637.24353537, 9257456.303129094, 9257523.4375, 9257725.950033536, 9257933.517136142, 9258020.3125, 9258336.246761486, 9258560.97467543, 9258641.95636369, 9258677.414122082, 9259318.75, 9259532.030624809, 9259852.389319465, 9260193.75, 9260363.137090469, 9260612.529887779, 9260620.971008508, 9275392.63469634, 9330995.523306973, 9337702.45418466, 9337883.917577824, 9340318.91951889, 9341022.87738139, 9342311.283384874, 9342313.18858657, 9343061.77946425, 9343772.554606987, 9344083.665769741, 9344617.213870108, 9344877.10329752, 9344993.75, 9345598.449653883, 9346706.404002534, 9346909.375, 9348986.363382772, 9357504.6875, 9362265.569334641, 9363207.8125, 9364899.479947012, 9367368.245376134, 9369443.77481916, 9369640.588545764, 9370893.75, 9373432.8125, 9373514.0625, 9378893.197702017, 9387130.59480306, 9387581.174063664, 9413846.875, 9418000.382321015, 9420381.07138378, 9420510.621632108, 9421982.766182663, 9422878.279001797, 9424886.565693742, 9425428.125, 9425521.875, 9425621.875, 9428028.125, 9428149.69658939, 9428899.19402067, 9428956.335667083, 9430398.725500911, 9430942.1875, 9434644.516772516, 9434656.25, ...], [79.66186144291841, 11.862337986621727, 20.364616375501242, 58.122036227753405, 5.129321167281399, 8.819051286125644, 22.19801559204376, 13.553498706435962, 10.407752305699264, 33.74668092532064, 41.29443485893389, 60.31317418212851, 7.148668335809443, 6.488140355688352, 11.015702249278325, 15.26003537679708, 86.06965450494727, 23.746939744673366, 16.758128098327703, 9.47759397177345, 23.761070384171628, 16.61156979405316, 30.308553326698963, 93.12112767977416, 8.195652421395614, 13.607368194183806, 35.685560599843356, 19.762852582326687, 85.69535856012686, 24.714250188666703, 89.09450792735801, 30.814943413918833, 81.33376679418724, 14.969492562761033, 5.8336298022482325, 14.814167031039934, 27.76198169179913, 30.16670521768642, 32.57823659996409, 45.66720209344649, 18.786496529848357, 5.984574767877111, 13.79996717416626, 7.331506929940197, 53.59350881615694, 103.58055452095545, 12.096602378438984, 16.03696679244631, 22.32251162473828, 70.40127099919982, 20.82120597714913, 100.23876780158237, 5.759661880978289, 28.62895347059941, 80.17173163328951, 28.207536821875674, 18.632363131766713, 22.830482600502762, 24.431167175668644, 20.085989809360797, 91.02538492212945, 15.713964793755213, 5.635274044191197, 25.856561590020476, 8.045170580654588, 19.95854673170242, 44.280973588673525, 97.44940684739146, 30.753560697112952, 11.755891848988671, 15.657892951124412, 42.66950014411911, 56.8250251559753, 156.77342296772028, 42.14236545723131, 28.130562810776965, 25.116699001701985, 25.34447143572404, 63.8156822310697, 31.79851380939601, 10.469781536801419, 33.67865000773807, 6.110593070409263, 58.690234827227286, 43.28890445202592, 14.060849734923732, 92.85440154520744, 11.378483114425558, 86.98933851094701, 11.74089032376234, 34.677841895179206, 7.538765560239435, 10.527218347295983, 13.713669812432174, 25.586113794906147, 25.41840234182965, 39.4451030289124, 47.20998034846453, 56.489919682078124, 100.4074888569979, 57.95860919827505, 8.328784321307456, 6.213130550945731, 35.28296483518977, 40.24040137144626, 8.039002127732166, 116.4028116279174, 30.356414273907653, 65.37991362106868, 28.20524134976313, 14.876838303995184, 21.271704124364877, 6.561569028208233, 79.93509308990554, 74.54776015827704, 9.704545836216681, 6.694542494991948, 33.9812795626325, 40.09201050219637, 184.67328327103783, 139.27043005193616, 53.28192229486089, 78.05132900300829, 21.24295478115074, 19.32992439950813, 86.1784125971376, 20.82479588035572, 68.10700116301228, 18.650518837729116, 62.177343761505725, 47.0351916733276, 39.6563619789201, 25.442112885975693, 53.76922797384228, 58.06751584413958, 24.598765492904178, 42.236036794689994, 91.2797275384778, 18.731800897848686, 15.678235480717015, 49.53918728080322, 76.23139994927078, 11.128517497023264, 42.22789960963364, 68.11636091972889, 20.64505143055218, 15.719564949345907, 67.06084928239699, 24.421578966175517, 30.285623891539245, 50.66813115507403, 11.832080293569453, 51.45904011847324, 76.11710432272328, 69.39631422065858, 9.837912746153133, 128.31621699530763, 49.14187323749597, 7.385947974805125, 30.917871476647914, 75.24661687059718, 28.533209490149485, 6.851715800130568, 109.3917831833832, 8.304303424734712, 41.540537945159485, 17.48222899232804, 28.66962865087936, 26.300946774000963, 6.6847937070696855, 21.121807107688145, 19.829545214209475, 48.51015256668671, 53.95616299352827, 26.94860845848855, 143.69386427117777, 13.921796747589498, 39.79612362828998, 84.3044189434211, 30.828919035871305, 76.05777609675678, 11.561072228263846, 24.125374501621675, 37.00313435987312, 7.836237693296965, 9.983283955087739, 61.9791893223696, 139.40911693593642, 7.476605760289428, 86.24284747264278, 17.09217739445343, 12.50787524802334, 53.89508981408509, 16.90236734245382, 17.181643104346513, 88.75789213384898, 15.259695481119866, 13.585625328671863, 16.734879453422344, 105.23539047102838, 12.016851458462115, 20.571826493926615, 11.320122081198331, 12.257948312408779, 28.68873167594233, 55.738332075134224, 17.6491172555296, 14.666360427630734, 17.029105094591532, 61.82315309206896, 152.02924460636137, 82.37402380455049, 10.39457917703121, 125.64206915317077, 66.18938623910336, 78.3147927862578, 10.820887871372062, 31.76757192229349, 64.58336749782208, 20.536536243129063, 13.766040811625862, 100.57507029495014, 7.699442655812487, 21.08122755622248, 6.964760022710758, 41.092227841479044, 35.721714377772855, 44.00874867727045, 43.424964879111116, 35.404778362871056, 11.433209924649823, 15.916584410699697, 99.60443581480872, 17.349260569494696, 14.733854262594882, 56.996854750173625, 5.0605346560689295, 110.39303965232253, 9.41240876905377, 5.641234461916065, 108.14613598928547, 16.41211117762591, 101.72823603831107, 121.71141247283545, 19.295312858185742, 51.33575234916704, 162.96008337099346, 15.823466331920383, 12.718241817578477, 65.49308277812914, 38.926602792967856, 91.72103138835281, 69.71290419919316, 62.00630155379893, 7.793430354670184, 146.95779578386296, 12.0223315547762, 27.88786864016378, 72.66547296078483, 38.098762781774724, 27.637839689285066, 49.35473614327913, 54.84403665883424, 10.79548354379287, 9.987723921597649, 31.41396610522674, 85.65830102133819, 15.213574786824806, 52.01773897417305, 10.069454651788243, 25.91042004763002, 123.30232027134225, 11.938147262287568, 119.36560227824148, 19.63508377637521, 36.30626287817782, 40.04400716089074, 12.176400590663565, 53.92270428859193, 51.188938106609974, 7.583736253158286, 63.07927212480345, 213.111089273458, 84.1896102867456, 10.81201588169872, 57.69029928877184, 52.67600869336738, 5.8959978189833295, 14.854728172341872, 166.7948641020923, 61.9051691745508, 72.71976375376612, 5.040473352941842, 19.496687757570864, 12.471548488866857, 150.91860653445326, 10.398686072897746, 5.26944027571773, 5.81551504538404, 72.37609755543244, 191.73391054515366, 11.788795849347421, 7.739529750377059, 98.15344771317794, 33.961091873203436, 18.3730137910301, 43.84899613733108, 22.76554704001286, 29.486343593856176, 105.03080710014997, 40.335657201984034, 106.18166358919052, 17.497791677246976, 5.386636917158217, 7.662816322779624, 31.125344348765854, 31.57201699442761, 90.28651985538886, 91.50326034495828, 68.90389416818698, 7.870954168921734, 87.99114530369542, 51.699107194176996, 53.32368379139855, 38.00825042242472, 49.15372015753891, 43.96381978433221, 7.644898384095231, 43.12779828961256, 15.24907465092836, 74.60535215584014, 32.368506325437146, 18.000588990425054, 156.4453355062363, 6.977130502899427, 80.20736464029244, 5.045908892852275, 16.95207339387415, 10.450513897956334, 59.88342828744244, 6.899147680582456, 30.051076906198194, 33.551458647785196, 12.771769012236664, 161.77512130506625, 54.57917819429905, 59.01837298934809, 11.155526415435332, 7.384950967878379, 40.80766716616395, 26.1589498143036, 38.36870625443348, 9.381166838989046, 90.19100921141458, 143.98633080481414, 99.69441134488304, 19.049974263457315, 9.781852740119096, 20.722602648910076, 71.27238849398412, 34.17804513662735, 9.504889130317666, 147.52667532692539, 5.818728029576758, 106.72689935976311, 78.36043800583197, 18.297761261440666, 27.63229934486454, 15.225001209526583, 30.109523953299167, 47.79194653691583, 58.3969682111714, 22.82539020022742, 8.440511547496689, 19.168600368555612, 6.742393374471153, 74.0328493868244, 62.37539870588209, 71.61628415825368, 80.10217892925823, 14.370729455993198, 13.701770604851971, 90.08451618965037, 61.30457471544236, 22.77016676820906, 37.77409969666823, 103.8824067112388, 7.097581626764584, 16.748786717081668, 19.830321474397238, 5.139027532264201, 46.9978972318389, 12.614264148732644, 5.8962042331518685, 125.93147029818037, 106.14593532876535, 31.99015649990649, 6.535778409406907, 10.026126795854859, 289.3198295979215, 45.87255344374524, 29.646890781548336, 78.61091583310525, 34.69031624055148, 13.679495962095299, 9.864431155612927, 56.916884253734345, 127.90644804631343, 91.42359238109884, 19.36222501852189, 64.97743734794841, 159.15004243822332, 15.078750161544777, 35.18882690080543, 68.38091794746992, 57.98668089634109, 40.007912498304954, 7.972477929667574, 103.49485533551767, 108.81604846682757, 157.2656875458915, 17.518111407852658, 12.711467166772133, 11.978268236563586, 87.00387031722714, 90.94198914983673, 30.783648581665332, 18.55063578769935, 18.411564957091024, 40.78793132977137, 122.37035645082257, 56.139956871465, 19.303220940388247, 9.692398393033171, 38.04857074421932, 16.41541798253686, 14.019201749908964, 41.02864875495954, 36.19940328333487, 8.50234099003552, 8.996783780406952, 17.91941192566726, 56.39131991336608, 120.69008104631021, 74.18559255219397, 14.704366731273998, 33.075167194900715, 40.57692328395949, 73.9080475020915, 46.90833168576077, 34.50311649624347, 56.89533172336091, 22.556450299775605, 14.068423995778454, 32.014444517976266, 48.90246601219862, 52.432836743194486, 98.46732138509317, 51.525819300217705, 65.21131510571725, 126.29440277161105, 17.895057993708477, 69.5889715882492, 21.21250234855722, 95.04169218896689, 29.317731943697922, 7.972802529039677, 14.65960920045674, 9.337726095932672, 39.188835667179745, 16.56752183315952, 26.60424188293833, 117.96585979562867, 63.88671267079349, 20.725432544816755, 21.914417973709043, 7.840459340835967, 73.30235640491557, 7.587794112782017, 8.943540218682003, 81.20234250696656, 198.4428547244441, 48.50125817127242, 74.62512479257143, 11.544860860941906, 59.495512131856984, 86.08066707451886, 21.767647596525364, 69.94054636393975, 9.050423477245486, 7.589224850413301, 111.52638623860376, 61.913329848007805, 32.44308837928236, 47.8903767152536, 114.67635472846466, 107.44240536739505, 24.40543037349815, 27.739498466869087, 7.928780845023445, 33.331233843086885, 37.93089800582245, 271.36327140436737, 8.102429794287755, 8.13238285936439, 96.62192815537676, 37.896366344466244, 36.24043754700138, 11.822430210078576, 67.94783957984856, 105.42265655879508, 95.25729630362798, 52.41063340985483, 119.70327134411497, 35.00879115908065, 30.19061621413885, 24.745681220339968, 34.76620302159343, 39.45928487957255, 58.99479961772882, 104.74700665096825, 78.49291136232696, 63.725838011879205, 173.26949530798666, 63.15432701883436, 35.8447109388883, 100.90811996634126, 175.46768761420464, 51.3840952827609, 29.30265149374333, 115.76018867376732, 26.26142229965639, 15.75968517233908, 52.69356169209172, 120.35233946853076, 8.180008339147468, 156.96801619318546, 76.88230790962015, 23.742182540232818, 25.568269599657917, 23.96533895147683, 119.04747564467908, 31.847705493298438, 59.66594914349158, 29.596775322154492, 31.872436480790643, 20.987590027685176, 7.339971952223689, 108.60374101917463, 5.412594866008018, 22.618202624761285, 22.74158151993383, 32.9610891496772, 119.75036927611652, 79.55325399089912, 5.525086661764817, 64.37242039420343, 21.642129621718112, 97.05938929384108, 8.306869330115951, 270.84611977299903, 11.73863214372026, 7.528619746063118, 5.743581132826681, 47.12515433873919, 31.40625464741047, 5.479005466132101, 61.946949528647174, 36.571495488918536, 10.441739475591312, 6.559165319816416, 9.946901963462468, 89.58094850047135, 5.808018012143698, 117.57213863503051, 11.753182630085194, 32.947163794146384, 5.086318109093637, 71.35074495332154, 152.15734520017972, 29.015204842573393, 46.896429329542656, 17.876680625516624, 5.567721358142911, 14.873423121107146, 17.251706231146215, 157.8022978923161, 39.739287515939196, 117.55531951531121, 14.57936692249232, 39.263169245103335, 9.027099980411354, 47.288578359228794, 6.619758580565167, 68.21320473358321, 34.96734232600444, 28.428715424387175, 22.716977122966043, 69.62352657816484, 195.93271836742966, 59.09856451974557, 77.09764161973165, 36.27551622186245, 26.535533975139636, 23.351168794960333, 93.55512426233926, 165.1344133506524, 55.86700317124382, 14.090795819539741, 31.295006740624853, 7.144540440868564, 51.210512947243295, 94.68687524881554, 76.2462739927816, 17.56206087921862, 79.26158644104012, 20.206426505994983, 42.71736189120454, 70.70286459005578, 48.84540680815693, 179.5392040446864, 39.20967443494681, 123.56470632725589, 67.68340102014298, 35.97776380482239, 146.4412043149732, 55.51449739188562, 70.63322168462088, 12.2099286424251, 72.81994268750223, 30.161975503412247, 11.778831454813316, 93.34359768830448, 171.58935147961816, 56.27509723418184, 9.054252189600646, 17.22514820991593, 25.70121755586678, 46.17485109146221, 33.534261362008046, 59.501416606528714, 92.18344669226323, 9.473554610252455, 5.923114588942752, 99.73694853778869, 62.4019509639094, 50.803311924363626, 19.79105320393446, 111.67370053625716, 70.35235156463635, 84.54210798375672, 14.453653352857943, 15.826915025260748, 55.83127950757402, 31.77157389694226, 7.5844009126455285, 6.000752752434218, 312.57904013730723, 82.94136170297959, 10.726720228936706, 12.132906787533784, 59.17922469842889, 47.107478907951766, 134.99362776664572, 146.92181660216315, 42.108047575319404, 134.23871099808443, 38.750096879450844, 69.76072899279043, 42.749651005239414, 52.074404467249884, 154.69365825983851, 69.08787662874843, 21.110980548331867, 50.33708118304075, 22.924595385989335, 81.43468678044266, 189.5604556081075, 57.89103062006517, 64.68743662554904, 100.60769993147476, 54.35389052857164, 37.64870882809622, 55.824666714379646, 17.77694156484648, 13.348855246325016, 15.793198588002765, 28.305993578726035, 14.44335969196776, 11.507517728504148, 84.26723933777798, 22.529715582762055, 18.090910734031674, 30.661911731610275, 10.184148114713418, 132.48151346131849, 27.80696257620154, 7.925458066509685, 7.386213454896074, 54.01814808290814, 13.878225939846946, 48.1980842779985, 14.60771529390576, 41.82034758037331, 73.2312282057494, 7.247487740906687, 84.42003036871105, 15.70836666726849, 72.29061019596479, 21.534474453112733, 52.72902923490835, 78.7435599182963, 59.3832144185432, 87.69591534419163, 11.962122737831985, 39.410300576156516, 490.374254664738, 35.52817682480134, 16.457793966777245, 22.282483105455206, 34.59265121163097, 29.723703564359784, 29.903352247462667, 7.953081164433844, 11.321182657591875, 78.9368539104145, 183.45655951894636, 8.64381870318779, 22.7736823803871, 12.6421926975823, 28.580829983147325, 15.572512781093085, 13.132564574227382, 15.913076225253308, 89.92325397615205, 19.69310012981515, 7.283841794913761, 27.92624819775837, 7.983113117032099, 30.342070241122382, 56.873124081206086, 22.60463360983625, 67.4375250913009, 51.818666501636756, 19.85384793276718, 74.77519213391281, 17.024936551880515, 130.47626222779863, 20.332493522075993, 12.605396037639272, 9.936357290994856, 14.380521022896179, 28.252375106517782, 103.11166474180487, 82.09793581504837, 30.476080531174134, 37.1503277612816, 20.936549535520278, 31.47868401962597, 23.89043564020387, 101.90261763247051, 26.02137925180007, 7.082650153273134, 48.68117589714988, 72.53083924927036, 22.09367670907187, 8.751456015291465, 13.088471110621127, 18.028778782496346, 310.5373450041966, 38.59252782549, 19.72702918626674, 27.482435945643854, 12.758023074130783, 31.12099735444317, 17.071727566361247, 40.22473750126315, 70.49234276449283, 5.656095249512931, 17.640302863242187, 8.03616388971198, 24.360771415781144, 5.464741602608876, 27.51254201863049, 21.66987198997952, 5.615993031655763, 22.83174719504326, 56.77079247706757, 8.880470096012024, 34.56767834517369, 34.58311702391631, 38.03178885364335, 67.83741229811595, 14.293670738928983, 84.17954724660632, 79.25700610111343, 104.68899177022683, 40.5608861618152, 7.4244076078233565, 49.89323598170266, 46.52953341664801, 5.195658093386756, 152.65985037864482, 18.440574190464023, 45.27308067209334, 8.278224748102366, 5.633582017250428, 77.4464540444197, 18.22768917284625, 58.86238551382114, 10.486381106436319, 12.67279608131866, 89.4187371543088, 52.98274291087563, 14.76240001475298, 20.033542778736564, 93.35418663194412, 15.727824501458912, 84.37433173020725, 27.184215488127883, 16.46283329598711, 16.250928702717186, 72.55422054754554, 39.77167552730373, 79.49520763848638, 16.744441192862208, 8.683156747459824, 7.828785903040863, 5.357494328553993, 13.080390809166703, 72.96198001572465, 20.20856510115159, 9.680827862135994, 143.43064863978915, 78.75624415236976, 25.200006585579473, 65.09154413370331, 18.942431879474633, 122.82372036917812, 28.655859335829163, 12.29707982010509, 5.213805468525446, 59.07488184973896, 13.503551569143278, 24.988987427802964, 16.97206585471825, 51.82866504400297, 28.641403929209527, 12.837925446754047, 72.17435932341662, 26.929820568767518, 117.20650842461264, 6.622421851431143, 9.40474030986832, 12.333935379686647, 124.26710518814241, 25.963793624912938, 14.197311067488881, 38.45004079971942, 55.23014312951548, 16.09203601071121, 70.8969049497766, 5.535629149702989, 21.462202956119476, 31.772527210548635, 48.17104818459016, 33.434220513970246, 44.04896529625577, 8.02003818751321, 23.98946126174606, 330.04885860089695, 11.929878844533116, 66.62307050252244, 15.664480119445646, 46.02009874956709, 45.697571564012826, 75.20883674302699, 10.116600071529252, 14.715537564867372, 10.701998077278807, 66.34091909576799, 7.247629709529685, 111.431891671083, 8.871054947449764, 6.719520572118885, 27.54512340177117, 18.46931201520094, 29.241588735474192, 14.088952255667737, 12.381757264844751, 105.01335755511714, 22.065552480494105, 12.219946505762467, 88.27221489989569, 122.27365834984602, 8.196416284247412, 7.024007631531777, 21.00657652941965, 23.55939632618158, 62.04138978539883, 26.873647718086804, 5.380406960825084, 20.681506686650742, 31.033644680162624, 8.55729325056842, 7.794305956156558, 18.132431744256074, 23.409734364704047, 31.79884810721951, 34.49061586800984, 49.770365245684275, 72.64431708737736, 120.82740032799131, 5.923317626605052, 24.766729283240515, 14.106493294520304, 51.7751065364972, 32.95571600395097, 9.808942219265813, 93.11636084455354, 92.51864743195318, 41.87933168998795, 13.18402602724189, 10.966907190965289, 42.15200871026079, 18.205950234867945, 133.39771108509427, 172.8474905281085, 11.359548591300914, 54.23309839720667, 105.63221596232553, 29.00505755530635, 43.065144482202896, 157.2913805177203, 14.046484854945849, 31.810090762693783, 72.83680867609255, 13.028231110730651, 59.8155852009172, 129.7945555847316, 8.457183244029986, 8.30633464029682, 16.177042176476995, 36.1854224633238, 112.40611859514073, 51.85035121036833, 12.723813843383867, 60.76484815368512, 18.090933675256778, 113.2472757301596, 29.705429474247655, 16.9724310733276, 5.406594600060489, 19.943072094234566, 114.70344113857755, 14.192522736661857, 35.016762737440665, 17.40835191252835, 70.27666420792366, 6.016243455679232, 18.369040593038353, 19.632291604328586, 72.47935804033935, 25.58510715124848, 35.02741957056536, 11.14675739143504, 57.84395952073408, 61.36216085658933, 16.858143079853168, 50.437702526664275, 27.469622408161836, 31.506770448702966, 10.401725620870135, 21.447098377984428, 9.352477716661694, 9.300768108684904, 76.79704611737277, 57.16189714063341, 61.93087782693751, 6.9834625209476675, 72.25583337358778, 56.356368957407746, 70.02595297855002, 16.630869505164775, 156.75523724088356, 5.195448564247378, 120.77147967263666, 20.906449150991367, 6.590291331027902, 53.30279442682181, 58.08001898148595, 95.46261030948835, 90.40496122226308, 88.0743158825023, 10.065035766205492, 8.332405078067678, 16.165977249856294, 32.57959156499384, 18.97588705824445, 41.3109151687345, ...])
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)